/* ----------------------------------------------------
       DESIGN SYSTEM & CSS VARIABLES
       ---------------------------------------------------- */
    :root {
      /* Palette */
      --color-main-1: #3d4524; /* Dark Green */
      --color-main-2: #fffdf0; /* Light Cream */
      --color-sub-1: #8a9a86;  /* Sage Green */
      --color-sub-3: #f4f0e6;  /* Alabaster */
      --color-gold: #c58f3e;
      --color-gold-hover: #b07c30;
      --color-gold-light: #fdf6eb;
      --color-brown-dark: #1b100c;
      --color-brown-medium: #3d271d;
      --color-cinnamon: #8d6e63;
      --color-cream: #fbfbf9;
      --color-cream-dark: #f6efe2;
      --color-text: #1f1612;
      --color-text-muted: #564941;
      --color-white: #ffffff;
      --color-whatsapp: #25d366;
      --color-whatsapp-hover: #20ba5a;

      /* Typography */
      --font-allura: 'Allura', cursive;
      --font-garamond: 'EB Garamond', serif;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

      /* Layout & Shadows */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      --shadow-sm: 0 4px 6px rgba(42, 27, 20, 0.04);
      --shadow-md: 0 10px 20px rgba(42, 27, 20, 0.08);
      --shadow-lg: 0 20px 40px rgba(42, 27, 20, 0.12);
      --glass-bg: rgba(255, 255, 255, 0.75);
      --glass-border: rgba(255, 255, 255, 0.4);
      --glass-shadow: 0 8px 32px 0 rgba(42, 27, 20, 0.1);

      /* Transitions */
      --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      max-width: 100vw;
    }

    @media (max-width: 768px) {
      html {
        font-size: 18.5px; /* Increases all rem-based typography globally on mobile */
      }
    }

    body {
      font-family: var(--font-garamond);
      background-color: var(--color-cream);
      background-image: url('../assets/TQC_Pattern_v2.0_Dark.png');
      background-repeat: repeat;
      color: var(--color-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-serif);
      color: var(--color-brown-dark);
      font-weight: 700;
    }

    p {
      font-weight: 400;
    }

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

    input,
    button,
    textarea {
      font-family: inherit;
      outline: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Section Utilities */
    section {
      padding: 100px 0;
      position: relative;
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }
    }

    .text-center {
      text-align: center;
    }

    .badge {
      display: inline-block;
      padding: 6px 16px;
      background-color: var(--color-gold-light);
      color: var(--color-gold);
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
      border: 1px solid rgba(197, 143, 62, 0.2);
    }

    /* ----------------------------------------------------
       HEADER / NAVIGATION
       ---------------------------------------------------- */
    /* Announcement Bar styling */
    .announcement-bar {
      background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 50%, var(--color-brown-medium) 100%);
      color: var(--color-white);
      text-align: center;
      padding: 10px 24px;
      font-size: 1.05rem;
      /* Increased size of banner text */
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 2px 10px rgba(42, 27, 20, 0.15);
      transition: max-height var(--transition-normal), padding var(--transition-normal), opacity var(--transition-normal);
      overflow: hidden;
      max-height: 150px;
      /* Increased to accommodate wrapped text on mobile */
      opacity: 1;
      position: relative;
    }

    .announcement-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 20%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
      transform: skewX(-30deg);
      animation: shineBar 5s infinite ease-in-out;
    }

    @keyframes shineBar {
      0% {
        left: -50%;
      }

      30%,
      100% {
        left: 150%;
      }
    }

    header.scrolled .announcement-bar {
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
      opacity: 0;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--transition-normal);
    }

    header.scrolled {
      background-image: linear-gradient(rgba(251, 251, 249, 0.92), rgba(251, 251, 249, 0.92)), url('../assets/TQC_Pattern_v2.0_Dark.png');
      background-repeat: repeat;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
      box-shadow: var(--shadow-sm);
    }

    .nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      /* Increased header padding */
      transition: var(--transition-normal);
    }

    header.scrolled .nav-wrapper {
      padding: 4px 0;
      /* Increased scrolled padding */
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-garamond);
      font-size: 2.5rem;
      /* Increased size of logo text */
      font-weight: 700;
      color: var(--color-brown-dark);
    }

    .logo span {
      margin-left: 1px;
      /* Negative margin to pull brand text closer, overlapping PNG whitespace */
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 3px rgba(255, 255, 255, 0.6);
      transition: text-shadow var(--transition-normal);
    }

    .logo img {
      height: 150px;
      width: auto;
      object-fit: contain;
      transition: var(--transition-normal);
      margin-top: 1px;
      margin-bottom: 1px;
    }

    header.scrolled .logo img {
      height: 100px;
      margin-top: 1px;
      margin-bottom: 1px;
    }

    header.scrolled .logo span {
      text-shadow: none;
      /* Remove glow on scrolled light background */
    }

    @media (max-width: 768px) {
      .announcement-bar {
        font-size: 0.8rem;
        padding: 8px 16px;
      }
      .logo {
        font-size: 1.5rem;
        gap: 6px;
      }
      .logo img {
        height: 64px;
      }
      header.scrolled .logo img {
        height: 48px;
      }
    }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-instagram-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: var(--radius-full);
      background: var(--color-white);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(42, 27, 20, 0.05);
      transition: var(--transition-fast);
    }

    .btn-instagram-nav:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      background: var(--color-gold-light);
      border-color: rgba(197, 143, 62, 0.2);
    }

    .btn-instagram-nav svg {
      width: 20px;
      height: 20px;
      fill: var(--color-brown-dark);
      transition: var(--transition-fast);
    }

    .btn-instagram-nav:hover svg {
      fill: var(--color-gold);
    }

    /* ----------------------------------------------------
       HERO SECTION
       ---------------------------------------------------- */
    .hero {
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      background-image: linear-gradient(rgba(42, 27, 20, 0.5), rgba(42, 27, 20, 0.65)), url('../assets/hero_sourdough.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: var(--color-white);
      padding: 0;
    }

    @media (max-width: 1024px) {
      .hero {
        background-attachment: scroll;
        /* Disabled on mobile/tablets for performance */
      }
    }

    .hero-content {
      max-width: 650px;
      animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
      font-size: 3.5rem;
      color: var(--color-white);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 36px;
      font-weight: 300;
    }

    .hero-intro {
      font-family: var(--font-allura);
      font-size: clamp(64px, 12vw, 80px);
      font-weight: bold;
      display: block; /* Starts the next text on a new line */
      line-height: 1.2;
    }

    .hero-desc {
      font-family: var(--font-garamond);
      font-size: clamp(20px, 4vw, 24px);
      line-height: 1.4;
    }

    .hero-outro {
      font-family: var(--font-allura);
      font-size: clamp(32px, 6vw, 38px);
      display: block; /* Starts the text on a new line */
      margin-top: 8px; /* Add a little breathing room since it's on a new line */
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background-color: var(--color-gold);
      color: var(--color-white);
      font-weight: 600;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 15px rgba(197, 143, 62, 0.4);
      transition: var(--transition-normal);
      font-size: 1.05rem;
    }

    .hero-cta:hover {
      background-color: var(--color-gold-hover);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(197, 143, 62, 0.6);
    }

    .hero-cta svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
      transition: var(--transition-fast);
    }

    .hero-cta:hover svg {
      transform: translateY(3px);
    }

    /* ----------------------------------------------------
       ABOUT SECTION
       ---------------------------------------------------- */
    .about {
      background-color: transparent;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 992px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    @media (max-width: 768px) {
      .about-text {
        text-align: center;
      }
      .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
      }
    }

    .about-text {
      background: rgba(251, 251, 249, 0.9);
      padding: 32px;
      border-radius: var(--radius-lg);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .about-text p {
      font-size: 1.05rem;
      color: var(--color-text-muted);
      margin-bottom: 20px;
    }

    .about-highlight {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.2rem;
      color: var(--color-cinnamon);
      border-left: 3px solid var(--color-gold);
      padding-left: 20px;
      margin: 28px 0;
    }

    .about-stats {
      display: flex;
      gap: 40px;
      margin-top: 36px;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--color-gold);
    }

    .stat-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-brown-medium);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .about-image-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-image-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(197, 143, 62, 0.1), rgba(42, 27, 20, 0.15));
    }

    .about-image {
      width: 100%;
      display: block;
      transition: var(--transition-slow);
    }

    .about-image-wrapper:hover .about-image {
      transform: scale(1.05);
    }

    /* ----------------------------------------------------
       PRODUCTS SECTION
       ---------------------------------------------------- */
    .products {
      background-color: var(--color-cream-dark);
      background-image: linear-gradient(rgba(246, 239, 226, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(246, 239, 226, 0.4) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .products-header {
      max-width: 600px;
      margin: 0 auto 60px;
    }

    .products {
      background-color: var(--color-main-2);
      color: var(--color-main-1);
    }

    .products-header h2 {
      font-size: 2.5rem;
      margin-bottom: 16px;
      color: var(--color-main-1);
      font-family: var(--font-garamond);
    }

    .products-header p {
      color: var(--color-main-1);
      font-size: 1.1rem;
      font-family: var(--font-garamond);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

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

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

    .product-card {
      background-color: var(--color-main-1);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-normal);
      border: 1px solid rgba(42, 27, 20, 0.03);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(197, 143, 62, 0.15);
    }

    .product-card-icon {
      padding: 32px 32px 16px;
      color: var(--color-main-2);
    }

    .product-card-icon svg {
      width: 44px;
      height: 44px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }

    .product-card-body {
      padding: 0 32px 32px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .product-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: var(--color-main-2);
      font-family: var(--font-garamond);
    }

    .product-card p {
      color: var(--color-main-2);
      font-size: 1.05rem;
      margin-bottom: 20px;
      flex-grow: 1;
      font-family: var(--font-garamond);
    }

    .product-tag {
      align-self: flex-start;
      padding: 4px 10px;
      background-color: var(--color-cream-dark);
      color: var(--color-brown-medium);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ----------------------------------------------------
       INTEREST FORM SECTION
       ---------------------------------------------------- */
    .interest {
      background-color: transparent;
    }

    .interest-wrapper {
      max-width: 850px;
      margin: 0 auto;
      background: var(--color-sub-3);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(42, 27, 20, 0.04);
    }

    @media (max-width: 768px) {
      .interest-wrapper {
        grid-template-columns: 1fr;
      }
    }

    .interest-info {
      padding: 48px;
      background-color: var(--color-sub-1);
      color: var(--color-white);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .interest-info h2 {
      color: var(--color-white);
      font-size: 2.2rem;
      margin-bottom: 16px;
    }

    .interest-info p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      margin-bottom: 24px;
    }

    .interest-info-list {
      list-style: none;
    }

    .interest-info-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .interest-info-list svg {
      width: 18px;
      height: 18px;
      fill: var(--color-gold);
      flex-shrink: 0;
    }

    .interest-form-container {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 480px) {

      .interest-info,
      .interest-form-container {
        padding: 32px 24px;
      }
    }

    .form-group {
      margin-bottom: 24px;
      position: relative;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-brown-medium);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .input-wrapper {
      position: relative;
    }

    .input-wrapper svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--color-text-muted);
      transition: var(--transition-fast);
    }

    .form-control {
      width: 100%;
      padding: 14px 16px 14px 44px;
      border: 1.5px solid rgba(42, 27, 20, 0.15);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      color: var(--color-text);
      background-color: var(--color-cream);
      transition: var(--transition-fast);
    }

    .form-control:focus {
      border-color: var(--color-gold);
      background-color: var(--color-white);
      box-shadow: 0 0 0 3px rgba(197, 143, 62, 0.15);
    }

    .form-control:focus+svg {
      fill: var(--color-gold);
    }

    /* Flavour Checkbox Grid */
    .flavour-checkbox-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .flavour-check-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      /* Tighter gap to save space */
      padding: 10px 12px;
      border: 1.5px solid rgba(42, 27, 20, 0.12);
      border-radius: var(--radius-sm);
      background-color: var(--color-cream);
      cursor: pointer;
      transition: var(--transition-fast);
      user-select: none;
      flex: 0 0 calc(50% - 4px);
      /* Shorten card lengths to half */
      box-sizing: border-box;
      text-align: left;
      flex-wrap: nowrap;
      /* Prevent horizontal items from wrapping vertically */
    }

    @media (max-width: 480px) {
      .flavour-check-card {
        flex: 0 0 100%;
        /* Full width stack on mobile */
      }
    }

    .flavour-check-card:hover {
      border-color: var(--color-gold);
      background-color: var(--color-white);
    }

    .flavour-check-card input[type="checkbox"] {
      display: none;
      /* Hide standard checkbox */
    }

    .custom-check {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(42, 27, 20, 0.25);
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: var(--transition-fast);
      background-color: var(--color-white);
      flex-shrink: 0;
    }

    .flavour-check-card input[type="checkbox"]:checked+.custom-check {
      border-color: var(--color-gold);
      background-color: var(--color-gold);
    }

    .custom-check::after {
      content: '';
      position: absolute;
      width: 4px;
      height: 7px;
      border: solid var(--color-white);
      border-width: 0 2px 2px 0;
      transform: rotate(45deg) scale(0);
      transition: var(--transition-fast);
      top: 1px;
      left: 4px;
    }

    .flavour-check-card input[type="checkbox"]:checked+.custom-check::after {
      transform: rotate(45deg) scale(1);
    }

    .flavour-emoji {
      font-size: 1.05rem;
      width: 22px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .check-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--color-text);
      transition: var(--transition-fast);
      line-height: 1.2;
      text-align: left;
      flex-shrink: 1;
      white-space: normal;
      /* Text can wrap inside its block if needed, but the block stays inline */
    }

    .flavour-check-card input[type="checkbox"]:checked~.check-label {
      color: var(--color-brown-dark);
      font-weight: 600;
    }

    /* Country presets */
    .preset-btn.active {
      background-color: var(--color-gold) !important;
      color: var(--color-white) !important;
      border-color: var(--color-gold) !important;
    }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background-color: var(--color-brown-dark);
      color: var(--color-white);
      border: none;
      font-weight: 600;
      font-size: 1rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: var(--color-gold);
      box-shadow: 0 4px 12px rgba(197, 143, 62, 0.3);
    }

    /* Button Loading State */
    .btn-submit.loading {
      pointer-events: none;
      background-color: var(--color-cinnamon);
    }
    .btn-submit .spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: var(--color-white);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    .btn-submit.loading .spinner {
      display: inline-block;
    }

    .btn-submit.loading .btn-text {
      opacity: 0.75;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ----------------------------------------------------
       SUCCESS TOAST NOTIFICATION
       ---------------------------------------------------- */
    .toast {
      position: fixed;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-white);
      border-left: 4px solid var(--color-gold);
      box-shadow: var(--shadow-lg);
      padding: 16px 24px;
      border-radius: var(--radius-md);
      z-index: 2000;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-normal);
      opacity: 0;
      pointer-events: none;
      width: calc(100% - 48px);
      max-width: 450px;
    }

    .toast.show {
      bottom: 24px;
      opacity: 1;
      pointer-events: auto;
    }

    .toast-icon {
      width: 32px;
      height: 32px;
      background-color: var(--color-gold-light);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gold);
      flex-shrink: 0;
    }

    .toast-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
    }

    .toast-content h4 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 2px;
      color: var(--color-brown-dark);
    }

    .toast-content p {
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    /* ----------------------------------------------------
       WHATSAPP FLOATING BUTTON
       ---------------------------------------------------- */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background-color: var(--color-whatsapp);
      color: var(--color-white);
      padding: 14px 22px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition-normal);
      animation: whatsappPulse 3s infinite;
    }

    .whatsapp-float:hover {
      background-color: var(--color-whatsapp-hover);
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    @keyframes whatsappPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        padding: 0 20px !important;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
        height: 50px;
        width: auto !important;
        border-radius: var(--radius-full) !important;
        justify-content: center;
      }

      .whatsapp-float span {
        display: flex !important;
        font-size: 1rem;
        font-weight: 700;
      }
    }

    /* ----------------------------------------------------
       FOOTER
       ---------------------------------------------------- */
    footer {
      background-color: var(--color-brown-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 30px 0;
      /* Increased footer padding */
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
      }
    }

    .footer-logo {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-logo h3 {
      font-size: 1.4rem;
      color: var(--color-white);
      font-family: var(--font-garamond);
    }

    .footer-logo p {
      font-size: 0.85rem;
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .footer-link-item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-full);
      background-color: rgba(255, 255, 255, 0.05);
      transition: var(--transition-fast);
    }

    .footer-link-item:hover {
      background-color: var(--color-gold);
      color: var(--color-white);
      transform: translateY(-2px);
    }

    .footer-link-item svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .footer-copyright {
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      font-size: 0.8rem;
      text-align: center;
    }

    /* ----------------------------------------------------
       SCROLL REVEAL ANIMATIONS
       ---------------------------------------------------- */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.floating-actions-wrapper {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      z-index: 999;
      align-items: flex-end;
    }
    .order-float {
      background-color: var(--color-gold);
      color: var(--color-white);
      width: 150px;
      height: 56px;
      padding: 0;
      justify-content: center;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 15px rgba(197, 143, 62, 0.4);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition-normal);
      text-decoration: none;
    }
    .order-float:hover {
      background-color: var(--color-gold-hover);
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 8px 25px rgba(197, 143, 62, 0.6);
      color: var(--color-white);
    }
    .whatsapp-float-override {
      position: relative !important;
      bottom: auto !important;
      right: auto !important;
      width: 150px !important;
      height: 56px !important;
      padding: 0 !important;
      justify-content: center !important;
    }
    @media (max-width: 480px) {
      .floating-actions-wrapper {
        bottom: 20px;
        right: 20px;
        gap: 12px;
      }
      .whatsapp-float-override {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        justify-content: center;
        border-radius: var(--radius-full) !important;
      }
      .order-float {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        border-radius: var(--radius-full) !important;
      }
      .order-float .order-text-wrapper {
        display: none !important;
      }
      .order-float .order-mobile-icon {
        display: none !important;
      }
      .order-float .order-mobile-text {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
      }
    }
    
    @media (max-width: 400px) {
      /* Prevents text overflow distortion on extremely narrow screens like Galaxy Flip */
      h1, h2, h3, h4, p, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .hero h1 {
        font-size: 2.2rem !important;
      }
      .about-text h2, .products-header h2, .interest-header h2 {
        font-size: 1.8rem !important;
      }
      .container {
        padding: 0 16px !important;
      }
      .about-text, .products-header {
        padding: 24px 16px !important;
      }
      .sg-order-card {
        padding: 30px 16px !important;
      }
      section {
        padding: 40px 0 !important;
      }
      .hero-cta {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
      }
    }

.sg-order-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          background-color: var(--color-gold);
          color: var(--color-white);
          padding: 16px 32px;
          border-radius: var(--radius-full);
          font-weight: 600;
          font-size: 1.05rem;
          text-decoration: none;
          box-shadow: 0 4px 15px rgba(197, 143, 62, 0.4);
          transition: var(--transition-normal);
          gap: 10px;
        }
        .sg-order-btn:hover {
          background-color: var(--color-gold-hover);
          transform: translateY(-4px);
          box-shadow: 0 8px 25px rgba(197, 143, 62, 0.6);
          color: var(--color-white);
        }

