/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@font-face {
    font-family: 'Kaftan Serif - Trial';
    src: url('assets/fonts/KaftanSerifTrial-Regular.woff2') format('woff2'),
        url('assets/fonts/KaftanSerifTrial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary: #FD4DCD;
    --secondary: #FE9562;
    --text: #111111;
    --accent: #444444;
    --light: #FFF;
    --dark: #000;
    --bg-light: #F2F2F2;
    --title-font: 'Kaftan Serif - Trial';
    --body-font: "Bricolage Grotesque", sans-serif;
    scroll-behavior: smooth;
}
html {
    margin-top: 0 !important;
}
body {
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    color: var(--text);
    background-color: var(--light);
    font-family: var(--body-font);
    padding-top: 125px;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
    font-family: var(--title-font);
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html p {
    margin-top: 0;
}
html a {
    text-decoration: none;
    transition: all 0.4s;
}
html a:hover {
    color: var(--text);
}
html p:last-child {
    margin-bottom: 0;
}
::selection {
    color: #fff;
    background: var(--secondary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
html .btn {
    background-color: var(--text);
    color: var(--light);
    padding: 0px 26px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 42px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--text);
    box-shadow: none !important;
    transition: all 0.4s;
}
html .btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--light);
}
html .btn.btn-outline {
    background: transparent;
    border-color: var(--text);
    color: var(--text);
}
html .btn.btn-outline:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--light);
}
html .btn.btn-sm {
    line-height: 36px;
}
html .btn.btn-light {
    background: var(--light);
    border-color: var(--light);
    color: var(--text);
}
html .btn.btn-light:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--light);
}
html .container {
    max-width: 100%;
    width: 1370px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}
section {
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

/* Header */
.header-wpr {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
}
.sticky .header-wpr {
    margin-top: -36px;
}
.promobar-marquee-wrapper {
    overflow: hidden;
    background-color: var(--text);
    color: #fff;
    white-space: nowrap;
    padding: 9px 0;
}
.promobar-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
    gap: 80px;
}
.promobar-item p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 130%;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

html header#site-header {
    width: 100%;
    max-width: 100%;
    padding: 15px 0;
    display: block;
    transition: all 0.4s;
    background: var(--light);
}
html.sticky header#site-header {
    padding: 12px 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
}
.header-main-bar {
    display: flex;
    align-items: center;
}
.header-main-bar > * {
    flex: 1;
}
.header-navbar .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-navbar .menu a {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.05em;
    display: block;
    line-height: 130%;
}
.header-navbar .menu a:hover {
    color: var(--secondary);
}
.header-navbar .menu .current-menu-item a {
    padding: 5px 10px;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 100%);
    border-radius: 5px;
}
.navbar-toggle {
    display: none;
}
html .site-header .site-branding {
    display: block;
    flex: unset;
}
html .site-header .site-branding a {
    display: block;
    width: 102px;
}
html.sticky .site-header .site-branding a {
    width: 90px;
}
html .site-header .site-branding a:hover {
    transform: scale(0.9);
}
html .site-header .site-branding a img {
    display: block;
    width: 100%;
}
.hactions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.hactions :is(.login,.cart) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
}
.hactions :is(.login,.cart):before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: all 0.4s;
}
.hactions :is(.login,.cart):hover {
    padding: 5px;
}
.hactions :is(.login,.cart):hover:before {
    opacity: 1;
}
.hactions .cart .cnt {
    position: absolute;
    top: -2px;
    left: 17px;
    background: var(--secondary);
    line-height: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #FFF;
    padding: 0 4px;
    border-radius: 50px;
    display: block;
    text-align: center;
    min-width: 16px;
}
html .hsearch .search-field {
    background: #F5F5F5;
    border: 1px solid #E7DFE5;
    min-width: 300px;
    height: 40px;
    border-radius: 50px;
    padding: 0 20px;
    padding-left: 48px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    outline: none !important;
}
html .hsearch .search-field::placeholder {
    color: rgba(17, 17, 17, 0.6);
}
html .hsearch .icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    margin: auto;
    top: 0;
    bottom: 0;
}
html .hsearch .search-widget .widget-title,
html .hsearch .search-widget button {
    display: none;
}


/* Home page */
html .site-hero {
    background-image: url('/wp-content/uploads/2026/04/tap.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 54px;
    padding-bottom: 79px;
}
html .site-hero:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50.58%);
    transform: scale(-1);
}
html .site-hero .container {
    width: 1150px;
}
html .site-hero .text {
    width: 371px;
    max-width: 100%;
}
html .site-hero h1 {
    font-size: 138px;
    color: var(--light);
    line-height: 110%;
    margin-bottom: 72px;
}
html .site-hero h6 {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    font-size: 42px;
    color: var(--light);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}
html .site-hero h6 span {
    display: block;
    margin-bottom: 7px;
    font-size: 62px;
    line-height: 130%;
    color: var(--light);
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 26px;
    font-weight: 700;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
.with-love-banner {
    background: var(--bg-light);
    padding: 18px 0;
    overflow: hidden;
}
.with-love-banner .wl-marquee {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 14px;
    animation: marquee 25s linear infinite;
}
.with-love-banner h3 {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.with-love-banner h3:before {
    content: '';
    display: block;
    width: 34px;
    min-width: 34px;
    height: 34px;
    background-image: url('/wp-content/uploads/2025/05/secondary-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 34px;
}
.pc-section {
    padding-top: 40px;
}
.category-circles-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}
.category-circles-wrapper > * {
    flex: 1;
}
.category-circle a {
    display: block;
}
.category-circle .circle-img {
    display: block;
    position: relative;
    padding-top: 100%;
    margin-bottom: 14px;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
    border-radius: 50%;
    overflow: hidden;
}
.category-circle .circle-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.4s;
}
.category-circle:hover .circle-img img {
    padding: 2px;
}
.category-circle .circle-img .no-img {
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: all 0.4s;
    background-image: url('/wp-content/uploads/2025/04/Her-Logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px;
    opacity: 0.5;
}
.category-circle .circle-label {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: var(--text);
    line-height: 130%;
    transition: all 0.4s;
}
.category-circle .circle-label:hover {
    color: var(--secondary);
}
.category-circles-wrapper .see-all a {
    display: block;
    padding-top: 100%;
    position: relative;
}
.category-circles-wrapper .see-all a .see-all-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    position: absolute;
    inset: 0;
    background: var(--text);
    color: var(--light);
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    border-radius: 50%;
    transition: all 0.4s;
}
.category-circles-wrapper .see-all a .see-all-btn:hover {
    background: var(--secondary);
}
.top-content {
	margin-bottom: 30px;
}
html .title {
	margin-bottom: 8px;
}
html .title h2 {
    font-size: 38px;
    line-height: 120%;
    color: #111111;
    margin-bottom: 0;
}
html .title ~ p {
	line-height: 120%;
}
.prd-box {
    position: relative;
}
.prd-box .badge {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    padding: 5px 11px;
    background: var(--secondary);
    border-radius: 40px;
    display: block;
    position: absolute;
	z-index: 1;
    left: 0;
    top: 0;
    margin: 10px;
}
.prd-box .ratting {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #111111;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    position: absolute;
	z-index: 1;
    right: 0;
    top: 0;
    margin: 10px;
}
.prd-box .ratting img {
    display: inline-block;
    width: auto;
}
.prd-box .image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
	position: relative;
}
.prd-box .image .img {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}
.prd-box .image .img, 
.prd-box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prd-box:hover .image .img {
	transform: scale(1.1);
}
.sale-marquee {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 8px 0;
    background: var(--text);
}
.sale-marquee .wpr {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 13px;
    animation: marquee 25s linear infinite;
    animation-duration: 10s;
}
.sale-marquee .wpr p {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: var(--light);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}
.sale-marquee .wpr p:before {
    content: '';
    display: block;
    width: 11px;
    min-width: 11px;
    height: 16px;
    background-image: url('/wp-content/uploads/2025/04/lightning-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.prd-box .cbtn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.prd-box:hover .cbtn {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}
.prd-box .cbtn .btn {
    width: 100%;
}
.prd-box .sale-marquee ~ .cbtn {
    bottom: 33px;
}
.prd-box .text {
    margin-top: 15px;
}
.prd-box .text h4 {
    font-size: 20px;
	font-weight: 600;
    line-height: 120%;
    font-family: var(--body-font);
    color: var(--text);
    margin-bottom: 8px;
}
.prd-box .text h4 a {
    display: block;
    color: inherit;
}
.prd-box .text h4 a:hover {
    color: var(--secondary);
}
.prd-box .text h6 {
    font-family: var(--body-font);
	font-weight: 300;
	font-size: 16px;
	line-height: 120%;
	color: #111111;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.prd-box .text h6 del {
	color: rgba(68, 68, 68, 0.7);
}
.prd-box .text h6 ins {
    text-decoration: none;
}
html .owl-carousel .owl-nav {
    margin: 0;
}
html .owl-carousel .owl-nav [class*="owl-"] {
    width: 36px;
    height: 36px;
    background: var(--light);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 40px;
    position: absolute;
    left: -18px;
    top: 144px;
    margin: auto;
    transition: all 0.4s;
}
html .owl-carousel .owl-nav [class*="owl-"]:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.99998 9C4.99998 9 1.00002 6.05408 1 5C0.999992 3.94592 5 1 5 1" stroke="%23111111" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
html .owl-carousel .owl-nav .owl-next {
    transform: scaleX(-1);
    left: auto;
    right: -18px;
}
html .owl-carousel .owl-nav [class*="owl-"]:hover {
    background: var(--text);
}
html .owl-carousel .owl-nav [class*="owl-"]:hover:before {
    filter: brightness(0) invert(1);
}
html .owl-carousel .owl-nav [class*="owl-"] span {
    display: none;
}
.new-ped-sec .row.g-3 {
    --bs-gutter-y: 30px;
    --bs-gutter-x: 20px;
}
.off-box {
    padding: 20px;
    padding-top: 0;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 100%);
    border-radius: 30px;
    width: 370px;
    min-width: 370px;
    position: sticky;
    top: 78px;
}
.off-box .box {
    background: var(--light);
    border-radius: 20px;
    padding: 20px 30px;
}
.off-box .box h6 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
    margin-bottom: 6px;
}
.off-box .box h3 {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 54px;
    line-height: 120%;
    color: var(--text);
    text-align: center;
    margin-bottom: 0;
}
.off-box .box .image {
    width: 100%;
    margin-right: -30px;
    margin-top: -9px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.off-box .box .image:before {
    content: '';
    display: block;
    background: var(--text);
    position: absolute;
    z-index: -1;
    top: 76px;
    right: 30px;
    left: 0;
    bottom: 58px;
}
.off-box .box .image img {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 9px 14px rgba(0, 0, 0, 0.18));
}
.off-box .box p {
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0.07em;
    text-align: center;
}
.shop-sec {
    padding: 100px 12px 12px;
}
.shop-sec .title {
    margin-bottom: 40px;
}
.shop-sec > .row {
    --bs-gutter-y: 12px;
    --bs-gutter-x: 12px;
}
.video-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.video-box .social-m {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 8px;
}
.video-box .social-m a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 20px;
}
.video-box .social-m a:hover {
    background: var(--dark);
}
.video-box .vimage {
    width: 100%;
    aspect-ratio: 3/4;
}
.video-box .vimage > * {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-box .prd-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    padding-top: 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.prd-info a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.prd-info .image {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
}
.prd-info .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prd-info h5 {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--light);
    margin-bottom: 4px;
    transition: all 0.4s;
}
.prd-info h5:hover {
    color: var(--secondary);
}
.prd-info h6 {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: var(--light);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.prd-info h6 del {
    color: rgba(255, 255, 255, 0.7);
}
.cta-sec {
    padding-block: 140px;
    background-image: url('/wp-content/uploads/2026/04/logo_make_11_06_2023_272-scaled.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.cta-sec .text {
    width: 507px;
    max-width: 100%;
    text-align: center;
}
.cta-sec .text h2 {
    font-weight: 400;
    font-size: 38px;
    line-height: 140%;
    color: var(--light);
    margin-bottom: 16px;
}
.cta-sec .text p {
    color: var(--light);
}
.cta-sec .text .btn-wpr {
    margin-top: 26px;
}
.cta-sec .cta-logo {
    display: block;
    width: 245px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 30px;
    filter: brightness(0) invert(1);
}
.insta-sec {
    padding: 60px 10px 10px;
}
html .insta-sec .title {
    margin-bottom: 12px;
}
.insta-sec .insta-acc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    line-height: 120%;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}
.insta-sec .insta-acc svg {
    display: block;
    width: 24px;
    height: 24px;
}
.insta-sec .post-wpr {
    margin-top: 50px;
}
.insta-sec .post-wpr .row {
    --bs-gutter-y: 10px;
    --bs-gutter-x: 10px;
}
.insta-post {
    display: block;
    width: 100%;
    padding-top: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.insta-post > img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insta-post .icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insta-post .icon img {
    display: block;
    padding: 9px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.4);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(4px);
    border-radius: 50px;
    transition: all 0.4s;
}
.insta-post .icon img:hover {
    background-image: url('/wp-content/uploads/2025/04/insta-bg.png');
}
.tmnl-sec {
    padding: 90px 30px 30px;
}
html .tmnl-sec .title {
    margin-bottom: 22px;
}
html .tmnl-sec .title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
html .tmnl-sec .title h2 span {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0) 100%);
    padding: 6px 0 6px 18px;
    border-radius: 15px;
}
html .tmnl-sec .title ~ p {
    text-align: center;
    margin-bottom: 0;
}
.tmnl-carousel {
    margin-top: 50px;
}
html .tmnl-carousel .owl-nav [class*="owl-"] {
    top: 0;
    bottom: 0;
    margin: auto;
}
.tmnl-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    overflow: hidden;
}
.tmnl-image {
    width: 300px;
    max-width: 100%;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.tmnl-image > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tmnl-text {
    padding: 30px;
}
.rattings {
    width: 120px;
    height: 24px;
    background-image: url("/wp-content/uploads/2025/04/blank-star.svg");
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 24px;
    margin-bottom: 12px;
}
.rattings .rate {
    height: 100%;
    background-image: url("/wp-content/uploads/2025/04/fill-star.svg");
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 24px;
}
.tmnl-text p {
    line-height: 150%;
    margin-bottom: 17px;
}
.tmnl-text h3 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 0;
}
.tmnl-box .prd-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tmnl-box .prd-info .image {
    width: 50px;
    min-width: 50px;
    height: 50px;
}
.tmnl-box .prd-info h5 {
    color: var(--text);
}
.tmnl-box .prd-info h5:hover {
    color: var(--secondary);
}
.tmnl-box .prd-info h6 {
    color: var(--text);
}
.tmnl-box .prd-info h6 del {
    color: rgba(17, 17, 17, 0.7);
}


/* Footer */
.footer-t {
    padding-block: 50px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.ficon-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ficon-box .icon {
    position: relative;
    z-index: 1;
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ficon-box .icon:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: rgba(236, 137, 81, 0.1);
    border-radius: 70px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.ficon-box h3 {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 10px;
}
.ficon-box p {
    font-size: 15px;
    font-weight: 300;
    line-height: 130%;
    accent-color: var(--accent);
}
html footer#site-footer {
    max-width: 100%;
    padding: 0;
}
html footer .footer-bottom {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    padding: 6px 0;
}
.footer-top {
    padding-block: 60px;
}
.footer-top .flogo {
    width: 315px;
    max-width: 100%;
}
.footer-top .flogo .site-logo {
    display: block;
    width: 167px;
    margin-bottom: 18px;
}
.footer-top .flogo .site-logo:hover {
    transform: scale(0.95);
}
.footer-top .flogo .site-logo img {
    display: block;
    width: 100%;
}
.footer-top .flogo p {
    line-height: 150%;
}
.footer-top h5 {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 18px;
}
.flinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.flinks ul li {
    display: block;
    line-height: 100%;
    margin-bottom: 10px;
}
.flinks ul li:last-child {
    margin-bottom: 0;
}
.flinks ul a {
    color: var(--text);
    font-size: 16px;
    line-height: 130%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.flinks ul a:before {
    content: '';
    display: block;
    width: 8px;
    min-width: 8px;
    height: 4px;
    background: var(--secondary);
    border-radius: 10px;
}
.flinks ul a:hover {
    color: var(--secondary);
}
.sign-up-form {
    width: 340px;
    max-width: 100%;
}
.sign-up-form h3 {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 14px;
}
.sign-up-form .es-form-field-container {
    position: relative;
}
.es-form-field-container .gjs-row:empty {
    display: none !important;
}
.sign-up-form .es-form-field-container .gjs-row {
    margin: 0 !important;
}
.sign-up-form .es-form-field-container input[type="submit"] {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44px;
    height: 44px;
    border: 0;
    background-color: var(--text);
    background-image: url('/wp-content/uploads/2025/04/send-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    border-radius: 10px;
}
.sign-up-form .es-form-field-container input[type="submit"]:hover {
    background-color: var(--secondary);
}
.sign-up-form .es-form-field-container .es-field-label {
    font-size: 15px;
    line-height: 120%;
    font-weight: 300;
    margin-bottom: 10px;
}
.sign-up-form .es-form-field-container input.es-email {
    padding: 0 54px 0 16px;
    height: 44px;
    border-color: rgb(17 17 17 / 10%);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    outline: none;
}
html .es_subscription_message.success {
    font-size: 14px;
    line-height: 140%;
    display: block;
}
.sign-up-form .emaillist {
    margin-bottom: 20px;
}
.social-icon ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}
.social-icon ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: rgba(17, 17, 17, 0.06);
}
.social-icon ul a:hover {
    background: var(--text);
}
.social-icon ul a img {
    transition: all 0.4s;
}
.social-icon ul a:hover img {
    filter: brightness(0) invert(1);
}

/* My Account page */
html main#content {
    max-width: 100%;
    padding: 0;
    min-height: 50vh;
}
.woocommerce-account .page-header {
    padding: 80px 25px;
    text-align: center;
    background: var(--bg-light);
}
.woocommerce-account .page-header h1.entry-title {
    max-width: 100%;
    margin: 0;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0;
}
.woocommerce-account main#content .page-content {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}
.woocommerce-account main#content .page-content:has(#customer_login) {
    width: 1270px;
}
.woocommerce-account #customer_login {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}
.woocommerce-account #customer_login:before, 
.woocommerce-account #customer_login:after {
    display: none;
}
.woocommerce-account #customer_login > * {
    float: none;
    width: 100%;
    flex: unset;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.woocommerce-account .lost_reset_password {
    width: 520px;
    max-width: 100%;
    padding: 50px;
    background: var(--bg-light);
    border: 1px solid #1111110F;
    border-radius: 20px;
    margin: 0 auto;
}
.woocommerce-account #customer_login h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 30px;
}
.woocommerce-account #customer_login form {
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
html .woocommerce form .form-row label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    margin-bottom: 9px;
}
html .woocommerce form .form-row .input-text, 
html .woocommerce form .form-row select {
    border: 1px solid #1111110F;
    border-radius: 8px;
    background: var(--light);
    height: 44px;
    padding: 0 22px;
    outline: 0;
}
html .woocommerce form .form-row {
    width: 100%;
    float: none;
    padding: 0;
    margin: 0 0 18px;
}
html .woocommerce form .form-row:last-child {
    margin-bottom: 0;
}
.woocommerce-privacy-policy-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    color: var(--text);
}
.woocommerce-privacy-policy-text p a {
    color: inherit;
    font-weight: 600;
}
.woocommerce-privacy-policy-text p a:hover {
    color: var(--secondary);
}
.woocommerce-privacy-policy-text {
    margin-bottom: 18px;
}
form.register .woocommerce-privacy-policy-text {
    order: 1;
}
html .woocommerce form .form-row:has(.woocommerce-button) {
    display: flex;
    flex-wrap: wrap;
}
html .woocommerce form .woocommerce-button {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    font-size: 15px;
    padding: 0 26px;
    line-height: 44px;
    background: var(--text);
    color: var(--light);
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
}
html .woocommerce form .woocommerce-button:hover {
    background: var(--secondary);
    color: var(--light);
}
html .woocommerce-LostPassword {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    color: var(--text);
}
html .woocommerce-LostPassword a {
    color: inherit;
    font-weight: 600;
}
html .woocommerce-LostPassword a:hover {
    color: var(--secondary);
}
html .woocommerce form.login .form-row:has(.woocommerce-button) .woocommerce-button {
    margin-top: 40px !important;
}
html .woocommerce form.register .form-row:has(.woocommerce-button) {
    margin-top: 12px;
}
html .woocommerce form.register .form-row:has(.woocommerce-button) .woocommerce-button {
    margin: 0 !important;
}
html .woocommerce form .form-row .woocommerce-form-login__rememberme {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-left: 30px;
    min-height: 22px;
    position: relative;
}
html .woocommerce form .form-row .woocommerce-form-login__rememberme input {
    display: none;
}
html .woocommerce form .form-row .woocommerce-form-login__rememberme span {
    display: block;
}
html .woocommerce form .form-row .woocommerce-form-login__rememberme span:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-color: var(--light);
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #1111110F;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}
html .woocommerce form .form-row .woocommerce-form-login__rememberme input:checked ~ span:before {
    background-color: var(--dark);
    background-image: url('/wp-content/uploads/2025/04/check-icon.svg');
}
html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message) {
    padding: 14px 20px;
    background: var(--bg-light);
    border-radius: 6px;
    border: 1px solid #1111110F;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message):before,
html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message):after {
    display: none;
}
html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message) .button {
    float: none !important;
    display: inline-block;
    background: var(--text);
    color: var(--light);
    border-radius: 50px;
    padding: 0 26px;
    line-height: 42px;
    font-weight: 500;
    font-size: 15px;
}
html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message) .button:hover {
    background: var(--secondary);
    color: var(--light);
}
html .woocommerce-error {
    border-color: #D62B39;
    color: #D62B39;
}
html .woocommerce form .form-row:has(.woocommerce-Button) {
    margin-bottom: 0;
}
html .woocommerce form .form-row .woocommerce-Button {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 0 26px;
    line-height: 44px;
    background: var(--text);
    color: var(--light);
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
}
html .woocommerce form .form-row .woocommerce-Button:hover {
    background: var(--secondary);
}
.woocommerce-account .page-content > .woocommerce {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.woocommerce-account .page-content > .woocommerce:before,
.woocommerce-account .page-content > .woocommerce:after {
    display: none;
}
.woocommerce-account main#content {
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}
.woocommerce-account .page-header {
    display: none;
}
.woocommerce-account.logged-in main#content {
    border-top: 0;
    border-bottom: 0;
}
.woocommerce-account.logged-in .page-header {
    display: block;
}
html .woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 20%;
}
html .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 80%;
    padding-left: 60px;
}
.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.woocommerce-MyAccount-navigation ul li + li {
    margin-top: 12px;
}
.woocommerce-MyAccount-navigation ul a {
    color: var(--text);
    background: var(--bg-light);
    font-size: 18px;
    display: block;
    line-height: 140%;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.woocommerce-MyAccount-navigation ul a:hover,
.woocommerce-MyAccount-navigation ul .is-active a {
    background: var(--text);
    color: var(--light);
}
html .woocommerce-account .woocommerce-MyAccount-content > p {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}
html .woocommerce-account .woocommerce-MyAccount-content > p strong {
    font-weight: 600;
}
html .woocommerce-account .woocommerce-MyAccount-content > p a {
    color: inherit;
    font-weight: 600;
}
html .woocommerce-account .woocommerce-MyAccount-content > p a:hover {
    color: var(--secondary);
}
html .woocommerce-Addresses {
    display: flex;
    gap: 30px;
}
html .woocommerce-Addresses:before, 
html .woocommerce-Addresses:after {
    display: none !important;
}
html .woocommerce-Addresses .woocommerce-Address {
    float: none !important;
    width: 100% !important;
    flex: unset !important;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 10px;
    overflow: hidden;
}
html .woocommerce-Addresses .woocommerce-Address .title {
    padding: 12px 20px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}
html .woocommerce-Addresses .woocommerce-Address .title:before,
html .woocommerce-Addresses .woocommerce-Address .title:after {
    display: none;
}
html .woocommerce-Addresses .woocommerce-Address .title h2 {
    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 400;
}
html .woocommerce-account .addresses .title .edit {
    float: none;
    display: block;
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0;
    background-image: url('/wp-content/uploads/2025/04/edit-address.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
html .woocommerce-account .addresses .title .edit:hover {
    opacity: 0.6;
}
html .woocommerce-Addresses .woocommerce-Address address {
    padding: 20px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 160%;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .clear:empty {
    display: none;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row {
    margin-bottom: 0;
}
html #account_display_name_description {
    font-size: 12px;
    display: block;
    line-height: 140%;
}
html #account_display_name_description em {
    display: block;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgb(17 17 17 / 6%);
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
    grid-column: span 3;
    font-size: 20px;
    margin-bottom: 0;
    display: block;
    line-height: 120%;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset label {
    font-size: 12px;
    font-weight: 400;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm p:has(.button) {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .button {
    padding: 0 24px;
    line-height: 44px;
    background: var(--text);
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .button:hover {
    background: var(--secondary);
}
.woocommerce-MyAccount-content .woocommerce-address-fields {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}
html .select2-container .select2-selection {
    border: 0;
    margin-bottom: 0;
    display: block;
    background: transparent;
}
html .select2-container .select2-selection--single .select2-selection__rendered {
    border: 1px solid #1111110F;
    border-radius: 8px;
    background: var(--light);
    color: var(--text);
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    outline: 0;
}
html .select2-container .select2-selection--single .select2-selection__placeholder {
    line-height: 44px;
}
html .select2-container .select2-selection--single .select2-selection__arrow {
    top: 0;
    right: 22px;
}
html .select2-container .select2-dropdown--below,
html .select2-container.select2-container--open .select2-dropdown--above {
    margin-top: 6px;
    border: 1px solid rgb(17 17 17 / 20%) !important;
    border-radius: 6px !important;
    overflow: hidden;
}
html .select2-container.select2-container--open .select2-dropdown--above {
    margin-top: -6px;
}
html .select2-search--dropdown {
    padding: 6px;
    border-bottom: 1px solid rgb(17 17 17 / 20%);
}
html .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgb(17 17 17 / 20%);
    border-radius: 4px;
    background: var(--light);
    height: 36px;
    padding: 0 14px;
    outline: 0;
}
html .select2-results__option {
    padding: 10px 12px;
    color: var(--text);
    font-weight: 400;
    background: var(--light);
    line-height: normal;
    font-size: 14px;
    border-bottom: 1px solid rgb(17 17 17 / 20%);
}
html .select2-results__option.select2-results__option--highlighted,
html .select2-results__option[data-selected="true"] {
    background: var(--bg-light) !important;
    color: var(--text) !important;
}
form:has(.woocommerce-address-fields) h2 {
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 10px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields > p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button {
    padding: 0 24px;
    line-height: 44px;
    background: var(--text);
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button:hover {
    background: var(--secondary);
    color: var(--light);
}

.woocommerce-account #customer_login form {
    display: flex;
    flex-wrap: wrap;
}
html .woocommerce form .form-row.grouped-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 0;
}
html .woocommerce form .form-row.grouped-fields:before, html .woocommerce form .form-row.grouped-fields:after {
    display: none;
}
html .woocommerce form .form-row.grouped-fields:has(#reg_password) {
    order: 1;
}
html .woocommerce form .form-row:has(.woocommerce-form-register__submit) {
    order: 1;
}
html .woocommerce form .form-row.grouped-fields:has(#reg_password) #password_strength {
    order: 1;
}

/* Cart Page */
html .woocommerce-cart main#content {
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}
html .woocommerce-cart .page-header {
    display: none;
}
html .woocommerce-cart .wp-block-woocommerce-cart {
    margin-inline: 0;
}
html .woocommerce-cart .wc-block-cart,
html .woocommerce-cart .wc-block-cart table.wc-block-cart-items,
html .wc-block-cart__submit {
    margin-bottom: 0;
}
html .woocommerce-cart .wc-block-cart__main {
    width: 50%;
    padding: 50px 25px;
}
html .woocommerce-cart .wc-block-cart__main:before {
    content: 'My Cart';
    display: block;
    font-size: 30px;
    line-height: 110%;
    width: 560px;
    max-width: 100%;
    margin: 0 auto 40px;
    font-family: var(--title-font);
}
html .woocommerce-cart .wc-block-cart__main table.wc-block-cart-items {
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
}
html .woocommerce-cart .wc-block-cart__sidebar {
    padding: 50px 25px;
    width: 50%;
    background: #F5F5F5;
}
html .woocommerce-cart .wc-block-cart__sidebar > * {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
}
html .woocommerce-cart .wc-block-cart h2.wc-block-cart__totals-title {
    font-family: var(--title-font);
    padding: 0;
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 30px;
    text-transform: none;
    font-weight: 400;
}
html .woocommerce-cart .wc-block-components-button:disabled {
    opacity: 0.5;
}
html .woocommerce-cart .wc-block-components-button:disabled .wc-block-components-button__text {
    opacity: 1;
}
html .woocommerce-cart .wc-block-components-totals-coupon__form {
    align-items: flex-end;
}
html .woocommerce-cart .wc-block-components-button {
    min-height: 0 !important;
    border: 0;
    padding: 0 25px;
    background: var(--text);
    color: var(--light);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
html .woocommerce-cart .wc-block-components-button:hover {
    background: var(--secondary);
    color: var(--light);
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block {
    border: 1px solid #0000001A;
    border-bottom: 0;
    background: var(--bg-light);
    padding: 20px;
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
}
html .woocommerce-cart .wc-block-components-totals-wrapper {
    padding: 0;
}
html .woocommerce-cart .wc-block-components-totals-wrapper > * {
    padding: 0 0 12px !important;
}
html .woocommerce-cart .wc-block-components-totals-wrapper .wc-block-components-totals-shipping > .wc-block-components-totals-item {
    padding: 0;
}
html .woocommerce-cart .wc-block-components-totals-wrapper .wc-block-components-totals-shipping .wc-blocks-components-select__container {
    background: transparent;
}
html body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wp-block-woocommerce-cart-order-summary-coupon-form-block {
    margin-bottom: 30px;
    border-top: 1px solid #0000001A;
    border-radius: 10px;
}
html body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wp-block-woocommerce-cart-order-summary-coupon-form-block > * {
    padding: 0 !important;
    border: 0;
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block .wc-block-components-panel__button {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block input {
    font-weight: 400 !important;
    font-size: 16px !important;
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper {
    border: 1px solid #0000001A;
    border-top: 0;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper > * {
    padding: 14px 0 0 !important;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper * {
    font-weight: inherit;
    outline: 0;
}
html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item * {
    font-size: 20px;
}
html .woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit {
    margin-top: 30px;
}
html .woocommerce-cart  table.wc-block-cart-items thead {
    display: none;
}
html .woocommerce-cart .wc-block-cart-item__image {
    padding: 8px 0 !important;
    border-color: var(--bg-light) !important;
    width: 112px;
    min-width: 112px;
}
html .woocommerce-cart .wc-block-cart-item__product {
    padding: 8px 0 8px 22px !important;
    border-color: var(--bg-light) !important;
    vertical-align: middle !important;
}
html .woocommerce-cart .wc-block-cart-item__total {
    display: none;
}
html .woocommerce-cart .wc-block-cart-item__image a {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
}
html .woocommerce-cart .wc-block-cart-item__image a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
html .woocommerce-cart .wc-block-cart-item__image a img:hover {
    transform: scale(1.1);
}
html .woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name {
    font-size: 24px;
    color: var(--text);
    text-decoration: none;
    display: block !important;
    line-height: 110% !important;
    margin-bottom: 8px !important;
    max-width: unset !important;
    width: 100%;
}
html .woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name:hover {
    color: var(--secondary);
}
html .woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices {
    display: block;
    margin-bottom: 14px !important;
    line-height: 120% !important;
    width: 100%;
}
html .woocommerce-cart .wc-block-cart-item__wrap .price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 300;
}
html .woocommerce-cart .wc-block-cart-item__wrap .price del {
    color: rgba(68, 68, 68, 0.7);
    line-height: 120%;
    display: block;
}
html .woocommerce-cart .wc-block-cart-item__wrap .price ins {
    margin: 0;
    line-height: 120%;
    display: block;
}
html .woocommerce-cart .wc-block-components-product-badge {
    display: none;
}
html .woocommerce-cart .wc-block-components-product-metadata {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0 !important;
}
html .woocommerce-cart .wc-block-components-product-metadata .wc-block-components-product-details {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
html .woocommerce-cart .wc-block-components-product-metadata .wc-block-components-product-details__name {
    font-weight: 300;
}
.wc-block-components-product-metadata:empty {
    display: none;
}
html .woocommerce-cart .wc-block-cart-item__quantity {
    margin-left: auto;
}
html .wc-block-components-quantity-selector:after {
    display: none;
}
html .wc-block-components-quantity-selector {
    margin-bottom: 0 !important;
    padding: 3px;
    border-radius: 50px;
    background: var(--bg-light);
    box-sizing: border-box;
    width: unset;
    display: inline-flex;
}
html .wc-block-components-quantity-selector button {
    width: 26px;
    min-width: 26px !important;
    height: 26px;
    font-size: 18px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    background: var(--light) !important;
    border-radius: 50px !important;
}
html .wc-block-components-quantity-selector button:hover {
    background: var(--dark) !important;
    color: var(--light);
}
html .wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
    font-size: 15px !important;
    font-weight: 500 !important;
    width: 52px;
    height: auto;
    padding: 0 !important;
}
.wc-block-cart-items__row:focus-visible {
    outline: 0;
}
html .wc-block-cart-item__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
html .wc-block-cart-item__wrap .wc-block-cart-item__remove-link {
    font-size: 0 !important;
    width: 18px;
    height: 18px;
    background-image: url('/wp-content/uploads/2025/04/remove-icon.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px !important;
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px !important;
}
html .wc-block-cart-item__wrap .wc-block-cart-item__remove-link:hover {
    background-size: 22px !important;
}
html .wc-block-cart-items__row {
    position: relative;
}
html .wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
    line-height: normal;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Checkout page */
html .woocommerce-checkout {
    padding-top: 89px;
}
html .woocommerce-checkout .promobar-marquee-wrapper,
html .woocommerce-checkout .header-navbar,
html .woocommerce-checkout .hsearch,
html .woocommerce-checkout .msearch {
    display: none !important;
}
html.sticky .woocommerce-checkout .header-wpr {
    margin-top: 0;
}
html .woocommerce-checkout main#content {
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}
html .woocommerce-checkout .page-header {
    display: none;
}
html .woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 0;
}
html .woocommerce-checkout .wc-block-components-sidebar-layout {
    margin: 0;
}
html .woocommerce-checkout .wc-block-components-main,
html .woocommerce-checkout .wc-block-components-sidebar {
    width: 50%;
    padding: 50px 25px;
}
html .woocommerce-checkout .wc-block-components-sidebar {
    background: #F5F5F5;
    position: static !important;
    margin: 0;
    align-self: unset;
}
html .woocommerce-checkout .wc-block-checkout__form {
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
}
html .woocommerce-checkout .wc-block-checkout__form:before {
    content: 'Delivery Address';
    display: block;
    font-size: 30px;
    line-height: 110%;
    font-weight: 400;
    font-family: var(--title-font);
    margin-bottom: 40px;
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkout-step__heading {
    margin: 0 0 12px;
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkout-step__heading h2 {
    font-size: 22px;
    display: block;
    line-height: 110%;
    font-weight: 400;
}
html .woocommerce-checkout .wc-block-checkout__form input,
html .woocommerce-checkout .wc-block-checkout__form select {
    background-color: var(--bg-light) !important;
    border: 0 !important;
}
html .woocommerce-checkout .wc-block-components-checkout-step__container p {
    display: block;
    line-height: 140%;
    font-size: 16px;
}
html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    position: sticky;
    top: 100px;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__title {
    display: block;
    margin: 0;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__title p {
    font-size: 30px;
    font-family: var(--title-font);
    font-weight: 400 !important;
    margin: 0 0 40px !important;
    line-height: 110%;
}
html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block {
    padding: 0;
    margin-bottom: 28px;
}
html .woocommerce-checkout .wc-block-components-order-summary {
    padding: 0;
}
html .woocommerce-checkout .wc-block-components-order-summary-item {
    padding-block: 8px !important;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    align-items: center;
}
html .woocommerce-checkout .wc-block-components-order-summary-item:last-child {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
html .woocommerce-checkout .wc-block-components-order-summary-item__image {
    margin: 0;
    padding: 0;
    width: 75px;
    min-width: 75px;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__quantity {
    position: absolute;
    top: -5px;
    left: 60px;
    right: auto;
    transform: none;
    background: var(--secondary);
    line-height: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #FFF;
    padding: 0 7px;
    border-radius: 50px;
    border: 0;
    box-shadow: none;
    min-width: 0;
    min-height: 0;
    display: flex;
    min-width: 20px;
    text-align: center;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__description {
    padding: 0;
    padding-left: 16px;
    padding-right: 100px;
    flex: 1;
    position: relative;
}
html .woocommerce-checkout .wc-block-components-product-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 8px;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: 300;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__individual-prices del {
    display: none;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__individual-prices ins {
    margin: 0;
    display: block;
}
html .woocommerce-checkout .wc-block-components-order-summary-item__total-price {
    display: none;
}
html .woocommerce-checkout .wc-block-components-product-metadata {
    line-height: normal !important;
    margin: 0 !important;
}
html .woocommerce-checkout .wc-block-components-product-metadata .wc-block-components-product-details {
    margin-top: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}
html .woocommerce-checkout .wc-block-components-product-metadata .wc-block-components-product-details > * {
    display: flex;
    align-items: center;
    gap: 6px;
}
html .woocommerce-checkout .wc-block-components-product-metadata .wc-block-components-product-details .wc-block-components-product-details__name {
    font-weight: 300;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wc-block-components-totals-wrapper {
    border: 1px solid #0000001A;
    border-top: 0;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
    margin-bottom: 30px;
    border-top: 1px solid #0000001A;
    border-radius: 10px;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wp-block-woocommerce-checkout-order-summary-coupon-form-block > * {
    padding: 0;
    border: 0;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wp-block-woocommerce-checkout-order-summary-coupon-form-block * {
    font-weight: inherit;
    outline: 0;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content .wc-block-components-panel__button {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form {
    align-items: flex-end;
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form button {
    min-height: 0 !important;
    border: 0;
    padding: 0 25px;
    background: var(--text);
    color: var(--light);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form button:hover {
    background: var(--secondary);
    color: var(--light);
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form button:disabled {
    opacity: 0.5;
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form button:disabled .wc-block-components-button__text {
    opacity: 1;
}
html .woocommerce-checkout .wc-block-components-totals-coupon__form input {
    font-weight: 400 !important;
    font-size: 16px !important;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wp-block-woocommerce-checkout-order-summary-cart-items-block {
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wc-block-components-totals-wrapper * {
    font-weight: inherit;
    outline: 0;
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wc-block-components-totals-wrapper > .wc-block-components-totals-footer-item {
    padding: 14px 0 0 !important;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
}
html .woocommerce-checkout .wc-block-components-checkout-order-summary__content > .wc-block-components-totals-wrapper > .wc-block-components-totals-footer-item * {
    font-size: 20px;
}
html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
    border: 1px solid #0000001A;
    border-bottom: 0;
    background: var(--bg-light);
    padding: 20px;
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
}
html .woocommerce-checkout .wc-block-components-totals-wrapper {
    padding: 0;
}
html .woocommerce-checkout .wc-block-components-totals-wrapper > .wc-block-components-totals-item {
    padding: 0 0 12px !important;
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkbox input {
    outline: 0 !important;
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkbox input:checked {
    background: #000 !important;
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkbox input:checked ~ svg {
    filter: brightness(0) invert(1);
}
html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkbox .wc-block-components-checkbox__label {
    font-size: 16px;
    display: block;
    line-height: normal;
}
html .wc-block-components-text-input,
html .wc-blocks-components-select__container {
    display: flex;
    flex-direction: column;
    height: auto !important;
}
html .wc-block-components-text-input input,
html .wc-blocks-components-select__container select {
    border: 1px solid #1111110F !important;
    border-radius: 8px !important;
    background: var(--light);
    height: 44px !important;
    padding: 0 22px !important;
    outline: 0;
}
html .wc-block-components-text-input label,
html .wc-blocks-components-select__container label {
    display: block;
    color: var(--text) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 100% !important;
    margin-bottom: 9px !important;
    transform: none !important;
    position: static !important;
    order: -1;
    overflow: unset !important;
    outline: 0 !important;
}
html .wc-block-components-validation-error {
    font-size: 14px;
    padding: 2px 0 0;
    min-height: 0;
    line-height: 140%;
}
html .wc-block-components-validation-error p {
    font-size: inherit !important;
    line-height: inherit !important;
}
html .wc-blocks-components-select__container select {
    background-color: var(--light) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;
    background-size: 16px 12px !important;
}
html .wc-blocks-components-select__container svg {
    display: none;
}
html .wc-block-components-textarea {
    border: 1px solid #1111110F;
    border-radius: 8px;
    background: var(--light);
    height: 100px;
    padding: 12px 14px;
    outline: 0;
    resize: none;
}
html .woocommerce-checkout .wc-block-components-radio-control:after {
    display: none;
}
html .woocommerce-checkout .wc-block-components-radio-control__option {
    border: 1px solid rgba(17, 17, 17, 0.2);
    padding: 14px;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}
html .woocommerce-checkout .wc-block-components-radio-control__option:first-child {
    border-radius: 10px 10px 0 0 !important;
}
html .woocommerce-checkout .wc-block-components-radio-control__option:last-child {
    border-radius: 0 0 10px 10px !important;
}
html .woocommerce-checkout .wc-block-components-radio-control__option--checked-option-highlighted {
    border-color: var(--text);
}
html .woocommerce-checkout .wc-block-components-radio-control__option input.wc-block-components-radio-control__input {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(17, 17, 17, 0.2) !important;
    transform: none;
    top: 0;
    left: 0;
    outline: 0 !important;
}
html .woocommerce-checkout .wc-block-components-radio-control__option input.wc-block-components-radio-control__input:before {
    background: #000;
    position: absolute;
    inset: 0;
    transform: none;
    width: auto;
    height: auto;
    box-shadow: 0 0 0 5px #FFF inset;
}
html .woocommerce-checkout .wc-block-components-radio-control__option input.wc-block-components-radio-control__input:checked {
    border-color: #000 !important;
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option {
    border: 1px solid rgba(17, 17, 17, 0.2);
    padding: 14px;
    border-radius: 0;
    box-shadow: none !important;
    margin-bottom: -1px;
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option:first-child {
    border-radius: 10px 10px 0 0;
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option:last-child {
    border-radius: 0 0 10px 10px;
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border-color: var(--text);
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option label {
    border: 0;
    padding: 0 !important;
}
html .woocommerce-checkout .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
    padding: 0;
    margin-top: 14px;
}
html .woocommerce-checkout .wc-block-components-totals-wrapper .wc-block-components-totals-item {
    padding: 0;
}
html .woocommerce-checkout .wc-block-components-totals-wrapper .wc-block-components-shipping-address:empty {
    display: none;
}
html .woocommerce-checkout .wc-block-checkout__form textarea {
    background: var(--bg-light);
    border: 0;
}
html .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    display: none;
}
html .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    min-height: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: var(--light);
    background: var(--text);
    border: 0;
    border-radius: 50px;
    padding: 0 30px;
    line-height: 44px;
    transition: all 0.4s;
}
html .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    background: var(--secondary);
}
/* Shop page */
.woocommerce-shop main#main,
.tax-product_cat main#main {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
    position: relative;
}
html ul.products:before, html ul.products:after {
    display: none !important;
}
html ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1% !important;
}
html ul.products li.product {
    width: 23% !important;
    margin: 0 1% !important;
    float: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}
html ul.products li.product .onsale {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    padding: 5px 11px;
    background: var(--secondary);
    border-radius: 40px;
    display: block;
    position: absolute;
    z-index: 1;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    margin: 10px !important;
    min-width: 0;
    min-height: auto;
}
html ul.products li.product .woocommerce-LoopProduct-link img {
    display: block;
    aspect-ratio: 3/4;
    object-fit: contain;
}
html ul.products li.product .woocommerce-LoopProduct-link h2 {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 120%;
    font-family: var(--body-font);
    color: var(--text);
    margin-bottom: 8px !important;
    text-align: center;
    padding: 0 !important;
}
html ul.products li.product .woocommerce-LoopProduct-link .price {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}
html ul.products li.product .woocommerce-LoopProduct-link .price ins {
    font-weight: inherit;
    text-decoration: none;
}
html ul.products li.product .star-rating {
    margin: 0 auto 10px;
    color: var(--text);
}
html ul.products li.product .add_to_cart_button {
    width: auto;
    background: var(--text);
    color: var(--light);
    text-align: center;
    border-radius: 50px;
    padding: 0 26px;
    line-height: 40px;
    font-size: 15px;
    font-weight: 500;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
html ul.products li.product .add_to_cart_button:hover {
    background: var(--secondary);
}
html ul.products li.product .add_to_cart_button:after {
    position: static;
    margin: 0;
}
html ul.products li.product .added_to_cart {
    padding: 0;
    margin-top: 10px;
    color: var(--dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}
html ul.products li.product .added_to_cart:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
html ul.products li.product .added_to_cart:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2025/04/right-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0);
    transition: all 0.4s;
}
html ul.products li.product .added_to_cart:hover:after {
    transform: translateX(4px);
}
header.woocommerce-products-header {
    margin-left: calc(-50vw + 50% - 8px);
    text-align: center;
    width: 100vw;
    background-color: var(--bg-light);
    margin-bottom: 70px;
}
header.woocommerce-products-header h1.page-title {
    font-size: 58px;
    padding: 90px 10px 75px;
    margin-bottom: 0;
}
.woocommerce-shop .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    left: -12px;
    top: 60px;
    font-size: 16px;
    text-transform: uppercase;
    color: #767676;
    letter-spacing: 1px;
}
.woocommerce-shop .woocommerce-breadcrumb a,
.tax-product_cat .woocommerce-breadcrumb a {
    color: var(--text);
}
.woocommerce-shop .woocommerce-breadcrumb a:hover,
.tax-product_cat .woocommerce-breadcrumb a:hover {
    color: var(--secondary);
}
html .woocommerce-shop .woocommerce-ordering select,
html .tax-product_cat .woocommerce-ordering select {
    border: 1px solid #1111110F;
    border-radius: 50px !important;
    background-color: var(--light);
    height: 44px;
    padding: 0 22px;
    outline: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
html .woocommerce-shop #primary {
    padding-bottom: 40px;
}
html .sizeguide {
    text-align: end;
    font-size: 14px;
    line-height: normal;
    text-decoration: underline;
    color: var(--accent);
    cursor: pointer;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}
.single-product .modal-dialog {
    width: 1000px;
    max-width: 100%;
}
.single-product .modal-dialog .modal-content {
    border: 0;
    border-radius: 20px;
}
.single-product .modal-body {
    padding: 40px;
    padding-top: 30px;
}
.single-product .modal-body .titlewpr {
    text-align: center;
    margin-bottom: 30px;
}
.single-product .modal-body .titlewpr h2 {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 0;
    font-weight: 400;
}
.single-product .modal-body .table-responsive {
    margin-bottom: 30px;
}
.single-product .modal-body .table-responsive table {
    margin-bottom: 0;
    text-align: center;
}
.single-product .modal-body .btn-close {
    opacity: 1;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 5L5 19M5 5L19 19" stroke="%23C30001" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    padding: 0;
    width: 24px;
    height: 24px;
    background-position: center;
    background-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 16px;
    background-color: transparent;
}
.single-product .modal-body .btn-close:hover {
    background-size: 30px;
}
.single-product .modal-body .text h3 {
    font-size: 26px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 14px;
}
.single-product .modal-body .text p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 12px;
}
.single-product .modal-body .text p:last-child {
    margin-bottom: 0;
}
.single-product .modal-body p:empty {
    display: none;
}
.single-product .modal-body table :is(th,td) {
    border-color: rgba(17, 17, 17, 0.1) !important;
    background: transparent;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
    color: var(--accent);
    padding: 10px 10px;
}
.single-product .modal-body table th {
    background: #F5F5F5;
    font-weight: 500;
    color: var(--text);
}
.single-product .modal {
    padding: 25px;
}
/* .single-product .modal-body table thead tr:first-child > *:first-child {
    border-top-left-radius: 8px;
}
.single-product .modal-body table thead tr:first-child > *:last-child {
    border-top-right-radius: 8px;
}
.single-product .modal-body table tbody tr:last-child > *:first-child {
    border-bottom-left-radius: 8px;
}
.single-product .modal-body table tbody tr:last-child > *:last-child {
    border-bottom-right-radius: 8px;
} */
/* Faq Page*/
.innerbanner {
    background-image: url('/wp-content/uploads/2025/04/Her-Innerbanner-BG.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-block: 70px;
}
.innerbanner:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--dark);
    opacity: 0.6;
}
.innerbanner .breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}
.innerbanner .breadcrumb .breadcrumb-item {
    color: var(--light);
    font-size: 13px;
    font-weight: 300;
    display: block;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}
html .breadcrumb-item+.breadcrumb-item {
    margin-left: 8px;
}
html .breadcrumb-item+.breadcrumb-item::before {
    background-image: url('data:image/svg+xml,<svg width="7" height="11" viewBox="0 0 7 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 1.5C1.5 1.5 5.5 4.446 5.5 5.5C5.5 6.5541 1.5 9.5 1.5 9.5" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    font-size: 0;
    width: 12px;
    height: 12px;
    padding: 0;
}
.innerbanner .breadcrumb .breadcrumb-item a {
    color: inherit;
}
.innerbanner .breadcrumb .breadcrumb-item a:hover {
    opacity: 0.7;
}
.innerbanner h1 {
    color: var(--light);
    font-size: 46px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 0;
}
.faq-sec {
    padding-bottom: 40px;
}
html .accordion-item {
    margin-bottom: 10px;
    border-radius: 18px !important;
    box-shadow: none;
    color: inherit;
    background-color: transparent;
    border: 1px solid rgba(17, 17, 17, 0.14) !important;
    padding: 20px 22px;
}
html .accordion-item:last-child {
    margin-bottom: 0;
}
html .accordion-button {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 0 !important;
    background: transparent;
    border: 0;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: var(--text);
    white-space: normal;
}
html .accordion-button:focus,
html .accordion-button:hover {
    background: transparent;
    color: var(--text);
}
html .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: var(--text);
}
html .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(17, 17, 17, 0.14);
}
html .accordion-body {
    padding: 16px 34px 0 0;
}
html .accordion-button::after {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: var(--bg-light);
    background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 1V11M11 6H1" stroke="%23111111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
html .accordion-button:not(.collapsed)::after {
    background-color: var(--text);
    background-image: url('data:image/svg+xml,<svg width="12" height="2" viewBox="0 0 12 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1H1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}
.contact-box .item {
    padding: 50px 30px;
    background: var(--text);
    border-radius: 30px;
    text-align: center;
}
.contact-box .item h3 {
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 14px;
}
.contact-box .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50px;
    margin: 0 auto 14px;
}
.contact-box .item h5 {
    font-family: var(--body-font);
    color: rgba(17, 17, 17, 0.7);
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 3px;
}
.contact-box .item h6 {
    font-family: var(--body-font);
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 0;
}
.contact-box .item h6 a {
    color: inherit;
}
.contact-box .item h6 a:hover {
    color: var(--secondary);
}
.contact-box .item:nth-child(even) {
    background: var(--light);
    border: 1px solid rgba(17, 17, 17, 0.14);
}
.contact-box .item:nth-child(even) .icon {
    background: var(--bg-light);
}
.contact-box .item + .item {
    margin-top: -24px;
}
.contact-box .item:nth-child(odd) {
    color: var(--light);
}
.contact-box .item:nth-child(odd) * {
    color: inherit;
}
.contact-box .item:nth-child(odd) .icon svg {
    filter: brightness(0) invert(1);
}
.contact-box .item:nth-child(odd) h5 {
    opacity: 0.7;
}
.contact-box .item:nth-child(odd) .icon {
    background: rgba(255, 255, 255, 0.12);
}

/* Contact Us Page */
.ctext h6 {
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 130%;
    font-weight: 300;
    margin-bottom: 18px;
}
.ctext h3 {
    font-size: 50px;
    line-height: 130%;
    font-weight: 400;
    padding-right: 60px;
    margin-bottom: 18px;
}
.ctext p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: var(--accent);
    padding-right: 115px;
    margin-bottom: 0;
}
.ctext .contact-info {
    margin-top: 50px;
}
.ctext .contact-info .row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 40px;
}
.ctext .contact-info h4 {
    color: var(--dark);
    font-size: 26px;
    line-height: 130%;
    font-weight: 400;
    margin-bottom: 16px;
}
.ctext .contact-info a {
    display: block;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: var(--accent);
    margin-bottom: 4px;
}
.ctext .contact-info a:hover {
    color: var(--secondary);
}
.ctext .contact-info a:last-child {
    margin-bottom: 0;
}
.ctext .contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}
.ctext .contact-info ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: rgba(17, 17, 17, 0.06);
}
.ctext .contact-info ul a:hover {
    background: var(--dark);
}
.ctext .contact-info ul a img {
    transition: all 0.4s;
}
.ctext .contact-info ul a:hover img {
    filter: brightness(0) invert(1);
}
.form-box {
    padding: 50px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid rgba(17, 17, 17, 0.06);
    width: 600px;
    max-width: 100%;
    margin-left: auto;
}
.form-box h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 110%;
    text-align: center;
    margin-bottom: 30px;
}
.form-box br {
    display: none;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 9px;
}
.form-field label em {
    font-style: normal;
    color: #D62B39;
}
.form-field .wpcf7-quiz-label {
    margin-bottom: 9px;
    display: block;
}
html .wpcf7-form-control {
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 8px;
    background: var(--light);
    height: 44px;
    padding: 11px 22px;
    outline: 0;
}
html textarea.wpcf7-form-control {
    height: 130px;
    resize: none;
}
html .wpcf7-form-control::placeholder {
    color: rgba(68, 68, 68, 0.5);
}
.form-submit p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}
.form-submit input[type="submit"] {
    background: var(--text);
    color: var(--light);
    border-radius: 50px;
    border: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 44px;
    height: auto;
    padding: 0 50px;
}
.form-submit input[type="submit"]:hover {
    background: var(--secondary);
}
.form-submit .wpcf7-spinner {
    position: absolute;
    margin: auto;
}
.map-wpr {
    padding: 0 20px;
}
.map-wpr iframe {
    width: 100%;
    height: 570px;
    border-radius: 20px;
    filter: grayscale(1);
    transition: all 0.4s;
}
.map-wpr iframe:hover {
    filter: grayscale(0);
}


/* Product Details Page */
.product-page-wrapper {
    border-block: 1px solid rgba(17, 17, 17, 0.1);
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    width: 1370px;
    padding: 0 25px;
    max-width: 100%;
    margin: 0 auto;
}
.product-info-left {
    width: 30%;
    padding: 30px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}
.product-purchase-section {
    padding: 30px;
    padding-right: 0;
    width: 30%;
}
.product-image {
    width: 40%;
    padding: 30px;
    border-inline: 1px solid rgba(17, 17, 17, 0.1);
}
html .product-info-left .woocommerce-breadcrumb {
    font-size: 13px;
    color: var(--accent) !important;
    line-height: normal;
    font-weight: 300;
    margin-bottom: 20px;
}
html .product-info-left .woocommerce-breadcrumb a {
    color: inherit;
}
html .product-info-left .woocommerce-breadcrumb a:hover {
    color: var(--text);
}
.product-page-wrapper .product-title {
    font-size: 46px;
    line-height: 120%;
    margin-bottom: 14px;
    font-weight: 400;
}
html .product-info-left .product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 6px;
    font-size: 14px;
    line-height: 110%;
    color: var(--accent);
    font-weight: 300;
}
html .product-info-left .product-rating .star-rating {
    color: #FFA719;
}
.product-accordion {
    margin-top: auto;
}
.product-accordion .content {
    display: none;
}
html .product-accordion .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    margin-bottom: 0;
    padding: 13px 0;
    cursor: pointer;
}
html .product-accordion .title h4 {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
}
html .product-accordion .title .icon {
    display: block;
    width: 14px;
    min-width: 14px;
    height: 14px;
    position: relative;
}
html .product-accordion .title .icon:before,
html .product-accordion .title .icon:after {
    content: '';
    display: block;
    width: 10px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.4s;
    position: absolute;
    inset: 0;
    margin: auto;
}
html .product-accordion .title .icon:after {
    transform: rotate(90deg);
}
html .product-accordion .active .title .icon:after {
    transform: rotate(0deg);
}
.product-accordion .active .content {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    padding-right: 10px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 300;
    color: var(--accent);
}
.product-image .woocommerce-product-gallery {
    position: relative;
}
.product-image .woocommerce-product-gallery__trigger {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 34px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image .flex-control-thumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.product-image .flex-control-thumbs li {
    width: 36px;
    height: 36px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
}
.product-image .flex-control-thumbs li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image .woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
    height: 545px;
    overflow: hidden;
    background: var(--bg-light);
}
.product-image .woocommerce-product-gallery__image a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-image .flex-viewport {
    border-radius: 12px;
}
.product-price .price {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 28px;
}
.product-purchase-section .variations {
    margin-bottom: 28px;
}
.product-purchase-section .variations tbody {
    display: flex;
    flex-direction: column;
}
.product-purchase-section .variations tr:first-child {
    order: 1;
    margin-top: 28px;
}
.product-purchase-section .variations :is(th,td) {
    background: transparent;
    border: 0;
    padding: 0;
}
.product-purchase-section .variations .label {
    font-family: var(--title-font);
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: normal;
}
.product-purchase-section .variations .woo-selected-variation-item-name {
    font-weight: inherit !important;
    margin: 0 !important;
}
.product-purchase-section .variations .color-variable-items-wrapper {
    gap: 6px;
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item {
    margin: 0;
    padding: 0;
    width: 28px;
    height: 28px;
    box-shadow: none !important;
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item:before,
.product-purchase-section .variations .button-variable-items-wrapper .variable-item:before {
    padding: 0 12px;
    min-width: 0;
    line-height: 26px;
    height: auto;
    font-size: 13px;
    font-weight: 500;
    background: var(--dark);
    color: var(--wp--preset--color--white);
    box-shadow: none;
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item:after,
.product-purchase-section .variations .button-variable-items-wrapper .variable-item:after {
    border-top-color: var(--dark);
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item.selected .variable-item-contents:before,
.product-purchase-section .variations .button-variable-items-wrapper .variable-item.selected .variable-item-contents:before {
    display: none !important;
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item .variable-item-contents:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: #FFF;
    border-radius: 10px;
    width: 8px;
    height: 8px;
    margin: auto;
    transition: all 0.4s;
    transform: scale(0);
}
.product-purchase-section .variations .color-variable-items-wrapper .variable-item.selected .variable-item-contents:after {
    transform: scale(1);
}
.product-purchase-section .variations .button-variable-items-wrapper {
    gap: 6px;
}
.product-purchase-section .variations .button-variable-items-wrapper .variable-item {
    padding: 0 18px;
    margin: 0;
    background: #F5F5F5;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--text);
    width: auto;
    height: auto;
    line-height: 34px;
    display: block;
    float: none;
    border-radius: 50px !important;
}
.product-purchase-section .variations .button-variable-items-wrapper .variable-item * {
    font-size: inherit !important;
    line-height: inherit !important;
}
.product-purchase-section .variations .button-variable-items-wrapper .variable-item:hover,
.product-purchase-section .variations .button-variable-items-wrapper .variable-item.selected {
    background: var(--dark) !important;
    color: var(--light) !important;
}
.product-purchase-section .variations .button-variable-items-wrapper .variable-item:before {
    left: 0;
    right: 0;
    margin: auto;
}
.product-purchase-section .variations .button-variable-items-wrapper .variable-item:after {
    left: 0;
    right: 0;
    margin: auto;
}
.product-purchase-section .variations .value.woo-variation-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-purchase-section .variations .reset_variations {
    background: #dc3545;
    padding: 0 12px;
    display: inline-block;
    color: var(--light);
    border-radius: 4px;
    line-height: 28px;
    font-size: 14px;
}
.product-purchase-section .variations .reset_variations:hover {
    background: var(--dark);
}
.product-purchase-section .single_variation_wrap .price {
    display: block;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 28px;
}
.product-purchase-section .single_variation_wrap .price:before {
    content: 'Price';
    display: block;
    font-family: var(--title-font);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 400;
}
.product-purchase-section .quantity {
    margin-bottom: 28px;
}
.product-purchase-section .quantity:before {
    content: 'Quantity';
    display: block;
    font-family: var(--title-font);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 400;
}
.product-purchase-section .quantity input.qty {
    display: block;
    background: var(--bg-light);
    border: 0;
    border-radius: 8px;
    width: 100px;
    height: 44px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    outline: 0;
}
.product-purchase-section .variations_button button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    color: var(--light) !important;
    background: var(--text) !important;
    border: 1px solid var(--text);
    line-height: 42px;
    padding: 0 26px !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}
.product-purchase-section .variations_button button:after {
    content: '';
    display: block;
    width: 17px;
    min-width: 17px;
    height: 17px;
    background-image: url('data:image/svg+xml,<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.75 17.5C14.4444 17.5 18.25 13.6944 18.25 9C18.25 4.30558 14.4444 0.5 9.75 0.5C5.05558 0.5 1.25 4.30558 1.25 9C1.25 13.6944 5.05558 17.5 9.75 17.5Z" stroke="white"/><path d="M8.47656 5.60156C8.47656 5.60156 11.0266 8.10566 11.0266 9.00156C11.0266 9.89755 8.47656 12.4016 8.47656 12.4016" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-size: 17px;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
.product-purchase-section .variations_button button:hover {
    background: transparent !important;
    color: var(--text) !important;
}
.product-purchase-section .variations_button button:hover:after {
    filter: brightness(0);
}
.product-purchase-section .variations_button .buy-now-button {
    margin-top: 14px;
    background: transparent !important;
    color: var(--text) !important;
}
.product-purchase-section .variations_button .buy-now-button:after {
    filter: brightness(0);
}
.product-purchase-section .variations_button .buy-now-button:hover {
    background: var(--text) !important;
    color: var(--light) !important;
}
.product-purchase-section .variations_button .buy-now-button:hover:after {
    filter: unset;
}
.single-product .woocommerce-notices-wrapper {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}
.single-product .woocommerce-notices-wrapper .woocommerce-message {
    background: #f0fff0;
    color: #004700;
    outline: none !important;
}
.single-product .woocommerce-notices-wrapper .woocommerce-message .button {
    background: #004700;
}
.single-product .woocommerce-notices-wrapper .woocommerce-message .button:hover {
    background: var(--secondary);
}
.single-product .woocommerce-tabs {
    padding: 50px 25px;
    width: 1370px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.single-product .woocommerce-tabs .wc-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 6px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 100px;
    margin-bottom: 50px;
}
.single-product .woocommerce-tabs .wc-tabs a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 40px;
    line-height: 44px;
    color: var(--text);
    background: transparent;
    border-radius: 50px;
}
.single-product .woocommerce-tabs .wc-tabs a:hover, 
.single-product .woocommerce-tabs .wc-tabs .active a {
    background: var(--text);
    color: var(--light);
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    width: 100%;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel > p {
    font-size: 16px;
    line-height: 150%;
    color: var(--accent);
    font-weight: 300;
}
.single-product .woocommerce-tabs .shop_attributes {
    margin-bottom: 0;
    border: 0;
}
.single-product .woocommerce-tabs .shop_attributes :is(th,td) {
    border: 1px solid rgba(17, 17, 17, 0.1);
    font-size: 16px;
    color: var(--accent);
    padding: 9px 10px;
    font-weight: 300;
    height: auto;
    vertical-align: middle;
    line-height: 150%;
}
.single-product .woocommerce-tabs .shop_attributes :is(th,td) p {
    padding: 0;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
.single-product .woocommerce-tabs .shop_attributes th {
    font-weight: 500;
    color: var(--text);
}
.single-product .woocommerce-tabs .shop_attributes a {
    font-style: normal;
    color: inherit;
    text-decoration: underline;
    font-weight: 400;
}
.single-product .woocommerce-tabs .shop_attributes a:hover {
    color: var(--dark);
}
.single-product .related.products {
    width: 1370px;
    max-width: 100%;
    padding: 40px 25px;
    margin: 0 auto;
}
.single-product .related.products > h2 {
    font-size: 38px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 30px;
}
.single-product .related.products .columns-5 .product {
    width: 18%;
    max-width: 18%;
}
.single-product #reviews {
    display: flex;
    flex-wrap: wrap;
}
.single-product #reviews #comments {
    width: 60%;
}
#reviews .commentlist {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
#reviews .commentlist:before, 
#reviews .commentlist:after {
    display: none !important;
}
#reviews .commentlist .comment_container {
    padding: 20px;
    padding-bottom: 46px;
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    position: relative;
}
html .woocommerce #reviews #comments ol.commentlist li img.avatar {
    float: none;
    width: 60px;
    height: 70px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 6px;
    object-fit: cover;
    padding: 0;
    top: 20px;
    right: 20px;
    left: auto;
}
html .woocommerce #reviews #comments ol.commentlist li .comment-text {
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
}
html .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    order: -1;
    margin-bottom: 6px;
}
html .woocommerce #reviews #comments ol.commentlist li .comment-text .description {
    margin-right: -70px;
    margin-top: 38px;
}
html .woocommerce #reviews #comments ol.commentlist li .comment-text .description p {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}
html .woocommerce #reviews .woocommerce-review__author {
    font-size: 18px;
    line-height: 120%;
    display: block;
    font-family: var(--title-font);
    font-weight: 400;
    color: var(--text);
}
html .woocommerce #reviews #comments ol.commentlist li {
    margin: 0;
}
html .woocommerce #reviews .woocommerce-review__dash {
    display: none;
}
html .woocommerce #reviews .woocommerce-review__published-date {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 20px;
    line-height: normal;
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--accent);
}
html .woocommerce #reviews .star-rating {
    float: none;
    width: 84px;
    height: 16px;
}
html .woocommerce #reviews .star-rating:before {
    color: #FFA719;
}
html .woocommerce #reviews .star-rating span:before {
    color: #FFA719;
}
.single-product #reviews #review_form_wrapper {
    width: 40%;
    padding-left: 40px;
}
#review_form_wrapper #review_form {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 14px;
}
#review_form_wrapper #review_form:before {
    content: 'Write a review';
    display: block;
    text-align: center;
    font-family: var(--title-font);
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 28px;
}
#review_form #reply-title {
    display: none;
}
#review_form .comment-notes {
    display: none;
}
#review_form #commentform {
    display: flex;
    flex-wrap: wrap;
}
#review_form #commentform > * {
    width: 100%;
}
#review_form #commentform .comment-form-cookies-consent {
    display: none;
}
#review_form #commentform .comment-form-comment {
    order: 1;
}
#review_form #commentform .comment-form-rating {
    order: 2;
}
#review_form #commentform .form-submit {
    order: 3;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
#review_form #commentform .form-submit #submit {
    color: var(--light);
    background: var(--text);
    border: 1px solid var(--text);
    line-height: 44px;
    padding: 0 40px !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}
#review_form #commentform .form-submit #submit:hover {
    background: transparent;
    color: var(--text);
}
#review_form #commentform label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}
#review_form #commentform label .required {
    color: red;
}
#review_form #commentform :is(input,textarea) {
    padding: 11px 20px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 8px;
    height: 46px;
    color: var(--text);
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    outline: none;
}
#review_form #commentform textarea {
    display: block;
    height: 110px !important;
    resize: none;
}
html .woocommerce #review_form #respond p {
    margin: 0 0 18px;
}
#review_form #commentform .stars > span {
    display: flex;
    align-items: center;
    gap: 1px;
}
#review_form #commentform .stars a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: unset;
    font-size: 0;
}
#review_form #commentform .stars a:before {
    font-size: 18px;
    position: static;
    color: #FFA719;
}

/* Blog */

article.post {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: var(--bg-light);
    position: relative;
}
article.post .image {
    display: block;
    width: 100%;
    height: 290px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #F5F5F5;
    border: 1px solid rgba(17, 17, 17, 0.08);
}
article.post .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s;
}
article.post:hover .image img {
    transform: scale(1.1);
}
article.post .date {
    font-size: 12px;
    line-height: 28px;
    padding: 0 16px;
    background: var(--light);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 22px;
}
article.post .txt {
    padding-inline: 10px;
    padding-bottom: 8px;
}
article.post .txt h3 {
    font-size: 22px;
    line-height: 120%;
    color: var(--text);
    margin-bottom: 14px;
}
article.post .txt h3 a {
    color: inherit;
    display: block;
}
article.post .txt h3 a:hover {
    color: var(--secondary);
}
article.post .rm-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
}
article.post .rm-btn a svg {
    width: 36px;
    min-width: 36px;
    height: 36px;
    background: var(--secondary);
    color: var(--light);
    border-radius: 50px;
    padding: 8px;
    transition: all 0.4s;
}
article.post .rm-btn a:hover {
    color: var(--dark);
}
article.post .rm-btn a:hover svg {
    background: var(--dark);
    transform: rotate(45deg);
}
/* Order recived */
html .woocommerce-order-received .page-header {
    display: block;
    padding: 80px 25px;
    text-align: center;
    background: var(--bg-light);
}
html .woocommerce-order-received .page-header h1.entry-title {
    max-width: 100%;
    margin: 0;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0;
}
html .woocommerce-order-received .page-content {
    padding-block: 80px;
}
html .woocommerce-order-received .page-content > .woocommerce {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}
.woocommerce-order-received .woocommerce-order > p {
    margin-bottom: 0;
}
.woocommerce-order-received .woocommerce-order ul.order_details {
    padding: 28px;
    margin-block: 6px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
}
.woocommerce-order-received .woocommerce-order ul.order_details:before, .woocommerce-order-received .woocommerce-order ul.order_details:after {
    display: none;
}
.woocommerce-order-received .woocommerce-order ul.order_details li {
    flex: 1;
    padding: 16px;
    margin: 0;
    border: 0;
    background: rgb(0 0 0 / 3%);
    border-radius: 6px;
    font-size: 12px;
    line-height: 120%;
}
.woocommerce-order-received .woocommerce-order ul.order_details li strong {
    font-size: 16px;
    line-height: 140%;
    margin-top: 4px;
}
.woocommerce-order-received .woocommerce-order-details {
    margin-block: 50px;
    padding: 0;
}
html .woocommerce-order-details h2.woocommerce-order-details__title {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 120%;
}
.woocommerce-order-received .woocommerce-customer-details {
    margin: 0;
    padding: 0;
}
.woocommerce-customer-details .addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0;
}
.woocommerce-customer-details .addresses:before,
.woocommerce-customer-details .addresses:after {
    display: none;
}
.woocommerce-customer-details .addresses > .woocommerce-column {
    width: unset;
    float: none;
    display: block;
    border: 1px solid rgba(157, 112, 82, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
html .woocommerce-customer-details h2.woocommerce-column__title {
    padding: 12px 26px;
    background: var(--bg-light);
    font-family: var(--font1);
    font-weight: 600;
    font-size: 17px;
    line-height: 160%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.woocommerce-customer-details .addresses > .woocommerce-column address {
    padding: 20px 26px;
    line-height: 170%;
    margin: 0;
    border: 0;
    border-radius: 0;
}
html .woocommerce-checkout .page-content > .wp-block-woocommerce-checkout {
    padding-block: 0;
}
html .is-large .wc-block-checkout__sidebar.is-sticky {
    top: 86px;
    margin-top: 0;
}
html .woocommerce-checkout .wc-blocks-components-select__container {
    margin-top: 0;
}
html .woocommerce-checkout .wc-block-components-text-input {
    display: flex;
    flex-direction: column;
}
html .woocommerce-checkout .wc-block-components-text-input input[type=text] {
    padding: 8px 18px !important;
    background-color: var(--light) !important;
    border: 1px solid rgba(157, 112, 82, 0.08);
    border-radius: 6px;
    height: 48px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.9);
    line-height: normal;
    outline: none;
}
html .woocommerce-checkout .wc-block-components-text-input input[type=text]:focus {
    border-color: var(--secondary);
}
html .woocommerce-checkout .wc-block-components-text-input label {
    position: static;
    order: -1;
    transform: none !important;
    margin-bottom: 4px !important;
}

html .woocommerce table.shop_table {
    margin: 0;
    box-shadow: none;
    border-collapse: collapse;
    border: 0;
}
html .woocommerce table.shop_table thead {
    background: var(--bg-light);
}
html .woocommerce table.shop_table thead th {
    font-size: 16px;
    font-weight: 600;
    border-color: rgba(0, 0, 0, 0.08);
}
html .woocommerce table.shop_table :is(th,td) {
    padding: 6px 10px;
    color: var(--dark);
    background: transparent;
    font-size: 16px;
    border-color: rgba(0, 0, 0, 0.08);
}
html .woocommerce table.shop_table tfoot :is(th,td) {
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
}
html .woocommerce table.shop_table a {
    color: inherit;
    font-weight: 500;
}
html .woocommerce table.shop_table a:hover {
    text-decoration: underline;
    color: var(--secondary);
}
html .woocommerce table.shop_table .view {
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    padding: 0 16px;
    line-height: 28px;
}
html .woocommerce table.shop_table .view:hover {
    background: var(--secondary);
}


.woocommerce-account .woocommerce-order-details {
    padding: 0;
}
.woocommerce-account .woocommerce-customer-details {
    padding: 0;
    margin: 0;
}
html .woocommerce table.shop_table .woocommerce-orders-table__cell-order-actions .view {
    color: var(--light);
    text-decoration: none;
}

/* Blog Details */
.single-post .page-header {
    background: var(--bg-light);
    padding: 80px 25px 30px;
    text-align: center;
}
.single-post .page-header h1.entry-title {
    width: 900px;
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 36px;
}
.single-post .featured-image {
    background: linear-gradient(-180deg, var(--bg-light) 40%, #f2f2f200 40%);
    padding: 0 25px;
}
.single-post .post-thumbnail {
    width: 1320px;
    height: 550px;
    max-width: 100%;
    margin: 0 auto 0;
    border: 4px solid var(--light);
    border-radius: 30px;
    overflow: hidden;
}
.single-post .post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: unset;
    background: #F5F5F5;
}
.single-post .page-content {
    width: 1150px;
    max-width: 100%;
    padding: 50px 25px 40px;
    margin: 0 auto;
}
.single-post blockquote {
    padding: 20px;
    background: var(--bg-light);
    font-size: 18px;
    line-height: 160%;
    display: block;
    font-weight: 500;
}

/* Empty Cart */
html .wp-block-woocommerce-empty-cart-block {
    width: 1370px;
    max-width: 100%;
    padding: 80px 25px;
    margin: 0 auto;
}
html .wc-block-cart__empty-cart__title {
    width: 450px;
    max-width: 100%;
    border: 2px dashed rgb(0 0 0 / 20%);
    margin: 0 auto 80px !important;
    padding: 26px;
    border-radius: 14px;
    font-size: 26px !important;
    line-height: 120% !important;
}
html .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    content: "";
    display: block;
    width: 120px;
    height: 120px;
    background-image: url('/wp-content/uploads/2025/05/empty-cart.svg');
    background-position: center;
    background-size: 120px;
    background-repeat: no-repeat;
    margin: 0 auto 14px;
    mask: unset;
    background-color: transparent;
}
.wp-block-woocommerce-empty-cart-block .wp-block-separator {
    display: none;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    margin: 0 -12px;
    justify-content: center;
    row-gap: 40px;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product {
    width: calc(25% - 24px);
    flex: unset;
    border: 0;
    position: relative;
    margin: 0 12px;
    display: flex;
    flex-direction: column;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
    text-decoration: none;
    display: block;
    width: 100%;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link .wc-block-grid__product-image {
    margin: 0;
    width: 100%;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link .wc-block-grid__product-image .image-wrap {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    height: 380px;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link .wc-block-grid__product-image .image-wrap img {
    display: block;
    aspect-ratio: 3/4;
    object-fit: contain;
    transition: all 0.4s;
    height: 100%;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover .wc-block-grid__product-image .image-wrap img {
    transform: scale(1.1);
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: none;
    color: #FFFFFF;
    padding: 5px 11px;
    background: var(--secondary);
    border-radius: 40px;
    display: block;
    position: absolute;
    z-index: 1;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    margin: 10px !important;
    min-width: 0;
    min-height: auto;
    border: 0;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    font-family: var(--body-font);
    color: var(--text);
    margin-bottom: 8px;
    transition: all 0.4s;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title:hover {
    color: var(--secondary);
}
html .wp-block-woocommerce-empty-cart-block .price {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
    width: 100%;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
    margin: 0;
    margin-top: auto;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a {
    width: auto;
    background: var(--text);
    color: var(--light);
    text-align: center;
    border-radius: 50px;
    padding: 0 26px;
    line-height: 40px;
    font-size: 15px !important;
    font-weight: 600;
    text-decoration: none;
    display: block !important;
}
html .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:hover {
    background: var(--secondary);
}
.wp-block-woocommerce-empty-cart-block hr ~ .wp-block-heading {
    text-align: left;
    margin-bottom: 12px;
}
html .wpcf7 form .wpcf7-response-output {
    border: 1px solid;
    margin: 0;
    margin-top: 20px;
    font-size: 14px;
    line-height: 140%;
    padding: 8px 14px;
    color: #dc3232;
    border-radius: 4px;
}
html .wpcf7 form.sent .wpcf7-response-output {
    border-color: green;
    color: green;
}

/* Privacy Policy */
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-header {
    padding: 80px 25px;
    background: var(--bg-light);
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-header h1.entry-title {
    max-width: 100%;
    margin: 0;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0;
    text-align: center;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .featured-image {
    display: none;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-content {
    max-width: 100%;
    width: 1370px;
    padding: 60px 25px 40px;
    margin: 0 auto;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-content h2 {
    margin-top: 30px;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-content h2:first-child {
    margin-top: 0;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-content a {
    color: inherit;
}
:is(.privacy-policy,.page-id-11,.page-id-1005) .page-content a:hover {
    color: var(--secondary);
}
html .wc-block-checkout__terms.wc-block-checkout__terms--with-separator a {
    color: var(--text);
}
html .wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width:1024px) {
    body {
        padding-top: 107px;
    }
    html .woocommerce-checkout {
        padding-top: 77px;
    }
    .sticky .header-wpr {
        margin-top: -32px;
    }
    .promobar-marquee-wrapper {
        padding: 8px 0;
    }
    .promobar-marquee-track {
        gap: 50px;
    }
    .promobar-item p {
        font-size: 12px;
    }
    html header#site-header {
        padding: 12px 0;
    }

    .header-navbar .menu {
        gap: 30px;
    }
    .header-navbar .menu a {
        font-size: 14px;
        letter-spacing: 0.03em;
    }
    .header-navbar .menu .current-menu-item a {
        padding: 4px 6px;
        border-radius: 4px;
    }
    html .site-header .site-branding a {
        width: 90px;
    }
    .hactions {
        gap: 14px;
    }
    html .hsearch .search-field {
        min-width: 0;
        height: 40px;
        padding: 0 20px;
        padding-left: 48px;
        font-size: 14px;
    }
    html .site-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    html .site-hero h1 {
        font-size: 100px;
        margin-bottom: 60px;
    }
    html .site-hero h6 {
        gap: 18px;
        font-size: 36px;
    }
    html .site-hero h6 span {
        margin-bottom: 4px;
        font-size: 42px;
        padding: 2px 18px;
        border-radius: 9px;
    }
    .off-box {
        padding: 12px;
        border-radius: 16px;
        width: 250px;
        min-width: 250px;
        top: 86px;
    }
    .off-box .box {
        border-radius: 14px;
        padding: 18px;
    }
    .off-box .box h6 {
        font-size: 15px;
    }
    .off-box .box h3 {
        font-size: 38px;
    }
    .off-box .box .image {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 6px;
    }
    .off-box .box .image:before {
        top: 46px;
        right: 0;
        bottom: 38px;
    }
    .off-box .box p {
        font-size: 13px;
    }
    html .title h2 {
        font-size: 34px;
    }
    .shop-sec {
        padding: 70px 12px 12px;
    }
    .shop-sec .title {
        margin-bottom: 20px;
    }
    .cta-sec {
        padding-block: 100px;
    }
    .cta-sec:before {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
        inset: 0;
        background: #000;
        opacity: 0.2;
    }
    .cta-sec .text {
        width: 430px;
    }
    .cta-sec .text h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .cta-sec .text .btn-wpr {
        margin-top: 20px;
    }
    .cta-sec .cta-logo {
        width: 140px;
        margin: 16px;
    }
    .tmnl-sec {
        padding: 60px 25px 25px;
    }
    html .tmnl-sec .title h2 {
        gap: 10px;
    }
    .tmnl-carousel {
        margin-top: 40px;
    }
    .insta-sec .insta-acc {
        gap: 8px;
        font-size: 18px;
    }
    .insta-sec .post-wpr {
        margin-top: 30px;
    }
    .insta-post {
        border-radius: 6px;
    }
    .category-circles-wrapper {
        gap: 0;
        row-gap: 30px;
        margin: 0 -15px;
    }
    .category-circles-wrapper > * {
        flex: unset;
        width: 25%;
        padding: 0 15px;
    }
    .footer-top .flogo {
        width: 100%;
        padding-right: 30px;
        margin-bottom: 40px;
    }
    .footer-top .flogo .site-logo {
        width: 150px;
    }
    html .owl-carousel .owl-nav [class*="owl-"] {
        top: 130px;
    }
    .woocommerce-account .page-header {
        padding: 60px 25px;
    }
    .woocommerce-account .page-header h1.entry-title {
        font-size: 36px;
    }
    .woocommerce-account .page-content > .woocommerce {
        padding: 60px 0;
    }
    .woocommerce-account #customer_login {
        gap: 25px;
    }
    .woocommerce-account #customer_login > * {
        padding: 28px;
        border-radius: 12px;
    }
    .woocommerce-account #customer_login h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    html .woocommerce form .form-row label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    html .woocommerce form .form-row .input-text, 
    html .woocommerce form .form-row select {
        border-radius: 6px;
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }
    html .woocommerce form.login .form-row:has(.woocommerce-button) .woocommerce-button {
        margin-top: 30px !important;
    }
    html .woocommerce form.register .form-row:has(.woocommerce-button) {
        margin-top: 30px;
    }
    .woocommerce-privacy-policy-text p {
        font-size: 13px;
        line-height: 150%;
    }
    html .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 25%;
    }
    .woocommerce-MyAccount-navigation ul a {
        font-size: 16px;
        padding: 8px 14px;
    }
    html .woocommerce-account .woocommerce-MyAccount-content {
        width: 75%;
        padding-left: 30px;
    }
    html .woocommerce-account .woocommerce-MyAccount-content > p {
        font-size: 16px;
    }


    html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message) {
        padding: 10px 14px;
        border-radius: 6px;
    }
    html :is(.woocommerce-error,.woocommerce-info,.woocommerce-message) .button {
        padding: 0 24px;
        line-height: 36px;
        font-size: 14px;
    }
    html .woocommerce-Addresses {
        flex-wrap: wrap;
        gap: 20px;
    }
    html .woocommerce-Addresses .woocommerce-Address .title {
        padding: 10px 18px;
    }
    html .woocommerce-Addresses .woocommerce-Address .title h2 {
        font-size: 20px;
    }
    html .woocommerce-account .addresses .title .edit {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    html .woocommerce-Addresses .woocommerce-Address address {
        padding: 16px;
        font-size: 15px;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
        padding: 20px;
        gap: 18px;
    }
    html #account_display_name_description {
        font-size: 10px;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 18px;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
        grid-column: span 1;
        font-size: 20px;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .button {
        line-height: 40px;
        font-size: 13px;
    }
    html .select2-container .select2-selection--single .select2-selection__rendered {
        border-radius: 6px;
        height: 40px;
        line-height: 40px;
        padding: 0 16px;
    }
    html .select2-container .select2-selection--single .select2-selection__arrow {
        right: 16px;
    }
    .woocommerce-MyAccount-content .woocommerce-address-fields .button {
        line-height: 40px;
        font-size: 13px;
    }
    .woocommerce-MyAccount-content .woocommerce-address-fields {
        padding: 20px;
    }

    header.woocommerce-products-header {
        margin-left: 0;
        width: auto;
        margin-bottom: 70px;
        margin: 0 -25px 60px;
    }
    header.woocommerce-products-header h1.page-title {
        font-size: 48px;
        padding: 95px 10px 55px;
    }
    html ul.products li.product .woocommerce-LoopProduct-link h2 {
        font-size: 16px !important;
    }
    html ul.products li.product .add_to_cart_button {
        line-height: 36px;
        font-size: 14px;
    }
    html ul.products li.product .onsale {
        font-size: 12px;
        padding: 4px 10px;
        margin: 4px !important;
    }
    html .woocommerce-cart .wc-block-cart__main {
        width: 100%;
    }
    html .woocommerce-cart .wc-block-cart__sidebar {
        width: 100%;
    }
    html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper {
        font-size: 16px;
    }
    .innerbanner h1 {
        font-size: 42px;
    }
    .faq-sec {
        padding-bottom: 20px;
    }
    html .accordion-item {
        border-radius: 10px !important;
        padding: 16px;
    }
    html .accordion-button {
        font-size: 17px;
    }
    html .accordion-button::after {
        width: 24px;
        min-width: 24px;
        height: 24px;
        background-size: 10px;
    }
    html .accordion-body {
        padding: 14px 24px 0 0;
        font-size: 14px;
        line-height: 140%;
    }
    .contact-box .item {
        padding: 34px 20px;
        border-radius: 14px;
    }
    .contact-box .item h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .contact-box .item h5 {
        font-size: 14px;
    }
    .contact-box .item h6 {
        font-size: 16px;
    }
    .contact-box .item + .item {
        margin-top: -12px;
    }
    .contact-sec {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ctext h6 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .ctext h3 {
        font-size: 28px;
        padding-right: 0;
        margin-bottom: 14px;
    }
    .ctext p {
        font-size: 15px;
        padding-right: 0;
    }
    .ctext .contact-info {
        margin-top: 30px;
    }
    .ctext .contact-info .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 26px;
    }
    .ctext .contact-info h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .ctext .contact-info a {
        font-size: 16px;
        margin-bottom: 2px;
    }
    .form-box {
        padding: 30px;
        border-radius: 14px;
    }
    .form-box h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .form-field label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    html .wpcf7-form-control {
        padding: 10px 15px;
    }
    .form-field .wpcf7-quiz-label {
        margin-bottom: 4px;
    }
    .map-wpr iframe {
        height: 350px;
        border-radius: 10px;
    }
    html .woocommerce-checkout .wc-block-components-main, 
    html .woocommerce-checkout .wc-block-components-sidebar {
        width: 100%;
        padding: 50px 25px;
    }
    html .woocommerce-checkout .wc-block-checkout__form {
        width: 100%;
    }
    .single-product .related.products .columns-5 .product .woocommerce-LoopProduct-link h2 {
        font-size: 14px !important;
    }
    .single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }
    .single-product .woocommerce-tabs .woocommerce-Tabs-panel > p {
        font-size: 14px;
        line-height: 150%;
    }
    .product-page-wrapper {
        margin-top: 1px;
    }
    .product-image {
        width: 50%;
        padding: 20px;
        order: -1;
    }
    .product-purchase-section {
        padding: 20px;
        width: 50%;
        border-right: 1px solid rgba(17, 17, 17, 0.1);
    }
    .product-image .woocommerce-product-gallery__image a {
        height: 380px;
    }
    html .product-info-left .woocommerce-breadcrumb {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .product-page-wrapper .product-title {
        font-size: 36px;
        margin-bottom: 8px;
    }
    .product-price .price {
        font-size: 22px;
        margin-bottom: 22px;
    }
    .product-purchase-section .variations {
        margin-bottom: 22px;
    }
    .product-purchase-section .variations .label {
        margin-bottom: 6px;
        font-size: 16px;
    }
    .product-purchase-section .quantity:before {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .product-purchase-section .single_variation_wrap .price {
        font-size: 20px;
        margin-bottom: 22px;
    }
    .product-purchase-section .single_variation_wrap .price:before {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .product-purchase-section .variations tr:first-child {
        margin-top: 22px;
    }
    .product-purchase-section .quantity {
        margin-bottom: 22px;
    }
    .product-purchase-section .variations_button .buy-now-button {
        margin-top: 10px;
    }
    .product-purchase-section .variations .reset_variations {
        padding: 0 10px;
        line-height: 24px;
        font-size: 12px;
    }
    .product-accordion {
        margin-top: 20px;
    }
    .single-product .woocommerce-tabs {
        padding: 40px 25px;
    }
    .single-product .woocommerce-tabs .wc-tabs {
        padding: 4px;
        margin-bottom: 24px;
    }
    .single-product .woocommerce-tabs .wc-tabs a {
        font-size: 14px;
        padding: 0 34px;
        line-height: 40px;
    }
    .single-product #reviews #comments {
        width: 100%;
        margin-bottom: 30px;
    }
    .single-product #reviews #review_form_wrapper {
        width: 100%;
        padding-left: 0;
    }
    .single-product .related.products .columns-5 .product .add_to_cart_button {
        font-size: 12px;
        padding: 0 10px;
    }
    .single-product .related.products .columns-5 .product .price {
        font-size: 14px;
    }
    .single-product .related.products .columns-5 .product .star-rating {
        right: 4px;
        top: 4px;
    }
    .single-product .related.products .columns-5 .product .rating {
        font-size: 12px;
        display: flex;
        align-items: center;
    }
    .single-product .related.products > h2 {
        font-size: 32px;
        margin-bottom: 22px;
    }
    .single-product .modal-body .text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .single-product .modal-body .text p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .single-product .modal-body table :is(th,td) {
        font-size: 14px;
        padding: 10px 10px;
    }
    .single-product .modal-body .titlewpr h2 {
        font-size: 28px;
    }
    html .woocommerce-order-received .page-content {
        padding-block: 60px;
    }
    .woocommerce-order-received .woocommerce-order ul.order_details {
        padding: 18px;
        margin-block: 6px;
        gap: 12px;
        border-radius: 6px;
        flex-wrap: wrap;
        white-space: nowrap;
    }
    .woocommerce-customer-details .addresses {
        display: grid !important;
        gap: 30px;
        padding: 0 !important;
        align-items: unset !important;
    }
    html .woocommerce-customer-details h2.woocommerce-column__title {
        padding: 10px 22px;
        font-size: 16px !important;
    }
    .woocommerce-customer-details .addresses > .woocommerce-column address {
        padding: 18px 22px;
    }
    html .woocommerce-order-received .page-header {
        padding: 60px 25px;
    }
    html .woocommerce-order-received .page-header h1.entry-title {
        font-size: 36px;
    }
    .woocommerce-account .woocommerce-customer-details .addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .single-post .page-header {
        padding: 60px 25px 30px;
    }
    .single-post .page-header h1.entry-title {
        font-size: 30px;
    }
    .single-post .post-thumbnail {
        height: 380px;
        border: 2px solid var(--light);
        border-radius: 20px;
    }
    .single-post .page-content {
        font-size: 14px;
        line-height: 150%;
    }
    .single-post blockquote {
        font-size: 15px;
        line-height: 150%;
    }
    html .wp-block-woocommerce-empty-cart-block {
        padding: 50px 25px;
    }
    html .wc-block-cart__empty-cart__title {
        margin: 0 auto 60px !important;
    }
    html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product {
        width: calc(50% - 24px);
        max-width: calc(50% - 24px);
    }
    .single-product .woocommerce-notices-wrapper .woocommerce-message {
        font-size: 14px;
        margin-top: 10px;
    }
    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-header {
        padding: 60px 25px;
    }
    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-header h1.entry-title {
        font-size: 36px;
    }
}

@media (max-width:767px) {
    body {
        font-size: 14px;
        padding-top: 103px;
    }
    html .woocommerce-checkout {
        padding-top: 72px;
    }
    html .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    html .btn {
        padding: 0px 22px;
        font-size: 14px;
        line-height: 40px;
        gap: 10px;
    }
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    html.sticky .site-header .site-branding a {
        width: 70px;
    }
    .category-circles-wrapper {
        row-gap: 20px;
        margin: 0 -10px;
    }
    .category-circles-wrapper > * {
        width: 50%;
        padding: 0 10px;
    }
    .shop-sec {
        padding: 70px 20px 0;
    }
    .top-content {
        margin-bottom: 30px;
        text-align: center;
    }
    html .top-content .title h2 {
        font-size: 30px;
    }
    html .top-content p {
        font-size: 16px;
    }
    .top-content .btn-wpr {
        margin-top: 12px;
    }
    .cta-sec {
        padding-block: 60px;
    }
    .cta-sec .text h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .cta-sec .cta-logo {
        display: none;
    }
    .with-love-banner {
        padding: 14px 0;
    }
    .with-love-banner .wl-marquee {
        animation: marquee 10s linear infinite;
    }
    .with-love-banner h3 {
        font-size: 16px;
        gap: 16px;
    }
    .with-love-banner h3:before {
        width: 20px;
        height: 20px;
    }
    html .title h2 {
        font-size: 26px;
    }
    html .title ~ p {
        line-height: 140%;
    }
    .tmnl-sec {
        padding: 60px 20px 25px;
    }
    html .tmnl-sec .title {
        margin-bottom: 12px;
    }
    html .tmnl-sec .title h2 {
        gap: 8px;
        font-size: 20px;
    }
    html .tmnl-sec .title h2 span {
        padding: 6px 2px 6px 8px;
        border-radius: 7px;
    }
    .tmnl-carousel {
        margin-top: 30px;
    }
    .tmnl-box {
        border-radius: 12px;
    }
    .tmnl-image {
        width: 100%;
        border-radius: 10px;
    }
    .tmnl-text {
        padding: 26px 20px;
    }
    .insta-sec {
        padding: 60px 20px 20px;
    }
    html .insta-sec .title {
        margin-bottom: 8px;
    }
    .insta-sec .post-wpr .row {
        --bs-gutter-y: 20px;
        --bs-gutter-x: 20px;
    }


    .footer-t .row {
        --bs-gutter-y: 24px;
    }
    .ficon-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .ficon-box p {
        font-size: 14px;
    }
    .footer-top {
        padding-block: 50px 20px;
    }
    .footer-top .flogo {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .footer-top .flogo .site-logo {
        width: 130px;
        margin-bottom: 12px;
    }
    footer .flinks {
        margin-bottom: 30px;
    }
    .sign-up-form {
        width: 100%;
        margin-bottom: 30px;
    }
    .sign-up-form h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .sign-up-form .emaillist {
        margin-bottom: 12px;
    }
    .sign-up-form .es-form-field-container .es-field-label {
        font-size: 14px;
        margin-bottom: 2px;
    }
    html footer .footer-bottom {
        padding: 10px 0;
        text-align: center;
    }
    html footer .footer-bottom img {
        margin-bottom: 10px;
    }
    html .owl-carousel .owl-nav [class*="owl-"] {
        top: 90px;
    }
    html .tmnl-carousel .owl-nav [class*="owl-"] {
        top: 190px;
    }
    .prd-box .badge {
        font-size: 12px;
        padding: 3px 9px;
        margin: 4px;
    }
    .prd-box .ratting {
        font-size: 12px;
        padding: 3px 9px;
        margin: 4px;
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .prd-box .ratting img {
        width: 10px;
    }
    .prd-box .cbtn {
        margin: 6px;
    }
    .prd-box .cbtn .btn {
        font-size: 13px;
        padding: 0 10px;
        gap: 6px;
    }
    .prd-box .text {
        margin-top: 12px;
    }
    .prd-box .text h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .prd-box .text h6 {
        font-size: 14px;
        gap: 6px;
    }
    .off-box {
        padding: 18px;
        padding-top: 0;
        border-radius: 22px;
        width: 100%;
        min-width: 100%;
        position: static;
        margin-bottom: 40px;
    }
    .off-box .box {
        padding-top: 0;
    }
    .off-box .box h6 {
        font-size: 17px;
    }
    .off-box .box h3 {
        font-size: 46px;
    }
    .off-box .box .image:before {
        top: 76px;
        bottom: 58px;
    }
    .off-box .box p {
        font-size: 15px;
    }
    .hactions .msearch svg:last-child {
        display: none;
    }
    .msearch-show .hactions .msearch svg:first-child {
        display: none;
    }
    .msearch-show .hactions .msearch svg:last-child {
        display: block;
    }
    .promobar-marquee-track {
        gap: 40px;
    }
    html header#site-header {
        padding: 10px 0;
    }
    .overlay {
        position: fixed;
        inset: 0;
        top: 103px;
        min-height: calc(100dvh - 103px);
        background: rgb(0 0 0 / 70%);
        backdrop-filter: blur(6px);
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s;
    }
    html.sticky .overlay {
        top: 64px;
        min-height: calc(100dvh - 64px);
    }
    .hsearch {
        position: fixed;
        z-index: 99;
        top: 103px;
        left: 0;
        padding: 20px;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s;
    }
    html.sticky .hsearch {
        top: 64px;
    }
    .hsearch > * {
        transform: translateY(20px);
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s;
    }
    .msearch-show .overlay, 
    .msearch-show .hsearch {
        visibility: visible;
        opacity: 1;
    }
    .msearch-show .hsearch > * {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .navbar-toggle {
        display: block;
        flex: unset;
        position: relative;
        width: 30px;
        height: 30px;
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 100%);
        border-radius: 30px;
    }
    .navbar-toggle span {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 18px;
        height: 2px;
        border-radius: 10px;
        background: var(--dark);
        transition: all 0.4s;
    }
    .navbar-toggle span:first-child {
        top: -12px;
    }
    .navbar-toggle span:last-child {
        bottom: -12px;
    }
    nav.header-navbar {
        position: fixed;
        right: 0;
        display: block;
        z-index: 9999;
        background: #ffffff;
        top: 0;
        bottom: 0;
        width: 300px;
        height: 100vh;
        padding: 24px;
        transform: translatex(100%);
        transition: all 0.4s;
        overflow: auto;
        color: #fff;
        margin: 0;
    }
    .menu-show nav.header-navbar {
        transform: translatex(0%);
        box-shadow: -1px 0px 10px 0 #0000001f;
    }
    .header-navbar .navbar-toggle {
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .header-navbar .menu {
        gap: 30px;
        display: block;
    }
    .header-navbar .menu li + li {
        margin-top: 14px;
    }
    .header-navbar .menu a {
        font-size: 16px;
        letter-spacing: 0.03em;
    }
    .menu-show .navbar-toggle span:nth-child(2) {
        opacity: 0;
    }
    .menu-show .navbar-toggle span:first-child {
        top: 0;
        transform: rotate(45deg);
    }
    .menu-show .navbar-toggle span:last-child {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .hactions {
        gap: 8px;
        margin-right: 8px;
    }
    html .msearch {
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 100%);
    }
    .hactions :is(.login,.cart) {
        padding: 5px;
    }
    .hactions :is(.login,.cart):before {
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 100%);
        opacity: 1;
    }
    html .site-hero:before {
        background: rgba(0, 0, 0, 0.4);
    }
    html .site-hero h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    html .site-hero h6 {
        gap: 12px;
        font-size: 26px;
    }
    html .site-hero h6 span {
        font-size: 22px;
        padding: 2px 13px;
        border-radius: 4px;
    }


    .woocommerce-account .page-header {
        padding: 60px 20px;
    }
    .woocommerce-account .page-header h1.entry-title {
        font-size: 32px;
    }
    .woocommerce-account .page-content > .woocommerce {
        padding: 60px 0 0;
    }
    .woocommerce-account #customer_login {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
    .woocommerce-account #customer_login > * {
        padding: 20px;
        border-radius: 10px;
    }
    .woocommerce-account .lost_reset_password {
        padding: 20px;
        border-radius: 10px;
    }


    html .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }
    html .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        gap: 6px;
    }
    .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        height: 0;
    }
    .woocommerce-MyAccount-navigation ul li + li {
        margin-top: 0;
    }
    .woocommerce-MyAccount-navigation ul a {
        font-size: 14px;
        padding: 8px 18px;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
        padding: 20px;
        gap: 18px;
        grid-template-columns: 1fr;
    }
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset,
    .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p:has(.button) {
        grid-column: span 1;
    }
    .woocommerce-shop main#main,
    .tax-product_cat main#main {
        padding: 0 20px;
    }
    header.woocommerce-products-header {
        margin: 0 -20px 60px;
    }
    .woocommerce-shop .woocommerce-breadcrumb,
    .tax-product_cat .woocommerce-breadcrumb {
        left: 0;
    }
    html ul.products {
        margin: 0 !important;
        row-gap: 40px;
    }
    html ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }
    html .woocommerce-shop .woocommerce-ordering select,
    html .tax-product_cat .woocommerce-ordering select {
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
        border-radius: 4px;
        margin-top: -8px;
        max-width: 150px;
    }
    html .woocommerce-cart .page-content {
        padding: 50px 20px;
    }
    html .woocommerce-cart .wc-block-cart__main:before {
        font-size: 24px;
        margin: 0 auto 14px;
    }
    html .woocommerce-cart .wc-block-cart h2.wc-block-cart__totals-title {
        font-size: 18px;
        margin-bottom: 6px;
        display: block !important;
        font-family: var(--body-font);
    }
    html body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wp-block-woocommerce-cart-order-summary-coupon-form-block {
        margin-bottom: 20px;
        border-radius: 6px;
    }
    html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper {
        padding: 14px;
    }
    html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block {
        padding: 14px;
        font-size: 14px;
    }
    html .woocommerce-cart .wc-block-components-totals-wrapper > * {
        padding: 0 0 10px !important;
    }
    html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper > * {
        padding: 12px 0 0 !important;
    }
    html .woocommerce-cart .wp-block-woocommerce-cart-order-summary-block > .wc-block-components-totals-wrapper * {
        font-size: inherit;
    }
    html .woocommerce-cart .wc-block-cart__sidebar {
        padding: 16px !important;
        margin-top: 30px !important;
        margin-bottom: 0 !important;
        border-radius: 8px;
    }
    html .woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit {
        margin-top: 20px;
    }
    html .wc-block-components-totals-wrapper {
        padding: 14px;
    }
    html .woocommerce-cart .wc-block-components-button {
        font-size: 14px;
        line-height: 40px;
    }
    html .wc-block-components-text-input input, 
    html .wc-blocks-components-select__container select {
        border-radius: 6px !important;
        height: 40px !important;
        padding: 0 16px !important;
    }
    html .wc-block-components-text-input label, 
    html .wc-blocks-components-select__container label {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }
    html .woocommerce-cart .wc-block-cart table .wc-block-cart-items__row {
        display: flex;
        flex-wrap: wrap;
        padding: 12px;
        border: 1px solid hsla(0,0%,7%,.11);
        border-radius: 6px;
        margin-bottom: 14px;
    }
    html .woocommerce-cart .wc-block-cart-item__image {
        padding: 0 !important;
        border-left: 0;
        width: 100%;
        margin-bottom: 12px !important;
    }
    html .woocommerce-cart .wc-block-cart-item__product {
        padding: 0 !important;
        width: 100%;
        margin-bottom: 0 !important;
    }
    html .woocommerce-cart .wc-block-cart-item__wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    html .woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name {
        font-size: 18px;
        line-height: normal !important;
        margin-bottom: 6px !important;
        max-width: unset !important;
        width: 100%;
    }
    html .woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices {
        display: block;
        margin-bottom: 6px !important;
        line-height: normal !important;
        width: 100%;
    }
    html .woocommerce-cart .wc-block-cart-item__quantity {
        margin-top: 0;
        padding: 0 !important;
    }
    html .woocommerce-cart .wc-block-cart-item__wrap .price {
        font-size: 16px;
    }
    html .woocommerce-cart .wc-block-cart-item__image a {
        width: 100px;
        border-radius: 8px;
    }
    html .wc-block-cart-item__wrap .wc-block-cart-item__remove-link {
        right: 0;
        top: 0;
        bottom: auto;
        margin: 14px !important;
    }
    html .woocommerce-cart .wc-block-cart-item__total {
        padding: 0 !important;
        border-right: 0;
    }
    html .wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
        font-size: 16px;
        margin-bottom: 0;
    }
    html .wc-block-cart-item__total-price-and-sale-badge-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        margin: 16px;
    }
    html .wc-block-cart-item__total-price-and-sale-badge-wrapper:before {
        content: 'Total Price';
    }
    html .woocommerce-cart .wc-block-components-product-metadata {
        font-size: 16px;
        margin-bottom: 0 !important;
        margin-left: 0;
    }
    html .woocommerce-cart .wc-block-components-product-metadata .wc-block-components-product-details {
        margin: 0;
        gap: 6px 16px;
    }
    .innerbanner .breadcrumb .breadcrumb-item {
        font-size: 12px;
        gap: 8px;
    }
    html .breadcrumb-item+.breadcrumb-item::before {
        background-size: 7px;
        width: 10px;
        height: 10px;
    }
    .innerbanner h1 {
        font-size: 38px;
    }
    .faq-sec {
        padding-bottom: 10px;
    }
    html .accordion-button {
        font-size: 16px;
    }
    .contact-box {
        margin-bottom: 30px;
    }
    .contact-box .item h3 {
        font-size: 22px;
        line-height: 160%;
        margin-bottom: 14px;
    }
    .contact-box .item h5 {
        font-size: 15px;
    }
    .contact-box .item h6 {
        font-size: 18px;
    }
    .form-box {
        padding: 26px;
        margin-top: 30px;
    }
    .form-box h2 {
        font-size: 28px;
    }
    html .wpcf7-form-control {
        border-radius: 6px;
        height: 40px;
    }
    html .woocommerce-checkout .wc-block-components-sidebar-layout {
        margin: 0;
        padding: 50px 20px;
    }
    html .woocommerce-checkout .is-mobile > .wc-block-components-sidebar {
        display: none;
    }
    html .woocommerce-checkout .wc-block-checkout__form:before {
        font-size: 26px;
        margin-bottom: 24px;
    }
    html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkout-step__heading {
        margin: 0 0 10px;
    }
    html .woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkout-step__heading h2 {
        font-size: 20px;
    }
    html .woocommerce-checkout .wc-block-components-checkout-step__container p {
        font-size: 14px;
    }
    html .woocommerce-checkout .wc-block-components-order-summary-item__image {
        width: 64px;
        min-width: 64px;
    }
    html .woocommerce-checkout .wc-block-components-order-summary {
        padding: 0 !important;
    }
    html .woocommerce-checkout .checkout-order-summary-block-fill {
        border: 0;
        border-radius: 0;
    }
    html .woocommerce-checkout .wc-block-components-order-summary-item__quantity {
        left: 52px;
        line-height: 18px;
        font-size: 10px;
        padding: 0 6px;
        min-width: 18px;
    }
    html .woocommerce-checkout .wc-block-components-order-summary-item__description {
        padding-left: 10px;
        padding-right: 66px;
    }
    html .woocommerce-checkout .wc-block-components-product-name {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 6px;
    }
    html .woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
        font-size: 14px;
    }
    html .woocommerce-checkout .wc-block-components-product-metadata .wc-block-components-product-details {
        font-size: 14px;
    }
    html .woocommerce-checkout .wc-block-components-product-metadata .wc-block-components-product-details > * {
        gap: 4px;
    }
    html .woocommerce-checkout .wc-block-components-totals-wrapper {
        padding: 0;
        border: 0;
    }
    html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
       margin-bottom: 20px;
    }
    html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon {
        padding: 0;
    }
    html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-panel__button {
        font-size: 16px;
        font-weight: 500;
    }
    html .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
        border: 0;
        border-bottom: 0;
        background: transparent;
        padding: 0;
        border-radius: 0;
        font-weight: 300;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgb(17 17 17 / 20%);
    }
    html .woocommerce-checkout .wc-block-checkout__terms {
        margin-bottom: 12px;
        padding-top: 0 !important;
    }

    .product-container {
        padding: 0 20px;
    }
    .product-image {
        padding: 20px;
        width: 100%;
    }
    .product-purchase-section {
        padding: 20px;
        width: 100%;
        border: 1px solid rgba(17, 17, 17, 0.1);
        border-bottom: 0;
    }
    .single-product .woocommerce-tabs {
        padding: 40px 20px;
        overflow: hidden;
        display: block;
    }
    .single-product .woocommerce-tabs .wc-tabs {
        padding: 4px;
        justify-content: flex-start;
        white-space: nowrap;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 4px;
    }
    .single-product .related.products {
        padding: 20px 20px 40px;
    }
    .single-product .related.products > h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .single-product .related.products .columns-5 {
        margin: 0 -2% !important;
    }
    .single-product .related.products .columns-5 .product {
        width: 46%;
        max-width: 46%;
        margin: 0 2% !important;
    }

    .single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .single-product #reviews #comments {
        margin-bottom: 20px;
    }
    #reviews .commentlist {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    #review_form_wrapper #review_form {
        padding: 24px;
    }
    #review_form_wrapper #review_form:before {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .product-page-wrapper .product-title {
        font-size: 30px;
    }
    .single-product .modal {
        padding: 20px;
    }
    .single-product .modal-dialog {
        margin: 0;
    }
    .single-product .modal-dialog .modal-content {
        border-radius: 10px;
    }
    .single-product .modal-body {
        padding: 20px;
        padding-top: 20px;
    }
    .single-product .modal-body .titlewpr {
        margin-bottom: 16px;
    }
    .single-product .modal-body .titlewpr h2 {
        font-size: 24px;
    }
    .single-product .modal-body .text {
        text-align: center;
        margin-top: 10px;
    }
    .single-product .modal-body .text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .single-product .modal-body .text p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .single-product .modal-body .table-responsive {
        margin-bottom: 10px;
    }
    .single-product .modal-body table :is(th,td) {
        font-size: 12px;
        padding: 8px 6px;
    }
    html .woocommerce-order-received .page-header {
        padding: 60px 20px;
    }
    html .woocommerce-order-received .page-header h1.entry-title {
        font-size: 32px;
    }
    .woocommerce-customer-details .addresses {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    html .woocommerce table.shop_table :is(th,td) {
        font-size: 12px;
        padding: 8px;
    }
    html .woocommerce-order-details h2.woocommerce-order-details__title {
        font-size: 26px;
    }
    html .woocommerce-order-received .page-content > .woocommerce {
        padding: 0 20px;
    }
    .woocommerce-checkout .navbar-toggle {
        display: none;
    }
    .single-post .page-header {
        padding: 60px 20px 30px;
    }
    .single-post .page-header h1.entry-title {
        margin-bottom: 10px;
        font-size: 24px;
        padding: 0;
    }
    .single-post .featured-image {
        padding: 0 20px;
    }
    .single-post .post-thumbnail {
        height: 200px;
        border-radius: 10px;
    }
    .single-post .page-content {
        padding: 30px 20px 20px;
        font-size: 13px;
    }
    .single-post blockquote {
        padding: 16px;
        font-size: 14px;
        line-height: 150%;
    }
    html .wp-block-woocommerce-empty-cart-block {
        padding: 0;
    }
    html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        margin: 0;
    }
    html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product {
        width: 100%;
        max-width: 100%;
        margin: 0 0 34px;
    }
    html .wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product:last-child {
        margin: 0;
    }
    html .wc-block-cart__empty-cart__title {
        margin: 0 auto 50px !important;
        padding: 24px;
        border-radius: 10px;
        font-size: 21px !important;
    }
    html .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
        width: 100px;
        height: 100px;
        background-size: 100px;
    }
    .wp-block-woocommerce-empty-cart-block hr ~ .wp-block-heading {
        font-size: 28px;
    }
    .single-product .woocommerce-notices-wrapper {
        padding: 0 20px;
    }
    .single-product .woocommerce-notices-wrapper .woocommerce-message {
        font-size: 13px;
        line-height: 140%;
    }
    .single-product .woocommerce-notices-wrapper .woocommerce-message .button {
        white-space: nowrap;
    }

    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-header {
        padding: 60px 20px;
    }
    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-header h1.entry-title {
        font-size: 32px;
    }
    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-content h2 {
        margin-top: 22px;
        margin-bottom: 4px;
    }
    :is(.privacy-policy,.page-id-11,.page-id-1005) .page-content {
        padding: 50px 20px 20px;
    }
}