/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* theme-colors */
:root {
    --deep-charcoal: #1A1A1A;
    --bark: #3D3A34;
    --text: #5A5A5A;
    --sand: #D1CFC6;
    --sand-light: #F5F4F1;
    --pure-white: #ffffff;
    --bamboo: #E06000;
    --ember: #E87A3A;
    --sunrise: #FFE5D0;
    --spring-bud-dark: #6BA810;
    --spring-bud: #88D115;
    --leaf: #A3D86F;
    --mist: #E8F5D6;
    --font-main: "Fira Sans", sans-serif;
    --heading: "Playfair Display", serif;
    --nav-height: 87px;
    --mobile-nav: 75px;
}

::selection {
    color: var(--mist);
    background: var(--ember);
}

::-webkit-scrollbar {
    z-index: 999;
    position: absolute;
    background: transparent;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--bamboo);
    border-radius: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    color: var(--deep-charcoal);
}

h2 {font-size: 2.3rem;}

p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 130%;
    margin-bottom: 1rem;
}

a {
    text-decoration: none !important;
}

div p:last-child {
    margin-bottom: 0;
}

.section {
    padding: var(--section-pd);
}

.grid-5, .grid-4, .grid-3, .grid-2 {
    display: grid;
    gap: 25px;
}

.green {
    color: var(--spring-bud-dark) !important;
    --color: var(--spring-bud-dark);
}

.orange {
    color: var(--bamboo);
    --color: var(--bamboo);
}

.white {
    color: var(--pure-white); 
}

.light-green {
    color: var(--spring-bud);
    --color: var(--spring-bud);
}

.light-bg {
    background: var(--sand-light) !important;
}

.cream-bg {
    background: var(--sunrise);
}

.img, .img-round {
    width: 100%;
    overflow: hidden;
}

.img-round {
    border-radius: 25px;
}

.img img,
.img-round img {
    width: 100%;
    height: auto;
}

.stat-img {
    width: 100%;
    position: relative;
}

.stat-img img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.multi-img {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    gap: 20px;
}

.multi-img img.large {
    grid-column: span 5;
}

.multi-img img.small {
    grid-column: span 4;
}

.multi-img img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.stat-con {
    width: 210px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 15px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    padding: 20px 17px;
    bottom: 0;
    right: 0;
    transform: translate(20%, 20%);
}

.stat-con span {
    font-size: 40px;
    font-weight: 700;
    color: var(--bamboo);
    line-height: 100%;
}

.stat-con p {
    font-size: 13px;
    font-weight: 400;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 11px;
    cursor: pointer;
    border: 2.5px solid;
    transition: 0.3s ease;
    min-width: max-content;
    height: fit-content;
}

.btn-cta {
    padding: 8px 32px;
}

.btn-primary {
    background: var(--bamboo);
    color: var(--pure-white);
    border-color: var(--bamboo);
}

.btn-primary:hover {
    background: var(--ember);
    border-color: var(--ember);
}

.btn-outline {
    background: transparent;
    color: var(--bamboo);
    border-color: var(--bamboo);
}

.btn-outline:hover {
    color: var(--pure-white);
    background: var(--bamboo);
}

.btn-white {
    background: var(--pure-white);
    color: var(--bamboo);
    border-color: var(--pure-white);
}

.btn-white:hover {
    background: var(--sand);
    color: var(--bamboo);
    border-color: var(--sand);
}

.btn-white-outline {
    background: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.btn-white-outline:hover {
    background: var(--pure-white);
    color: var(--bamboo);
}

.btn i {
    font-size: inherit;
    color: inherit;
    transition: 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* add to cart button */
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 20px 6px 20px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
    width: fit-content;
    height: fit-content;
    background: var(--bamboo);
    color: var(--pure-white);
}

.cart-btn::before {
    --size: 18px;
    content: '';
    background-image: url(../images/icons/cart.svg);
    width: var(--size);
    height: var(--size);
    background-size: contain;
    background-repeat: no-repeat;
}

.cart-btn:hover {
    background: var(--ember);
}

/* sec-head */
.sec-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.text-btn {
    padding: 0;
    border: none;
}

.eye-brow {
    display: flex;
    align-items: center;
    gap: 11px;
    text-transform: uppercase;
    color: var(--color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.eye-brow.dashes::before,
.eye-brow.dashes::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--color);
}

.sec-head h2, .sec-head h3, .sec-head h4, .sec-head h5, .sec-head h6 {
    font-weight: 600;
    margin-bottom: 0;
    line-height: 125%;
}

.sec-head span {
    color: var(--color);
    font-style: italic;
    font-weight: 600;
}

.sec-head .underline {
    position: relative;
    padding-bottom: 1.2rem;
}

.sec-head .underline::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--color);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header h3 {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 100%;
    font-family: var(--font-main);
}

.icon {
    width: 50px;
    height: 50px;
    font-size: 23px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color);
}

.icon img {
    width: 24px;
    height: auto;
}

.icon.green {
    color: var(--leaf);
    background-color: var(--mist);
}

.icon.orange {
    color: var(--ember);
    background-color: var(--sunrise);
}

.tick-icon {
    content: '';
    background: url(../images/icons/tick.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}


/* ========= NAVBAR ========= */
.announcement-bar {
    background: var(--spring-bud-dark);
    color: var(--pure-white);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.announcement-bar span {
    color: var(--deep-charcoal);
    font-weight: 600;
}

.navbar {
    position: relative !important;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    padding: var(--section-pd);
    padding-top: 0;
    padding-bottom: 0;
    transition: 0.5s ease;
    display: flex;
    align-items: center !important;
    height: var(--nav-height);
}

/* Navbar when scrolled */
.navbar.scrolled {
    position: sticky !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: block;
    width: 110px;
}

.nav-logo img{
    width: 100%;
    height: auto;
}

.navbar.scrolled .nav-logo img {
    width: 110px !important;
}

.nav-logo-hidden {
    visibility: hidden;
    pointer-events: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: fit-content;
}

.nav-links a.nav-link {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: var(--bark);
    letter-spacing: 0.02em;
    transition: 0.3s ease;
}

.nav-links a.nav-link:hover,
.nav-links a.active,
.dropdown-li.open > a.nav-link {
    color: var(--bamboo);
}

/* Dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li > a.nav-link {
    display: flex;
    align-items: center;
}

/* Icon rotation */
a.nav-link .dropdown {
    transition: 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.dropdown-li.open .dropdown {
    transform: rotate(180deg) translateY(1.5px);
}

/* Dropdown wrapper */
.dropdown-li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0 !important;
    transform: translateX(-50%) translateY(55px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: var(--sand-light);
    border-radius: 20px;
    padding: 20px 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 999;
    border: 2px solid var(--sand);
}

.dropdown-li.open ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(15px);
}

/* Dropdown links */
.sub-menu a.nav-link {
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px 12px 15px;
    border-radius: 12px;
    min-width: max-content;
}

.sub-menu a.nav-link:hover {
    color: var(--pure-white);
    background-color: var(--ember);
}

.nav-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-act-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    color: var(--spring-bud-dark);
    font-size: 20px;
}

.action-btn i {
    color: inherit;
    font-size: inherit;
}

.cart-icon-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50px;
    background: var(--bamboo);
    color: var(--pure-white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
}

/* ========= SEARCH SIDEBAR ========= */
/* append to style.css */

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    z-index: 1099;
    transition: opacity 0.4s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--sand-light);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 35px 30px;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.search-sidebar.active {
    transform: translateX(0);
}

.search-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-sidebar-head h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.search-sidebar-close {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: none;
    border-radius: 50px;
    background: var(--pure-white);
    color: var(--bark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-sidebar-close:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.search-sidebar-input {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 14px 18px;
    transition: 0.3s ease;
}

.search-sidebar-input:focus-within {
    border-color: var(--bamboo);
}

.search-sidebar-input i {
    color: var(--bamboo);
    font-size: 15px;
    flex-shrink: 0;
}

.search-sidebar-input input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
}

.search-sidebar-input input::placeholder {
    color: var(--text);
}

.search-sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.search-sidebar-label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 14px;
}

.search-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--bamboo);
    background: var(--pure-white);
    border: 2px solid var(--sand);
    padding: 8px 16px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.search-tag:hover {
    background: var(--bamboo);
    border-color: var(--bamboo);
    color: var(--pure-white);
}

.search-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bark);
    padding: 12px 14px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.search-sidebar-links a i {
    color: var(--bamboo);
    width: 16px;
    text-align: center;
}

.search-sidebar-links a:hover {
    background: var(--pure-white);
    color: var(--bamboo);
}

/* locks background scroll while panel is open */
body.search-sidebar-open {
    overflow: hidden;
}



/* Home Banner */
.hm-banner {
    min-height: 81vh;
    background: url(../images/banner.webp);
    background-position: center;
    background-size: cover;
    display: flex;
}

.hm-banner .container {
    min-height: 100%;
}

.hm-bn-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

.bn-logo {
    width: 300px;
}

.bn-logo img {
    width: 100%;
    height: auto;
}

.hm-bn-con .tagline {
    color: var(--spring-bud-dark);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}



/* banner */
.banner {
    min-height: 50vh;
    background-color: var(--sand-light);
    background-image:
        radial-gradient(circle at 8% 105%, rgba(107, 168, 16, 0.35) 0%, rgba(232, 245, 214, 0.4) 30%, transparent 55%),
        radial-gradient(circle at 12% 118%, rgba(163, 216, 111, 0.3) 0%, rgba(232, 245, 214, 0.35) 25%, transparent 50%),
        radial-gradient(circle at 97% -8% , rgba(224, 96, 0, 0.35) 0%, rgba(255, 229, 208, 0.4) 30%, transparent 55%),
        radial-gradient(circle at 93% 2%, rgba(232, 122, 58, 0.3) 0%, rgba(255, 229, 208, 0.35) 25%, transparent 50%),
        linear-gradient(120deg, var(--sand-light) 0%, var(--sunrise) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
}

.banner-dark {
    position: relative;
    background-image:
        /* Layer 1: Color accent gradient (50% layer opacity, 18% stop opacity) */
        radial-gradient(circle,
            rgba(91, 184, 0, 0.09) 0%,
            /* #5BB800 @ 18% stop × 50% layer opacity */
            rgba(217, 79, 0, 0.09) 100%
            /* #D94F00 @ 18% stop × 50% layer opacity */
        ),
        /* Layer 2: Dark base gradient (100% layer opacity) */
        radial-gradient(circle,
            rgba(26, 26, 26, 0.85) 0%,
            /* #1A1A1A @ 85% */
            rgba(61, 59, 55, 1) 100%
            /* #3D3B37 @ 100% */
        );
    background-blend-mode: normal;
}

.bn-con {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bn-con h1 {
    font-weight: 600;
    margin-bottom: 0;
    line-height: 115%;
    text-align: center;
    font-size: 3rem;
}

.bn-con h1 span {
    color: var(--color);
    font-style: italic;
    font-weight: 600;    
}

.bn-con .subline {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
}

.bn-con .points {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    row-gap: 8px;
    justify-content: center;
}

.bn-con .points span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--bark);
    font-weight: 600;
    font-size: 18px;
}

.bn-con .points span::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--spring-bud-dark);
    border-radius: 50px;
}

.banner-dark h1,
.banner-dark p,
.banner-dark a,
.banner-dark .eye-brow {
    color: var(--pure-white);
}

.banner-dark p {
    font-weight: 400;
}

.banner .tagline {
    font-size: 17px;
    background-color: rgba(255, 255, 255, 0.14);
    line-height: 1.4;
    padding: 6px 20px;
    border-radius: 50px;
    border: 2px solid var(--pure-white);
    text-align: center;
}

.banner .tagline span {
    color: var(--spring-bud-dark);
    font-weight: 600;
}




/* hm-products */
.hm-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
}

.filter-tabs .tab {
    font-size: 14px;
    font-weight: 500;
    color: var(--bamboo);
    background-color: transparent;
    border: 2px solid var(--bamboo);
    padding: 8px 20px;
    border-radius: 50px;
    line-height: 100%;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.filter-tabs .tab:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.filter-tabs .tab.active {
    background-color: var(--spring-bud-dark);
    border-color: var(--spring-bud-dark);
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hm-product-cards-wrap {
    width: 100%;
}

.hm-product-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.hm-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 2px solid rgba(90, 90, 90, 0.5);
    overflow: hidden;
    background-color: var(--sand-light);
    position: relative;
}

.hm-product-card .img {
    --height: 240px;
    width: 100%;
    height: var(--height);
    min-height: var(--height);
    overflow: hidden;
    background: var(--pure-white);
}

.hm-product-card .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: 0.3s ease;
}

.hm-product-card:hover .img img {
    transform: scale(1.05);
}

.hm-product-card .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--bamboo);
    background-color: rgba(224, 97, 0, 0.1);
    backdrop-filter: blur(6px);
    border: 2px solid var(--bamboo);
    padding: 8px 20px;
    border-radius: 50px;
    line-height: 100%;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 15px;
}

.hm-product-card .con {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 23px;
    border-top: 2px solid rgba(90, 90, 90, 0.5);
}

.hm-product-card .con .det {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hm-product-card .con .det .title {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--heading);
    color: var(--bark);
    line-height: 130%;
    transition: 0.5s ease;
}

.hm-product-card .con .det .title:hover {
    color: var(--bamboo);
}

.hm-product-card .con .det .desc {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.btm {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    align-items: end;
    gap: 6px;
}

.btm .price .current {
    font-size: 18px;
    color: var(--bamboo);
    font-weight: 600;
    margin-bottom: 0;
    height: fit-content;
    line-height: 100%;
}

.btm .price .older {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0;
    height: fit-content;
    line-height: 100%;
    text-decoration: line-through;
}

.current::before,
.older::before {
    content: '$';
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}



/* categories-sec */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.cat-card .img {
    width: 100%;
    border: 5px solid rgba(232, 122, 58, 0.40);
    border-radius: 200px;
    overflow: hidden;
}

.cat-card .img img {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: contain;
    aspect-ratio: 1;
    transition: 0.5s ease;
}

.cat-card:hover .img img {
    transform: scale(1.1);
}

.cat-card .con {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.cat-card .con .title {
    color: var(--spring-bud-dark);
    font-family: var(--font-main);
    text-align: center;
    margin-bottom: 0;
}

.cat-card .con .num {
    color: var(--bark);
    font-size: 15px;
    font-weight: 500;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.benefits .benf {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits .benf .icon {
    background-color: var(--pure-white);
}

.benefits .benf .con {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefits .benf .con .title {
    margin-bottom: 0;
    font-family: var(--font-main);
}

.benefits .benf .con p {
    font-size: 15px;
}




/* footer */
footer {
    background: var(--deep-charcoal);
}

.ft-logo {
    width: 180px;
}

.ft-logo img {
    width: 100%;
    height: auto;
}

.ft-socials {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.social:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.social i {
    color: var(--mist);
    font-size: 25px;
    transition: 0.3s ease;
}

.social:hover i {
    color: var(--spring-bud-dark);
}


footer p {
    color: var(--pure-white);
    font-weight: 500;
}

.ft-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ft-col h5 {
    color: var(--pure-white);
    text-transform: uppercase;
    min-width: max-content;
    margin-bottom: 0;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links a {
    color: var(--sand);
    text-transform: capitalize;
    font-size: 17px;
    line-height: 145%;
    width: fit-content;
    transition: 0.4s ease;
}

.ft-links a:hover {
    color: var(--spring-bud-dark);
    transform: translateX(2px);
}

.ft-bottom {
    display: flex;
    justify-content: center;
    color: var(--sand);
    font-size: 16px;
    font-weight: 500;
    margin-top: 35px;
    padding: 20px 0;
    border-top: 3px solid var(--text);
    text-align: center;
}




/* highlight-sec */
.highlight-sec {
    background-color: var(--deep-charcoal);
    position: relative;
    overflow: hidden;
}

.highlight-sec p {
    font-weight: 400;
    line-height: 165%;
    color: var(--sand-light);
}

.highlight-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ember) 0%, var(--leaf) 100%);
    opacity: 0.13;
    pointer-events: none;
}

.highlight-sec::after {
    content: '';
    background: url(../images/icons/leaf.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    width: 249px;
    height: 278px;
    top: 0;
    right: 0;
    transform: translate(15%, -39%);
}



/* pillar-card */
.pillar-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 20px;
    border: 2.5px solid var(--sand);
    background-color: var(--pure-white);
    padding: 40px 35px;
    transition: 0.4s ease;
}

.pillar-card:hover {
    border-color: var(--ember);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pillar-card .eye-brow {
    color: var(--bamboo);
}

.pillar-card .title {
    margin-bottom: 0;
    font-weight: 600;
}

.pillar-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
}



.point-card {
    display: flex;
    gap: 20px;
    background-color: var(--pure-white);
    border-radius: 20px;
    border: 2.5px solid var(--sand);
    padding: 20px;
    transition: 0.4s ease;
}

.point-card:hover {
    border-color: var(--spring-bud);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.point-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.point-card .con {
    display: flex;
    flex-direction: column;
}

.point-card .title {
    font-weight: 600;
}


/* testimonials */
.testimonial-wrapper {
    position: relative;
}

.testimonial-swiper {
    padding-bottom: 48px !important;
}

.testimonial-swiper .swiper-wrapper {
    justify-content: flex-start !important;
}

.testimonial-swiper .swiper-slide {
    height: unset !important;
    min-height: 100% !important;
}

.testimonial-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-head .rating {
    font-size: 50px;
    line-height: 100%;
    color: var(--bamboo);
    font-weight: 600;
}

.testimonial-head h3 {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 100%;
    font-family: var(--font-main);
    min-width: max-content;
}

.testimonial-head p {
    font-size: 15px;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--bamboo);
    font-size: 17px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    background: var(--sand-light);
    border: 2.5px solid var(--sand);
    border-radius: 20px;
    padding: 25px 30px;
    transition: 0.4s ease;
    height: 100% !important;
}

.testimonial-card:hover {
    background: var(--mist);
    border-color: var(--mist);
}

.testimonial-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    color: var(--pure-white);
    flex-shrink: 0;
}

.testimonial-card:nth-child(3n + 1) .avatar {
    background: var(--bamboo);
}

.testimonial-card:nth-child(3n + 2) .avatar {
    background: var(--spring-bud-dark);
}

.testimonial-card:nth-child(3n + 3) .avatar {
    background: var(--bark);
}

.testimonial-card .author .det {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-card .name {
    font-size: 17px;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0;
}

.testimonial-card .info {
    font-size: 14px;
    font-weight: 400;
}

.testimonial-card .stars {
    gap: 3px;
}

.testimonial-card .stars i {
    font-size: 14px;
}

.testimonial-card .inner {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.testimonial-card .main-line {
    font-size: 17px;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.3rem;
}

.testimonial-card .verified {
    color: var(--spring-bud-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-card .verified::before {
    content: '';
    background: url(../images/icons/tick.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}

.testimonial-card .verified::after {
    content: 'Verified Purchase';
}


/* ========= NAVIGATION ========= */
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px !important;
    height: 45px !important;
    border-radius: 100px;
    background: var(--pure-white);
    border: 3px solid var(--bamboo);
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.testimonial-prev {
    left: calc(0% - 60px) !important;
}

.testimonial-next {
    right: calc(0% - 60px) !important;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--bamboo);
    border-color: var(--bamboo);
}

.testimonial-prev::after, .testimonial-next::after {
    display: none !important;
}

.testimonial-prev i, .testimonial-next i {
    color: var(--bamboo);
    font-size: 20px;
    transition: 0.3s ease;
}

.testimonial-prev:hover i, .testimonial-next:hover i {
    color: var(--mist);
}


/* ========= PAGINATION ========= */
.testimonial-swiper .swiper-pagination {
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--bamboo);
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0 !important;
    transition: 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--spring-bud-dark);
    width: 20px;
    border-radius: 3px;
}



/* cta sec */
.cta-sec {
    background: var(--bamboo);
    position: relative;
    overflow: hidden;
}

.cta-sec .container {
    z-index: 2;
    position: relative;
}

.cta-sec::before,
.cta-sec::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 1;
}

.cta-sec::before {
    top:0;
    left: 0;
    background: rgba(255, 255, 255, 0.06);
    transform: translate(-50%, -50%);
}

.cta-sec::after {
    bottom:0;
    right: 0;
    background: rgba(0, 0, 0, 0.06);
    transform: translate(50%, 50%);
}

.cta-sec h2 {
    font-weight: 600;
    color: var(--pure-white);
}

.cta-sec p {
    color: var(--pure-white);
    font-weight: 400;
}




/* ========= SHOP ALL ========= */
.shop-sec {
    background: var(--sand-light);
}

.mob-filter {
    display: none;
    position: fixed;
    width: 100%;
    padding: 10px 60px;
    background: var(--pure-white);
    bottom: 0;
    left: 0;
    z-index: 997;
}

.shop-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--bamboo);
    background: transparent;
    border: 2px solid var(--bamboo);
    border-radius: 11px;
    padding: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.shop-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* --- sidebar --- */
.shop-sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shop-sidebar-head {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.filter-close {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    border: none;
    background: var(--sand-light);
    color: var(--bark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-card {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 18px;
    padding: 22px;
}

.filter-title {
    font-family: var(--font-main);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--sand);
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 6px;
}

.filter-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bark);
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-list li:hover {
    background: var(--sand-light);
}

.filter-list li i {
    color: var(--bamboo);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.filter-list li .name {
    flex: 1;
}

.filter-list li .count {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--sand-light);
    padding: 2px 9px;
    border-radius: 50px;
}

.filter-list li.active {
    background: var(--bamboo);
    color: var(--pure-white);
}

.filter-list li.active i {
    color: var(--pure-white);
}

.filter-list li.active .count {
    background: rgba(255, 255, 255, 0.25);
    color: var(--pure-white);
}

.filter-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bark);
    cursor: pointer;
}

.filter-check input {
    display: none;
}

.filter-check .box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 2px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.filter-check .box i {
    font-size: 10px;
    color: var(--pure-white);
    opacity: 0;
    transition: 0.2s ease;
}

.filter-check input:checked + .box {
    background: var(--bamboo);
    border-color: var(--bamboo);
}

.filter-check input:checked + .box i {
    opacity: 1;
}

/* promo card */
.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 6px;    
    background: linear-gradient(45deg, #2A2820 0%, rgba(61, 58, 55, 0.8) 100%);
}

.promo-card h5 {
    color: var(--pure-white);
    font-weight: 600;
}

.promo-card p {
    color: var(--sand);
    font-size: 14px;
    margin-bottom: 14px;
}

.promo-card::after {
    content: '';
    background: url(../images/icons/leaf.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    width: 90px;
    height: 90px;
    top: 0;
    right: 0;
    transform: translate(8%, -9%);
}

.promo-code {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--bamboo);
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 7px 10px;
}

.shop-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1049;
}

/* --- main --- */
.shop-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.shop-head h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.shop-head .showing {
    font-size: 14px;
    margin-bottom: 0;
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-dropdown .dropdown-toggle {
    gap: 8px;
}

.sort-dropdown .dropdown-toggle::after {
    margin-left: 2px;
}

.sort-dropdown .dropdown-menu {
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 8px;
}

.sort-dropdown .dropdown-item {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
}

.sort-dropdown .dropdown-item:hover {
    background: var(--sand-light);
    color: var(--bamboo);
}

.sort-dropdown .dropdown-item.active,
.sort-dropdown.dropdown-item:active {
        background-color: var(--bamboo);
}

.view-toggle {
    display: flex;
    gap: 8px;
    border: 2px solid var(--sand);
    border-radius: 10px;
    padding: 4px;
}

.view-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--text);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

/* product grid */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.shop-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.shop-product-card .img {
    --height: 220px;
    position: relative;
    height: var(--height);
    min-height: var(--height);
    background: var(--pure-white);
}

.shop-product-card .img a {
    display: block;
    height: 100%;
}

.shop-product-card .img img {
    height: 100%;
    object-position: center;
    object-fit: contain;
    transition: 0.4s ease;
}

.shop-product-card:hover .img img {
    transform: scale(1.05);
}

.shop-product-card .badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 5px 11px 4px;
    border-radius: 50px;
    color: var(--pure-white);
    line-height: 100%;
}

.badge-dark { background: var(--bark); }
.badge-orange { background: var(--bamboo); }
.badge-green { background: var(--spring-bud-dark); }
.badge-light-green { background: var(--spring-bud); color: var(--sand-light); }

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50px;
    border: none;
    background: var(--sunrise);
    color: var(--bamboo);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--bamboo);
    color: var(--pure-white);
}

.shop-product-card .con {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    padding: 20px;
    border-top: 2.5px solid var(--sand);
    height: 100%;
}

.shop-product-card .con .con-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-product-card .category {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bamboo);
}

.shop-product-card .title {
    font-family: var(--heading);
    font-size: 19px;
    font-weight: 500;
    color: var(--bark);
    line-height: 130%;
    transition: 0.3s ease;
}

.shop-product-card .title:hover {
    color: var(--bamboo);
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating .stars i {
    font-size: 12px;
    color: var(--spring-bud-dark);
}

.rating .count {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.shop-product-card .desc {
    font-size: 13px;
    margin-bottom: 0;
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 6px;
}

.pill {
    font-size: 11px;
    font-weight: 500;
    color: var(--spring-bud-dark);
    background: var(--mist);
    padding: 4px 10px;
    border-radius: 50px;
    line-height: 100%;
}

/* pagination */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.shop-pagination .page {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    border: 2px solid var(--sand);
    color: var(--bark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.shop-pagination .page:hover {
    border-color: var(--bamboo);
    color: var(--bamboo);
}

.shop-pagination .page.active {
    background: var(--spring-bud-dark);
    border-color: var(--spring-bud-dark);
    color: var(--pure-white);
}

.shop-pagination .page-prev,
.shop-pagination .page-next {
    color: var(--bamboo);
    font-size: 16px;
    margin-left: 8px;
    transition: 0.3s ease;
}

.shop-pagination .page-prev:hover {
    transform: translateX(-4px);
}

.shop-pagination .page-next:hover {
    transform: translateX(4px);
}

/* list view */
.shop-product-grid.list-view {
    grid-template-columns: repeat(1, 1fr);
}

.shop-product-grid.list-view .shop-product-card {
    flex-direction: row;
}

.shop-product-grid.list-view .shop-product-card .img {
    width: 275px;
    flex-shrink: 0;
    min-height: 100%;
}

.shop-product-grid.list-view .shop-product-card .con {
    border-top: none;
    border-left: 2.5px solid var(--sand);
    flex: 1;
}



.header-sec {
    display: flex;
    flex-direction: column;
    background: var(--pure-white);
    border-radius: 20px;
    padding: 50px;
}

.header-sec.brand {
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.header-sec.brand .con {
    display: flex;
    flex-direction: column;
}

.header-sec h1,
.page-header h1,
.page-header h2 {
    font-weight: 600;
    line-height: 125%;
}

.header-sec h1 span,
.page-header h1 span,
.page-header h2 span {
    color: var(--color);
    font-style: italic;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 12px;
    row-gap: 7px;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--bamboo);
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumb a:last-child {
    color: var(--text);
}

.breadcrumb a:not(:last-child)::after {
    content: '\f054';
    font-family: var(--fa-family-classic);
    font-weight: 900;
    font-size: 13px;
    color: inherit;
    opacity: 0.6;
    transition: 0.2s ease;
}

.breadcrumb a:hover::after {
    color: var(--bamboo);
    transform: translateX(2px);
    opacity: 1;
}

.top-breadcrumb {
    --padding-tb: 0.7rem;
    --border: 2px solid var(--sand);
    padding-top: var(--padding-tb);
    padding-bottom: var(--padding-tb);
    border-top: var(--border);
    border-bottom: var(--border);
}


/* ========= PRODUCT PAGE ========= */
.pdp-row {
    align-items: flex-start;
}

/* --- gallery --- */
.pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.pdp-main-img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--sand);
    background: var(--pure-white);
    cursor: zoom-in;
}

.pdp-main-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: 0.4s ease;
}

.pdp-badges-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    pointer-events: none;
}

.pdp-badges-overlay .badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdp-expand-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--pure-white);
    color: var(--bark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.pdp-expand-btn:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pdp-thumb {
    padding: 0;
    border-radius: 12px;
    border: 2.5px solid var(--sand);
    overflow: hidden;
    background: var(--pure-white);
    cursor: pointer;
    transition: 0.3s ease;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.pdp-thumb:hover {
    border-color: var(--ember);
}

.pdp-thumb.active {
    border-color: var(--bamboo);
}


/* --- info --- */
.pdp-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pdp-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.pdp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdp-tag.tag-orange {
    color: var(--bamboo);
    background: var(--sunrise);
}

.pdp-tag.tag-green {
    color: var(--spring-bud-dark);
    background: var(--mist);
}

.pdp-tag i {
    color: inherit;
    font-size: 9px;
}

.pdp-info .wishlist-btn {
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
    background: var(--pure-white);
    border-radius: 12px;
    border: 2.5px solid var(--sand);
    color: var(--bark);
    font-size: 30px;
    width: 55px;
    height: 55px;
}

.pdp-info .wishlist-btn:hover,
.pdp-info .wishlist-btn.active {
    background: var(--bamboo);
    border-color: var(--bamboo);
    color: var(--pure-white);
}

.pdp-title {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 115%;
}

.pdp-subtitle {
    font-size: 15px;
    line-height: 160%;
    margin-bottom: 0;
}

.pdp-rating {
    gap: 10px;
}

.pdp-rating .stars i {
    font-size: 15px;
}

.pdp-rating .pdp-score {
    font-size: 16px;
    font-weight: 700;
    color: var(--bark);
}

.pdp-rating .count {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: 0.3s ease;
}

.pdp-rating .count:hover {
    color: var(--bamboo);
}

/* price box */
.pdp-price-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--mist);
    width: fit-content;
    border: 1.5px solid var(--sand);
    border-radius: 16px;
    padding: 22px 24px;
}

.pdp-price-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price.pdp-price {
    gap: 10px;
}

.price.pdp-price .current {
    font-size: 2.1rem;
    color: var(--bamboo);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 100%;
}

.price.pdp-price .older {
    font-size: 18px;
    text-decoration: line-through;
}

.pdp-price-note {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 0;
}

.pdp-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--spring-bud-dark);
    margin-bottom: 0;
}

.pdp-stock i {
    font-size: 13px;
}

/* option pills (pack size / flavour) */
.pdp-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdp-option-label {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0;
}

.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    color: var(--bark);
    background: var(--pure-white);
    border: 2.5px solid var(--sand);
    border-radius: 14px;
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.option-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-pill:hover {
    border-color: var(--ember);
    color: var(--bamboo);
}

.option-pill.active {
    border-color: var(--bamboo);
    color: var(--bamboo);
    background: var(--sunrise);
    font-weight: 600;
}

.option-pill.disabled {
    color: var(--sand);
    border-color: var(--sand);
    background: var(--sand-light);
    cursor: not-allowed;
    pointer-events: none;
}

/* actions */
.pdp-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 2.5px solid var(--sand);
    border-radius: 11px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 42px;
    height: 46px;
    border: none;
    background: var(--sand-light);
    color: var(--bark);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.qty-btn:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.qty-input {
    width: 44px;
    height: 46px;
    border: none;
    border-left: 2.5px solid var(--sand);
    border-right: 2.5px solid var(--sand);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.pdp-actions .btn {
    flex: 1;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
}

.pdp-actions .added_to_cart,
.pdp-actions .wc-forward {
    display: none !important;
}

.btn-dark {
    background: var(--deep-charcoal);
    color: var(--pure-white);
    border-color: var(--deep-charcoal);
}

.btn-dark:hover {
    background: var(--bark);
    border-color: var(--bark);
}

/* perks */
.pdp-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pdp-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 16px;
}

.pdp-perk i {
    font-size: 20px;
    color: var(--bamboo);
    flex-shrink: 0;
}

.pdp-perk .con h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pdp-perk .con p {
    font-size: 12px;
    margin-bottom: 0;
}

/* share */
.pdp-share {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 17px;
    border-top: 2px solid var(--sand);
}

.pdp-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.pdp-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    border: 2px solid var(--sand);
    border-radius: 50px;
    padding: 7px 16px;
    transition: 0.3s ease;
}

.pdp-social:hover {
    border-color: var(--bamboo);
    color: var(--bamboo);
}

.pdp-social i {
    font-size: 14px;
}

.pdp-copy-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    background: transparent;
    border: 2px solid var(--sand);
    border-radius: 50px;
    padding: 7px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.pdp-copy-link:hover,
.pdp-copy-link.copied {
    border-color: var(--bamboo);
    color: var(--bamboo);
}

/* ========= PRODUCT IMAGE LIGHTBOX ========= */
.pdp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.92);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.pdp-lightbox.active {
    display: flex;
}

.pdp-lightbox-inner {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-lightbox-inner img {
    max-width: 85vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    object-fit: contain;
}

.pdp-lightbox-counter {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.pdp-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    border: 2px solid var(--pure-white);
    background: transparent;
    color: var(--pure-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 5;
}

.pdp-lightbox-close:hover {
    background: var(--bamboo);
    border-color: var(--bamboo);
}

.pdp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid var(--pure-white);
    background: transparent;
    color: var(--pure-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 5;
}

.pdp-lightbox-nav:hover {
    background: var(--bamboo);
    border-color: var(--bamboo);
}

.pdp-lightbox-nav.prev {
    left: 25px;
}

.pdp-lightbox-nav.next {
    right: 25px;
}


/* ========= PRODUCT DETAIL TABS ========= */
.pdp-tabs-card {
    border: 2.5px solid var(--sand);
    border-radius: 22px;
    overflow: hidden;
}

.pdp-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--sand);
}

.pdp-tab-btn {
    position: relative;
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: none;
    padding: 14px 34px;
    cursor: pointer;
    transition: 0.3s ease;
}

.pdp-tab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: var(--bamboo);
    transform: scaleX(0);
    transition: 0.3s ease;
}

.pdp-tab-btn:hover {
    color: var(--bark);
}

.pdp-tab-btn.active {
    background: var(--pure-white);
    color: var(--bamboo);
}

.pdp-tab-btn.active::after {
    transform: scaleX(1);
}

.pdp-tab-panels {
    padding: 34px 30px 38px;
    background: var(--pure-white);
}

.pdp-tab-panel {
    display: flex;
    flex-direction: column;
    gap: 26px;
    animation: pdpFadeIn 0.35s ease;
}

@keyframes pdpFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.pdp-tab-intro {
    font-size: 16px;
    line-height: 155%;
    margin-bottom: 0;
}

.pdp-tab-intro strong {
    color: var(--bark);
    font-family: var(--heading);
    font-weight: 700;
}

.pdp-tab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pdp-tab-grid-notes {
    padding-top: 22px;
    border-top: 2px solid var(--sand);
}

.pdp-tab-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pdp-tab-heading {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--bark);
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

.pdp-tab-heading.orange { color: var(--bamboo); }
.pdp-tab-heading.green { color: var(--spring-bud-dark); }

.pdp-tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0;
    margin: 0;
}

.pdp-tab-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 145%;
}

.pdp-tab-list li::before {
    content: '\f058';
    font-family: var(--fa-family-classic);
    flex-shrink: 0;
    font-size: 13px;
    color: var(--bamboo);
}

.pdp-tab-list.green li::before {
    color: var(--spring-bud-dark);
}

.pdp-tab-block p {
    font-size: 15px;
    line-height: 150%;
    margin-bottom: 0;
}

/* specifications */
.pdp-spec-table {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--sand);
    border-radius: 16px;
    overflow: hidden;
}

.pdp-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 22px;
    font-size: 15px;
}

.pdp-spec-row:nth-child(odd) {
    background: var(--sand-light);
}

.pdp-spec-row .label {
    font-weight: 600;
    color: var(--bark);
    min-width: max-content;
}

.pdp-spec-row .value {
    font-weight: 500;
    color: var(--text);
    text-align: right;
}

/* ingredients */
.pdp-allergen-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--sunrise);
    border: 1.5px solid rgba(224, 96, 0, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
}

.pdp-allergen-note i {
    font-size: 20px;
    color: var(--bamboo);
    margin-top: 3px;
    flex-shrink: 0;
}

.pdp-allergen-note h6 {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 4px;
}

.pdp-allergen-note p {
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    padding: 35px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 22px;
}

.testimonials-container .head-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--sand);
}

/* ========= RATING BREAKDOWN ========= */
.rating-sec {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.rating-sec .star-con {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    align-items: center;
    gap: 10px;
}

.rating-sec .star-con .rate,
.rating-sec .star-con .rate-count {
    grid-column: span 1;
}

.rating-sec .star-con .rate-bar {
    grid-column: span 18;
}

/* rate label + star icon */
.rating-sec .rate {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--bark);
}

.rating-sec .rate::after {
    content: '\f005';
    font-family: var(--fa-family-classic);
    font-weight: 900;
    font-size: 12px;
    color: var(--sand);
}

.rating-sec .rate-bar {
    position: relative;
    height: 8px;
    border-radius: 50px;
    background: var(--sand);
    overflow: hidden;
}

.rating-sec .rate-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill, 0%);
    border-radius: 50px;
    background: var(--bamboo);
    transition: width 0.6s ease;
}

/* count */
.rating-sec .rate-count {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--bark);
}

.testimonials-container .cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ========= NEWSLETTER ========= */

.newsletter-bar {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    border-radius: 30px;
    background: linear-gradient(120deg, var(--deep-charcoal) 0%, var(--bark) 100%);
    padding: 60px 65px;
}

.newsletter-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: url(../images/icons/leaf.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    transform: translate(15%, -35%);
    pointer-events: none;
}

.newsletter-con {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.newsletter-con h3 {
    color: var(--pure-white);
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 0;
}

.newsletter-con p {
    color: var(--sand);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.newsletter-form {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 340px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--pure-white);
    font-size: 15px;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-form .btn {
    flex-shrink: 0;
    border-radius: 12px;
    padding: 16px 26px;
    font-size: 15px;
    font-weight: 600;
}

.newsletter-form .wpcf7-not-valid-tip {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--sunrise);
}

/* green CTA button variant */
.btn-green {
    background: var(--spring-bud-dark);
    color: var(--pure-white);
    border-color: var(--spring-bud-dark);
}

.btn-green:hover {
    background: var(--spring-bud);
    border-color: var(--spring-bud);
    color: var(--deep-charcoal);
}




/* ========= LEARN & DISCOVER / BLOG ========= */
.blog-sec {
    background: var(--sand-light);
}

.blog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 6px 6px 6px 20px;
    max-width: 100%;
    margin-bottom: 35px;
}

.blog-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
}

.blog-search input::placeholder {
    color: var(--text);
}

.blog-search button {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--sunrise);
    color: var(--bamboo);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-search button:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.blog-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 110px;
}

.blog-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* card */
.blog-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card .img {
    position: relative;
    display: block;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: var(--sand-light);
}

.blog-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.blog-card:hover .img img {
    transform: scale(1.04);
}

.blog-card .img .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.blog-card .con {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 26px 28px 30px;
}

.blog-meta {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.blog-title {
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 2px;
    font-size: 1.35rem;
}

.blog-desc {
    font-size: 15px;
    margin-bottom: 4px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
}

.blog-link i {
    font-size: 13px;
    transition: 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

.blog-link.orange { color: var(--bamboo); }
.blog-link.green { color: var(--spring-bud-dark); }

.blog-cat-list li i {
    width: 18px;
    text-align: center;
}

.blog-pagination {
    margin-top: 10px;
}

.blog-pagination .page.active {
    background: var(--spring-bud-dark);
    border-color: var(--spring-bud-dark);
}

.blog-empty {
    text-align: center;
    padding: 40px 0;
    font-weight: 500;
}



/* ========= SINGLE POST ========= */
.post-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.post-main {
    flex: 1;
    min-width: 0;
}

.post-title {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.post-meta-row {
    --border: 2.5px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-bottom: var(--border);
    border-top: var(--border);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-author .avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-author .name {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--heading);
    color: var(--bamboo);
    margin-bottom: 2px;
}

.post-author .info {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
}

.post-actions {
    display: flex;
    gap: 10px;
}

.post-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--spring-bud-dark);
    background: transparent;
    color: var(--spring-bud-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.post-icon-btn:hover,
.post-icon-btn.active {
    background: var(--spring-bud-dark);
    color: var(--pure-white);
}

.post-featured-img {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin: 2rem 0;
    max-height: 65vh;
}

.post-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-body {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.post-body h2 , .post-body h3 , .post-body h4 , .post-body h5 , .post-body h6 {
    font-weight: 600;
    margin-top: 1.3rem;
    margin-bottom: 0.7rem;
}

.post-body p {
    font-size: 17px;
    font-weight: 400;
    line-height: 165%;
}

.post-body strong,
.post-body b {
    color: var(--bark);
}

.post-body a {
    font-weight: 500;
    color: var(--spring-bud-dark);
    transition: 0.3s ease;
}

.post-body a {
    color: var(--bamboo);
}

.post-body ul,
.post-body ol {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-left: 1rem;
}

.post-body li {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 145%;
}

.post-body ul {
    list-style: none;
    padding: 0;
}

.post-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.post-body ul li::before {
    content: '\f058';
    font-family: var(--fa-family-classic);
    flex-shrink: 0;
    font-size: 13px;
    color: var(--bamboo);
}

.post-related {
    padding-top: 35px;
    border-top: 2px solid var(--sand);
}

.post-related-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.post-related-title span {
    color: var(--bamboo);
    font-style: italic;
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* --- sidebar --- */
.post-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 110px;
}

.post-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 6px 6px 6px 20px;
}

.post-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
}

.post-search input::placeholder {
    color: var(--text);
}

.post-search button {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--sunrise);
    color: var(--bamboo);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.post-search button:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.post-recent-card .filter-title {
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
}

.post-recent-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-recent-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.post-recent-item .img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-recent-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-recent-item .det h6 {
    font-family: var(--heading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--bark);
    line-height: 130%;
    margin-bottom: 4px;
    transition: 0.3s ease;
}

.post-recent-item:hover .det h6 {
    color: var(--bamboo);
}

.post-recent-item .det p {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
}

.post-callout {
    border-radius: 6px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.post-callout::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background-color: var(--color);
}

.post-callout h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color);
}

.post-callout p {
    font-size: 14px;
    line-height: 155%;
    margin-bottom: 0;
}

.callout-green {
    --color: var(--spring-bud-dark);
    background: var(--mist);
}

.callout-green p {
    color: var(--bark);
}

.callout-orange {
    --color: var(--bamboo);
    background: var(--sunrise);
}

.callout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.callout-tag {
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
    color: var(--bark);
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 6px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.callout-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--spring-bud-dark);
}



/* ========= FAQ PAGE ========= */

/* search bar in banner */
.faq-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pure-white);
    border-radius: 14px;
    padding: 6px 6px 6px 22px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
}

.faq-search input::placeholder {
    color: var(--text);
}

.faq-search button {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--bamboo);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-search button:hover {
    background: var(--ember);
}

/* category tabs */
.faq-tabs-sec {
    background: var(--pure-white);
    border-bottom: 2px solid var(--sand);
    position: sticky;
    top: var(--nav-height);
    z-index: 50;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-tabs-nav {
    display: flex;
    justify-content: center;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.faq-tabs-nav::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.faq-tab {
    position: relative;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: none;
    padding: 20px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s ease;
}

.faq-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: var(--bamboo);
    transform: scaleX(0);
    transition: 0.3s ease;
}

.faq-tab:hover {
    color: var(--bark);
}

.faq-tab.active {
    color: var(--bamboo);
}

.faq-tab.active::after {
    transform: scaleX(1);
}

.faq-cat-head {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-bottom: 2rem;
}

.faq-empty {
    text-align: center;
    padding: 40px 0;
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 3rem;
}

.faq-category:last-child .faq-grid {
    margin-bottom: 0;
}

.faq-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--pure-white);
    border: 2.5px solid var(--sand);
    border-radius: 18px;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--sand);
    transition: 0.3s ease;
}

.faq-card:hover {
    border-color: var(--bamboo);
    transform: translateY(-3px);
}

.faq-card:hover::before {
    background: var(--bamboo);        
}

.faq-tag {
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.6px;
    color: var(--bamboo);
    background: var(--sunrise);
    padding: 7px 18px 5px;
    border-radius: 50px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    line-height: 135%;
    padding-bottom: 12px;
    margin-bottom: 2px;
    border-bottom: 2px solid var(--sand);
    font-family: var(--font-main);
}

.faq-answer {
    font-size: 15px;
    line-height: 155%;
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--bark);
}

.faq-answer a {
    color: var(--bamboo);
    font-weight: 600;
}

/* benefits bar */
.faq-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--sand);
}

.faq-benf {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 25px 30px;
    position: relative;
    background-color: var(--sand-light);
}

.faq-benf .icon {
    background-color: var(--sunrise);
}

.faq-benf h4 {
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0;
}

.faq-benf h4 span {
    color: var(--bamboo);
    font-style: italic;
}

.faq-benf p {
    font-size: 14px;
    margin-bottom: 0;
}



/* ========= CONTACT PAGE ========= */
/* --- form --- */
.contact-form,
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-field-row {
    display: flex;
    gap: 20px;
}

.contact-field-row .contact-field {
    flex: 1;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field label {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
    outline: none;
    transition: 0.3s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 145%;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--text);
    font-weight: 400;
}

.contact-field input:focus,
.contact-field textarea:focus {
    background: var(--pure-white);
    border-color: var(--bamboo);
}

.contact-subject-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-pill {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--bark);
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-pill:hover {
    border-color: var(--ember);
    color: var(--bamboo);
}

.contact-pill.active {
    border-color: var(--bamboo);
    color: var(--bamboo);
    background: var(--sunrise);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-submit {
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
}

.contact-submit.sent {
    background: var(--spring-bud-dark);
    border-color: var(--spring-bud-dark);
}

.contact-form-note {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form-note strong.green {
    color: var(--spring-bud-dark);
}


/* wordpress & cf7 complient form styles */
/* ===== Contact Form 7 compliance ===== */

/* CF7 wraps inputs in a span — make it behave like the input itself */
.contact-field .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    position: relative;
}

/* inherit your existing input styling instead of CF7 defaults */
.contact-field .wpcf7-form-control.wpcf7-text,
.contact-field .wpcf7-form-control.wpcf7-email,
.contact-field .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
    outline: none;
    transition: 0.3s ease;
}

.contact-field .wpcf7-form-control:focus {
    background: var(--pure-white);
    border-color: var(--bamboo);
}

.contact-field .wpcf7-form-control.wpcf7-textarea {
    resize: vertical;
    max-height: 140px;
    line-height: 145%;
}

/* per-field validation message */
.contact-field .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--bamboo);
}

.contact-field .wpcf7-form-control.wpcf7-not-valid {
    border-color: var(--bamboo);
}

/* the top-level success/error banner CF7 injects above the form */
.wpcf7-response-output {
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 20px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 1.5px solid rgba(107, 168, 16, 0.3) !important;
    background: var(--mist);
    color: var(--bark);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border: 1.5px solid rgba(224, 96, 0, 0.3) !important;
    background: var(--sunrise);
    color: var(--bark);
}

/* make the CF7 submit input look/behave like your .btn.btn-primary */
.contact-form-footer .wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 34px;
    border-radius: 11px;
    cursor: pointer;
    border: 2.5px solid var(--bamboo);
    background: var(--bamboo);
    color: var(--pure-white);
    transition: 0.3s ease;
}

.contact-form-footer .wpcf7-submit i {
    transition: 0.3s ease;
}

.contact-form-footer .wpcf7-submit:hover {
    background: var(--ember);
    border-color: var(--ember);
}

.contact-form-footer .wpcf7-submit:hover i {
    transform: translateX(5px);
}

/* CF7's built-in ajax spinner */
.contact-form-footer .wpcf7-spinner {
    margin: 0 0 0 8px;
}

/* CF7 hidden field must actually stay invisible even though it's a real input */
input.wpcf7-form-control[name="your-subject"] {
    display: none;
}

/* ========= PAGE LOADER OVERLAY ========= */
.page-loader-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(245, 244, 241, 0.92);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.page-loader-overlay.active {
    display: flex;
}

.page-loader-spinner i {
    font-size: 48px;
    color: var(--bamboo);
}


/* --- info column --- */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 20px;
    padding: 26px;
    transition: 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--bamboo);
}

.contact-info-card .icon.orange {
    color: var(--bamboo);
}

.contact-info-card .icon.green {
    color: var(--spring-bud-dark);
}

.contact-info-card .con {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-card .con .eye-brow {
    font-size: 12px;
}

.contact-info-card .con .title {
    font-weight: 600;
    margin-bottom: 0;
}

.contact-info-card .con p {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-link {
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-link.orange { color: var(--bamboo); }
.contact-link.green { color: var(--spring-bud-dark); }

.contact-link:hover {
    text-decoration: underline !important;
}

.icon.dark {
    color: var(--pure-white);
    background-color: rgba(255, 255, 255, 0.12);
}

/* support hours card */
.contact-hours-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(120deg, var(--deep-charcoal) 0%, var(--bark) 100%);
    border-radius: 20px;
    padding: 28px;
}

.contact-hours-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-hours-head .title {
    color: var(--pure-white);
    margin-bottom: 4px;
}

.contact-hours-head p {
    color: var(--sand);
    font-size: 14px;
    margin-bottom: 0;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--spring-bud);
    background: rgba(136, 209, 21, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 100%;
}

.badge-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--spring-bud);
    flex-shrink: 0;
}

.badge-status.closed {
    color: var(--sand);
    background: rgba(255, 255, 255, 0.08);
}

.badge-status.closed .dot {
    background: var(--sand);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 500;
    color: var(--sand);
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-row .value {
    color: var(--spring-bud);
    font-weight: 600;
}

.contact-hours-row .value.closed {
    color: var(--sand);
}

/* find us online card */
.contact-social-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(120deg, var(--mist) 0%, var(--sunrise) 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-social-card .title {
    font-family: var(--font-main);
    margin-bottom: 0;
    font-weight: 600;
}

.contact-social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-social-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bark);
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.contact-social-pill i {
    font-size: 15px;
}

.contact-social-pill:hover {
    border-color: var(--bamboo);
    color: var(--bamboo);
}



/* ========= 404 / ERROR PAGE ========= */
.error-banner .bn-con {
    gap: 20px;
}

.error-code {
    font-family: var(--heading);
    font-size: 8rem;
    font-weight: 700;
    line-height: 100%;
    color: var(--bamboo);
    letter-spacing: 4px;
    text-shadow: 6px 6px 0 var(--sunrise);
}

.error-search {
    width: 100%;
    max-width: 480px;
    margin: 0;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 6px;
}

.error-link-card {
    text-align: left;
    transition: 0.4s ease;
}

.error-link-card .icon {
    margin-bottom: 4px;
}

.error-link-card .title {
    margin-bottom: 2px;
}

.error-link-card p {
    font-size: 14px;
    margin-bottom: 0;
}



/* ========= PRIVACY POLICY / LEGAL PAGES ========= */
.post-body h2,
.post-body h3 {
    scroll-margin-top: 110px;
}

/* ========= PRODUCT REVIEWS ANCHOR ========= */
#pdpReviews {
    scroll-margin-top: 110px;
}

.pdp-review-form-wrap {
    margin-top: 35px;
}

.pdp-review-form .filter-title {
    margin-bottom: 20px;
}

.pdp-review-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin: -6px 0 4px;
}

.pdp-review-form .comment-form-cookies-consent label {
    margin-bottom: 0;
}

.privacy-toc li {
    padding: 0;
}

.privacy-toc li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--bark);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.privacy-toc li.active a {
    color: var(--pure-white);
}

.privacy-toc li a:hover {
    background: var(--sand-light);
    color: var(--bamboo);
}



/* ========= THANK YOU PAGE ========= */
.thank-you-hero {
    gap: 20px;
}

.thank-you-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon i {
    font-size: 46px;
    color: var(--spring-bud-dark);
}

.thank-you-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.thank-you-meta-grid .contact-info-card {
    background: var(--pure-white);
    align-items: center;
}

.thank-you-total {
    color: var(--bamboo);
    font-size: 17px;
    font-weight: 700;
}

.thank-you-step {
    opacity: 0.55;
}

.thank-you-step.active {
    opacity: 1;
    border-color: var(--spring-bud-dark);
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 45px;
}


.brand-logo img {
    width: 140px;
    height: auto;
}




/* ========= ADD TO CART PAGE ======== */
.cart-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.cart-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-items-card {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 18px;
    overflow: hidden;
}

.cart-items-head {
    padding: 20px 25px;
    border-bottom: 2px solid var(--sand);
}

.cart-items-head h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    border-bottom: 2px solid var(--sand);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--sand);
    background: var(--sand-light);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-cat {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bamboo);
}

.cart-item-title {
    font-family: var(--heading);
    font-size: 17px;
    font-weight: 500;
    color: var(--bark);
    line-height: 130%;
    transition: 0.3s ease;
}

.cart-item-title:hover {
    color: var(--bamboo);
}

.variation {
    font-size: 12px;
    color: var(--text);
    margin: 2px 0 0;
}

.variation dt {
    display: inline;
    font-weight: 600;
}

.variation dt::after {
    content: ': ';
}

.variation dd {
    display: inline;
    margin: 0;
}

.variation dd p {
    display: inline;
    margin-bottom: 0;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.cart-item-price ins {
    text-decoration: none;
    color: var(--bamboo);
    font-weight: 600;
}

.cart-item-price del {
    opacity: 0.6;
}

.cart-item-qty .quantity {
    display: flex;
}

.cart-item-qty .qty {
    width: 70px;
    height: 46px;
    text-align: center;
    border: 2.5px solid var(--sand);
    border-radius: 11px;
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-charcoal);
    font-family: var(--font-main);
}

.cart-item-subtotal {
    flex-shrink: 0;
    width: 100px;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: var(--bamboo);
}

.cart-item-remove {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
    color: var(--text);
    transition: 0.3s ease;
}

.cart-item-remove:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.cart-actions-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cart-coupon {
    display: flex;
    gap: 10px;
}

.cart-coupon input {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 11px;
    padding: 10px 18px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    min-width: 220px;
    transition: 0.3s ease;
}

.cart-coupon input:focus {
    border-color: var(--bamboo);
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.cart-continue-link i {
    transform: rotate(180deg);
}

.cart-sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 110px;
}

.cart-summary-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-total-row .label,
.cart-total-row .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-charcoal);
}

.cart-total-value {
    color: var(--bamboo) !important;
}

.cart-discount-row .label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--spring-bud-dark);
    font-weight: 600;
}

.cart-discount-row .value {
    color: var(--spring-bud-dark);
}

.cart-remove-coupon {
    color: var(--text);
    font-size: 12px;
}

.cart-remove-coupon:hover {
    color: var(--bamboo);
}

.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--bamboo);
    color: var(--pure-white) !important;
    border: 2.5px solid var(--bamboo);
    border-radius: 11px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s ease;
}

.checkout-button:hover {
    background: var(--ember);
    border-color: var(--ember);
}

.checkout-button:disabled,
.checkout-button.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 70px 20px;
}

.cart-empty-state h3 {
    font-weight: 600;
}

.cart-empty-state p {
    max-width: 420px;
}

.cart-cross-sells {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--sand);
}

.cross-sells ul,
.cross-sells .products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0;
}

.cart-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: 0.2s ease;
}

.cart-qty-fixed {
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-charcoal);
}



/* ========= CHEACKOUT PAGE ========= */
.checkout-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.checkout-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-card {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 18px;
    padding: 30px;
}

.checkout-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 2px solid var(--sand);
}

.checkout-card-head .num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bamboo);
    color: var(--pure-white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-card-head h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.checkout-card-head p {
    font-size: 13px;
    margin-bottom: 0;
}

/* --- WooCommerce default form-row / input restyle --- */
.checkout-card .form-row {
    margin: 0 0 20px;
    width: 100%;
}

.checkout-card .form-row-first,
.checkout-card .form-row-last {
    width: calc(50% - 10px);
    display: inline-block;
}

.checkout-card .form-row-first {
    margin-right: 20px;
}

@media (min-width: 480px) {
    .checkout-card .form-row-first,
    .checkout-card .form-row-last {
        display: inline-flex;
    }
}

.checkout-card label {
    display: block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.checkout-card label .optional {
    font-weight: 400;
    color: var(--text);
}

.checkout-card .required {
    color: var(--bamboo);
    text-decoration: none;
    font-weight: 700;
}

.checkout-card input[type="text"],
.checkout-card input[type="email"],
.checkout-card input[type="tel"],
.checkout-card input[type="password"],
.checkout-card textarea,
.checkout-card select,
.checkout-card .select2-container .select2-selection--single {
    width: 100%;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 14px 18px;
    height: auto;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
    outline: none;
    transition: 0.3s ease;
}

.checkout-card textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 145%;
}

.checkout-card input:focus,
.checkout-card textarea:focus,
.checkout-card select:focus {
    background: var(--pure-white);
    border-color: var(--bamboo);
}

.checkout-card .select2-container .select2-selection--single {
    display: flex;
    align-items: center;
}

.checkout-card .select2-selection__rendered {
    padding-left: 0 !important;
    color: var(--deep-charcoal) !important;
}

.checkout-card .select2-selection__arrow {
    height: 100% !important;
    right: 14px !important;
}

.checkout-card .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

/* ship-to-different-address toggle */
#ship-to-different-address {
    list-style: none;
}

#ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0;
}

#ship-to-different-address label input {
    display: none;
}

#ship-to-different-address label span:not(.checkout-toggle-box) {
    position: relative;
    padding-left: 34px;
}

#ship-to-different-address label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--sand);
    background: var(--sand-light);
    transition: 0.3s ease;
}

#ship-to-different-address label input:checked ~ span::before {
    background: var(--bamboo);
    border-color: var(--bamboo);
}

#ship-to-different-address label input:checked ~ span::after {
    content: '\f00c';
    font-family: var(--fa-family-classic);
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pure-white);
}

.woocommerce-shipping-fields h3 {
    display: none;
}

.woocommerce-additional-fields > h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* login prompt */
.woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--mist);
    border: 1.5px solid rgba(107, 168, 16, 0.25);
    border-radius: 14px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 25px;
    list-style: none;
}

.woocommerce-form-login-toggle .woocommerce-info a,
.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--spring-bud-dark);
    font-weight: 700;
}

.woocommerce-form-login {
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 25px;
}

.woocommerce-form-login .form-row {
    margin-bottom: 16px;
}

.woocommerce-form-login .inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0 !important;
}

.woocommerce-form-login .lost_password {
    margin-top: 6px;
}

.woocommerce-form-login .lost_password a,
.woocommerce-privacy-policy-text a {
    color: var(--bamboo);
    font-weight: 600;
}

.woocommerce-privacy-policy-text p {
    font-size: 13px;
    margin-top: 18px;
    margin-bottom: 0;
}

/* order notes */
#order_comments {
    min-height: 100px;
}

/* --- coupon (inside order review area) --- */
.checkout-coupon-card {
    background: var(--sand-light);
    border: 2px dashed var(--sand);
    border-radius: 14px;
    padding: 18px 22px;
}

.checkout-coupon-card .coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.checkout-coupon-card .coupon input[type="text"] {
    flex: 1;
    min-width: 180px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 11px;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.checkout-coupon-card .coupon input[type="text"]:focus {
    border-color: var(--bamboo);
}

.checkout-coupon-card .coupon button {
    background: transparent;
    color: var(--bamboo);
    border: 2px solid var(--bamboo);
    border-radius: 11px;
    padding: 8px 22px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.checkout-coupon-card .coupon button:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

/* --- sidebar / order review --- */
.checkout-sidebar {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-shrink: 0;
    position: sticky;
    top: 110px;
}

.checkout-review-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#order_review {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order-table thead {
    display: none;
}

.checkout-review-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.woocommerce-checkout-review-order-table .cart_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 16px;
    border-bottom: 2px solid var(--sand-light);
}

.woocommerce-checkout-review-order-table .cart_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.woocommerce-checkout-review-order-table .cart_item {
    align-items: center;
}

.checkout-item-name .product-quantity {
    display: inline;
    font-size: 13px;
    font-weight: 600;
    color: var(--bamboo);
    margin-left: 4px;
}

.woocommerce-checkout-review-order-table .product-total {
    font-size: 14px;
    font-weight: 600;
    color: var(--bamboo);
    white-space: nowrap;
}

.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border: none;
}

.woocommerce-checkout-review-order-table tfoot tr {
    display: block;
    border-top: 2px solid var(--sand);
}

.woocommerce-checkout-review-order-table tfoot tr:first-child {
    border-top: none;
}

.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-charcoal);
    padding-top: 16px;
}

.woocommerce-checkout-review-order-table tfoot .order-total .woocommerce-Price-amount {
    color: var(--bamboo);
}

/* --- payment methods --- */
#payment {
    background: var(--sand-light);
    border-radius: 16px;
    padding: 20px;
}

ul.wc_payment_methods {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

ul.wc_payment_methods .wc_payment_method {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

ul.wc_payment_methods .wc_payment_method.payment_method_active {
    border-color: var(--bamboo);
}

ul.wc_payment_methods .payment_box {
    background: var(--sand-light);
    padding: 16px 18px;
    font-size: 13px;
    color: var(--text);
    line-height: 150%;
}

ul.wc_payment_methods .payment_box p {
    margin-bottom: 0;
    font-size: 13px;
}

ul.wc_payment_methods li label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    margin-bottom: 0 !important;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--bark);
}

ul.wc_payment_methods li input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--sand);
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

ul.wc_payment_methods li input[type="radio"]:checked {
    border-color: var(--bamboo);
}

ul.wc_payment_methods li input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--bamboo);
}

ul.wc_payment_methods img {
    max-height: 20px;
    width: auto;
    margin-left: auto;
}

.woocommerce-terms-and-conditions-wrapper {
    margin-top: 18px;
    font-size: 13px;
}

.woocommerce-terms-and-conditions-wrapper label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}

.woocommerce-terms-and-conditions-wrapper a {
    color: var(--bamboo);
    font-weight: 600;
}

#place_order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--bamboo);
    color: var(--pure-white) !important;
    border: 2.5px solid var(--bamboo);
    border-radius: 11px;
    padding: 16px 24px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s ease;
}

#place_order:hover {
    background: var(--ember);
    border-color: var(--ember);
}

.checkout-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
    margin-top: 14px;
}

.checkout-secure-note i {
    color: var(--spring-bud-dark);
}

/* WC blockUI overlay during AJAX update */
.checkout-main.processing,
.checkout-sidebar.processing {
    opacity: 0.6;
    pointer-events: none;
    transition: 0.2s ease;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    list-style: none;
    background: var(--sunrise);
    border-radius: 14px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 25px;
}

.woocommerce-error {
    background: var(--sunrise);
    border: 1.5px solid rgba(224, 96, 0, 0.3);
}

/* checkout order review: product thumbnail + inline quantity */
.checkout-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-item-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--sand);
    background: var(--sand-light);
}

.checkout-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.checkout-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    line-height: 140%;
}



/* ======== ORDER RECEIVED ======== */
.thank-you-order-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.thank-you-order-items .post-recent-item .img {
    width: 64px;
    height: 64px;
    border: 2px solid var(--sand);
}

.thank-you-order-items .post-recent-item .det p {
    margin-bottom: 0;
}

.thank-you-order-items .post-recent-item .qty-price {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
}

.thank-you-order-items .post-recent-item .qty-price .line-total {
    font-size: 14px;
    font-weight: 700;
    color: var(--bamboo);
}

.thank-you-order-items .post-recent-item .qty-price .qty-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}

.thank-you-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.thank-you-addresses address {
    font-style: normal;
    font-size: 14px;
    line-height: 165%;
    color: var(--text);
}

.thank-you-order-failed-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}



/* ======== MY ACCOUNT PAGE ======== */
.account-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 18px;
    padding: 20px 22px;
}

.account-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bamboo);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 700;
}

.account-user-card .name {
    font-weight: 600;
    color: var(--deep-charcoal);
    font-size: 16px;
    margin-bottom: 2px;
}

.account-user-card .email {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    word-break: break-all;
}

.account-nav-card {
    padding: 14px;
}

.account-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.account-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bark);
    transition: 0.3s ease;
}

.account-nav-list li a i:first-child {
    width: 18px;
    text-align: center;
    color: var(--bamboo);
    font-size: 14px;
}

.account-nav-list li a .arrow {
    margin-left: auto;
    font-size: 11px;
    opacity: 0;
    color: var(--bamboo);
    transition: 0.3s ease;
}

.account-nav-list li a:hover {
    background: var(--sand-light);
}

.account-nav-list li a:hover .arrow {
    opacity: 1;
    transform: translateX(2px);
}

.account-nav-list li.active a {
    background: var(--bamboo);
    color: var(--pure-white);
}

.account-nav-list li.active a i:first-child {
    color: var(--pure-white);
}

.account-nav-list li.account-nav-logout {
    border-top: 2px solid var(--sand);
    margin-top: 6px;
    padding-top: 6px;
}

.account-nav-list li.account-nav-logout a {
    color: var(--ember);
}

.account-nav-list li.account-nav-logout a:hover {
    background: var(--sunrise);
}

.account-main {
    flex: 1;
    min-width: 0;
}

.account-content-card {
    background: var(--pure-white);
    border: 2px solid var(--sand);
    border-radius: 20px;
    padding: 35px;
}

/* --- dashboard --- */
.account-welcome {
    margin-bottom: 28px;
}

.account-welcome h3 {
    font-weight: 600;
    margin-bottom: 6px;
}

.account-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.account-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s ease;
}

.account-quick-card:hover {
    border-color: var(--bamboo);
    transform: translateY(-3px);
}

.account-quick-card .con {
    flex: 1;
    min-width: 0;
}

.account-quick-card .title {
    font-size: 15px;
    margin-bottom: 2px;
}

.account-quick-card p {
    font-size: 13px;
    margin-bottom: 0;
}

.account-quick-card > i:last-child {
    color: var(--bamboo);
    font-size: 13px;
    flex-shrink: 0;
}

.account-recent-orders .header {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--sand);
}

.account-recent-orders .header h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.account-order-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 16px 20px;
    transition: 0.3s ease;
}

.account-order-row:hover {
    border-color: var(--bamboo);
}

.account-order-row .det {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-order-row .num {
    font-weight: 700;
    color: var(--deep-charcoal);
    font-size: 15px;
}

.account-order-row .date {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

.account-order-row .total {
    font-weight: 700;
    color: var(--bamboo);
    font-size: 15px;
}

.account-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 50px 20px;
}

.account-empty-state h5 {
    font-weight: 600;
}

/* --- generic WooCommerce endpoint content (orders / addresses / edit account / login) --- */
.account-content-card table.shop_table,
.account-content-card table.woocommerce-orders-table,
.account-content-card table.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.account-content-card table.shop_table th,
.account-content-card table.woocommerce-orders-table th {
    text-align: left;
    font-family: var(--font-main);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text);
    padding: 14px 16px;
    border-bottom: 2px solid var(--sand);
}

.account-content-card table.shop_table td,
.account-content-card table.woocommerce-orders-table td {
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    border-bottom: 2px solid var(--sand-light);
    vertical-align: middle;
}

.account-content-card table.shop_table tr:last-child td {
    border-bottom: none;
}

.account-content-card .woocommerce-orders-table__cell-order-status mark {
    background: none;
    color: inherit;
    font-weight: 600;
}

.account-content-card a.button,
.account-content-card button.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bamboo);
    background: transparent;
    border: 2px solid var(--bamboo);
    border-radius: 10px;
    padding: 8px 16px;
    margin: 2px 4px 2px 0;
    transition: 0.3s ease;
}

.account-content-card a.button:hover,
.account-content-card button.button:hover {
    background: var(--bamboo);
    color: var(--pure-white);
}

.account-content-card a.button.pay,
.account-content-card a.button.view {
    background: var(--bamboo);
    color: var(--pure-white);
}

/* addresses */
.account-content-card .woocommerce-Addresses,
.account-content-card .u-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
}

.account-content-card .woocommerce-Address,
.account-content-card .u-column1,
.account-content-card .u-column2 {
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.account-content-card .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.account-content-card .woocommerce-Address-title h2,
.account-content-card .woocommerce-Address-title h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.account-content-card .woocommerce-Address-title .edit {
    font-size: 13px;
    font-weight: 600;
    color: var(--bamboo);
    border: 2px solid var(--bamboo);
    border-radius: 50px;
    padding: 6px 16px;
}

.account-content-card address {
    font-style: normal;
    font-size: 14px;
    line-height: 170%;
    color: var(--text);
}

/* forms */
.account-content-card form .form-row {
    margin: 0 0 20px;
}

.account-content-card form label {
    display: flex;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.account-content-card form label .optional {
    font-weight: 400;
    color: var(--text);
}

.account-content-card form input[type="text"],
.account-content-card form input[type="email"],
.account-content-card form input[type="password"],
.account-content-card form input[type="tel"],
.account-content-card form textarea,
.account-content-card form select,
.account-content-card form .select2-container .select2-selection--single {
    width: 100%;
    background: var(--sand-light);
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 14px 18px;
    height: auto;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-charcoal);
    outline: none;
    transition: 0.3s ease;
}

.account-content-card form input:focus,
.account-content-card form textarea:focus,
.account-content-card form select:focus {
    background: var(--pure-white);
    border-color: var(--bamboo);
}

.account-content-card form .form-row-first,
.account-content-card form .form-row-last {
    width: calc(50% - 10px);
    display: inline-block;
}

.account-content-card form .form-row-first {
    margin-right: 20px;
}

.account-content-card fieldset {
    border: 2px solid var(--sand);
    border-radius: 14px;
    padding: 20px;
    margin-top: 10px;
}

.account-content-card fieldset legend {
    font-weight: 600;
    padding: 0 8px;
}

.account-content-card .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.account-content-card button[type="submit"],
.account-content-card input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 11px;
    cursor: pointer;
    border: 2.5px solid var(--bamboo);
    background: var(--bamboo);
    color: var(--pure-white);
    transition: 0.3s ease;
}

.account-content-card button[type="submit"]:hover,
.account-content-card input[type="submit"]:hover {
    background: var(--ember);
    border-color: var(--ember);
}

.account-content-card .lost_password a {
    color: var(--bamboo);
    font-weight: 600;
    font-size: 13px;
}

.account-content-card .u-columns.col2-set {
    grid-template-columns: repeat(2, 1fr);
}

.account-content-card .u-columns h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
}




/* ========= AUTH / LOGIN & REGISTER ========= */
.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.auth-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

.auth-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--sand);
}

.auth-card-head h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.auth-card-head p {
    font-size: 13px;
    margin-bottom: 0;
}

.auth-form .contact-field {
    margin-bottom: 20px;
}

.auth-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 4px 0 22px;
}

.auth-remember {
    margin-bottom: 0 !important;
}

.lost-password-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--bamboo);
    transition: 0.3s ease;
}

.lost-password-link:hover {
    text-decoration: underline !important;
}

.auth-form .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
}

.auth-note {
    font-size: 13px;
    margin-bottom: 20px;
}






/* ========= ACCOUNT ENDPOINT CONTENT (orders / view-order / addresses / downloads) ========= */
.account-order-row--full {
    flex-wrap: wrap;
    gap: 14px 20px;
}

.account-order-items {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.account-order-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.text-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
}

.account-orders-pagination .page-prev {
    color: var(--bamboo);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    border: 2px solid var(--sand);
}

.account-orders-pagination .page-prev:hover {
    border-color: var(--bamboo);
}

.account-order-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--sand);
}

.account-order-detail-head h5 {
    font-weight: 600;
    margin-bottom: 2px;
}

.account-order-detail-head p {
    font-size: 13px;
    margin-bottom: 0;
}

.account-address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.account-address-card {
    align-items: flex-start;
}

.account-address-card address {
    margin-top: 6px;
}

.account-password-fieldset {
    margin-top: 6px;
}

.account-download-row .btn {
    margin-left: auto;
}

/* ========= PASSWORD SHOW/HIDE TOGGLE ========= */
.password-input {
    position: relative;
    display: block;
    width: 100%;
}

.password-input input {
    padding-right: 48px !important;
}

.show-password-input {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: 0.3s ease;
}

.show-password-input::before {
    font-family: var(--fa-family-classic);
    font-weight: 900;
    font-size: 15px;
    content: '\f06e'; /* fa-eye */
    color: inherit;
}

.show-password-input:hover {
    color: var(--bamboo);
}

/* WooCommerce toggles this class on click to swap to the "hide" state */
.show-password-input.display-password::before {
    content: '\f070'; /* fa-eye-slash */
}

.wc-forward {
    display: none !important;
}

/* ========= PRODUCT REVIEWS: star rating input + extra fields ========= */
.pdp-review-form .required {
    color: var(--bamboo);
    font-weight: 700;
    text-decoration: none;
}

.comment-form-rating {
    margin-bottom: 4px;
}

.comment-form-rating > label {
    display: block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
}

/* clickable star picker — radios are reversed in the DOM (5→1) so the CSS
   sibling combinator can fill every star from the first one up to whichever
   is hovered/clicked, without any JS */
.review-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    width: fit-content;
}

.review-star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-star-rating label {
    cursor: pointer;
    font-size: 30px;
    line-height: 100%;
    color: var(--sand);
    transition: 0.2s ease, transform 0.15s ease;
}

.review-star-rating label:hover {
    transform: scale(1.12);
}

.review-star-rating input:checked ~ label,
.review-star-rating label:hover,
.review-star-rating label:hover ~ label {
    color: var(--bamboo);
}

.pdp-review-form .review-verified-check {
    margin: 2px 0 8px;
}



/* ========= CART TOAST (AJAX add-to-cart confirmation) ========= */
.cart-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -20px);
    z-index: 2100;
    background: var(--deep-charcoal);
    color: var(--pure-white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.cart-toast::before {
    content: '\f058';
    font-family: var(--fa-family-classic);
    font-weight: 900;
    color: var(--spring-bud);
    margin-right: 10px;
}

.cart-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}