:root {
    --background: #FFF7ED;
    --secondary-color: #2B1A12;
    --accent-purple: #7b46d8;
    --logo-blue: #283b8f;
    --logo-red: #f44b3c;
    --v-collection-panel: #FAEBD3;
    --white-bg: #ffffff;
    --collection-hover: #E5C587;
    --collection-btn : #e5c587;
    --v-collection-bulk-shadow: rgba(0, 0, 0, 0.18);
    --v-product-price: #6A3E2B;
    --v-prod-price-old: #AC4D24;
    --distributor-text: #4A2E1F;
    --pdt-radius: 14px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--secondary-color);
    /* min-height: 200vh; */
}

.site-header a {
    text-decoration: none;
    color: inherit;
}

.site-header button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

/* HEADER WRAPPER (TOPBAR + NAV) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header.is-sticky .navbar {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* TOPBAR */
.topbar {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 12px;
}

.topbar-inner,
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    color: var(--background);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-right a {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* NAVBAR */
.navbar {
    background: var(--background);
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* LEFT LINKS (desktop) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a {
    position: relative;
}

/* .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
} */

.site-header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 32px;
}
.site-header .logo img{
    width: 170px;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.site-header .icon-btn {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-header .nav-actions i{
    color: var(--secondary-color);
    font-size: 18px;
}
.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.cart-btn i {
    font-size: 1.6rem;
}

/* Badge style */
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #d9534f; /* bootstrap red tone */
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* If count is 0 → hide badge */
.cart-count:empty,
.cart-count[data-count="0"],
.cart-count[data-count=""] {
    display: none;
}
.profile-dropdown {
    position: relative;
}

.profile-btn i {
    font-size: 20px;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    padding: 10px 0;
    list-style: none;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f2f2f2;
}

/* Hover Effect */
.profile-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    width: 26px;
    height: 26px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    display: none; 
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}
.nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}
/* Rotate arrow when profile dropdown is hovered */
.profile-dropdown:hover .profile-arrow {
    transform: rotate(180deg);
}
.profile-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}
.profile-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}


/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {

    .nav-inner {
        height: 64px;
    }

    .site-header .logo {
        position: static;
        transform: none;
        order: 1;
        font-size: 26px;
    }
    .site-header .logo-circle {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .nav-actions {
        order: 2;
        gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 20px;
        gap: 18px;
        background: var(--background);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 1000;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links.nav-links--open {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }
    .topbar-right {
        display: none;
    }
}

@media(max-width:400px){
    .site-header .logo img{
        width: 140px;
    }
}



/* /////////////////slides////////////////
//////////////////////////////////////////// */

:root {
    --v-caro-text-main: #f7e6c6;
    --v-caro-brown: #3b2314;
    --v-caro-button-dark: #4d2b18;
    --v-caro-button-gold: #f6c671;
    --v-caro-indicator-border: rgba(247, 230, 198, 0.6);
}

/* 
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
} */

/* WRAPPER */
.v-caro-wrapper {
    position: relative;
    overflow: hidden;
}

.v-caro-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh; /* hero height */
}

/* SLIDES BASE */
.v-caro-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 6vw;
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.v-caro-slide.v-caro-slide--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* THEMES (background + text color) */
.v-caro-slide--theme-1 {
    background: #f0c9ff; /* purple-ish */
    color: #3b2314;
}

.v-caro-slide--theme-2 {
    background: #00452f; /* deep green */
    color: #f7e6c6;
}

.v-caro-slide--theme-3 {
    background: #2a1308; /* dark chocolate */
    color: #f7e6c6;
}

/* LEFT IMAGE */
.v-caro-media {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-caro-media img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* RIGHT CONTENT */
.v-caro-content {
    flex: 0 0 50%;
    max-width: 520px;
}

.v-caro-heading {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 3.3vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.3rem;
}

.v-caro-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.v-caro-hashtag {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.92;
}

/* BUTTONS */
.v-caro-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.v-caro-btn {
    min-width: 210px;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.v-caro-btn--filled {
    background: var(--v-caro-button-dark);
    color: #fcebd7;
    border-color: var(--v-caro-button-dark);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.v-caro-btn--outlined {
    background: transparent;
    color: inherit;
    border-color: currentColor;
}

.v-caro-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.v-caro-slide--theme-2 .v-caro-btn--filled {
    background: #f6c671;
    color: #2b2615;
    border-color: #f6c671;
}

.v-caro-slide--theme-3 .v-caro-btn--filled {
    background: #f6c671;
    color: #2b2615;
    border-color: #f6c671;
}

/* INDICATORS (1,2,3) */
.v-caro-indicators {
    position: absolute;
    right: 4vw;
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v-caro-indicator {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--v-caro-indicator-border);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: inherit;
    opacity: 0.66;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.v-caro-indicator:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.v-caro-indicator.v-caro-indicator--active {
    background: #f6c671;
    border-color: #f6c671;
    color: #2b2615;
    opacity: 1;
}

/* slide-specific indicator border colors */
.v-caro-slide--theme-1.v-caro-slide--active ~ .v-caro-indicators .v-caro-indicator {
    border-color: rgba(60, 35, 20, 0.3);
}

.v-caro-slide--theme-2.v-caro-slide--active ~ .v-caro-indicators .v-caro-indicator {
    border-color: rgba(247, 230, 198, 0.5);
}

.v-caro-slide--theme-3.v-caro-slide--active ~ .v-caro-indicators .v-caro-indicator {
    border-color: rgba(247, 230, 198, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .v-caro-slide {
    padding: 3rem 5vw;
    }
}

@media (max-width: 900px) {
    .v-caro-slide {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem 5rem;
    }

    .v-caro-media,
    .v-caro-content {
    flex: 0 0 auto;
    max-width: 100%;
    }

    .v-caro-media {
    order: 1;
    }

    .v-caro-content {
    order: 2;
    }

    .v-caro-cta-row {
    justify-content: center;
    }

    .v-caro-btn {
    min-width: 230px;
    }

    .v-caro-indicators {
     display: none;
    }
    .v-caro-media img {
        max-width: 70%;
    }
    .v-caro-heading {
        font-size: 2.7rem;
    }
    .v-caro-inner {
        min-height: 130vh;
    }
}

@media (max-width: 600px) {
    .v-caro-inner {
        min-height: 110vh;
    }

    .v-caro-slide {
    min-height: 100vh;
    }

    .v-caro-heading {
    font-size: 2.1rem;
    }

    .v-caro-description {
    font-size: 0.95rem;
    }
}
@media (max-width: 450px) {
    .v-caro-heading {
        font-size: 1.8rem;
    }
    .v-caro-slide {
        padding: 3rem 1.5rem 3rem;
    }
    .v-caro-description {
        font-size: 0.85rem;
    }
    .v-caro-hashtag {
        font-size: 0.85rem;
    }
    .v-caro-btn {
        font-size: 0.85rem;
    }
    .v-caro-media img {
        max-width: 90%;
    }
    .v-caro-btn--filled{
        display: none;
    }
}

/*////////////////// slides end/////////////
//////////////////////////////////////////   */

/*////////////////// Difference starts/////////////
//////////////////////////////////////////   */

:root {
--brook-text: #4a2b1a;
--brook-circle: #c5a56d41;
}

.brook-diff {
    padding: 4rem 1.5rem 4.5rem;
}

.brook-diff-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.brook-diff-title {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    color: var(--brook-text);
    margin-bottom: 3rem;
}

.brook-diff-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}

.brook-diff-item {
flex: 1 1 260px;
max-width: 360px;
display: flex;
flex-direction: column;
align-items: center;
}

/* CIRCLE + IMAGE WRAPPER */
.brook-diff-icon {
position: relative;
width: 260px;
height: 260px;
border-radius: 50%;
background: var(--brook-circle);
overflow: visible; /* allow images to come out */
margin-bottom: 1.25rem;
}

.brook-diff-icon img {
    position: absolute;
    max-width: 110%;
    height: auto;
}

.brook-diff-icon--left img {
    left: -4%;
    bottom: 2%;
    width: 120%;
}

.brook-diff-icon--center img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.brook-diff-icon--bottom img {
    width: 88%;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
}

.brook-diff-label {
    font-size: 0.98rem;
    color: var(--brook-text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .brook-diff {
        padding: 3rem 1.25rem 3.5rem;
    }
    .brook-diff-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .brook-diff-icon {
        width: 220px;
        height: 220px;
    }

    .brook-diff-icon--left img {
        left: -10%;
        bottom: -2%;
        width: 120%;
    }

    .brook-diff-icon--bottom img {
        width: 92%;
        bottom: 8%;
    }
}
/*////////////////// Difference ends/////////////
//////////////////////////////////////////   */


/*/////////////// collections starts ////////////////
////////////////////////////////////////////////*/

.v-collection {
    padding: 3.5rem 1.5rem;
}

.v-collection-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.v-collection-main {
    flex: 2 1 480px;
    background: var(--v-collection-panel);
    border-radius: 28px;
    padding: 2.5rem 2.5rem 2.2rem;
    box-sizing: border-box;
}

.v-collection-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.v-collection-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.v-collection-card {
    flex: 1 1 220px;
    background: var(--background);
    border-radius: 22px;
    padding: 1.4rem 1.4rem 1.1rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.v-collection-card:hover {
    background: var(--collection-hover);
}

.v-collection-card-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.v-collection-card-media .img1{
    min-height: 190px;
}
.v-collection-card-label{
    font-weight: 500;
}
.v-collection-card-label:hover{
    background: var(--background);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 22px;
}

.v-collection-bulk {
    /* flex: 1 1 250px; */
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 20px 36px var(--v-collection-bulk-shadow);
}

.v-collection-bulk-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}



.v-collection-bulk-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    color: #fff7e6;
}

.v-collection-bulk-title {
    font-size: clamp(1.9rem, 2.3vw, 2.3rem);
    line-height: 1.15;
}

.v-collection-bulk-btn {
    align-self: flex-start;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: var(--collection-btn);
    color: #2f2414;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.v-collection-bulk-btn span {
    font-size: 1.1rem;
}

.v-collection-bulk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    background: var(--v-collection-panel);
}

@media (max-width: 992px) {
    .v-collection-inner {
        flex-direction: column;
    }

    .v-collection-main,
    .v-collection-bulk {
        width: 100%;
    }
    
}

@media (max-width: 640px) {
    .v-collection {
        padding: 2.5rem 1.25rem;
    }

    .v-collection-main {
        padding: 2rem 1.5rem 1.8rem;
    }

    .v-collection-cards {
        flex-direction: column;
    }

    .v-collection-bulk-content {
        padding: 2rem 1.6rem;
        align-items: flex-start;
    }

    .v-collection-bulk-btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .v-collection-title {
        text-align: left;
    }
}
@media (min-width: 440px) and (max-width: 1055px){
    .v-collection-bulk {
        display: none;
    }
}
/*/////////////// collections ends ////////////////
////////////////////////////////////////////////*/

/*/////////////// Top Pick starts////////////////
////////////////////////////////////////////////*/



.v-prod-section {
    padding: 3.5rem 1.5rem 4rem;
}

.v-prod-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.v-prod-title {
    text-align: center;
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.v-prod-tabs {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.v-prod-tab {
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: var(--v-prod-price-old);
}

.v-prod-tab.v-prod-tab--active {
    color: var(--secondary-color);
}

.v-prod-tab.v-prod-tab--active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--collection-hover);
}

.v-prod-slider-wrapper {
    position: relative;
    margin-top: 1.5rem;
}

.v-prod-slider-viewport {
    overflow: hidden;
}

.v-prod-slider-track {
    display: none;          
    transition: transform 0.5s ease;
    will-change: transform;
}

.v-prod-slider-track.v-prod-slider-track--active {
    display: flex;
}

.v-prod-card {
    flex: 0 0 25%;      
}

.v-prod-card-inner {
    padding: 1.1rem 1.1rem 1.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.v-prod-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.v-prod-card-image {
    background: var(--v-collection-panel);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 10px;
    height: 260px;    
}

.v-prod-card-image:hover {
    background: var(--collection-hover);
}

.v-prod-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.v-prod-card-title {
    margin-top: 1rem;
    font-size: 0.98rem;
    text-align: center;
    color: var(--secondary-color);
}

.v-prod-card-price-row {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    text-align: center;
}

.v-prod-card-price-row span {
    margin: 0 2px;
}

.v-prod-card-price-old {
    text-decoration: line-through;
    color: var(--v-prod-price-old);
}

.v-prod-card-price,
.v-prod-card-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--v-product-price);
}

.v-prod-card-btn {
    border-radius: 12px;
    border: none;
    padding: 0.8rem 1rem;
    margin: 0.2rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--secondary-color);
    color: #fef4e6;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.v-prod-card-btn:hover {
    background: #3a1f12;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.v-prod-card-btn--bottom {
    margin-top: 1rem;
}

.v-prod-card-btn--overlay {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 6.5rem;
    display: none; 
    z-index: 2;
}

.v-prod-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.v-prod-arrow:hover {
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
    background: #3b2314;
}

.v-prod-arrow--prev {
    left: -1.5rem;
}

.v-prod-arrow--next {
    right: -1.5rem;
}

.v-prod-arrow span {
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .v-prod-card {
    flex: 0 0 50%;   
    }

    .v-prod-arrow--prev {
    left: -0.8rem;
    }

    .v-prod-arrow--next {
    right: -0.8rem;
    }
}

@media (max-width: 640px) {
    .v-prod-section {
    padding: 2.7rem 1rem 3rem;
    }

    .v-prod-card {
    flex: 0 0 50%;   
    }

    .v-prod-arrow {
    width: 40px;
    height: 40px;
    }

    .v-prod-arrow--prev {
    left: 0.2rem;
    }

    .v-prod-arrow--next {
    right: 0.2rem;
    }
}

@media (min-width: 1025px) {
    .v-prod-card-btn--bottom {
    display: none;                 
    }

    .v-prod-card-inner:hover .v-prod-card-btn--overlay {
    display: block;                
    }
}

@media (max-width: 1024px) {
    .v-prod-card-btn--overlay {
    display: none !important;
    }
    .v-prod-card-btn--bottom {
    display: block;
    }
}

/*/////////////// Top Pick ends////////////////
////////////////////////////////////////////////*/

/*/////////////// Our Story Starts////////////////
////////////////////////////////////////////////*/


.v-story-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.v-story-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 320px;
    border-radius: 12px;
}

.v-story-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* overlay content */
.v-story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background);
    padding: 3.5rem 1.5rem;
}

.v-story-heading {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1.5rem;
}

.v-story-logo {
    max-width: 220px;
    width: 32vw;
    height: auto;
    margin-bottom: 2rem;
}

.v-story-text {
    max-width: 900px;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.v-story-text p + p {
    margin-top: 1.1rem;
}

.v-story-btn {
    border: none;
    border-radius: 6px;
    padding: 0.8rem 2.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--collection-btn);
    color: var(--secondary-color);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.v-story-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    background: var(--collection-hover);
}

@media(max-width:1050px){
    .v-story-bg{
        width: auto;
    }
}

@media (max-width: 900px) {
    .v-story-overlay {
        padding: 3rem 1.5rem;
    }

    .v-story-logo {
        margin-bottom: 1.6rem;
    }

    .v-story-text {
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .v-story-overlay {
        padding: 2.4rem 1.2rem;
        justify-content: flex-start;
    }

    .v-story-heading {
        margin-bottom: 1.2rem;
        color: var(--v-collection-panel);
    }

    .v-story-logo {
        max-width: 180px;
        width: 52vw;
        margin-bottom: 1.4rem;
    }

    .v-story-text {
        max-width: 500px;
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
        color: var(--v-collection-panel);
    }

    .v-story-btn {
        padding-inline: 2rem;
    }
}
@media (max-width: 440px) {
    .v-story-bg{
        opacity: 0.93;
    }
    .v-story-text {
        max-width: 250px;
    }
        
    .v-story-logo{
        display: none;
    }
    .v-story-heading {
        color: var(--white-bg);
    }

    .v-story-text {
        color: var(--white-bg);
    }
}




/*/////////////// Our Story ends////////////////
////////////////////////////////////////////////*/


/*////////Distributors section starts///////////
//////////////////////////////////////////////// */

.v-dist-section {
  padding: 3.5rem 1.5rem;
}

.v-dist-card {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.v-dist-media {
  flex: 1 1 50%;
  min-height: 280px;
}

.v-dist-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.v-dist-content {
  flex: 1 1 50%;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--secondary-color, #4a2b1a);
}

.v-dist-heading {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--brook-text);
}

.v-dist-text {
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 2.2rem;
  color: var(--distributor-text);
}

/* Button */
.v-dist-btn {
  align-self: flex-start;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--collection-hover, #f6c671);
  color: #3b2314;
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.v-dist-btn:hover {
  background: #f7d07c;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

/* RESPONSIVE: stack heading → image → text+button */
@media (max-width: 900px) {
  .v-dist-card {
    flex-direction: column;
  }

  .v-dist-content {
    padding: 2rem 1.75rem 2.4rem;
    text-align: center;
    align-items: center;
  }

  .v-dist-btn {
    align-self: center;
    width: auto;
    padding-inline: 2.2rem;
  }
}

@media (max-width: 600px) {
  .v-dist-section {
    padding: 2.5rem 1rem;
  }

  .v-dist-content {
    padding: 1.8rem 1.4rem 2.2rem;
  }

  .v-dist-heading {
    font-size: 1.8rem;
  }

  .v-dist-text {
    font-size: 0.92rem;
  }
}


/*////////Distributors section ends///////////
//////////////////////////////////////////////// */


/*/////////////// footer starts //////////////
///////////////////////////////////////////// */

:root {
  --v-footer-bg: #2c170f;
  --v-footer-text: #f5e3cb;
  --v-footer-muted: #d2b9a2;
  --v-footer-accent: #f6c671;
}

/* MAIN FOOTER WRAPPER */
.v-footer {
  background: var(--v-footer-bg);
  color: var(--v-footer-text);
  padding: 3.2rem 1.5rem 2.4rem;
}

/* OUTER WRAPPER: LOGO + COLUMNS */
.v-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* LEFT LOGO COLUMN */
.v-footer-logo-col {
  /* flex: 0 0 auto; */
  margin-bottom: 2rem;
}

.v-footer-logo {
  max-width: 190px;
  height: auto;
  display: block;
}

/* RIGHT COLUMNS WRAPPER */
.v-footer-cols {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

/* INDIVIDUAL COLUMNS */
.v-footer-col {
  flex: 1 1 180px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
}

.v-footer-col--contact {
  flex: 1.4 1 220px;
}

.v-footer-col--cta {
  max-width: 280px;
}

/* HEADINGS & TEXT */
.v-footer-heading,
.v-footer-heading-sm {
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.v-footer-heading {
  font-size: 1rem;
}

.v-footer-heading-sm {
  font-size: 0.98rem;
}

.v-footer-text {
  margin: 0.25rem 0;
  color: var(--v-footer-text);
  line-height: 1.7;
}

.v-footer-block {
  margin-bottom: 1.4rem;
}

.v-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
}

/* LISTS */
.v-footer-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.v-footer-list li {
  margin: 0.4rem 0;
}

.v-footer-list a {
  color: var(--v-footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.v-footer-list a:hover {
  color: var(--v-footer-accent);
}

/* CTA BUTTON */
.v-footer-btn {
  margin-top: 1.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--v-footer-accent);
  color: #3b2314;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.v-footer-btn:hover {
  background: #f7d07c;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

/* BOTTOM LINE */
.v-footer-bottom-line {
  max-width: 1200px;
  margin: 2.2rem auto 0;
  border-bottom: 1px solid rgba(249, 230, 204, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .v-footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .v-footer-cols {
    flex-direction: row;
  }

  .v-footer-col--cta {
    max-width: none;
  }
}
@media (min-width: 700px){
    .footer-logo2{
        visibility: hidden;
    }
}

@media (max-width: 700px) {
  .v-footer {
    padding: 2.6rem 1.25rem 2.1rem;
  }

  .v-footer-cols {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
  }

  .v-footer-col,
  .v-footer-col--contact,
  .v-footer-col--cta {
    flex: 1 1 100%;
  }
  .footer-logo2{
    display: none;
  }
  .v-footer-logo {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .v-footer-text {
    font-size: 0.9rem;
  }

  .v-footer-list li {
    margin: 0.35rem 0;
  }

  .v-footer-btn {
    width: 100%;
    text-align: center;
  }
}



/*///////////// footer ends///////////////////
/////////////////////////////////////////////  */




/*///////////// Product details starts///////////////////
/////////////////////////////////////////////  */

/* Weight */
.pdt-meta{
    display:flex;
    align-items:center;
    gap:10px;
    margin:20px 0;
}

.meta-label{
    font-size:18px;
    font-weight:600;
    color:#333;
}

.custom-select{
    min-width:140px;
    height:42px;
    padding:0 15px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    background:#fff;
    font-size:15px;
    cursor:pointer;
    outline:none;
}

.custom-select:focus{
    border-color:#8b5a2b;
}

/* Delivery */
.pdt-delivery{
    margin-top:25px;
}

.delivery-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#333;
}

.delivery-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.check-btn{
    height:42px;
    padding:0 28px;
    border:none;
    border-radius:8px;
    background:#3d2414;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.check-btn:hover{
    background:#5b3923;
}

#delivery-result{
    margin-top:15px;
    font-size:15px;
}

.delivery-success-text{
    color:green;
    font-weight:600;
}
@media (max-width:440px){

    .delivery-row{
        gap:10px;
    }

    /* Two dropdowns stay on same row */
    .delivery-row .custom-select{
        flex:1;
        min-width:0;
        width:calc(50% - 5px);
    }

    /* Button goes to next line */
    .delivery-row .check-btn{
        flex:0 0 100%;
        width:100%;
        margin-top:5px;
    }
}

.pdt-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.2rem;
}

.pdt-breadcrumb {
    font-size: 0.95rem;
    color: #8a6f63;
    margin-bottom: 1.2rem;
}
.pdt-breadcrumb a { color: #8a6f63; text-decoration: none; }
.pdt-breadcrumb .pdt-current { color: var(--secondary-color); font-weight:600; }

.pdt-grid {
    display: grid;
    grid-template-columns: 90px 1fr 460px;
    gap: 2rem;
    align-items: start;
}

.pdt-thumbs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pdt-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: #e9e0d6;
    overflow: hidden;
    padding: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, border-color .12s ease;
}
.pdt-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.pdt-thumb:hover { transform: translateY(-4px); }
.pdt-thumb.pdt-thumb--active { border-color: rgba(43,26,18,0.18); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

.pdt-media-wrap {
    background: var(--v-collection-panel);
    border-radius: var(--pdt-radius);
    padding: 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height: 420px;
}
.pdt-media {
    width: 100%;
    max-width: 480px;
    display:block;
}
.pdt-media img {
    width: 100%;
    height: auto;
    display:block;
    object-fit: contain;
}

.pdt-details {
    padding-right: 0.25rem;
}
.pdt-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.pdt-rating {
    color: #d6a96b;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.pdt-price-row {
    display:flex;
    align-items:center;
    gap:0.8rem;
    margin-bottom: 0.6rem;
    font-size:1rem;
}
.pdt-old { text-decoration:line-through; color: var(--v-prod-price-old); font-weight:600; }
.pdt-price { font-family: "Playfair Display", serif; font-size:1.3rem; font-weight:700; color:var(--v-product-price); }
.pdt-tax { font-size:0.94rem; color:#7b6460; margin-left:0.2rem; }

.pdt-meta {
    margin: 1rem 0;
    color: #6e4f45;
    font-weight:600;
    font-size:0.95rem;
}

.pdt-desc {
    color:#6e4f45;
    line-height:1.8;
    margin-bottom:1.2rem;
    font-size:0.95rem;
}

/* Quantity control */
.pdt-qty {
    margin: 0.6rem 0 1.1rem;
    display:flex;
    gap: 1rem;
    align-items:center;
    flex-wrap:wrap;
}
.pdt-qty-label { font-weight:600; color:#6e4f45; width:100%; }

.pdt-qty-control {
    display:flex;
    align-items:center;
    border: 2px solid rgba(43,26,18,0.15);
    border-radius: 10px;
    overflow:hidden;
    background: #fff;
}
.pdt-qty-btn {
    width:46px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    border:none;
    font-size:1.2rem;
    cursor:pointer;
    color:var(--secondary-color);
}
.pdt-qty-num {
    min-width:80px;
    text-align:center;
    font-weight:600;
}

/* Pincode check */
.pdt-pin {
    display:flex;
    gap:0.6rem;
    margin-bottom:1.25rem;
    align-items:center;
    flex-wrap:wrap;
}
.pdt-pin input {
    min-width:160px;
    padding:0.75rem 1rem;
    border-radius:10px;
    border:2px solid rgba(43,26,18,0.12);
    outline:none;
    font-size:0.95rem;
}
.pdt-pin button {
    padding:0.72rem 1rem;
    border-radius:10px;
    border:none;
    background:var(--collection-hover);
    color: #3b2314;
    cursor:pointer;
    font-weight:600;
}

/* Add to cart button (big) */
.pdt-add-row {
    margin-top: 1.4rem;
}
.pdt-add-btn {
    width:100%;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    border: 2px solid rgba(43,26,18,0.18);
    background: #fff;
    font-weight:700;
    font-size:1rem;
    color:var(--secondary-color);
    cursor:pointer;
    transition: transform .12s ease, background .12s ease, color .12s ease;
}
.pdt-add-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }

.pdt-note { font-size:0.9rem; color:#7b6460; margin-top:0.6rem; }
/* separator line */
  .pdt-sep{
    height:1px;
    background: rgba(43,26,18,0.12);
    margin: 1.2rem 0;
  }
 /* Accordion */
.pdt-accordion { display:block; }

.pdt-accordion-item { border-bottom: 1px solid rgba(43,26,18,0.08); }

.pdt-accordion-trigger{
width:100%;
background:transparent;
border:none;
padding: 1rem 0;
text-align:left;
display:flex;
align-items:center;
justify-content:space-between;
gap:1rem;
font-weight:700;
color: var(--secondary-color);
cursor:pointer;
font-size:0.95rem;
}

.pdt-accordion-trigger:focus{
/* outline: 3px solid rgba(182,134,94,0.12); */
outline-offset: 4px;
}

.pdt-acc-icon{
font-size:1.1rem;
color: var(--secondary-color);
width:1.6rem;
text-align:center;
}

.pdt-accordion-panel{
padding: 0.8rem 0 1.1rem;
color:#6e4f45;
line-height:1.6;
font-size:0.95rem;
}

@media (max-width: 980px) {
    .pdt-grid {
    grid-template-columns: 1fr;
    }

    .pdt-thumbs {
    flex-direction: row;
    order: 2;
    }

    .pdt-media-wrap { order: 1; min-height: 320px; }

    .pdt-details { order: 3; padding-top: 1rem; }
}

/* small screens thumbnails smaller */
@media (max-width: 420px) {
    .pdt-thumb { width:60px; height:60px; }
    .pdt-qty-btn { width:42px; height:40px; }
    .pdt-qty-num { min-width:68px; }
    .pdt-media-wrap { padding: 16px; }
}


.pdt-reviews { 
    padding: 2.5rem 1rem 3.5rem; 
    background: var(--background); 
}
.pdt-reviews-inner 
{ max-width: var(--max-width); margin: 0 auto; display:grid; grid-template-columns: 160px 1fr 200px; gap: 1.4rem; align-items:start; 
}

.pdt-review-summary { text-align:center; }
.pdt-average { font-size: 3.2rem; font-weight:700; color:var(--secondary-color); margin-bottom:0.35rem; }
.pdt-stars { color: #d7b47a; font-size: 1.05rem; margin-bottom:0.45rem; }
.pdt-stars .star { color: rgba(215,180,122,0.35); margin-right:2px; }
.pdt-stars .star.filled { color: #d7b47a; }
.pdt-total { color: var(--distributor-text); font-size:0.95rem; }

.pdt-distribution { padding: 0.25rem 0; }
.pdt-bars { display:flex; flex-direction:column; gap:0.6rem; }
.pdt-bars-row { display:flex; align-items:center; gap:0.75rem; }
.pdt-bars-label { width:36px; color:var(--secondary-color); font-weight:700; }
.pdt-bars-track { flex:1; background: rgba(226,212,193,0.5); height:12px; border-radius:999px; overflow:hidden; }
.pdt-bars-fill { height:100%; width: var(--fill,50%); background: linear-gradient(90deg, var(--collection-hover), #b88e5e); transition: width .9s ease; }

.pdt-counts { display:flex; flex-direction:column; gap:0.55rem; color:var(--secondary-color); font-weight:600; font-size:0.95rem; justify-self:end; }
.pdt-count-row { display:flex; justify-content:space-between; gap:1rem; }

.pdt-attr-chips { margin-top:1rem; display:flex; flex-wrap:wrap; gap:0.7rem; }
.pdt-chip {
  background: transparent;
  border:1px solid rgba(43,26,18,0.12);
  padding:0.6rem 1rem;
  border-radius: 12px;
  font-weight:600;
  color: var(--secondary-color);
  cursor:pointer;
}

.pdt-review-list { max-width: var(--max-width); margin: 1.75rem auto 0; padding: 0 1rem; }
.pdt-review-item { display:grid; grid-template-columns:56px 1fr 110px; gap:1rem; align-items:start; padding:1.25rem 0; border-top:1px solid rgba(43,26,18,0.06); }
.pdt-review-item:first-child { border-top:none; }
.pdt-avatar { width:56px; height:56px; border-radius:50%; background:linear-gradient(180deg,#e6e6e6,#d4d4d4); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:1.1rem; }
.pdt-review-name { font-weight:700; color:var(--secondary-color); }
.pdt-review-time { margin-left:0.6rem; color:var(--distributor-text); font-weight:500; font-size:0.9rem; }

.pdt-review-body { color:var(--distributor-text); line-height:1.6; grid-column:2 / 3; }

.pdt-review-rating { text-align:right; color:var(--secondary-color); grid-column:3 / 4; align-self:center; }
.pdt-review-score { font-weight:700; margin-bottom:0.4rem; }
.pdt-review-stars .star { color: rgba(215,180,122,0.3); }
.pdt-review-stars .star.filled { color:#d7b47a; }

.is-hidden { display:none; }

.pdt-readmore-wrap { margin-top:1rem; text-align:left; }
.pdt-readmore { background:none; border:none; color:var(--secondary-color); font-weight:700; text-decoration:underline; cursor:pointer; padding:0; }

@media (max-width: 1000px) {
  .pdt-reviews-inner { grid-template-columns: 120px 1fr; }
  .pdt-counts { display:none; }
  .pdt-review-item { grid-template-columns:48px 1fr; }
  .pdt-review-rating { grid-column: 1 / span 2; text-align:left; margin-top:0.5rem; }
}

@media (max-width: 640px) {
  .pdt-reviews-inner { grid-template-columns: 1fr; }
  .pdt-review-summary { display:flex; gap:1rem; align-items:center; justify-content:flex-start; }
  .pdt-average { font-size:2rem; }
  .pdt-review-item { grid-template-columns:40px 1fr; gap:0.9rem; padding:1rem 0; }
}




/*///////////// Product details ends///////////////////
/////////////////////////////////////////////  */


/*///////////// Shop Page ends///////////////////
/////////////////////////////////////////////  */

.range-hero {
    width: 100%;
    padding: 4rem 1rem;
    background: radial-gradient(circle at center, #532e1f 0%, #331a12 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.range-hero-inner {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.range-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.range-img {
    width: 340px;
    max-width: 42%;
    height: auto;
    object-fit: contain;
}

.range-left {
    margin-right: 1rem;
}

.range-right {
    margin-left: 1rem;
}

/* ----------- Responsive ----------- */
@media (max-width: 992px) {
    .range-img {
        width: 260px;
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .range-right {
        display: none;
    }
    .range-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .range-img {
        width: 250px;
        max-width: 80%;
        margin: 1.2rem 0;
    }

    .range-title {
        order: -1;
        margin-bottom: 1.5rem;
    }
}
/* GRID SECTION (no carousel) */
.v-grid-section {
  padding: 3.5rem 1.5rem 4rem;
}

.v-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.v-grid-title {
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: var(--secondary-color);
  margin-bottom: 2rem;
}



/* Products GRID */
.v-grid-products {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 -0.75rem; /* allow card padding to align */
}

/* Each card */
.v-grid-card {
  flex: 0 0 calc(25% - 1.5rem); /* four columns on desktop */
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.v-grid-card-inner {
  padding: 1.1rem 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.v-grid-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* image box */
.v-grid-card-image {
  background: var(--v-collection-panel);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
  height: 260px;
}
.v-grid-card-image:hover { background: var(--collection-hover); }
.v-grid-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* text and price */
.v-grid-card-title {
  margin-top: 1rem;
  font-size: 0.98rem;
  text-align: center;
  color: var(--secondary-color);
}
.v-grid-card-price-row {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  text-align: center;
}
.v-grid-card-price-row span { margin: 0 2px; }
.v-grid-card-price-old { text-decoration: line-through; color: var(--v-prod-price-old); }
.v-grid-card-price, .v-grid-card-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--v-product-price);
}
/* Weight badge */
.v-grid-card-weight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0.55rem auto 0;
  padding: 3px 12px;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a7357;
  background: rgba(42, 28, 19, 0.06);
  border-radius: 20px;
}
/* Buttons */
.v-grid-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
  margin: 0.2rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--secondary-color);
  color: #fef4e6;
  box-shadow: 0 2px 6px rgba(42, 28, 19, 0.18);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.v-grid-card-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.v-grid-card-btn:hover {
  background: #3f2417;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(42, 28, 19, 0.28);
}
.v-grid-card-btn:active { transform: translateY(0); box-shadow: 0 3px 8px rgba(42,28,19,0.2); }

.v-grid-card-btn--bottom { margin-top: 1rem; }

/* Overlay: fade/slide instead of display toggle */
.v-grid-card-btn--overlay {
  left: 1.1rem;
  right: 1.1rem;
  bottom: 6.5rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  display: flex; /* was: none */
}
@media (min-width: 1025px) {
  .v-grid-card-btn--bottom { display: none; }
  .v-grid-card-inner:hover .v-grid-card-btn--overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 1024px) {
  .v-grid-card-btn--overlay { display: none !important; }
  .v-grid-card-btn--bottom { display: flex; }
}

@media (max-width: 640px) {
  .v-grid-section { padding: 2.7rem 1rem 3rem; }
  .v-grid-card { flex: 0 0 100%; } /* single column */
}

/* overlay hover showing only on desktop */
@media (min-width: 1025px) {
  .v-grid-card-btn--bottom { display: none; }
  .v-grid-card-inner:hover .v-grid-card-btn--overlay { display: block; }
}
@media (max-width: 1024px) {
  .v-grid-card-btn--overlay { display: none !important; }
  .v-grid-card-btn--bottom { display: block; }
}


/*///////////// shop page ends///////////////////
/////////////////////////////////////////////  */



/*///////////// about starts///////////////////
/////////////////////////////////////////////  */

.about-hero {
    width: 100%;
    height: 320px; 
    background: url("assets/images/about-top.png") no-repeat center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.about-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--v-caro-text-main);        
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

.about-quality {
  padding: 4rem 1.5rem;
  background: var(--background);
}

.about-quality-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-quality-image {
  flex: 1 1 45%;
}
.about-quality-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.about-quality-content {
  flex: 1 1 50%;
}

.about-quality-logo {
  width: 130px;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-quality-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--secondary-color);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.about-quality-content p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--distributor-text);
}

@media (max-width: 900px) {
  .about-quality-container {
    flex-direction: column;
  }

  .about-quality-image {
    order: 1;
  }

  .about-quality-content {
    order: 2;
    padding-top: 1rem;
  }

  .about-quality-logo {
    margin-left: 0;
  }
}

.about-philosophy {
  background: var(--background);
  padding: 3.5rem 1rem 4rem;
}

.about-philosophy .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.philo-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--secondary-color);
  margin-bottom: 1.75rem;
}

/* grid */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.philo-card {
  background: var(--v-collection-panel);   /* pale rounded panel */
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  transition: transform .16s ease, box-shadow .16s ease;
}

.philo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.philo-media {
  background: var(--white-bg);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;              
  margin-bottom: 1rem;
}

.philo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.philo-body {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 auto;
}

.philo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.philo-text {
  color: var(--distributor-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .philo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .about-philosophy { padding: 2rem 0.75rem; }
  .philo-grid { grid-template-columns: 1fr; gap: 1rem; }
  .philo-media { height: 220px; }
  .philo-heading { text-align: left; }
}
.about-mission-values {
  padding: 2.5rem 1rem 4rem;
  background: var(--background);
}

.mv-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 1.6rem;
  align-items: start;
}

.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.mv-card {
  border-radius: 18px;
  padding: 1.5rem;
  box-sizing: border-box;
  min-height: 220px;
}

.mv-card--mission {
  background: linear-gradient(180deg, rgba(250,245,238,1) 0%, rgba(244,233,218,1) 100%);
  border: 1px solid rgba(43,26,18,0.12);
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  display:flex;
  flex-direction:column;
  gap: 0.9rem;
}

.mv-card--mission .mv-icon {
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.mv-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--secondary-color);
  margin: 0.35rem 0 0.6rem;
}

.mv-card-body {
  color: var(--distributor-text);
  line-height: 1.7;
  font-size: 0.96rem;
}

.mv-card--values {
  position: relative;
  overflow: hidden;
  color: #f7e6d7;
  background-color: #2c140f; /* fallback */
  border-radius: 18px;
  padding: 2rem;
  /* subtle geometric pattern using CSS gradients */
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 10%, transparent 10%),
    linear-gradient(45deg, rgba(255,255,255,0.02) 10%, transparent 10%),
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.01), rgba(255,255,255,0) 30%);
  background-size: 32px 32px, 32px 32px, 200px 120px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.12);
}

/* Values heading - large and elegant */
.mv-values-heading {
  font-size: 1.9rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: #f7e6d7;
}

/* Values list and items */
.mv-values-list { display:flex; flex-direction:column; gap: 1.15rem; }

.mv-values-sub {
  font-weight:700;
  font-size: 1.02rem;
  color: #f2d7b6;
  margin-bottom: 0.35rem;
}
.mv-values-item p {
  margin: 0;
  color: rgba(247,230,215,0.92);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* Responsive: stack on smaller screens */
@media (max-width: 980px) {
  .mv-inner {
    grid-template-columns: 1fr;
  }
  .mv-card--mission { order: 1; }
  .mv-card--values { order: 2; }
  .mv-card--values { padding: 1.2rem; }
  .mv-card--mission { padding: 1.2rem; }
}

/* Tight mobile tweaks */
@media (max-width: 480px) {
  .about-mission-values { padding: 1.6rem 0.75rem 2.5rem; }
  .mv-card-title { font-size: 1.25rem; }
  .mv-values-heading { font-size: 1.45rem; }
  .mv-card-body, .mv-values-item p { font-size: 0.94rem; }
}



/*///////////// about ends///////////////////
/////////////////////////////////////////////  */

/*///////////// Contact starts///////////////////
/////////////////////////////////////////////  */

.p-contact { 
    padding: 5rem 10rem; 
    background: var(--background); 
}
.p-contact-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: start; }

.p-contact-form-panel {
  background: linear-gradient(#efe3d3, #f3eadf); /* subtle parchment look */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(43,26,18,0.08);
}

.p-contact-title { font-family: "Playfair Display", serif; font-size: 2rem; margin-bottom: 0.6rem; color: var(--secondary-color); }
.p-contact-intro { color: var(--distributor-text); margin-bottom: 1rem; line-height:1.6; }

.p-contact-rule { border: none; height: 1px; background: rgba(43,26,18,0.07); margin: 1rem 0; }

.p-contact-form { display:flex; flex-direction:column; gap: 0.9rem; }
.p-row { display:flex; gap: 1rem; }
.p-field { display:flex; flex-direction:column; gap:0.5rem; flex:1; }
.p-field.p-full { width:100%; }
.p-label { font-size:0.95rem; color: var(--distributor-text); font-weight:600; }

.p-input, .p-textarea {
  border-radius: 10px;
  border: none;
  padding: 0.85rem 1rem;
  background: var(--white-bg);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
  font-size: 1rem;
  color: var(--secondary-color);
  outline: none;
  resize: vertical;
}
.p-textarea { min-height: 160px; }

.p-checkbox { display:flex; align-items:center; gap:0.6rem; margin-top:0.6rem; color:var(--distributor-text); font-size:0.95rem; }
.p-checkbox input[type="checkbox"] { width:18px; height:18px; }

.p-submit-row { margin-top: 1rem; }
.p-btn {
  display:block;
  width:100%;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  border:none;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.p-btn:active { transform: translateY(1px); }

.p-contact-side { display:flex; flex-direction:column; gap:1rem; align-items:stretch; }

.p-contact-visual {
  background: var(--brook-text);
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.p-contact-visual img { height:100%; object-fit:cover; display:block; }

/* small info card */
.p-contact-info {
  background: linear-gradient(#efe3d3, #f3eadf);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(43,26,18,0.06);
}
.p-info-row { display:flex; gap:0.9rem; align-items:center; padding:0.8rem 0; border-bottom: 1px solid rgba(43,26,18,0.03); }
.p-info-row:last-child { border-bottom: none; }
.p-info-icon { width:48px; height:48px; border-radius:50%; background:var(--white-bg); display:flex; align-items:center; justify-content:center; box-shadow: 0 6px 14px rgba(0,0,0,0.04); }
.p-info-txt { display:flex; flex-direction:column; gap:4px; }
.p-info-label { color:var(--secondary-color); font-weight:700; }
.p-info-val { color:var(--distributor-text); font-size:0.95rem; }

@media (max-width: 980px) {
  .p-contact-inner { grid-template-columns: 1fr; }
  .p-contact-visual { height: 260px; }
  .p-contact-form-panel { order: 2; }
  .p-contact-side { order: 1; }
  .p-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .p-contact { padding: 2rem 0.75rem; }
  .p-contact-title { font-size: 1.6rem; }
  .p-contact-visual { height: 200px; }
}



/*///////////// Contact ends///////////////////
/////////////////////////////////////////////  */




