/* ==========================================
       CSS VARIABLES & BRAND COLOR SYSTEM
    ========================================== */
    :root {
      --primary: #365641;         /* Deep Forest Green */
      --primary-hover: #294332;
      --bg-ivory: #FFFDF8;        /* Warm Ivory */
      --bg-cream: #F7F4ED;        /* Soft Cream */
      --bg-beige: #E8E1D5;        /* Natural Beige */
      --sage: #AAB8A1;            /* Accent Sage */
      --taupe: #B9AA98;           /* Warm Taupe */
      --charcoal: #2E332F;        /* Deep Charcoal Text */
      --white: #FFFFFF;
      --border-light: rgba(46, 51, 47, 0.08);
      --border-dark: rgba(255, 253, 248, 0.15);
      
      --font-display: 'Cormorant Garamond', serif;
      --font-ui: 'Plus Jakarta Sans', sans-serif;
      
      --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
      --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ==========================================
       RESET & BASE STYLES
    ========================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    body {
      background-color: var(--bg-ivory);
      color: var(--charcoal);
      font-family: var(--font-ui);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    button, input, select, textarea {
      font: inherit;
      color: inherit;
      border: none;
      background: none;
      outline: none;
    }

    button {
      cursor: pointer;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* ==========================================
       TYPOGRAPHY SYSTEM
    ========================================== */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    .editorial-title {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-family: var(--font-display);
      font-weight: 400;
      color: var(--charcoal);
    }

    .editorial-title em {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
    }

    .label-uppercase {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--primary);
    }

    /* ==========================================
       BUTTONS & INTERACTIVE ELEMENTS
    ========================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: all 0.4s var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--bg-ivory);
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 10px 25px rgba(54, 86, 65, 0.2);
      transform: translateY(-2px);
    }

    .btn-secondary {
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
      background: transparent;
    }

    .btn-secondary:hover {
      background-color: var(--charcoal);
      color: var(--bg-ivory);
    }

    .btn-cream {
      background-color: var(--bg-ivory);
      color: var(--primary);
    }

    .btn-cream:hover {
      background-color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn-whatsapp {
      background-color: #25D366;
      color: #fff;
    }

    .btn-whatsapp:hover {
      background-color: #1eb856;
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
      transform: translateY(-2px);
    }

    /* ==========================================
       ANNOUNCEMENT BAR & HEADER
    ========================================== */
    .announcement-bar {
      background-color: var(--primary);
      color: var(--bg-ivory);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
      text-align: center;
      overflow: hidden;
      position: relative;
      z-index: 101;
    }

    .announcement-ticker {
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.5s ease;
    }

    .header-sticky-wrapper {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 253, 248, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      transition: all 0.3s ease;
    }

    .header-sticky-wrapper.scrolled {
      padding: 0.2rem 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }

    .header-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding 0.3s ease;
    }

    .header-sticky-wrapper.scrolled .header-container {
      padding: 0.8rem 2rem;
    }

    .brand-logo {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--primary);
      text-transform: uppercase;
    }

    .brand-logo span {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      color: var(--taupe);
      margin-top: -3px;
    }

    .main-nav ul {
      display: flex;
      gap: 2.5rem;
    }

    .main-nav a {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--charcoal);
      position: relative;
      padding: 0.25rem 0;
      transition: color 0.3s ease;
    }

    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }

    .main-nav a:hover {
      color: var(--primary);
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .action-icon-btn {
      position: relative;
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal);
      transition: color 0.3s ease;
    }

    .action-icon-btn:hover {
      color: var(--primary);
    }

    .cart-badge {
      position: absolute;
      top: 2px;
      right: 0px;
      background-color: var(--primary);
      color: var(--bg-ivory);
      font-size: 0.65rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-trigger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-menu-trigger span {
      width: 24px;
      height: 2px;
      background-color: var(--charcoal);
      transition: all 0.3s ease;
    }

    /* ==========================================
       HERO — EDITORIAL CAMPAIGN
    ========================================== */
    .hero-section {
      padding: 2rem 2rem 4rem;
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 4rem;
      align-items: center;
      min-height: 75vh;
      background-color: var(--bg-cream);
      border-radius: 8px;
      padding: 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-shape {
      position: absolute;
      right: -10%;
      bottom: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(170,184,161,0.2) 0%, rgba(247,244,237,0) 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-selector {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--border-light);
      padding-bottom: 1rem;
    }

    .hero-selector-btn {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--taupe);
      transition: color 0.3s ease;
      position: relative;
    }

    .hero-selector-btn.active {
      color: var(--primary);
    }

    .hero-selector-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1rem;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary);
    }

    .hero-headline {
      font-size: clamp(3rem, 4.5vw, 4.2rem);
      color: var(--charcoal);
      line-height: 1.08;
      margin-bottom: 1.5rem;
    }

    .hero-headline em {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--primary);
      font-weight: 400;
    }

    .hero-description {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 2.5rem;
      max-width: 480px;
      line-height: 1.7;
    }

    .hero-actions-group {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-composition {
      position: relative;
      height: 100%;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-main-img-wrapper {
      width: 75%;
      height: 480px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      position: relative;
    }

    .hero-main-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--transition-smooth);
    }

    .hero-secondary-img-wrapper {
      position: absolute;
      bottom: -20px;
      left: 0px;
      width: 45%;
      height: 240px;
      border-radius: 4px;
      overflow: hidden;
      border: 6px solid var(--bg-cream);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      z-index: 3;
    }

    .hero-secondary-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-floating-badge {
      position: absolute;
      top: 30px;
      right: 10px;
      background: var(--bg-ivory);
      padding: 1rem 1.25rem;
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      z-index: 3;
      border-left: 3px solid var(--primary);
    }

    .hero-floating-badge p {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
    }

    .hero-floating-badge span {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--charcoal);
    }

    /* ==========================================
       REDESIGNED SECTION 1: SLIM SHOPPING INTRO 
       (Immersive Side-by-Side Dual Banner Design)
    ========================================== */
    .hero-intro-strip {
      max-width: 1440px;
      margin: -1rem auto 4rem;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .intro-strip-card {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      min-height: 240px;
      display: flex;
      align-items: flex-end;
      padding: 2.5rem;
      color: var(--white);
      text-decoration: none;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
    }

    .intro-strip-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .intro-strip-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: transform 0.8s var(--transition-smooth);
    }

    .intro-strip-card:hover .intro-strip-bg {
      transform: scale(1.05);
    }

    .intro-strip-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(34,51,40,0.2) 20%, rgba(34,51,40,0.85) 100%);
      z-index: 2;
    }

    .intro-strip-content {
      position: relative;
      z-index: 3;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .intro-strip-text h4 {
      font-size: 1.75rem;
      color: var(--bg-ivory);
      margin-bottom: 0.4rem;
      font-family: var(--font-display);
    }

    .intro-strip-text p {
      font-size: 0.9rem;
      color: var(--sage);
      max-width: 320px;
    }

    .intro-strip-link {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--bg-ivory);
      background: rgba(255, 253, 248, 0.15);
      backdrop-filter: blur(6px);
      padding: 0.8rem 1.4rem;
      border-radius: 4px;
      transition: background 0.3s ease;
      white-space: nowrap;
    }

    .intro-strip-card:hover .intro-strip-link {
      background: var(--bg-ivory);
      color: var(--primary);
    }

    /* ==========================================
       BEST SELLERS — HORIZONTAL CAROUSEL
    ========================================== */
    .section-padding {
      padding: 5rem 2rem;
      max-width: 1440px;
      margin: 0 auto;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
    }

    .carousel-controls {
      display: flex;
      gap: 0.75rem;
    }

    .ctrl-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      transition: all 0.3s ease;
    }

    .ctrl-btn:hover {
      border-color: var(--primary);
      background: var(--primary);
      color: var(--white);
    }

    .product-carousel-track {
      display: flex;
      gap: 1.75rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 2rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .product-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      min-width: 290px;
      max-width: 290px;
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: all 0.4s var(--transition-smooth);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      box-shadow: 0 15px 35px rgba(0,0,0,0.06);
      transform: translateY(-4px);
      border-color: rgba(54, 86, 65, 0.2);
    }

    .product-image-box {
      position: relative;
      height: 320px;
      overflow: hidden;
      background: var(--bg-cream);
    }

    .product-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--transition-smooth);
    }

    .product-card:hover .product-image-box img {
      transform: scale(1.06);
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--primary);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.6rem;
      border-radius: 2px;
    }

    .quick-view-btn {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 253, 248, 0.95);
      color: var(--charcoal);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      white-space: nowrap;
      opacity: 0;
    }

    .product-card:hover .quick-view-btn {
      bottom: 15px;
      opacity: 1;
    }

    .quick-view-btn:hover {
      background: var(--primary);
      color: var(--white);
    }

    .product-info {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-category {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--taupe);
      margin-bottom: 0.3rem;
    }

    .product-title {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--charcoal);
    }

    .product-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 0.75rem;
    }

    .product-price {
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--primary);
    }

    .add-to-cart-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-cream);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal);
      transition: all 0.3s ease;
    }

    .add-to-cart-btn:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* ==========================================
       REDESIGNED SECTION 2: PRODUCT SPOTLIGHT 
       (Magazine Split Layout with Floating Badge & Refined Cards)
    ========================================== */
    .spotlight-section {
      background: var(--bg-cream);
      padding: 7rem 2rem;
      margin: 2rem 0;
    }

    .spotlight-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .spotlight-image-wrapper {
      position: relative;
    }

    .spotlight-image-main {
      height: 600px;
      width: 100%;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(54, 86, 65, 0.12);
    }

    .spotlight-image-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .spotlight-details-card {
      position: absolute;
      bottom: -35px;
      right: -35px;
      background: var(--bg-ivory);
      padding: 2.2rem;
      border-radius: 4px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      max-width: 300px;
      border: 1px solid var(--border-light);
    }

    .spotlight-content h3 {
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .spotlight-price {
      font-size: 1.75rem;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .spotlight-includes {
      margin-bottom: 2.5rem;
      background: var(--bg-ivory);
      padding: 1.75rem;
      border-radius: 4px;
      border: 1px solid var(--border-light);
    }

    .spotlight-includes h5 {
      font-family: var(--font-ui);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .spotlight-includes ul li {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--charcoal);
    }

    .spotlight-includes ul li::before {
      content: '✦';
      color: var(--primary);
      font-size: 0.8rem;
    }

    /* ==========================================
       SHOP BY GIFT TYPE — EDITORIAL MOSAIC
    ========================================== */
    .mosaic-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: repeat(2, 260px);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .mosaic-item {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 2rem;
      color: var(--white);
      text-decoration: none;
    }

    .mosaic-item-large {
      grid-row: span 2;
    }

    .mosaic-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--transition-smooth);
      z-index: 1;
    }

    .mosaic-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
      z-index: 2;
      transition: background 0.3s ease;
    }

    .mosaic-content {
      position: relative;
      z-index: 3;
    }

    .mosaic-title {
      font-size: 1.75rem;
      color: var(--white);
      margin-bottom: 0.25rem;
    }

    .mosaic-link {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .mosaic-item:hover .mosaic-bg {
      transform: scale(1.05);
    }

    .mosaic-item:hover .mosaic-overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.75) 100%);
    }

    /* ==========================================
       REDESIGNED SECTION 3: CUSTOM HAMPERS 
       (Sleek Dark Emerald Split Card Workflow Grid)
    ========================================== */
    .custom-hamper-section {
      background-color: var(--primary);
      color: var(--bg-ivory);
      padding: 8rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .custom-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .custom-header {
      text-align: center;
      max-width: 750px;
      margin: 0 auto 5rem;
    }

    .custom-header h2 {
      font-size: clamp(3rem, 5.5vw, 4.5rem);
      color: var(--bg-ivory);
      margin-bottom: 1.25rem;
    }

    .custom-header p {
      font-size: 1.15rem;
      color: var(--sage);
      line-height: 1.7;
    }

    .custom-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 5rem;
    }

    .process-step {
      background: rgba(255, 253, 248, 0.03);
      border: 1px solid var(--border-dark);
      padding: 2.5rem 2rem;
      border-radius: 6px;
      position: relative;
      transition: transform 0.4s ease, background 0.4s ease;
    }

    .process-step:hover {
      background: rgba(255, 253, 248, 0.07);
      transform: translateY(-6px);
      border-color: var(--sage);
    }

    .step-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--sage);
      margin-bottom: 1.25rem;
      opacity: 0.6;
    }

    .step-title {
      font-size: 1.35rem;
      color: var(--bg-ivory);
      margin-bottom: 0.75rem;
    }

    .step-desc {
      font-size: 0.9rem;
      color: var(--sage);
      line-height: 1.6;
    }

    .custom-cta-box {
      background: rgba(255, 253, 248, 0.06);
      border: 1px solid var(--border-dark);
      padding: 4rem 3rem;
      border-radius: 8px;
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
    }

    .custom-cta-text h3 {
      font-size: 2.25rem;
      color: var(--bg-ivory);
      margin-bottom: 0.5rem;
      font-family: var(--font-display);
    }

    .custom-cta-text p {
      color: var(--sage);
      font-size: 1rem;
    }

    /* REDESIGNED SECTION 4: CUSTOM INSPIRATION HORIZONTAL SCROLLER */
    .inspiration-gallery-section {
      padding: 6rem 0;
      background: var(--bg-cream);
      overflow: hidden;
    }

    .inspiration-gallery-header {
      max-width: 1300px;
      margin: 0 auto 3rem;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .inspiration-scroller {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 1rem 2rem 3rem;
      scrollbar-width: none;
    }

    .inspiration-scroller::-webkit-scrollbar {
      display: none;
    }

    .inspiration-card-modern {
      min-width: 340px;
      height: 440px;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

    .inspiration-card-modern img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--transition-smooth);
    }

    .inspiration-card-modern:hover img {
      transform: scale(1.06);
    }

    .inspiration-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 2.5rem 2rem 2rem;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(46,51,47,0.85) 100%);
      color: var(--white);
    }

    .inspiration-card-overlay h4 {
      font-size: 1.5rem;
      color: var(--bg-ivory);
      margin-bottom: 0.2rem;
    }

    .inspiration-card-overlay span {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--sage);
    }

    /* ==========================================
       REDESIGNED SECTION 5: SHOP BY OCCASION 
       (Grid of Immersive Interactive Cards)
    ========================================== */
    .occasions-grid-section {
      padding: 6rem 2rem;
      max-width: 1440px;
      margin: 0 auto;
    }

    .occasions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .occasion-card-item {
      height: 380px;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 2.5rem;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .occasion-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--transition-smooth);
    }

    .occasion-card-item:hover .occasion-card-bg {
      transform: scale(1.06);
    }

    .occasion-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(46,51,47,0.8) 100%);
      z-index: 1;
    }

    .occasion-card-content {
      position: relative;
      z-index: 2;
    }

    .occasion-card-content h3 {
      font-size: 2rem;
      color: var(--bg-ivory);
      margin-bottom: 0.3rem;
    }

    .occasion-card-content span {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--sage);
    }

    /* ==========================================
       REDESIGNED SECTION 6: SHOP BY BUDGET 
       (Bespoke Pill Grid with Rich Accent Cards)
    ========================================== */
    .budget-section-redesigned {
      background: var(--bg-cream);
      padding: 5rem 2rem;
      border-y: 1px solid var(--border-light);
    }

    .budget-wrapper {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      align-items: center;
    }

    .budget-intro h3 {
      font-size: clamp(2.2rem, 3.5vw, 3rem);
      margin-bottom: 1rem;
    }

    .budget-intro p {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
    }

    .budget-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .budget-option-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      padding: 2.2rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 160px;
      transition: all 0.3s var(--transition-smooth);
    }

    .budget-option-card:hover {
      border-color: var(--primary);
      background: var(--primary);
      color: var(--white);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(54,86,65,0.15);
    }

    .budget-option-card:hover .budget-range, 
    .budget-option-card:hover .budget-action {
      color: var(--bg-ivory);
    }

    .budget-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--taupe);
    }

    .budget-range {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--primary);
      font-weight: 600;
    }

    .budget-action {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--charcoal);
    }

    /* ==========================================
       GIFTING EDITORIAL STATEMENT
    ========================================== */
    .editorial-break {
      position: relative;
      padding: 10rem 2rem;
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      text-align: center;
      color: var(--white);
    }

    .editorial-break-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(46, 51, 47, 0.65);
      z-index: 1;
    }

    .editorial-break-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .editorial-break-content h2 {
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      color: var(--bg-ivory);
      margin-bottom: 2rem;
      line-height: 1.15;
    }

    /* ==========================================
       MINI GIFTS — PLAYFUL SHELF
    ========================================== */
    .mini-gifts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .mini-card {
      background: var(--bg-cream);
      padding: 1rem;
      border-radius: 4px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .mini-card:hover {
      transform: translateY(-5px);
    }

    .mini-card-img {
      height: 180px;
      width: 100%;
      object-fit: cover;
      border-radius: 2px;
      margin-bottom: 1rem;
    }

    /* ==========================================
       PERSONALIZATION SECTION
    ========================================== */
    .personalization-section {
      background: var(--bg-cream);
      padding: 6rem 2rem;
    }

    .personalization-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .personalization-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-tag {
      background: var(--bg-ivory);
      padding: 1.25rem;
      border-radius: 4px;
      border-left: 3px solid var(--primary);
    }

    .feature-tag h5 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .feature-tag p {
      font-size: 0.8rem;
      color: #666;
    }

    /* ==========================================
       GIFT GUIDE / MAGAZINE STYLE
    ========================================== */
    .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .guide-card {
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border-light);
    }

    .guide-img {
      height: 240px;
      width: 100%;
      object-fit: cover;
    }

    .guide-content {
      padding: 1.75rem;
    }

    .guide-content h4 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .guide-content p {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 1.25rem;
    }

    /* ==========================================
       REDESIGNED SECTION 7: BRAND STORY 
       (Sophisticated Editorial Storytelling Composition)
    ========================================== */
    .story-section-redesigned {
      padding: 8rem 2rem;
      max-width: 1300px;
      margin: 0 auto;
    }

    .story-container-redesigned {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .story-images-collage {
      position: relative;
      height: 540px;
    }

    .story-img-main {
      width: 75%;
      height: 440px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .story-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-img-secondary {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      height: 280px;
      border-radius: 6px;
      overflow: hidden;
      border: 8px solid var(--bg-ivory);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .story-img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-content-box h2 {
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .story-content-box p {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .story-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin: 2.5rem 0;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      padding: 2rem 0;
    }

    .story-stat-item h4 {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--primary);
    }

    .story-stat-item p {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--taupe);
      margin: 0;
    }

    /* ==========================================
       INSTAGRAM WALL
    ========================================== */
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .insta-item {
      height: 240px;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }

    .insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .insta-item:hover img {
      transform: scale(1.08);
    }

    /* ==========================================
       FINAL CTA & FOOTER
    ========================================== */
    .final-cta-section {
      background-color: var(--primary);
      color: var(--bg-ivory);
      text-align: center;
      padding: 7rem 2rem;
    }

    .final-cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .final-cta-container h2 {
      font-size: clamp(3rem, 5vw, 4.5rem);
      color: var(--bg-ivory);
      margin-bottom: 1.5rem;
    }

    .final-cta-container p {
      font-size: 1.15rem;
      color: var(--sage);
      margin-bottom: 2.5rem;
    }

    footer {
      background-color: var(--charcoal);
      color: var(--bg-beige);
      padding: 5rem 2rem 2rem;
      font-size: 0.85rem;
    }

    .footer-container {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand .brand-logo {
      color: var(--bg-ivory);
      margin-bottom: 1rem;
    }

    .footer-col h5 {
      color: var(--white);
      font-family: var(--font-ui);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1.5rem;
    }

    .footer-col ul li {
      margin-bottom: 0.75rem;
    }

    .footer-col a {
      color: var(--taupe);
      transition: color 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1440px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid var(--border-dark);
      display: flex;
      justify-content: space-between;
      color: var(--taupe);
      font-size: 0.8rem;
    }

    /* ==========================================
       CART DRAWER & MODALS
    ========================================== */
    .cart-drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .cart-drawer-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: -450px;
      width: 100%;
      max-width: 420px;
      height: 100%;
      background: var(--bg-ivory);
      z-index: 1001;
      transition: right 0.4s var(--transition-smooth);
      display: flex;
      flex-direction: column;
      box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .cart-drawer.active {
      right: 0;
    }

    .cart-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--border-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-body {
      padding: 1.5rem;
      flex-grow: 1;
      overflow-y: auto;
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-light);
    }

    .cart-item-img {
      width: 70px;
      height: 80px;
      object-fit: cover;
      border-radius: 2px;
    }

    .cart-item-details {
      flex-grow: 1;
    }

    .cart-item-title {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .cart-item-price {
      font-weight: 600;
      color: var(--primary);
    }

    .cart-footer {
      padding: 1.5rem;
      border-top: 1px solid var(--border-light);
      background: var(--bg-cream);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
    }

    /* SEARCH OVERLAY */
    .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 253, 248, 0.98);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 8rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .search-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .search-input-box {
      width: 90%;
      max-width: 700px;
      border-bottom: 2px solid var(--primary);
      position: relative;
    }

    .search-input-box input {
      width: 100%;
      font-family: var(--font-display);
      font-size: 2.5rem;
      padding: 0.5rem 0;
      color: var(--charcoal);
    }

    .close-search-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* QUICK VIEW MODAL */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-card {
      background: var(--bg-ivory);
      max-width: 850px;
      width: 90%;
      border-radius: 4px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      position: relative;
    }

    .modal-close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 10;
      font-size: 1.25rem;
      background: var(--white);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* TOAST NOTIFICATION */
    .toast-notification {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: var(--white);
      padding: 1rem 1.75rem;
      border-radius: 4px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      z-index: 2000;
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.4s var(--transition-bounce);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .toast-notification.active {
      transform: translateY(0);
      opacity: 1;
    }

    /* ==========================================
       RESPONSIVE DESIGN (MOBILE / TABLET)
    ========================================== */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
      }

      .hero-composition {
        min-height: 380px;
      }

      .hero-main-img-wrapper {
        width: 85%;
        height: 380px;
      }

      .spotlight-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .mosaic-item-large {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
      }

      .custom-process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .custom-cta-box {
        flex-direction: column;
        align-items: flex-start;
      }

      .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .budget-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .story-container-redesigned {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .personalization-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .main-nav, .header-actions .btn {
        display: none;
      }

      .mobile-menu-trigger {
        display: flex;
      }

      .hero-section {
        padding: 1rem 1rem 2rem;
      }

      .hero-container {
        padding: 1.5rem;
      }

      .hero-headline {
        font-size: 2.5rem;
      }

      .hero-intro-strip {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }

      .section-padding {
        padding: 3.5rem 1rem;
      }

      .custom-process-flow {
        grid-template-columns: 1fr;
      }

      .occasions-grid {
        grid-template-columns: 1fr;
      }

      .budget-cards-grid {
        grid-template-columns: 1fr;
      }

      .insta-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .modal-card {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
      }
    }
/* ==========================================
   V3 UNIQUE REDESIGNS
========================================== */

/* 1. SPOTLIGHT V2 (The Moonlight Edit) */
.spotlight-v2 { padding: 8rem 2rem; background: var(--bg-cream); overflow: hidden; }
.spot-v2-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; position: relative; }
.spot-v2-image { width: 60%; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); position: relative; z-index: 1; }
.spot-v2-image img { width: 100%; height: 650px; object-fit: cover; transition: transform 0.8s ease; }
.spot-v2-container:hover .spot-v2-image img { transform: scale(1.05); }
.spot-v2-content { width: 50%; margin-left: -10%; background: rgba(255, 253, 248, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 4rem; border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid var(--border-light); z-index: 2; }
.price-v2 { font-size: 2rem; color: var(--primary); font-weight: 600; margin-bottom: 2rem; }
.includes-v2 { list-style: none; margin-bottom: 2.5rem; }
.includes-v2 li { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 0.8rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.8rem; }
.includes-v2 li:last-child { border-bottom: none; }
.actions-v2 { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 2. CUSTOM HAMPERS V2 (Bespoke Service) */
.custom-v2 { background: var(--primary); color: var(--bg-ivory); padding: 8rem 2rem; }
.custom-v2-wrapper { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: center; }
.cv2-text { max-width: 500px; }
.cv2-text p { color: var(--sage); font-size: 1.1rem; line-height: 1.8; }
.cv2-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.cv2-step-card { background: rgba(255, 253, 248, 0.05); border: 1px solid rgba(255, 253, 248, 0.1); padding: 2.5rem; border-radius: 6px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.cv2-step-card:hover { background: rgba(255, 253, 248, 0.1); transform: translateY(-5px); border-color: var(--sage); }
.cv2-step-num { font-family: var(--font-display); font-size: 4rem; color: var(--sage); opacity: 0.3; position: absolute; top: 1rem; right: 1rem; line-height: 1; }
.cv2-step-card h4 { font-size: 1.3rem; color: var(--bg-ivory); margin-bottom: 1rem; position: relative; z-index: 2; }
.cv2-step-card p { font-size: 0.9rem; color: var(--sage); line-height: 1.6; position: relative; z-index: 2; }

/* 3. INSPIRATION ACCORDION V2 */
.inspiration-v2 { padding: 6rem 0; background: var(--bg-cream); }
.accordion-container { display: flex; height: 500px; width: 100%; max-width: 1400px; margin: 0 auto; gap: 10px; padding: 0 2rem; }
.acc-panel { flex: 1; border-radius: 8px; background-size: cover; background-position: center; position: relative; transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; overflow: hidden; }
.acc-panel.active, .acc-panel:hover { flex: 4; }
.acc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); opacity: 0; transition: opacity 0.5s; display: flex; align-items: flex-end; padding: 2rem; }
.acc-panel.active .acc-overlay, .acc-panel:hover .acc-overlay { opacity: 1; }
.acc-overlay h3 { color: var(--bg-ivory); font-size: 1.5rem; margin: 0; transform: translateY(20px); transition: transform 0.5s; }
.acc-panel.active .acc-overlay h3, .acc-panel:hover .acc-overlay h3 { transform: translateY(0); }

/* 4. OCCASIONS BENTO GRID V2 */
.occasions-v2 { padding: 6rem 2rem; max-width: 1400px; margin: 0 auto; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 1.5rem; margin-top: 3rem; }
.bento-item { border-radius: 8px; overflow: hidden; position: relative; text-decoration: none; display: flex; align-items: flex-end; padding: 2rem; background-size: cover; background-position: center; }
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,51,47,0.9), transparent); transition: background 0.4s; }
.bento-item:hover .bento-overlay { background: linear-gradient(to top, rgba(46,51,47,0.95), rgba(46,51,47,0.2)); }
.bento-text { position: relative; z-index: 2; transform: translateY(10px); transition: transform 0.4s; }
.bento-item:hover .bento-text { transform: translateY(0); }
.bento-text span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--sage); display: block; margin-bottom: 0.5rem; opacity: 0; transition: opacity 0.4s; }
.bento-item:hover .bento-text span { opacity: 1; }
.bento-text h3 { font-size: 1.8rem; color: var(--bg-ivory); margin: 0; }
.bento-item.large .bento-text h3 { font-size: 2.5rem; }
.custom-cta-bento { background: var(--primary); display: flex; align-items: center; justify-content: center; text-align: center; }
.custom-cta-bento .bento-text { transform: translateY(0); }
.custom-cta-bento .bento-text span { opacity: 1; margin-bottom: 1rem; }

/* 5. INSTAGRAM LIVE FEED OVERRIDES */
.insta-grid-fallback { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem; }
.insta-grid-fallback .insta-item { height: 240px; border-radius: 4px; overflow: hidden; }
.insta-grid-fallback .insta-item img { width: 100%; height: 100%; object-fit: cover; }
.sbi_photo_wrap { border-radius: 6px !important; }

/* 6. ULTRA-MODERN FOOTER V2 */
.footer-v2 { background: var(--charcoal); color: var(--bg-beige); padding: 6rem 2rem 2rem; overflow: hidden; }
.ft-top { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; margin-bottom: 4rem; }
.ft-newsletter h3 { font-family: var(--font-display); font-size: 2.5rem; color: var(--bg-ivory); margin-bottom: 1rem; }
.ft-newsletter p { color: var(--taupe); margin-bottom: 2rem; font-size: 0.95rem; }
.newsletter-box { display: flex; border-bottom: 1px solid var(--taupe); padding-bottom: 0.5rem; }
.newsletter-box input { flex: 1; background: transparent; border: none; color: var(--bg-ivory); font-size: 1rem; outline: none; }
.newsletter-box input::placeholder { color: var(--taupe); }
.newsletter-box button { background: transparent; border: none; color: var(--bg-ivory); font-size: 1.5rem; cursor: pointer; transition: transform 0.3s; }
.newsletter-box button:hover { transform: translateX(5px); }
.ft-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ft-col h5 { font-family: var(--font-ui); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--sage); margin-bottom: 1.5rem; }
.ft-col ul { list-style: none; padding: 0; }
.ft-col ul li { margin-bottom: 0.8rem; }
.ft-col a { color: var(--bg-beige); text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.ft-col a:hover { color: var(--white); }
.ft-massive-logo { font-family: var(--font-display); font-size: 15vw; line-height: 0.75; text-align: center; color: rgba(255,253,248,0.03); letter-spacing: -0.02em; white-space: nowrap; user-select: none; }
.ft-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,253,248,0.1); font-size: 0.8rem; color: var(--taupe); text-transform: uppercase; letter-spacing: 0.1em; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .spot-v2-container { flex-direction: column; }
  .spot-v2-image { width: 100%; height: 400px; }
  .spot-v2-content { width: 90%; margin-left: 0; margin-top: -100px; padding: 2.5rem; }
  .custom-v2-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .cv2-text { max-width: 100%; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .accordion-container { flex-direction: column; height: 800px; }
  .acc-panel { background-position: top center; }
  .cv2-steps { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large, .bento-item.wide { grid-column: span 1; }
  .ft-links { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}