:root{
    --red:#E30613;
    --red-dark:#B7050F;
    --caramel:#D4A574;
    --caramel-dark:#A97F50;
    --cream:#FFF5E1;
    --cream-soft:#FFEED0;
    --brown:#3E2723;
    --brown-soft:#5D3A1A;
    --white:#ffffff;
    --yellow:#FFC83D;
    --pink:#FFB4B4;
    --mint:#8FD8B8;
    --whatsapp:#25D366;
    --shadow:0 10px 30px rgba(62,39,35,.15);
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth}
  body{
    font-family:'Nunito Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
    color:var(--brown);
    background:var(--brown);
    line-height:1.65;
    font-size:16px;
  }
  body[data-lang="ar"]{font-family:'Cairo',sans-serif;direction:rtl}
  h1,h2,h3,h4,strong{letter-spacing:-.01em}
  p{font-weight:400}

  .topbar{
    position:sticky;top:0;z-index:100;
    background:var(--cream);
    border-bottom:3px dashed var(--caramel);
    padding:14px 24px;
    display:flex;align-items:center;justify-content:space-between;
    gap:16px;
  }
  .brand{display:flex;align-items:center;gap:12px}
  .brand img{height:52px;width:auto}
  .menu-toggle{
    display:none;
    width:46px;height:46px;
    border:none;border-radius:14px;
    background:var(--white);
    color:var(--brown);
    box-shadow:var(--shadow);
    cursor:pointer;
    font-size:22px;font-weight:700;
    line-height:1;
    flex:none;
  }
  nav ul{list-style:none;display:flex;gap:28px;align-items:center}
  nav a{
    color:var(--brown);text-decoration:none;font-weight:900;
    font-size:17px;position:relative;padding:6px 2px;
    transition:color .2s;
  }
  nav a:hover{color:var(--red)}
  nav a::after{
    content:"";position:absolute;left:0;right:0;bottom:-4px;
    height:3px;background:var(--red);border-radius:3px;
    transform:scaleX(0);transform-origin:center;transition:transform .3s;
  }
  nav a:hover::after{transform:scaleX(1)}

  .lang-switch{display:flex;gap:6px;background:var(--white);padding:4px;border-radius:999px;box-shadow:var(--shadow)}
  .lang-switch button{
    border:none;background:transparent;padding:8px 17px;min-width:48px;
    font-weight:900;font-size:14px;border-radius:999px;cursor:pointer;
    color:var(--brown-soft);transition:all .2s;
    font-family:inherit;
  }
  .lang-switch button.active{background:var(--red);color:var(--white);box-shadow:0 4px 10px rgba(227,6,19,.22)}
  .topbar-actions{display:flex;align-items:center;gap:10px;flex:none}

  .hero{
    position:relative;
    padding:70px 24px 80px;
    background:
      radial-gradient(circle at 15% 20%, var(--yellow) 0%, transparent 40%),
      radial-gradient(circle at 85% 30%, var(--pink) 0%, transparent 40%),
      radial-gradient(circle at 50% 90%, var(--mint) 0%, transparent 35%),
      var(--cream);
    overflow:hidden;
    text-align:center;
  }
  .hero-inner{max-width:1100px;margin:0 auto;position:relative;z-index:2}
  .hero img.hero-logo{
    max-width:min(560px,80%);
    height:auto;
    filter:drop-shadow(0 12px 24px rgba(62,39,35,.25));
    animation:bounce 3s ease-in-out infinite;
  }
  @keyframes bounce{
    0%,100%{transform:translateY(0) rotate(-1deg)}
    50%{transform:translateY(-10px) rotate(1deg)}
  }
  .tagline{
    font-size:clamp(28px,4vw,46px);
    font-weight:900;letter-spacing:-.015em;
    color:var(--brown);
    margin:18px 0 10px;
    line-height:1.15;
  }
  .tagline .accent{color:var(--red)}
  .subtagline{
    font-size:clamp(17px,1.8vw,20px);
    font-weight:600;
    color:var(--brown-soft);
    max-width:720px;margin:0 auto 30px;
    line-height:1.7;
  }
  .hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
  .btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:14px 28px;
    border-radius:999px;font-weight:800;font-size:18px;
    text-decoration:none;cursor:pointer;border:none;
    transition:transform .2s, box-shadow .2s;
    font-family:inherit;
  }
  .btn-primary{background:var(--red);color:var(--white);box-shadow:0 8px 20px rgba(227,6,19,.35)}
  .btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(227,6,19,.45)}
  .btn-outline{background:var(--white);color:var(--brown);border:3px solid var(--caramel)}
  .btn-outline:hover{transform:translateY(-3px);background:var(--caramel);color:var(--white)}
  .btn-wa{background:var(--whatsapp);color:var(--white);box-shadow:0 8px 20px rgba(37,211,102,.35)}
  .btn-wa:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(37,211,102,.45)}

  .float-product{
    position:absolute;
    width:clamp(70px,9vw,130px);height:auto;
    opacity:.88;z-index:1;pointer-events:none;
    filter:drop-shadow(0 10px 18px rgba(62,39,35,.25));
    animation:float 6s ease-in-out infinite;
  }
  .float-product.p1{top:8%;left:5%;animation-delay:0s;transform:rotate(-12deg)}
  .float-product.p2{top:14%;right:6%;animation-delay:1s;transform:rotate(10deg)}
  .float-product.p3{bottom:12%;left:8%;animation-delay:2s;transform:rotate(8deg)}
  .float-product.p4{bottom:16%;right:7%;animation-delay:3s;transform:rotate(-10deg)}
  .float-product.p5{top:48%;left:2%;animation-delay:1.5s;transform:rotate(15deg)}
  .float-product.p6{top:52%;right:2%;animation-delay:2.5s;transform:rotate(-8deg)}
  @keyframes float{
    0%,100%{transform:translateY(0) rotate(var(--base-rot,0deg))}
    50%{transform:translateY(-24px) rotate(calc(var(--base-rot,0deg) + 6deg))}
  }
  .float-product.p1{--base-rot:-12deg}
  .float-product.p2{--base-rot:10deg}
  .float-product.p3{--base-rot:8deg}
  .float-product.p4{--base-rot:-10deg}
  .float-product.p5{--base-rot:15deg}
  .float-product.p6{--base-rot:-8deg}
  @media(max-width:640px){
    .float-product{width:60px}
    .float-product.p5,.float-product.p6{display:none}
  }

  .cert-strip{
    background:var(--brown);
    color:var(--cream);
    padding:22px 24px;
    display:flex;flex-wrap:wrap;gap:30px;justify-content:center;align-items:center;
    font-size:14px;font-weight:600;letter-spacing:.5px;
  }
  .cert-strip-empty{
    display:block;
    width:100%;
    height:58px;
    min-height:58px;
    padding:0 !important;
  }
  .cert-badge{
    display:inline-flex;align-items:center;gap:10px;
  }
  .cert-badge .dot{
    width:10px;height:10px;border-radius:50%;background:var(--yellow);
    box-shadow:0 0 0 4px rgba(255,200,61,.2);
  }
  .cert-badge strong{color:var(--white);font-size:15px}

  section{padding:80px 24px}
  .wrap{max-width:1200px;margin:0 auto}
  .section-title{
    text-align:center;margin-bottom:14px;
    font-size:clamp(28px,4vw,40px);font-weight:900;color:var(--brown);letter-spacing:-.015em;
  }
  .section-title .accent{color:var(--red)}
  .section-sub{text-align:center;color:var(--brown-soft);margin-bottom:50px;font-size:16px;line-height:1.7;max-width:700px;margin-left:auto;margin-right:auto}

  #about{
    background:
      repeating-linear-gradient(45deg, var(--cream) 0px, var(--cream) 40px, var(--cream-soft) 40px, var(--cream-soft) 80px);
  }
  .about-intro{max-width:820px;margin:0 auto 50px;text-align:center}
  .about-intro :is(h1,h2){font-size:clamp(28px,3.5vw,38px);font-weight:900;color:var(--brown);margin-bottom:16px;line-height:1.25}
  .about-intro :is(h1,h2) .accent{color:var(--red)}
  .about-intro p{color:var(--brown-soft);font-size:18px;font-weight:600}
  .pillars{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
  }
  .pillar{
    background:var(--white);
    border-radius:24px;
    padding:30px 26px;
    box-shadow:var(--shadow);
    border-top:6px solid var(--red);
    transition:transform .3s;
  }
  .pillar:hover{transform:translateY(-6px)}
  .pillar .pillar-icon{
    width:70px;height:70px;border-radius:20px;
    background:linear-gradient(135deg,var(--caramel),var(--red));
    color:var(--white);display:flex;align-items:center;justify-content:center;
    font-size:32px;margin-bottom:18px;
    box-shadow:0 6px 14px rgba(227,6,19,.25);
  }
  .about-story{white-space:pre-line;text-align:left;max-width:960px!important;line-height:1.8}
  body[data-lang="ar"] .about-story{text-align:right}

  .media-page{padding:150px 0 90px;min-height:72vh}
  .media-page-head{text-align:center;max-width:760px;margin:0 auto 46px}
  .media-page-head h1{font-size:clamp(30px,4vw,44px);font-weight:900;color:var(--brown);margin:0 0 12px}
  .media-page-head p{font-size:18px;font-weight:600;color:var(--brown-soft);line-height:1.7}
  .media-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
  .media-card{overflow:hidden;border-radius:24px;background:#fff;box-shadow:0 14px 38px rgba(73,40,23,.12);border:1px solid rgba(116,73,45,.12)}
  .media-card-visual{height:280px;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#fff7df,#ffd647);padding:42px}
  .media-card:nth-child(2) .media-card-visual{background:linear-gradient(145deg,#fff0e9,#ef786c)}
  .media-card:nth-child(3) .media-card-visual{background:linear-gradient(145deg,#fff8e8,#d7b17f)}
  .media-card-visual img{width:min(240px,86%);height:150px;object-fit:contain;filter:drop-shadow(0 12px 15px rgba(82,35,14,.16))}
  .media-card-body{padding:22px 24px 25px}
  .media-card-body h2{font-size:21px;font-weight:900;color:var(--brown);margin:0 0 7px}
  .media-card-body p{font-size:15px;font-weight:600;color:var(--brown-soft);margin:0;line-height:1.65}
  @media(max-width:800px){.media-grid{grid-template-columns:1fr 1fr}.media-page{padding-top:120px}}
  @media(max-width:560px){.media-grid{grid-template-columns:1fr}.media-card-visual{height:230px}}
  .pillar h3{color:var(--red);font-size:20px;margin-bottom:10px;font-weight:600}
  .pillar p{color:var(--brown-soft);font-size:15px}

  #products{
    background:
      radial-gradient(circle at 12% 8%,rgba(212,165,116,.32),transparent 28%),
      radial-gradient(circle at 88% 90%,rgba(93,58,26,.12),transparent 32%),
      linear-gradient(180deg,#F4E2C7 0%,#F9EEDC 100%);
  }
  .product-filters{
    display:flex;flex-wrap:wrap;justify-content:center;gap:10px;
    margin:-18px auto 38px;
  }
  .product-filters button{
    border:2px solid var(--caramel);background:var(--white);color:var(--brown);
    padding:10px 16px;border-radius:999px;font:inherit;font-size:13px;font-weight:700;
    cursor:pointer;transition:background .2s,color .2s,border-color .2s,transform .2s;
  }
  .product-filters button::before{display:inline-block;margin-right:7px;font-size:15px;line-height:1}
  body[data-lang="ar"] .product-filters button::before{margin-right:0;margin-left:7px}
  .product-filters button[data-product-filter="all"]::before{content:"◉"}
  .product-filters button[data-product-filter="wafers"]::before{content:"🍪"}
  .product-filters button[data-product-filter="chocolate-cakes"]::before{content:"🍫"}
  .product-filters button[data-product-filter="candies"]::before{content:"🍬"}
  .product-filters button:hover{transform:translateY(-2px);border-color:var(--red)}
  .product-filters button.active{background:var(--red);border-color:var(--red);color:var(--white)}
  .product-filters button:focus-visible{outline:3px solid var(--brown);outline-offset:3px}
  .category-block{margin-bottom:60px}
  .category-block:last-child{margin-bottom:0}
  .category-header{
    display:flex;align-items:center;gap:16px;
    margin-bottom:26px;padding-bottom:14px;
    border-bottom:3px dashed var(--caramel);
  }
  .category-header .cat-icon{
    width:56px;height:56px;border-radius:16px;
    background:linear-gradient(135deg,var(--red),var(--caramel));
    color:var(--white);display:flex;align-items:center;justify-content:center;
    font-size:28px;flex:none;
  }
  .category-header h3{font-size:25px;color:var(--brown);font-weight:800}
  .category-header .cat-sub{color:var(--brown-soft);font-size:14px;font-weight:500}

  .product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:26px;
  }
  .product-card{
    --card-top:#4A2B24;
    --card-bottom:#321A16;
    --card-accent:#D4A574;
    background:
      radial-gradient(circle at 88% 8%,rgba(255,255,255,.08),transparent 25%),
      linear-gradient(145deg,var(--card-top) 0%,var(--card-bottom) 100%);
    border-radius:22px;
    padding:18px 22px;
    border:3px solid rgba(212,165,116,.38);
    transition:all .3s;
    position:relative;overflow:hidden;
    display:flex;flex-direction:column;min-width:0;
  }
  .product-card::before{
    content:"";position:absolute;left:0;right:0;top:0;height:7px;
    background:linear-gradient(90deg,var(--card-accent),var(--red),var(--card-accent));
  }
  [data-product-category="wafers"] .product-card{
    --card-top:#673A29;--card-bottom:#3A2018;--card-accent:#D6A15F;
  }
  [data-product-category="chocolate-cakes"] .product-card{
    --card-top:#43231E;--card-bottom:#241310;--card-accent:#B77A48;
  }
  [data-product-category="candies"] .product-card{
    --card-top:#74363F;--card-bottom:#482128;--card-accent:#F0A45D;
  }
  .product-card:hover{transform:translateY(-6px);border-color:var(--caramel);box-shadow:0 14px 32px rgba(62,39,35,.25)}
  .product-card .product-img{
    width:100%;aspect-ratio:16/9;
    background:
      radial-gradient(circle at 50% 42%,#FFFFFF 0%,#FFF9EF 62%,#F0DDC2 100%);
    border-radius:16px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:10px;overflow:hidden;
    padding:8px;
    border:2px solid rgba(212,165,116,.55);
    transition:transform .3s;
  }
  .product-card:hover .product-img{transform:scale(1.03)}
  .product-card .product-img img{
    max-width:100%;max-height:100%;
    object-fit:contain;
    filter:drop-shadow(0 6px 10px rgba(62,39,35,.15));
  }
  .product-card h4{
    color:#FFF4E2;font-size:16px;margin-bottom:6px;font-weight:800;line-height:1.3;
    min-height:42px;display:block;position:relative;padding-right:0;
  }
  .product-card h4::after{
    content:none;display:none;
  }
  body[data-lang="ar"] .product-card h4{padding-right:0;padding-left:0}
  .product-card p{
    color:#EAD8C8;font-size:14px;margin-bottom:8px;min-height:34px;line-height:1.45;
    display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;
  }
  .product-summary{display:flex;margin:5px 0 8px;min-height:30px}
  .product-summary span{
    background:#FFF4E2;color:var(--brown);padding:6px 11px;border-radius:10px;
    border:1px solid rgba(212,165,116,.85);font-size:12px;font-weight:500;
    width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  }
  .product-summary .spec-icon{width:auto;padding:0;border:0;background:transparent;margin-right:6px}
  body[data-lang="ar"] .product-summary .spec-icon{margin-right:0;margin-left:6px}
  .product-summary b{font-weight:800}
  .product-details{margin:0 0 8px;border-top:0}
  .product-details summary{
    cursor:pointer;color:#FFD647;font-size:12px;font-weight:900;padding:8px 3px 6px;
    display:flex;align-items:center;gap:7px;min-height:32px;line-height:18px;list-style:none;letter-spacing:.1px;
    transition:color .2s,text-shadow .2s;
  }
  .product-details summary::-webkit-details-marker{display:none}
  .product-details summary:hover{color:#FFF0A6;text-shadow:0 0 12px rgba(255,214,71,.42)}
  .product-details summary > span:nth-child(2){display:flex;align-items:center;height:18px;line-height:18px}
  .details-info-icon,.details-chevron{display:flex;align-items:center;justify-content:center;flex:none;height:18px;line-height:0}
  .details-info-icon{width:18px;transform:translateY(-2px)}.details-info-icon svg{display:block;width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
  .details-chevron{width:18px;height:18px;margin-left:auto;transition:transform .22s ease}.details-chevron svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
  .product-details[open] .details-chevron{transform:rotate(180deg)}
  .product-details[open] summary{color:#FFF0A6}
  .product-details[open] .product-specs{animation:detailsReveal .22s ease both}
  @keyframes detailsReveal{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
  body[data-lang="ar"] .details-chevron{margin-left:0;margin-right:auto}
  .product-details summary:focus-visible{outline:2px solid var(--red);outline-offset:3px}
  .product-specs{
    display:grid;gap:7px;margin:8px 0 4px;
  }
  .product-specs div{
    display:grid;grid-template-columns:minmax(100px,.8fr) 1.2fr;gap:10px;
    padding:9px 10px;background:#FFF4E2;border-radius:12px;
    border:1px solid rgba(212,165,116,.65);
  }
  .product-specs dt{
    color:var(--brown-soft);font-size:11px;font-weight:600;
    letter-spacing:0;
  }
  .product-specs dd{color:var(--brown);font-size:12px;font-weight:500;margin:0;line-height:1.5}
  .product-quote{
    display:flex;align-items:center;justify-content:center;min-height:40px;
    padding:8px 14px;border-radius:999px;background:var(--red);color:var(--white);
    text-decoration:none;text-align:center;font-size:13px;font-weight:800;
    box-shadow:0 6px 14px rgba(227,6,19,.18);transition:transform .2s,box-shadow .2s;
    margin-top:auto;
  }
  .product-card .product-quote{border:2px solid rgba(255,255,255,.14)}
  .product-card .product-quote:hover{background:#C80511}
  .product-quote span{font-size:16px;line-height:1;margin-right:7px}
  body[data-lang="ar"] .product-quote span{margin-right:0;margin-left:7px}
  .product-quote:hover{transform:translateY(-2px);box-shadow:0 9px 18px rgba(227,6,19,.24)}
  .product-quote:focus-visible{outline:3px solid var(--brown);outline-offset:3px}
  .category-block[hidden]{display:none}
  @media(max-width:980px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media(max-width:620px){
    .product-grid{grid-template-columns:1fr;gap:18px}
    .product-card h4{min-height:42px}.product-card p{min-height:0}
    .product-card .product-img{aspect-ratio:4/3}
  }
  .product-card .meta{
    display:flex;flex-wrap:wrap;gap:6px;
  }
  .product-card .meta span{
    background:var(--white);color:var(--brown);
    padding:4px 10px;border-radius:999px;font-size:12px;font-weight:600;
    border:2px solid var(--caramel);
  }

  .flavor-gallery{
    margin-top:30px;
    background:linear-gradient(135deg,#E8C99E,#F6E4C9);
    border-radius:24px;
    padding:26px 24px;
    border:3px dashed #9B674C;
  }
  .flavor-gallery-head{
    display:flex;align-items:center;gap:12px;
    margin-bottom:20px;
  }
  .flavor-gallery-head .dot{
    width:10px;height:10px;border-radius:50%;background:var(--red);
    box-shadow:0 0 0 5px rgba(227,6,19,.15);
  }
  .flavor-gallery-head h4{
    color:var(--brown);font-size:17px;font-weight:700;
  }
  .flavor-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:14px;
  }
  .flavor-item{
    background:var(--white);
    border-radius:16px;
    padding:14px 12px;
    text-align:center;
    border:2px solid transparent;
    transition:all .25s;
    cursor:pointer;
  }
  .flavor-item:hover{
    border-color:var(--red);
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(62,39,35,.15);
  }
  .flavor-item img{
    width:100%;aspect-ratio:1/1;
    object-fit:contain;
    filter:drop-shadow(0 4px 8px rgba(62,39,35,.15));
    margin-bottom:8px;
  }
  .flavor-item .flavor-name{
    font-size:13px;font-weight:600;color:var(--brown);display:block;line-height:1.3;
  }
  .flavor-item .flavor-emoji{font-size:14px;margin-right:4px}
  body[data-lang="ar"] .flavor-item .flavor-emoji{margin-right:0;margin-left:4px}

  #contact{
    background:
      radial-gradient(circle at 12% 18%,rgba(255,214,71,.18),transparent 30%),
      radial-gradient(circle at 88% 78%,rgba(227,6,19,.07),transparent 26%),
      linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  }
  .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
  .contact-grid-info-only{grid-template-columns:1fr;width:min(100%,960px);margin-left:auto;margin-right:auto;background:rgba(255,255,255,.5);padding:14px;border:1px solid rgba(212,165,116,.34);border-radius:28px;box-shadow:0 18px 42px rgba(74,43,36,.09);backdrop-filter:blur(5px)}
  .contact-info{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .info-item{
    display:flex;gap:14px;align-items:center;
    background:linear-gradient(145deg,#fff 0%,#fffaf1 100%);padding:16px 18px;border-radius:20px;
    border:1px solid rgba(212,165,116,.28);position:relative;overflow:hidden;
    box-shadow:0 8px 22px rgba(74,43,36,.07);transition:transform .22s,box-shadow .22s,border-color .22s;
  }
  .info-item::before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:linear-gradient(180deg,var(--red),#ff5360)}
  .info-item:hover{transform:translateY(-2px);border-color:rgba(227,6,19,.28);box-shadow:0 13px 28px rgba(74,43,36,.11)}
  .info-item:first-child{background:linear-gradient(135deg,#4a2b24 0%,#2f1814 100%);border-color:rgba(212,165,116,.6)}
  .info-item:first-child,.info-item:nth-child(2){grid-column:1/-1}
  .info-item:first-child{min-height:76px}
  .info-item:nth-child(2){min-height:72px}
  .info-item:first-child strong{color:#fff}
  .info-item:first-child span{color:#f2dcca}
  body[data-lang="ar"] .info-item::before{left:auto;right:0}
  .info-icon{
    width:42px;height:42px;flex:none;
    border-radius:50%;background:var(--red);color:var(--white);
    display:flex;align-items:center;justify-content:center;font-size:22px;
  }
  .info-item strong{display:block;color:var(--brown);margin-bottom:4px;font-size:15px}
  .info-item span,.info-item a{color:var(--brown-soft);font-size:14px;text-decoration:none;line-height:1.5}
  .info-item a:hover{color:var(--red)}
  .contact-map{grid-column:1/-1;width:100%;overflow:hidden;background:linear-gradient(145deg,#fff 0%,#fffaf1 100%);padding:10px;border-radius:22px;border:1px solid rgba(212,165,116,.32);box-shadow:0 10px 26px rgba(74,43,36,.08)}
  .contact-map iframe{display:block;width:100%;height:100px;border:0;border-radius:12px}
  .contact-map>a{display:block;padding:9px 16px 2px;text-align:center;color:var(--red);font-size:14px;font-weight:900;text-decoration:none;background:#fff}
  .contact-map>a:hover{background:#fff5e1}
  body[data-lang="ar"] .contact-map{direction:rtl}
  @media(max-width:700px){.contact-grid-info-only{padding:10px;border-radius:24px}.contact-info{grid-template-columns:1fr}.info-item:first-child,.info-item:nth-child(2),.contact-map{grid-column:auto}}

  .contact-form{
    background:var(--white);padding:24px 28px;border-radius:28px;
    border:3px dashed var(--caramel);
  }
  .form-group{margin-bottom:12px}
  .form-group label{display:block;font-weight:800;color:var(--brown);margin-bottom:4px;font-size:14px}
  .form-group input,.form-group select,.form-group textarea{
    width:100%;padding:10px 14px;border:2px solid var(--caramel);
    border-radius:14px;font-size:15px;font-family:inherit;
    background:var(--cream);color:var(--brown);
    transition:border-color .2s;
  }
  .form-group input:focus,.form-group select:focus,.form-group textarea:focus{
    outline:none;border-color:var(--red);background:var(--white);
  }
  .form-group textarea{resize:vertical;min-height:80px}
  .form-submit{width:100%;margin-top:2px}

  .wa-float{
    position:fixed;bottom:24px;right:24px;z-index:99;
    width:58px;height:58px;border-radius:50%;
    background:var(--whatsapp);color:var(--white);
    display:flex;align-items:center;justify-content:center;
    padding:0;line-height:0;text-decoration:none;
    box-shadow:0 8px 22px rgba(37,211,102,.5);
    transition:transform .2s;
    animation:pulse 2.5s ease-in-out infinite;
  }
  body[data-lang="ar"] .wa-float{right:auto;left:24px}
  .wa-float:hover{transform:scale(1.12)}
  .wa-float svg{display:block;flex:none;width:28px;height:28px;fill:currentColor;stroke:none}
  @keyframes pulse{
    0%,100%{box-shadow:0 8px 22px rgba(37,211,102,.5)}
    50%{box-shadow:0 8px 30px rgba(37,211,102,.9), 0 0 0 10px rgba(37,211,102,.15)}
  }

  footer{
    background:var(--brown);color:var(--cream);padding:48px 24px 24px;
    text-align:center;
  }
  footer .footer-logo{height:62px;margin-bottom:18px}
  footer .footer-tag{font-weight:600;color:var(--white);font-size:15px;margin-bottom:8px}
  footer .footer-desc{font-size:14px;opacity:.85;max-width:620px;margin:0 auto 20px}
  .socials{display:flex;gap:14px;justify-content:center;margin:16px 0 20px}
  .socials a{
    width:42px;height:42px;border-radius:50%;
    background:var(--red);color:var(--white);
    display:flex;align-items:center;justify-content:center;
    text-decoration:none;font-size:14px;font-weight:700;
    transition:transform .2s;
  }
  .socials a:hover{transform:translateY(-4px) scale(1.08)}
  .socials svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
  .socials svg .icon-fill{fill:currentColor;stroke:none}
  .copy{font-size:13px;opacity:.7;margin-top:18px;border-top:1px solid rgba(255,255,255,.1);padding-top:18px}

  @media(max-width:820px){
    .topbar{
      padding:12px 16px;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto auto;
      column-gap:6px;
      direction:ltr;
    }
    .brand{min-width:0;grid-column:1;justify-self:start}
    .brand img{height:44px}
    .menu-toggle{
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }
    nav{
      position:absolute;
      top:calc(100% + 10px);
      left:16px;
      right:16px;
      z-index:120;
    }
    nav ul{
      display:none;
      flex-direction:column;
      align-items:stretch;
      gap:8px;
      background:var(--white);
      padding:14px;
      border-radius:22px;
      box-shadow:var(--shadow);
      border:3px solid var(--cream-soft);
    }
    body.mobile-nav-open nav ul{display:flex}
    nav a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      background:var(--cream);
    }
    nav a::after{display:none}
    .topbar-actions{display:contents}
    .lang-switch{grid-column:2;justify-self:center;direction:ltr}
    .menu-toggle{grid-column:3;justify-self:end}
    .contact-grid{grid-template-columns:1fr}
    section{padding:56px 20px}
    .hero{
      padding:40px 20px 56px;
      text-align:center;
    }
    body[data-lang="ar"] .hero{text-align:center}
    .hero-inner{
      display:flex;
      flex-direction:column;
      align-items:center;
    }
    .hero img.hero-logo{
      max-width:min(290px,78%);
      margin-bottom:14px;
      animation:none;
    }
    .tagline{
      font-size:clamp(30px,8vw,42px);
      max-width:none;
      width:100%;
      margin:0 auto 16px;
      text-align:center;
      line-height:1.16;
    }
    .tagline > span{display:block;white-space:nowrap}
    .subtagline{
      font-size:17px;
      max-width:32rem;
      margin-bottom:24px;
      text-align:center;
    }
    .hero-cta{display:none}
    .float-product{display:none}
    .cert-strip{
      padding:18px 20px;
      gap:12px;
      font-size:13px;
      justify-content:flex-start;
    }
    .cert-badge{
      width:calc(50% - 6px);
      min-width:150px;
    }
    .about-intro{margin-bottom:34px}
    .category-header{
      align-items:flex-start;
      gap:12px;
    }
    .category-header h3{font-size:22px}
    .product-grid{
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:16px;
    }
    .product-card{
      padding:18px;
      border-radius:18px;
    }
    .flavor-gallery{padding:20px 16px}
    .flavor-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .info-item{padding:18px}
    .contact-form{padding:24px 18px}
    .wa-float{
      width:54px;height:54px;
      bottom:18px;right:18px;
    }
    .wa-float svg{width:26px;height:26px}
    body[data-lang="ar"] .wa-float{left:18px}
  }
  @media(max-width:560px){
    .topbar{
      padding:10px 12px;
      gap:8px;
    }
    .brand{flex:0 1 auto}
    .brand img{height:36px;max-width:112px}
    .topbar-actions{
      width:auto;
      gap:6px;
    }
    .lang-switch{
      flex:0 0 auto;
      gap:2px;
      padding:3px;
    }
    .lang-switch button{
      flex:none;
      min-width:30px;
      padding:6px 7px;
      font-size:11px;
    }
    .menu-toggle{width:42px;height:42px;border-radius:12px}
    .hero{padding:32px 16px 48px}
    .hero img.hero-logo{
      max-width:min(250px,76%);
      margin-bottom:16px;
    }
    .tagline{
      font-size:clamp(26px,9vw,36px);
      max-width:none;
    }
    .subtagline{font-size:16px}
    .cert-strip{
      padding:16px;
      display:grid;
      grid-template-columns:1fr;
    }
    .cert-badge{width:100%}
    section{padding:48px 16px}
    .section-sub{
      margin-bottom:34px;
      font-size:15px;
    }
    .pillars{
      grid-template-columns:1fr;
      gap:18px;
    }
    .pillar{padding:24px 18px}
    .category-header{
      flex-direction:column;
      padding-bottom:12px;
    }
    .product-grid,
    .flavor-grid{grid-template-columns:1fr}
    .product-card .product-img{aspect-ratio:4/3}
    .contact-grid{gap:26px}
    .info-item{
      gap:12px;
      padding:16px;
    }
    .info-icon{
      width:42px;height:42px;font-size:19px;
    }
    footer{padding:40px 16px 20px}
    .socials{flex-wrap:wrap}
  }
  @media(max-width:360px){
    .topbar{padding:8px 10px;gap:6px}
    .brand img{height:32px;max-width:100px}
    .topbar-actions{gap:4px}
    .lang-switch button{min-width:27px;padding:5px 5px;font-size:10px}
    .menu-toggle{width:40px;height:40px}
  }

  /* Premium homepage */
  body.homepage #products{display:block}
  .hero{min-height:620px;padding:54px 24px;display:grid;grid-template-columns:minmax(220px,1fr) minmax(460px,1.35fr) minmax(220px,1fr);align-items:end;gap:28px;background:radial-gradient(circle at 50% 75%,rgba(215,167,91,.16),transparent 36%),linear-gradient(112deg,#fff9ec 0%,#f8edda 52%,#fff1eb 100%)}
  .hero .hero-inner{position:relative;align-self:center;max-width:650px}.hero .hero-logo{width:min(420px,82%);filter:none;margin-bottom:28px}.hero .tagline{font-size:clamp(52px,4.2vw,64px);line-height:1.04;letter-spacing:-2.5px;display:flex;flex-direction:column;margin:0 0 22px}.hero .subtagline{max-width:600px;margin:0 auto 30px;font-size:18px;line-height:1.7}
  .static-hero-product{position:relative;height:460px;display:flex;align-items:flex-end;justify-content:center}.static-hero-product img{max-width:100%;max-height:420px;object-fit:contain;filter:drop-shadow(0 24px 20px rgba(62,32,24,.2));animation:homeReveal .65s ease both}.static-hero-right>img:first-child{width:78%;transform:translateY(-15px)}.static-hero-small{position:absolute;right:-2%;bottom:10px;width:46%;max-height:230px}
  .btn-wa{background:rgba(255,255,255,.72);color:var(--brown);border:1px solid rgba(66,35,28,.22);box-shadow:none}.btn-wa:hover{background:#fff;border-color:var(--red)}
  .home-container{width:min(1200px,calc(100% - 48px));margin:auto}.home-brand,.home-featured,.home-categories,.home-why,.home-media{padding:92px 0}.home-brand,.home-categories,.home-media{background:#fffaf1}
  .home-brand-grid{display:grid;grid-template-columns:1fr .88fr;gap:80px;align-items:center}.eyebrow{display:block;color:var(--red);font-size:12px;font-weight:800;letter-spacing:2px;margin-bottom:12px}.home-brand h2,.home-section-head h2,.home-contact-cta h2{font-size:clamp(34px,4vw,48px);line-height:1.12;margin:0 0 22px;color:var(--brown)}.home-brand p{font-size:17px;line-height:1.75;color:#6f5143;max-width:610px}.text-link{display:inline-flex;color:var(--red);font-weight:800;margin-top:12px}.brand-visual{height:360px;border-radius:28px;background:linear-gradient(145deg,#f4dfbd,#fff8eb);display:flex;align-items:center;justify-content:center;overflow:hidden}.brand-visual img{width:74%;height:82%;object-fit:contain;filter:drop-shadow(0 20px 18px rgba(62,32,24,.18))}
  .home-section-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:42px}.home-section-head.centered{justify-content:center;text-align:center}.premium-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.premium-product-card{background:#fff;border:1px solid #eadbc7;border-radius:20px;overflow:hidden;transition:.25s}.premium-product-card:hover{transform:translateY(-5px);box-shadow:0 16px 34px rgba(67,35,26,.1)}.premium-product-card a{display:block;color:inherit;padding:14px 14px 22px}.premium-product-image{height:240px;background:#fbf4e9;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}.premium-product-image img{width:100%;height:100%;object-fit:contain}.premium-product-card span{font-size:12px;color:#9b755d;text-transform:uppercase;letter-spacing:1px}.premium-product-card h3{font-size:18px;line-height:1.3;margin:7px 0 14px}.premium-product-card b,.category-card span{font-size:13px;color:var(--red)}
  .category-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.category-card{height:230px;position:relative;border-radius:18px;overflow:hidden;background:#41251d;color:#fff}.category-card:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(40,19,14,.85),rgba(40,19,14,.05) 65%)}.category-card img{width:100%;height:100%;object-fit:cover}.category-card>div{position:absolute;z-index:2;left:22px;bottom:20px}.category-card h3{margin:0 0 4px;font-size:21px}
  .home-why{background:#44271f;color:#fff}.home-why h2{color:#fff}.home-why .eyebrow{color:#f4bd5d}.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.15)}.why-grid article{background:#44271f;padding:32px 24px}.why-grid i{font-style:normal;color:#f4bd5d;font-weight:800}.why-grid h3{font-size:18px;margin:24px 0 10px}.why-grid p{color:#e6d7d1;line-height:1.6;font-size:14px}
  .media-preview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.media-preview-grid a{color:inherit}.media-preview-grid a>div{height:230px;border-radius:18px;overflow:hidden;margin-bottom:17px;background:#eee}.media-preview-grid img{width:100%;height:100%;object-fit:cover}.media-preview-grid time{font-size:12px;color:#9a715c}.media-preview-grid h3{font-size:19px;margin:7px 0}
  .home-contact-cta{padding:70px 0;background:#f2c45d}.home-contact-cta .home-container{display:flex;align-items:center;justify-content:space-between;gap:40px}.home-contact-cta h2{max-width:780px;margin-bottom:10px}.home-contact-cta p{margin:0;color:#61412f}.home-contact-cta .btn{flex:none}
  @keyframes homeReveal{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1}}
  @media(prefers-reduced-motion:reduce){*,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
  @media(max-width:980px){.hero{grid-template-columns:1fr 1.5fr 1fr;gap:10px}.hero .tagline{font-size:46px}.premium-product-grid{grid-template-columns:repeat(2,1fr)}.category-card-grid,.media-preview-grid{grid-template-columns:repeat(2,1fr)}.why-grid{grid-template-columns:repeat(2,1fr)}.home-brand-grid{gap:44px}}
  @media(max-width:700px){.hero{min-height:auto;padding:30px 18px 28px;display:flex;flex-direction:column;align-items:center}.hero .hero-inner{order:1}.static-hero-left,.static-hero-right{display:none!important}.hero .hero-logo{width:min(245px,72%);margin-bottom:15px}.hero .tagline{font-size:clamp(34px,10vw,40px);letter-spacing:-1.5px;margin-bottom:15px}.hero .subtagline{font-size:15px;line-height:1.55;margin-bottom:20px}.hero .hero-cta{display:flex!important;flex-direction:column;gap:10px}.hero .hero-cta .btn{min-height:48px}.home-brand,.home-featured,.home-categories,.home-why,.home-media{padding:54px 0}.home-container{width:min(100% - 32px,1200px)}.home-brand-grid{grid-template-columns:1fr;gap:30px}.brand-visual{height:270px}.premium-product-grid,.category-card-grid,.media-preview-grid{grid-template-columns:1fr}.why-grid{grid-template-columns:1fr}.home-section-head{align-items:flex-start;flex-direction:column;margin-bottom:28px}.home-section-head h2,.home-brand h2,.home-contact-cta h2{font-size:34px}.home-contact-cta{padding:52px 0}.home-contact-cta .home-container{align-items:flex-start;flex-direction:column}.home-contact-cta .btn{width:100%;justify-content:center}}

  /* Papara-inspired contact layout */
  #contact-legacy{display:none}
  #contact.contact-modern{background:#fff;padding-top:96px}
  .contact-modern .contact-wrap{max-width:1120px}
  .contact-modern .contact-heading{max-width:720px;margin-bottom:48px}
  .contact-modern .section-title,.contact-modern .section-sub{text-align:left;margin-left:0;margin-right:0}
  .contact-modern .section-title{margin-top:5px;margin-bottom:14px}
  .contact-kicker{font-size:12px;font-weight:900;letter-spacing:2.4px;color:var(--red)}
  .contact-panel{border-top:1px solid #e7ded7;display:grid;grid-template-columns:1fr 1fr}
  .contact-block{position:relative;padding:48px 54px 46px 0;min-height:330px;border-bottom:1px solid #e7ded7}
  .contact-block:nth-child(2){padding-left:54px;padding-right:0;border-left:1px solid #e7ded7}
  .contact-number{display:block;color:var(--red);font-size:12px;font-weight:900;letter-spacing:1.5px;margin-bottom:24px}
  .contact-block h3,.contact-location-head h3{font-size:25px;line-height:1.2;color:var(--brown);margin:0 0 12px}
  .contact-block>p{color:#7e665a;font-size:15px;line-height:1.65;margin:0 0 32px}
  .contact-detail{padding-top:22px;border-top:1px solid #eee7e1}
  .contact-detail span,.contact-channel span{display:block;color:#9b8377;font-size:12px;font-weight:800;margin-bottom:8px}
  .contact-detail a{color:var(--brown);font-size:15px;line-height:1.65;text-decoration:none}
  .contact-channel-list{border-top:1px solid #eee7e1}
  .contact-channel{display:block;padding:18px 0;border-bottom:1px solid #eee7e1;text-decoration:none}
  .contact-channel strong{display:flex;align-items:center;justify-content:space-between;color:var(--brown);font-size:16px}
  .contact-channel b{color:var(--red);font-size:18px}.contact-channel:hover strong{color:var(--red)}
  .contact-location-head{grid-column:1/-1;display:flex;align-items:end;justify-content:space-between;padding:42px 0 22px}
  .contact-location-head .contact-number{margin-bottom:12px}.contact-location-head h3{margin:0}
  .contact-location-head>a{color:var(--red);font-size:13px;font-weight:900;text-decoration:none}
  .contact-modern .contact-map{grid-column:1/-1;width:100%;height:330px;overflow:hidden;background:#f2eee9;padding:0;border:0;border-radius:4px;box-shadow:none}
  .contact-modern .contact-map iframe{display:block;width:100%;height:100%;border:0;border-radius:0;filter:saturate(.72) contrast(.94)}
  body[data-lang="ar"] .contact-modern .section-title,body[data-lang="ar"] .contact-modern .section-sub{text-align:right}
  @media(max-width:700px){#contact.contact-modern{padding-top:66px}.contact-modern .contact-heading{margin-bottom:32px}.contact-panel{grid-template-columns:1fr}.contact-block,.contact-block:nth-child(2){padding:34px 0;min-height:0;border-left:0}.contact-location-head{align-items:flex-start;gap:18px;padding-top:34px}.contact-location-head>a{white-space:nowrap}.contact-modern .contact-map{height:260px}}

  /* Kurpar-inspired unified contact footer */
  .legacy-footer{display:none}
  #contact.contact-modern{background:radial-gradient(circle at 82% 20%,rgba(227,6,19,.3),transparent 28%),linear-gradient(115deg,#3b211b 0%,#6b2d25 55%,#8f211f 100%);padding:49px 24px 26px;color:#fff}
  .contact-shell{width:min(1480px,100%);margin:auto;padding:30px 30px 26px;border:1px solid rgba(244,189,93,.38);border-radius:24px;display:grid;grid-template-columns:300px minmax(380px,1fr) 520px;gap:24px;align-items:start;box-shadow:0 18px 45px rgba(44,19,15,.22)}
  .contact-brand{text-align:center;padding-right:28px}.contact-logo-card{height:90px;padding:12px 20px;border-radius:14px;background:#fff8eb;display:flex;align-items:center;justify-content:center;border:1px solid rgba(244,189,93,.55)}.contact-logo-card img{max-width:100%;max-height:68px;object-fit:contain}.contact-brand>strong{display:block;width:max-content;margin:10px 8px 0 auto;font-size:11px;letter-spacing:1.3px;color:#f4bd5d}.contact-brand>strong small{font-size:9px;letter-spacing:0;text-transform:lowercase}
  .contact-intro{border-left:3px solid #f4bd5d;padding:6px 0 6px 22px}.contact-intro .contact-kicker{color:#f4bd5d;font-size:12px}.contact-intro h2{font-size:36px;line-height:1;margin:4px 0 6px;color:#fff}.contact-intro p{max-width:430px;margin:0;color:#f5e4d7;line-height:1.7;font-size:15px}
  .contact-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.contact-actions a{min-height:64px;border:1px solid rgba(244,189,93,.4);background:rgba(255,248,235,.1);border-radius:12px;padding:10px 16px;display:flex;gap:12px;align-items:center;color:#fff;text-decoration:none;min-width:0}.contact-actions a:hover,.contact-socials a:hover{background:rgba(244,189,93,.18)}.action-icon{width:36px;height:36px;flex:none;border:1px solid rgba(244,189,93,.65);color:#f4bd5d;border-radius:9px;display:grid;place-items:center}.action-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.contact-actions strong{font-size:14px;white-space:normal;overflow-wrap:anywhere;min-width:0}
  .contact-modern .contact-map{grid-column:1/3;position:relative;height:200px;padding:0;border:0;border-radius:14px;box-shadow:none;overflow:hidden}.contact-modern .contact-map iframe{width:100%;height:100%;border:0;filter:none}.contact-modern .contact-map>a{position:absolute;right:12px;bottom:12px;padding:12px 18px;border-radius:9px;background:#e30613;color:#fff;text-decoration:none;font-weight:900;font-size:13px}
  .contact-socials{border:1px solid rgba(244,189,93,.38);background:rgba(255,248,235,.08);border-radius:16px;padding:17px}.contact-socials>span{display:block;color:#f4bd5d;font-size:11px;letter-spacing:1.5px;font-weight:900;margin-bottom:8px}.contact-socials a{height:42px;margin-top:8px;padding:0 12px;border:1px solid rgba(244,189,93,.4);border-radius:9px;color:#fff;display:flex;align-items:center;gap:10px;text-decoration:none;font-weight:800;font-size:14px}.contact-socials b{width:26px;height:26px;border-radius:6px;background:#fff8eb;color:#e30613;display:grid;place-items:center}.contact-socials b svg{width:17px;height:17px;display:block}.contact-socials b .social-brand-icon{fill:currentColor;stroke:none}
  .contact-copy{display:none}
  body[data-lang="ar"] .contact-intro{border-left:0;border-right:3px solid #f4bd5d;padding-left:0;padding-right:22px}
  @media(max-width:1250px){.contact-shell{grid-template-columns:220px minmax(250px,1fr) 390px;gap:18px}.contact-brand{padding-right:14px}.contact-actions a{padding:9px 10px}.contact-actions strong{font-size:12px}.contact-intro h2{font-size:34px}}
  @media(max-width:900px){.contact-shell{grid-template-columns:230px minmax(0,1fr)}.contact-actions{grid-column:1/-1}.contact-modern .contact-map{grid-column:1/2}.contact-socials{grid-column:2/3}}
  @media(max-width:700px){#contact.contact-modern{padding:30px 14px 18px}.contact-shell{padding:20px;grid-template-columns:1fr;border-radius:18px}.contact-brand{padding:0}.contact-intro,.contact-actions,.contact-modern .contact-map,.contact-socials,.contact-copy{grid-column:1}.contact-actions{grid-template-columns:1fr}.contact-intro h2{font-size:32px}.contact-modern .contact-map{height:240px}}

  /* Final mobile hero contract: keep content/buttons, remove only product art. */
  @media screen and (max-width:700px){
    body.home .hero .static-hero-product,
    body.homepage .hero .static-hero-product,
    .hero .static-hero-left,
    .hero .static-hero-right{
      display:none!important;
      width:0!important;
      height:0!important;
      min-height:0!important;
      margin:0!important;
      padding:0!important;
      overflow:hidden!important;
    }
    .hero{
      min-height:0!important;
      padding:30px 18px 34px!important;
    }
    .hero .hero-inner{
      width:100%;
      max-width:440px;
      margin:0 auto;
    }
    .hero .hero-logo{display:block!important}
    .hero .hero-cta{display:flex!important;flex-direction:column!important;align-items:center!important}
    .hero .hero-cta .btn{width:min(100%,300px);justify-content:center}
  }
