 :root {
    --ocean: #0A3D5C;
    --ocean-mid: #1A6B8A;
    --ocean-light: #2A9BC0;
    --sand: #F5EDD8;
    --sand-dark: #E8D9B8;
    --coral: #D96B4A;
    --coral-light: #F08060;
    --cream: #FDFAF4;
    --text-dark: #1C2B35;
    --text-mid: #3D5466;
    --text-muted: #7A96A8;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --white: #FFFFFF;
    --border: rgba(10, 61, 92, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 61, 92, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  .nav-brand {
    display: flex; align-items: center; gap: 12px;
  }

 .nav-logo-icon {
    display: flex;
    align-items: center;
}

.nav-logo-icon img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

  .nav-brand-text {
    display: flex; flex-direction: column; line-height: 1;
  }

  .nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--sand);
    letter-spacing: 0.5px;
  }

  .nav-brand-sub {
    font-size: 10px; font-weight: 300;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    color: rgba(245,237,216,0.75);
    text-decoration: none;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--ocean) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 500 !important;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--ocean) !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--ocean);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,107,138,0.4) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
  }

  .hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 120px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
    padding-top: 72px;
    animation: fadeUp 0.9s ease both;
  }

  @keyfrgit ames fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
  }

  .hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-eyebrow span {
    font-size: 12px; font-weight: 400;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .hero-title-accent {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300;
    color: rgba(245,237,216,0.6);
    font-style: italic;
    margin-bottom: 28px;
  }

  .hero-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(245,237,216,0.75);
    max-width: 520px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--ocean);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500; font-size: 14px;
    text-decoration: none; letter-spacing: 0.3px;
    border: none; cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    border: 1px solid rgba(245,237,216,0.35);
    color: var(--sand);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 400; font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    display: flex; gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }

  .hero-stat-label {
    font-size: 12px; font-weight: 300;
    color: rgba(245,237,216,0.5);
    letter-spacing: 0.5px;
  }

  /* ── BADGES / USP ── */
  .usp-bar {
    background: var(--sand);
    border-bottom: 1px solid var(--sand-dark);
    padding: 20px 5%;
    display: flex; justify-content: center; align-items: center;
    gap: 48px; flex-wrap: wrap;
  }

  .usp-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.2px;
  }

  .usp-icon {
    width: 32px; height: 32px;
    background: var(--ocean);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
  }

  /* ── SECTION COMMON ── */
  section { padding: 100px 5%; }

  .section-eyebrow {
    font-size: 11px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400; line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .section-title em { font-style: italic; color: var(--ocean-mid); }

  .section-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: var(--text-muted);
    max-width: 560px;
  }

  .section-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 24px;
    margin-bottom: 60px;
  }

  /* ── CATEGORIES ── */
  #categories {
    background: var(--white);
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .category-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .category-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-mid));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .category-card:hover::before { opacity: 1; }
  .category-card:hover { transform: translateY(-4px); border-color: var(--ocean); }
  .category-card:hover .cat-icon-bg { background: rgba(255,255,255,0.15); }
  .category-card:hover .cat-name { color: var(--white); }
  .category-card:hover .cat-count { color: rgba(255,255,255,0.6); }

  .cat-icon-bg {
    width: 64px; height: 64px;
    background: rgba(10,61,92,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    position: relative; z-index: 1;
    transition: background 0.25s;
  }

  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600;
    color: var(--text-dark);
    position: relative; z-index: 1;
    transition: color 0.25s;
    margin-bottom: 6px;
  }

  .cat-count {
    font-size: 12px; color: var(--text-muted);
    position: relative; z-index: 1;
    transition: color 0.25s;
  }

  /* ── PRODUCTS ── */
  #products {
    background: var(--cream);
  }

  .filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-mid);
    font-size: 13px; font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--white);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
  }

  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10,61,92,0.12);
    border-color: rgba(10,61,92,0.2);
  }

  .product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

  .product-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 72px;
    transition: transform 0.4s;
  }

  .product-card:hover .product-img-inner {
    transform: scale(1.08);
  }

  .product-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.5px;
  }

  .badge-halal {
    background: rgba(10,61,92,0.9);
    color: var(--gold);
  }

  .badge-export {
    background: rgba(201,168,76,0.9);
    color: var(--ocean);
  }

  .badge-new {
    background: rgba(217,107,74,0.9);
    color: var(--white);
  }

  .product-origin {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(255,255,255,0.92);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px; color: var(--text-mid);
    font-weight: 400;
  }

  .product-body {
    padding: 22px 24px 24px;
  }

  .product-category {
    font-size: 11px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .product-desc {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 18px;
  }

  .product-specs {
    display: flex; gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 18px;
  }

  .product-spec {
    flex: 1;
  }

  .spec-label {
    font-size: 10px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .spec-value {
    font-size: 13px; font-weight: 500;
    color: var(--text-dark);
  }

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

  .product-moq {
    font-size: 12px; color: var(--text-muted);
  }

  .product-moq span {
    font-weight: 500; color: var(--ocean);
  }

  .btn-inquire {
    background: var(--ocean);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px; font-weight: 500;
    border: none; cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-inquire:hover {
    background: var(--ocean-mid);
    transform: translateY(-1px);
  }

  /* ── WHY US ── */
  #why-us {
    background: var(--ocean);
    position: relative;
    overflow: hidden;
  }

  #why-us::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  #why-us .section-title { color: var(--sand); }
  #why-us .section-eyebrow { color: var(--gold); }
  #why-us .section-desc { color: rgba(245,237,216,0.6); }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
  }

  .advantage-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
  }

  .advantage-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
  }

  .adv-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .adv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--sand);
    margin-bottom: 10px;
  }

  .adv-desc {
    font-size: 13px; font-weight: 300; line-height: 1.8;
    color: rgba(245,237,216,0.55);
  }

  /* ── CERTIFICATIONS ── */
  #certifications {
    background: var(--sand);
  }

  .certs-grid {
    display: flex; flex-wrap: wrap; gap: 20px;
    justify-content: center;
    margin-top: 48px;
  }

  .cert-badge {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex; align-items: center; gap: 14px;
    min-width: 200px;
    transition: all 0.2s;
  }

  .cert-badge:hover {
    border-color: var(--ocean);
    transform: translateY(-2px);
  }

  .cert-icon {
    font-size: 32px; flex-shrink: 0;
  }

  .cert-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
  }

  .cert-issuer {
    font-size: 11px; color: var(--text-muted);
  }

  /* ── ABOUT ── */
  #about {
    background: var(--white);
  }

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

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

  .about-visual {
    background: var(--ocean);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  .about-visual::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
  }

  .about-map-emoji {
    font-size: 80px;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    position: relative; z-index: 1;
  }

  .about-stat-row {
    display: flex; gap: 16px;
    position: relative; z-index: 1;
  }

  .about-stat-box {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
  }

  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }

  .about-stat-label {
    font-size: 11px; color: rgba(245,237,216,0.55);
    line-height: 1.4;
  }

  .about-text .section-desc {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .about-text p {
    font-size: 15px; font-weight: 300; line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .destination-list {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px;
  }

  .dest-tag {
    background: rgba(10,61,92,0.07);
    border: 1px solid rgba(10,61,92,0.12);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px; color: var(--ocean);
    font-weight: 400;
    display: flex; align-items: center; gap: 6px;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--cream);
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }

  @media (max-width: 800px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  }

  .contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .contact-info p {
    font-size: 14px; font-weight: 300; line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
  }

  .contact-detail {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
  }

  .contact-detail-icon {
    width: 40px; height: 40px;
    background: var(--ocean);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
  }

  .contact-detail-text {
    font-size: 13px; color: var(--text-mid);
  }

  .contact-detail-label {
    font-size: 11px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-mid);
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--text-dark);
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--ocean-mid);
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }

  .form-textarea {
    min-height: 120px; resize: vertical;
  }

  .form-submit {
    width: 100%;
    background: var(--ocean);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
  }

  .form-submit:hover {
    background: var(--ocean-mid);
    transform: translateY(-1px);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 60px 5% 32px;
    color: rgba(245,237,216,0.5);
  }

  .footer-top {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand .nav-brand-name { font-size: 26px; }
  .footer-brand .nav-brand-sub { margin-top: 4px; display: block; }

  .footer-brand p {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: rgba(245,237,216,0.4);
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 600;
    color: var(--sand);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(245,237,216,0.4);
    text-decoration: none; font-size: 13px; font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav .nav-links { display: none; }
    .hero-stats { gap: 24px; }
    .usp-bar { gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .filter-bar { gap: 8px; }
  }

  /* ── SCROLL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* product img backgrounds */
  .bg-1 { background: linear-gradient(135deg, #e8f4f8 0%, #d0eaf5 100%); }
  .bg-2 { background: linear-gradient(135deg, #fff5e6 0%, #ffe8c8 100%); }
  .bg-3 { background: linear-gradient(135deg, #f0ffe8 0%, #d8f5c8 100%); }
  .bg-4 { background: linear-gradient(135deg, #ffeae8 0%, #ffd5d0 100%); }
  .bg-5 { background: linear-gradient(135deg, #f5f0ff 0%, #e8d8f8 100%); }
  .bg-6 { background: linear-gradient(135deg, #e8fff5 0%, #c8f0e0 100%); }

  /* ── WHATSAPP FLOATING ── */
  .wa-float {
    position: fixed; bottom: 32px; right: 32px;
    z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  }
  .wa-bubble {
    background: #25D366;
    border-radius: 50%;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .wa-bubble:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  }
  .wa-bubble svg { width: 30px; height: 30px; }
  .wa-tooltip {
    background: var(--ocean);
    color: var(--sand);
    font-size: 12px; font-weight: 400;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.2s;
    pointer-events: none;
    letter-spacing: 0.3px;
  }
  .wa-float:hover .wa-tooltip {
    opacity: 1; transform: translateX(0);
  }
  @media (max-width: 768px) {
    .wa-float { bottom: 20px; right: 20px; }
    .wa-bubble { width: 52px; height: 52px; }
  }

  /* ── PRODUCT IMAGE ── */
  .product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }
  .product-card:hover .product-img img { transform: scale(1.08); }
