/*
Theme Name: Grand Vanilla ID
Theme URI: https://grandvanilla.id
Author: Jasa Digital Nirwana
Author URI: https://jasadigitalnirwana.com
Description: High-Fidelity Custom WordPress Theme for Grand Vanilla Indonesia — Indonesian Vanilla Beans B2B Supplier & Exporter.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: grand-vanilla
Tags: custom-theme, b2b, vanilla-exporter, corporate, clean, responsive
*/

/* -------------------------------------------------------------
 * 1. Design System Tokens & Custom Properties
 * ----------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-dark-khaki: #363E19;
    --color-dark-khaki-hover: #2a3113;
    --color-pitch-black: #0A0804;
    --color-parchment: #E1E2DD;
    --color-warm-sand: #F3ECE6;
    --color-warm-sand-alt: #EBE4DD;
    --color-white: #FFFFFF;

    /* Neutral Black Scale */
    --color-nb-100: #E7E6E6;
    --color-nb-200: #DADAD9;
    --color-nb-300: #B3B2B1;
    --color-nb-400: #0A0804;

    /* Neutral White Scale */
    --color-nw-base: #FBF7F4;
    --color-nw-200: #C9C6C3;
    --color-nw-300: #BCB9B7;
    --color-nw-400: #979492;
    --color-nw-500: #716F6E;

    /* General Status */
    --color-success: #16A34A;
    --color-info: #2563EB;
    --color-danger: #DC2626;

    /* Typography */
    --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Corner Radius Scale */
    --radius-4: 4px;
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-16: 16px;
    --radius-24: 24px;
    --radius-full: 9999px;

    /* Spacing Scale */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-72: 72px;
    --space-80: 80px;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(10, 8, 4, 0.05);
    --shadow-md: 0 4px 12px rgba(10, 8, 4, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(10, 8, 4, 0.12);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
 * 2. CSS Reset & Typography
 * ----------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-parchment);
    color: var(--color-pitch-black);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar globally for Chrome, Safari, Edge, and Opera while preserving scrolling */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--color-pitch-black);
    line-height: 1.25;
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* -------------------------------------------------------------
 * 3. Layout & Container Utilities
 * ----------------------------------------------------------- */
.gv-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-24);
    padding-right: var(--space-24);
}

.gv-main {
    flex: 1;
}

.gv-section {
    padding-top: var(--space-72);
    padding-bottom: var(--space-72);
    background-color: var(--color-parchment);
}

.gv-section-sm {
    padding-top: var(--space-48);
    padding-bottom: var(--space-48);
    background-color: var(--color-parchment);
}

.gv-section-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-nw-500);
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.gv-section-tag::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-nw-500);
}

/* -------------------------------------------------------------
 * 4. Header & Navigation
 * ----------------------------------------------------------- */
.gv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(251, 247, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-nb-100);
}

.gv-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.gv-brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.gv-brand-logo img {
    height: 42px;
    width: auto;
}

.gv-nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-32);
}

@media (min-width: 768px) {
    .gv-nav-menu {
        display: flex;
    }
}

.gv-nav-link {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-pitch-black);
    position: relative;
    padding: var(--space-8) 0;
}

.gv-nav-link:hover,
.gv-nav-link.active,
.gv-nav-link.current-menu-item {
    color: var(--color-dark-khaki);
}

.gv-mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-8);
    color: var(--color-pitch-black);
}

@media (min-width: 768px) {
    .gv-mobile-toggle {
        display: none;
    }
}

.gv-mobile-drawer {
    display: none;
    padding: var(--space-16) var(--space-24) var(--space-32);
    border-top: 1px solid var(--color-nb-100);
    background-color: var(--color-parchment);
}

.gv-mobile-drawer.is-open {
    display: block;
}

.gv-mobile-drawer .gv-nav-link {
    display: block;
    padding: var(--space-12) 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-nb-100);
}

/* -------------------------------------------------------------
 * 5. Buttons & Pills
 * ----------------------------------------------------------- */
.gv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.gv-btn-primary {
    background-color: var(--color-dark-khaki);
    color: var(--color-white);
}

.gv-btn-primary:hover {
    background-color: var(--color-dark-khaki-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gv-btn-outline {
    background-color: transparent;
    color: var(--color-pitch-black);
    border-color: var(--color-nb-300);
}

.gv-btn-outline:hover {
    background-color: var(--color-warm-sand);
    border-color: var(--color-dark-khaki);
    color: var(--color-dark-khaki);
}

.gv-btn-sm {
    padding: 0.45rem 1.25rem;
    font-size: 0.8125rem;
}

.gv-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: var(--font-heading);
    border: 1px solid var(--color-nb-200);
    background-color: var(--color-white);
    color: var(--color-pitch-black);
}

.gv-pill-khaki {
    background-color: var(--color-dark-khaki);
    color: var(--color-white);
    border-color: var(--color-dark-khaki);
}

/* -------------------------------------------------------------
 * 6. Hero Banner Sections
 * ----------------------------------------------------------- */
.gv-hero-page {
    position: relative;
    background-color: var(--color-pitch-black);
    color: var(--color-white);
    padding: 6.75rem 0;
    min-height: 270px;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-hero-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 4, 0.32);
    z-index: 1;
}

.gv-hero-page .gv-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.gv-hero-tag {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 2.85rem);
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.gv-hero-subtag {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: #FFFFFF;
    max-width: 40rem;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

@media (max-width: 719px) {
    .gv-hero-page {
        padding: 4.75rem 1.25rem;
        min-height: 220px;
    }
}

/* -------------------------------------------------------------
 * 7. Grids & Cards
 * ----------------------------------------------------------- */
.gv-grid-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--space-24);
}

@media (min-width: 720px) {
    .gv-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gv-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gv-grid-4 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--space-24);
}

@media (min-width: 640px) {
    .gv-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gv-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gv-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-nb-100);
    border-radius: var(--radius-16);
    overflow: hidden;
    transition: var(--transition);
}

.gv-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-nb-300);
}

.gv-card-sand {
    background-color: var(--color-warm-sand);
    border-color: var(--color-warm-sand-alt);
}

/* -------------------------------------------------------------
 * 8. CTA Banner (High-Fidelity Figma Design - Desktop, Tablet, Mobile)
 * ----------------------------------------------------------- */
.gv-cta-banner {
    position: relative;
    background-color: #B9C1B4; /* Soft Sage Green from Figma */
    padding: 5.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.gv-cta-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gv-cta-heading {
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-dark-khaki);
    line-height: 1.25;
    margin: 0 0 2rem 0;
    letter-spacing: -0.01em;
    text-transform: none; /* Title Case on Desktop */
}

.gv-cta-btn-wrap {
    display: flex;
    justify-content: center;
}

.gv-cta-btn {
    display: inline-block;
    background-color: var(--color-dark-khaki);
    color: #FFFFFF;
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none; /* Title Case on Desktop */
    padding: 0.8rem 2.25rem;
    border-radius: var(--radius-4);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(54, 62, 25, 0.15);
    transition: all var(--transition-normal);
}

.gv-cta-btn:hover {
    background-color: var(--color-pitch-black);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 8, 4, 0.2);
}

.gv-cta-flower {
    position: absolute;
    width: 220px;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.8;
}

.gv-cta-flower-tr {
    top: -45px;
    right: -40px;
    transform: rotate(225deg);
}

.gv-cta-flower-bl {
    bottom: -45px;
    left: -40px;
    transform: rotate(45deg);
}

/* Tablet Breakpoint (768px - 1024px) */
@media (max-width: 1024px) {
    .gv-cta-banner {
        padding: 5rem 1.5rem;
    }
    .gv-cta-heading {
        font-size: 2.125rem;
        margin-bottom: 1.75rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    .gv-cta-flower {
        width: 180px;
    }
    .gv-cta-flower-tr {
        top: -35px;
        right: -30px;
    }
    .gv-cta-flower-bl {
        bottom: -35px;
        left: -30px;
    }
}

/* Mobile Breakpoint (< 720px) */
@media (max-width: 719px) {
    .gv-cta-banner {
        padding: 4.5rem 1.25rem;
    }
    .gv-cta-heading {
        font-size: 1.625rem;
        line-height: 1.28;
        margin-bottom: 1.75rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .gv-cta-flower {
        width: 125px;
    }
    .gv-cta-flower-tr {
        top: -20px;
        right: -20px;
    }
    .gv-cta-flower-bl {
        bottom: -20px;
        left: -20px;
    }
    .gv-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.8125rem;
    }
}

/* -------------------------------------------------------------
 * 9. Footer
 * ----------------------------------------------------------- */
.gv-footer {
    background-color: #FAF8F5;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: var(--space-64);
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    color: var(--color-pitch-black);
}

.gv-footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--space-48);
    padding-bottom: var(--space-48);
    border-bottom: 1px solid var(--color-nb-100);
}

@media (min-width: 720px) {
    .gv-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.gv-footer h4 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-nw-500);
    margin-bottom: var(--space-16);
}

.gv-footer ul li {
    margin-bottom: var(--space-8);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.gv-footer ul li a:hover {
    color: var(--color-dark-khaki);
}

.gv-footer-bottom {
    padding-top: var(--space-24);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-nw-500);
}

/* ==========================================================================
   Homepage Gallery Infinite Carousel Slider
   ========================================================================== */
.gv-gallery-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.gv-gallery-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
    animation: gvGalleryAutoScroll 35s linear infinite;
}

.gv-gallery-carousel-viewport:hover .gv-gallery-carousel-track {
    animation-play-state: paused;
}

.gv-gallery-card {
    flex: 0 0 290px;
    width: 290px;
    background: #FAF8F5;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gv-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@keyframes gvGalleryAutoScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* 5 cards * 290px + 5 gaps * 24px = 1570px */
        transform: translate3d(-1570px, 0, 0);
    }
}

/* ==========================================================================
   10. Products Cards Grid Component (Interactive Flex Expansion)
   ========================================================================== */
.gv-products-cards-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
    width: 100%;
}

.gv-product-card {
    background-color: #BDC4B8;
    border-radius: 12px;
    padding: 1.35rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-width: 0;
    height: 400px;
    box-sizing: border-box;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, padding 0.4s ease;
    will-change: flex;
}

.gv-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: #363E19;
    color: #FFFFFF;
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    line-height: 1;
    user-select: none;
}

@media (min-width: 992px) {
    .gv-product-card.is-active {
        flex: 1.85 1 0px !important;
        cursor: default;
        padding: 1.5rem 1.6rem 1.4rem;
    }

    .gv-product-card.is-collapsed {
        flex: 1 1 0px !important;
        cursor: pointer;
        padding: 1.5rem 1.35rem 1.4rem;
    }

    .gv-product-card.is-collapsed:hover {
        background-color: #B5BCB0;
    }
}

/* Product Image Containers */
.gv-card-img-wrap {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.gv-card-img {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.06));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gv-product-card.is-active .gv-card-img {
    max-height: 250px;
    max-width: 94%;
}

.gv-product-card.is-collapsed .gv-card-img {
    max-height: 215px;
    max-width: 90%;
}

/* Bottom Content Area (Title, Desc & Buttons) */
.gv-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    width: 100%;
    flex-shrink: 0;
}

.gv-card-text {
    flex: 1 1 auto;
    min-width: 0;
}

.gv-card-title {
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-weight: 500;
    color: #363E19;
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
}

.gv-product-card.is-active .gv-card-title {
    font-size: clamp(1.4rem, 1.7vw, 1.55rem);
}

.gv-product-card.is-collapsed .gv-card-title {
    font-size: 1.22rem;
    white-space: nowrap;
}

.gv-card-desc {
    color: #4A5239;
    margin: 0;
}

.gv-product-card.is-active .gv-card-desc {
    font-size: 0.8125rem;
    line-height: 1.42;
    max-width: 320px;
}

.gv-product-card.is-collapsed .gv-card-desc {
    font-size: 0.775rem;
    line-height: 1.38;
    max-width: 185px;
}

/* Cross-fade Action Buttons (Zero Layout Jumps) */
.gv-card-actions-slot {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), min-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gv-product-card.is-collapsed .gv-card-actions-slot {
    min-width: 36px;
    width: 36px;
}

.gv-product-card.is-active .gv-card-actions-slot {
    min-width: 105px;
    width: 105px;
}

.gv-card-btn-detail {
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(8px, 0, 0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, background-color 0.2s ease, color 0.2s ease;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #363E19;
    color: #363E19;
    background: transparent !important;
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1.15rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
}

.gv-card-btn-arrow {
    position: absolute;
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, background-color 0.2s ease, color 0.2s ease;
    pointer-events: auto;
    width: 36px;
    height: 36px;
    border: 1px solid #363E19;
    color: #363E19;
    background: transparent !important;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.gv-product-card.is-active .gv-card-btn-detail {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.gv-product-card.is-active .gv-card-btn-arrow {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-8px, 0, 0);
    pointer-events: none;
}

.gv-card-btn-detail:hover {
    background-color: #363E19 !important;
    color: #FFFFFF !important;
}

.gv-card-btn-arrow:hover {
    background-color: #363E19 !important;
    color: #FFFFFF !important;
}



/* ==========================================================================
   11. Explore More Products Component (Consistent 1:1 Squares)
   ========================================================================== */
.gv-explore-more-section {
    margin-bottom: 6rem;
}

.gv-explore-title {
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: #1C230C;
    margin: 0 0 3.5rem 0;
}

.gv-explore-rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gv-explore-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .gv-explore-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: center;
    }

    .gv-explore-row.gv-explore-row-reverse {
        grid-template-columns: 1fr 1fr;
    }

    .gv-explore-row:not(.gv-explore-row-reverse) .gv-explore-text-col {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .gv-explore-row.gv-explore-row-reverse .gv-explore-text-col {
        padding-left: 3rem;
        padding-right: 1rem;
    }
}

.gv-explore-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.gv-explore-item-title {
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: clamp(1.85rem, 2.5vw, 2.35rem);
    font-weight: 500;
    color: #363E19;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.gv-explore-item-desc {
    color: #4A5239;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 2rem 0;
    max-width: 380px;
}

.gv-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #363E19;
    color: #363E19;
    background: transparent;
    font-family: var(--font-heading, 'Jost', sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.65rem 1.6rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gv-explore-btn:hover {
    background-color: #363E19;
    color: #FFFFFF;
}

.gv-explore-img-card {
    background-color: #BDC4B8;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1 !important;
    box-sizing: border-box;
    overflow: hidden;
}

.gv-explore-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.07));
    transition: transform 0.4s ease;
}

.gv-explore-img-card:hover .gv-explore-img {
    transform: scale(1.03);
}
