/* ==========================================================================
   REDESIGN - NEW HOMEPAGE STYLES
   ========================================================================== */

/* ==========================================================================
   SHOP FOR EVERYDAY LIFE — PREMIUM REDESIGN
   ========================================================================== */

.v-lifestyle-premium {
    position: relative;
    padding: 90px 0 100px;
    background: #f8f5ef;
    overflow: hidden;
}

/* Botanical leaf background elements */
.v-ls-leaf {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.v-ls-leaf-tl {
    top: -40px;
    left: -60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%234a7c59" d="M10,100 Q50,10 190,10 Q190,150 10,100Z" opacity="0.18"/><path fill="%234a7c59" d="M5,80 Q40,5 160,20 Q150,130 5,80Z" opacity="0.1"/></svg>');
    transform: rotate(0deg);
}

.v-ls-leaf-tr {
    top: -20px;
    right: -80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%234a7c59" d="M190,100 Q150,10 10,10 Q10,150 190,100Z" opacity="0.18"/></svg>');
    transform: rotate(0deg);
}

.v-ls-leaf-br {
    bottom: -60px;
    right: -40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%234a7c59" d="M190,190 Q150,90 10,190 Q10,50 190,190Z" opacity="0.15"/></svg>');
}

/* Badge */
.v-ls-badge {
    background: #fff;
    border: 1px solid #c8ddc4;
    color: #2d6a4f !important;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.08);
}

/* Heading */
.v-ls-heading {
    font-family: var(--v-font-serif) !important;
    font-size: clamp(30px, 4vw, 50px) !important;
    color: #1b3d2a !important;
    line-height: 1.2 !important;
}

.v-ls-accent {
    color: #2d6a4f;
}

.v-ls-leaf-icon {
    font-size: 0.7em;
    vertical-align: middle;
}

/* Decorative divider */
.v-ls-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 50px;
    max-width: 200px;
}

.v-ls-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #a8c5a0);
}

.v-ls-divider span:last-child {
    background: linear-gradient(to left, transparent, #a8c5a0);
}

.v-ls-divider i {
    color: #4a7c59;
    font-size: 16px;
}

/* Grid layout */
.v-ls-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .v-ls-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .v-ls-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .v-ls-grid::-webkit-scrollbar { display: none; }
}

/* Card */
.v-ls-card {
    background: var(--ls-bg, #fef9f0);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(168, 197, 160, 0.4);
    box-shadow: 0 4px 16px rgba(30, 60, 40, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
    position: relative;
}

@media (max-width: 767.98px) {
    .v-ls-card {
        flex: 0 0 240px;
        scroll-snap-align: center;
    }
}

.v-ls-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(30, 60, 40, 0.14);
    text-decoration: none !important;
}

/* Image area */
.v-ls-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #e8e3d8;
}

.v-ls-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-ls-card:hover .v-ls-img {
    transform: scale(1.07);
}

/* Floating icon badge */
.v-ls-icon-float {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6a4f;
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(30, 60, 40, 0.15);
    border: 2px solid rgba(168, 197, 160, 0.5);
    z-index: 2;
    transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.v-ls-card:hover .v-ls-icon-float {
    background: #2d6a4f;
    color: #fff;
    transform: translateX(-50%) scale(1.12);
}

/* Card body */
.v-ls-body {
    padding: 34px 18px 22px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-ls-name {
    font-family: var(--v-font-serif, Georgia, serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b3d2a;
    margin-bottom: 6px;
}

.v-ls-sub {
    font-size: 0.8rem;
    color: #5a6e5f;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.v-ls-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d6a4f;
    border: 1.5px solid #b8d4b4;
    border-radius: 50px;
    padding: 7px 18px;
    background: transparent;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none !important;
}

.v-ls-cta i {
    transition: transform 0.3s ease;
}

.v-ls-card:hover .v-ls-cta {
    background: #2d6a4f;
    border-color: #2d6a4f;
    color: #fff;
}

.v-ls-card:hover .v-ls-cta i {
    transform: translateX(4px);
}

/* Center highlight card slightly larger */
.v-ls-card-center {
    transform: scale(1.0);
    border-color: rgba(45, 106, 79, 0.3);
    box-shadow: 0 8px 24px rgba(30, 60, 40, 0.1);
}

.v-ls-card-center:hover {
    transform: translateY(-10px) scale(1.02);
}

@media (max-width: 1199.98px) {
    .v-ls-card-center {
        transform: none;
    }
    .v-ls-card-center:hover {
        transform: translateY(-10px);
    }
}

/* 1. Our Collections */
.v-collections-section {
    padding: 80px 0;
    background: #fdfbf7;
    position: relative;
    overflow: hidden;
}

.v-collections-bg-leaf {
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23e8efe6" d="M50,0 C80,0 100,20 100,50 C100,80 80,100 50,100 C20,100 0,80 0,50 C0,20 20,0 50,0 Z" opacity="0.6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    top: -50px;
    left: -50px;
    pointer-events: none;
}

.v-col-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 1;
    position: relative;
}

.v-col-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.v-col-grid::-webkit-scrollbar { display: none; }

.v-col-card {
    flex: 0 0 240px;
    scroll-snap-align: center;
    position: relative;
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--v-shadow-sm);
    transition: transform 0.3s ease;
}

.v-col-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--v-shadow-md);
}

.v-col-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-col-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(19, 56, 38, 0.95) 0%, rgba(19, 56, 38, 0.6) 60%, transparent 100%);
    color: #fff;
}

.v-col-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--v-font-serif);
}

.v-col-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.v-col-link {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.v-col-link:hover { color: var(--v-gold); }

/* 2. Shop By Category (Circular Design) */
.v-cat-circle-section {
    padding: 80px 0;
    background: #f8f6f0;
    text-align: center;
}

.v-cat-circle-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    justify-content: center;
}
@media (max-width: 992px) {
    .v-cat-circle-grid { justify-content: flex-start; }
}
.v-cat-circle-grid::-webkit-scrollbar { display: none; }

.v-cat-circle-card {
    flex: 0 0 160px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.v-cat-circle-card:hover {
    transform: translateY(-8px);
}

.v-cat-image-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 6px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(19, 56, 38, 0.08);
    position: relative;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

.v-cat-circle-card:hover .v-cat-image-wrap {
    box-shadow: 0 15px 35px rgba(19, 56, 38, 0.15);
}

.v-cat-image-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.v-cat-icon-sm {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--v-forest);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff;
}

.v-cat-circle-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v-ink);
    margin-bottom: 4px;
}

.v-cat-circle-sub {
    font-size: 0.75rem;
    color: var(--v-text);
    margin-bottom: 8px;
}

.v-cat-circle-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--v-forest);
    text-transform: uppercase;
}
.v-cat-circle-card:hover .v-cat-circle-link {
    color: var(--v-leaf);
}

/* 3. Farm to Pack Banner */
.v-farm-banner {
    background: var(--v-forest-deep);
    border-radius: var(--v-radius-xl);
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin: 60px 0;
}

.v-farm-banner-img {
    width: 30%;
    object-fit: cover;
    min-height: 250px;
}

.v-farm-banner-content {
    width: 70%;
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .v-farm-banner { flex-direction: column; }
    .v-farm-banner-img { width: 100%; height: 200px; }
    .v-farm-banner-content { width: 100%; flex-direction: column; text-align: center; gap: 30px; }
}

.v-farm-steps {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .v-farm-steps { flex-wrap: wrap; justify-content: center; }
}

.v-farm-step {
    text-align: center;
    position: relative;
}

.v-farm-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -22px;
    top: 20px;
    color: rgba(255,255,255,0.3);
    font-size: 18px;
}

@media (max-width: 767px) {
    .v-farm-step:not(:last-child)::after { display: none; }
}

.v-farm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
    color: var(--v-gold-light);
}

.v-farm-step span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Strip Bottom Border */
.v-trust-strip-section {
    border-top: 1px solid var(--v-border-light);
    border-bottom: 1px solid var(--v-border-light);
    background: #fff;
}

/* ==========================================================================
   DID YOU KNOW? — PREMIUM REDESIGN
   ========================================================================== */

.v-know-premium {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #f9f6ef 0%, #f2ede3 100%);
    overflow: hidden;
}

/* Floating leaf animations */
@keyframes v-dk-float {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50%       { transform: translateY(-18px) rotate(2deg); }
}

.v-dk-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    animation: v-dk-float 7s ease-in-out infinite;
}

.v-dk-leaf-l {
    left: -60px;
    top: 20px;
    width: 260px;
    height: 260px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%233d7a52" d="M10,100 Q60,5 190,20 Q170,160 10,100Z"/><line x1="10" y1="100" x2="120" y2="60" stroke="%233d7a52" stroke-width="1.5" opacity="0.4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation-duration: 9s;
}

.v-dk-leaf-r {
    right: -50px;
    top: -30px;
    width: 280px;
    height: 280px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%233d7a52" d="M190,100 Q140,5 10,20 Q30,160 190,100Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation-duration: 11s;
    animation-delay: -3s;
}

.v-dk-leaf-br {
    right: 60px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%235a8a3c" d="M100,190 Q10,140 30,10 Q160,40 100,190Z" opacity="0.7"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation-duration: 13s;
    animation-delay: -6s;
}

/* Badge */
.v-dk-badge {
    background: #fff !important;
    border: 1px solid #c5ddbf;
    color: #2b6244 !important;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(43, 98, 68, 0.08);
}

/* Heading */
.v-dk-heading {
    font-family: var(--v-font-serif, Georgia, serif) !important;
    font-size: clamp(32px, 5vw, 58px) !important;
    color: #1a3325 !important;
    letter-spacing: -0.01em !important;
}

/* Divider */
.v-dk-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto 44px;
    max-width: 180px;
}
.v-dk-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #9fc49a);
}
.v-dk-divider span:last-child {
    background: linear-gradient(to left, transparent, #9fc49a);
}
.v-dk-divider i {
    color: #4a8060;
    font-size: 15px;
}

/* Grid */
.v-dk-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199.98px) {
    .v-dk-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
}
@media (max-width: 767.98px) {
    .v-dk-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .v-dk-grid::-webkit-scrollbar { display: none; }
}

/* Card */
.v-dk-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(180, 210, 175, 0.45);
    box-shadow: 0 4px 18px rgba(25, 55, 35, 0.07);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
}

@media (max-width: 767.98px) {
    .v-dk-card { flex: 0 0 260px; scroll-snap-align: center; }
}

.v-dk-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 20px 45px rgba(25, 55, 35, 0.13);
}

/* Image */
.v-dk-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: #e8e4db;
}

.v-dk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-dk-card:hover .v-dk-img {
    transform: scale(1.05);
}

/* Floating icon */
.v-dk-icon-float {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b6244;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(25, 55, 35, 0.14);
    border: 2px solid rgba(160, 200, 160, 0.5);
    z-index: 3;
    transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.v-dk-card:hover .v-dk-icon-float {
    background: #2b6244;
    color: #fff;
    transform: translateX(-50%) scale(1.1);
}

/* Body */
.v-dk-body {
    padding: 30px 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.v-dk-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a8a5a;
    margin-bottom: 6px;
}

.v-dk-title {
    font-family: var(--v-font-serif, Georgia, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a3325;
    margin-bottom: 10px;
}

.v-dk-desc {
    font-size: 0.82rem;
    color: #4a5e50;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 18px;
}

.v-dk-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2b6244;
    background: #eef6ec;
    border-radius: 50px;
    padding: 8px 16px;
    text-decoration: none !important;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
    align-self: flex-start;
}

.v-dk-cta i {
    transition: transform 0.3s ease;
}

.v-dk-card:hover .v-dk-cta {
    background: #2b6244;
    color: #fff;
}

.v-dk-card:hover .v-dk-cta i {
    transform: translateX(5px);
}

/* Centre card slightly elevated */
.v-dk-card-center {
    box-shadow: 0 8px 28px rgba(25, 55, 35, 0.11);
    border-color: rgba(43, 98, 68, 0.25);
}

/* Header Badges */
.v-action-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.v-badge-count.v-badge-red { display: none; position: absolute; top: 0px; right: 0px; background-color: #d42a2a; color: white; font-size: 10px; font-weight: bold; width: 16px; height: 16px; border-radius: 50%; text-align: center; line-height: 16px; padding:0; margin:0; }
.v-badge-count.v-badge-red.has-items { display: block; }
