:root {
      --gold: #C8922A;
      --gold-light: #E8B96A;
      --gold-pale: #F5E6C8;
      --teal: #1A6B72;
      --teal-dark: #0D4A50;
      --teal-light: #D6ECEE;
      --cream: #FBF6EE;
      --warm-white: #FFFDF8;
      --text-dark: #2A1F0E;
      --text-mid: #5C4A2A;
      --text-soft: #8A7455;
      --border: #E8D9BC;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
      overflow-x: hidden;
      padding-top: 70px; /* Leave space for fixed navbar */
    }

    /* ── NAV CSS ── */
    .main-nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 200;
      background: rgba(251, 246, 238, 0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
      height: 70px;
    }
    .nav-left { display: flex; align-items: center; }
    .nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo-img {
      height: 64px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .nav-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--teal-dark);
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .nav-brand-name span { color: var(--gold); }

    .nav-links {
      display: flex;
      gap: 1.6rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--teal-dark);
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.2s;
      border-radius: 2px;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    /* search box */
    .nav-search {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 0 0.6rem;
      gap: 0.4rem;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }
    .nav-search:focus-within { border-color: var(--teal); }
    .nav-search svg { color: var(--text-soft); flex-shrink: 0; }
    .nav-search input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 0.85rem;
      font-family: inherit;
      color: var(--text-dark);
      width: 160px;
      padding: 0.45rem 0;
    }
    .nav-search input::placeholder { color: var(--text-soft); }

    .nav-cta {
      background: var(--teal);
      color: #fff !important;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.85rem;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--teal-dark) !important; }

    /* search toggle and mobile search bar */
    .search-toggle-btn { display: none; }
    .mobile-search-bar { display: none; }

    .hamburger { display: none; }
    .mobile-menu { display: none; }
    .mob-footer-bar { display: none; }

    /* ── FLOATING CONTACT BUTTONS (ALL SCREENS) ── */
    .floating-actions {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      z-index: 400;
    }
    .float-btn {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-weight: bold;
      border: none;
      cursor: pointer;
    }
    .float-btn:hover {
      transform: scale(1.15) translateY(-6px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    }
    .float-whatsapp { background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%); }
    .float-call { background: linear-gradient(135deg, #1A6B72 0%, #0D4A50 100%); }
    .float-btn svg { width: 32px; height: 32px; fill: currentColor; stroke: currentColor; }

    /* ── ALL MOBILE STYLES (≤ 768px) ── */
    @media (max-width: 768px) {
      /* body spacing for fixed bars */
      body { padding-bottom: 64px; }

      /* ── TOP NAVBAR ── */
      nav {
        display: flex !important;
        padding: 0;
        gap: 0;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        height: 70px;
      }
      .nav-links,
      .nav-right,
      .main-nav > div { display: none !important; }
      .nav-search { display: none !important; }

      .main-nav > .nav-left {
        display: flex !important;
        gap: 0;
        align-items: center;
        justify-content: center;
        order: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
      }
      .nav-brand {
        display: flex !important;
        gap: 0;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        text-decoration: none;
      }
      .nav-brand-name { display: none !important; }
      .nav-logo-img {
        height: 52px;
        width: auto;
        display: block !important;
        object-fit: contain;
      }

      .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 0;
        flex-shrink: 0;
        order: -1;
        margin-right: 0.5rem;
      }
      .hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--teal-dark);
        border-radius: 2px;
        transition: 0.3s;
      }

      /* ── MOBILE SEARCH ── */
      .search-toggle-btn {
        display: flex !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: var(--teal-dark);
        flex-shrink: 0;
        order: 2;
        margin-left: auto;
      }
      .search-toggle-btn svg {
        width: 18px;
        height: 18px;
      }
      .mobile-search-bar {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: #fff;
        border-bottom: 2px solid var(--border);
        padding: 1rem 4%;
        z-index: 360;
      }
      .mobile-search-bar.open { display: block; }
      .mob-search-form {
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .mob-search-form button {
        background: none;
        border: none;
        color: var(--text-soft);
        cursor: pointer;
        flex-shrink: 0;
        padding: 0;
      }
      .mob-search-form input {
        flex: 1;
        padding: 0.6rem;
        border: 1px solid var(--border);
        border-radius: 6px;
        font-family: inherit;
        font-size: 0.9rem;
      }

      /* ── MOBILE SLIDE MENU ── */
      .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 2px solid var(--border);
        position: fixed;
        top: 70px; left: 0; right: 0;
        z-index: 350;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        padding: 0.5rem 0;
      }
      .mobile-menu a {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        color: var(--teal-dark);
        padding: 0.9rem 5%;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .mobile-menu a:last-child { border-bottom: none; }
      .mobile-menu .mob-cta {
        background: var(--teal);
        color: #fff !important;
        padding: 0.9rem 1.2rem;
        border-radius: 8px;
        font-weight: 700;
        border-bottom: none !important;
        margin: 0.8rem 5%;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        width: auto;
      }

      /* ── FLOATING CONTACT BUTTONS (MOBILE) ── */
      .floating-actions {
        bottom: 5rem; /* Above mobile footer */
        right: 1.5rem;
        gap: 1rem;
      }
      .float-btn {
        width: 60px;
        height: 60px;
      }
      .float-btn svg { width: 28px; height: 28px; }

      /* ── MOBILE BOTTOM FOOTER BAR ── */
      .mob-footer-bar {
        display: flex !important;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 64px;
        background: #fff;
        border-top: 2px solid var(--border);
        z-index: 500;
        align-items: stretch;
      }
      .mob-footer-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-decoration: none;
        color: var(--text-soft);
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 8px 4px 6px;
        border-top: 3px solid transparent;
        transition: color 0.2s, border-color 0.2s;
      }
      .mob-footer-item svg { width: 24px; height: 24px; stroke-width: 1.8; flex-shrink: 0; }
      .mob-footer-item.active { color: var(--teal-dark); border-top-color: var(--teal-dark); }
      .mob-footer-item:hover { color: var(--teal-dark); }
      .mob-cart-badge { position: relative; display: flex; align-items: center; justify-content: center; }
      .mob-cart-count {
        position: absolute; top: -5px; right: -8px;
        background: var(--gold); color: #fff;
        font-size: 0.55rem; font-weight: 700;
        width: 17px; height: 17px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        border: 2px solid #fff;
      }

      footer { padding: 3.5rem 5% 0; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
      .footer-col { text-align: center; }
      .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
      .footer-links li { margin-bottom: 0; }
      .footer-links a { padding: 0.3rem 0.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

    /* ── FOOTER CSS ── */
    footer {
      background: #082e32;
      color: rgba(255, 255, 255, 0.82);
      padding: 5rem 5% 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.9fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-logo-img {
      height: 54px;
      width: auto;
      display: block;
      object-fit: contain;
      margin-bottom: 1rem;
      filter: brightness(0) invert(1);
    }
    .footer-col { text-align: left; }
    .footer-col h5 {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-weight: 700;
      color: #fff;
    }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 3rem 0 0; }
    .footer-social { display:flex; gap:0.75rem; margin-top:1.2rem; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.75); text-decoration: none;
      font-size: 0.85rem; transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,146,42,0.1); }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-top: 1.2rem; padding: 0.45rem 0.9rem;
      border: 1px solid rgba(200,146,42,0.35); border-radius: 999px;
      font-size: 0.72rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.04em;
    }
    .footer-bottom {
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: var(--text-soft);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.6rem; }
    .footer-links a {
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-block;
    }
    .footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
    .footer-desc { font-size:0.92rem; line-height:1.7; margin-bottom:1rem; color:rgba(255,255,255,0.68); }
    .footer-bismillah { color:var(--gold-light); font-size:1rem; margin-top:1rem; font-family:'Amiri','Traditional Arabic',serif; }
    .footer-made-with { color:var(--gold-light); font-size:0.85rem; }
    .footer-bottom-copy { font-size:0.82rem; color:rgba(255,255,255,0.45); }

    @media (max-width: 960px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
      .footer-col { text-align: center; }
      .footer-links a:hover { padding-left: 0; }
      .footer-social { justify-content: center; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

  /* Toast animation */
  @keyframes slideIn { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
