/* =========================
   BASE
========================= */

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Georgia, serif;
  background:#f5f0e8;
  color:#24211d;
  animation:fadeInPage 0.9s ease;
}

img{
  max-width:100%;
}

a{
  color:inherit;
}

@keyframes fadeInPage{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.fade-in{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s ease forwards;
}


/* =========================
   HEADER
========================= */

.header{
  background:rgba(245,240,232,0.96);
  border-bottom:1px solid #ddd3c5;
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner{
  max-width:1360px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:24px 28px;
  gap:20px;
}

.nav-left,
.nav-right{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav-right{
  justify-content:flex-end;
}

.nav-left a,
.nav-right a{
  text-decoration:none;
  color:#24211d;
  font-size:15px;
  letter-spacing:0.5px;
  position:relative;
}

.nav-left a::after,
.nav-right a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:#b89b5e;
  transition:width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after{
  width:100%;
}

.logo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo img{
  height:120px;
  width:auto;
  display:block;
}


/* =========================
   CART ICON
========================= */

.cart-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#24211d;
  text-decoration:none;
}

.cart-icon{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cart-link #cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#b89b5e;
  color:#ffffff;
  font-size:12px;
  line-height:1;
}

.cart-link:hover{
  color:#b89b5e;
}


/* =========================
   HOME
========================= */

.hero-section{
  max-width:1360px;
  margin:0 auto;
  padding:28px 28px 18px;
}

.hero-image,
.hero-video{
  width:100%;
  height:85vh;
  min-height:560px;
  object-fit:cover;
  display:block;
  border-radius:30px;
  box-shadow:0 22px 56px rgba(0,0,0,0.08);
}

.intro-section{
  max-width:900px;
  margin:42px auto 26px;
  text-align:center;
  padding:0 20px;
}

.intro-section h1{
  margin:0 0 14px;
  font-size:clamp(2.8rem, 5vw, 5rem);
  font-weight:normal;
}

.gold-line{
  width:90px;
  height:1px;
  background:#b89b5e;
  margin:0 auto 18px;
}

.gallery-section{
  max-width:1360px;
  margin:0 auto;
  padding:40px 28px 100px;
}

.luxury-gallery{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:18px;
}

.gallery-item{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  background:#ffffff;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
}

.gallery-large{
  height:640px;
  grid-row:span 2;
}

.gallery-medium{
  height:311px;
}


/* =========================
   GENERAL PAGE
========================= */

.page-content{
  max-width:950px;
  margin:0 auto;
  padding:60px 24px 80px;
  line-height:1.9;
}

.page-content h1{
  text-align:center;
  font-size:clamp(2.5rem, 4vw, 4rem);
  font-weight:normal;
  margin:0 0 14px;
}

.page-content h2{
  font-size:2rem;
  font-weight:normal;
  margin-top:48px;
  margin-bottom:18px;
}

.page-content p{
  margin-bottom:22px;
  font-size:18px;
}

.page-content ul{
  margin-bottom:28px;
  padding-left:22px;
}

.page-content li{
  margin-bottom:10px;
  font-size:18px;
}

footer{
  text-align:center;
  padding:40px;
  margin-top:40px;
  border-top:1px solid #ddd3c5;
  font-size:14px;
  letter-spacing:1px;
  color:#6b645c;
}


/* =========================
   ASSORTIMENT
========================= */

.assortiment-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
  font-size:18px;
  line-height:1.9;
}

.assortiment-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}

.assortiment-item{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  cursor:pointer;
  background:#ffffff;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  text-decoration:none;
}

.assortiment-item img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transition:transform 0.6s ease;
}

.assortiment-item:hover img{
  transform:scale(1.05);
}

.assortiment-item h2{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#ffffff;
  font-size:26px;
  font-weight:normal;
  letter-spacing:1px;
  background:rgba(0,0,0,0.35);
  padding:8px 16px;
  border-radius:10px;
  margin:0;
}


/* =========================
   SHOP CARDS
========================= */

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  margin-top:50px;
}

.shop-card{
  display:block;
  text-decoration:none;
  color:#24211d;
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  cursor:pointer;
}

.shop-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.shop-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.shop-card-body{
  padding:22px;
  text-align:center;
}

.shop-card-body h2{
  margin:0 0 10px;
  font-size:1.6rem;
  font-weight:normal;
}

.shop-price{
  font-size:18px;
  color:#b89b5e;
  margin:0 0 18px;
}

.shop-price.big{
  font-size:26px;
  margin-bottom:18px;
}

.shop-button{
  background:#24211d;
  color:#ffffff;
  border:none;
  padding:14px 26px;
  border-radius:12px;
  font-size:16px;
  font-family:Georgia, serif;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:background 0.3s ease, transform 0.3s ease;
}

.shop-button:hover{
  background:#b89b5e;
  transform:translateY(-2px);
}

.shop-button.secondary{
  background:transparent;
  color:#24211d;
  border:1px solid #ddd3c5;
}

.shop-button.secondary:hover{
  border-color:#b89b5e;
  color:#b89b5e;
}


/* =========================
   PRODUCT POPUP
========================= */

.product-image-placeholder{
  height:260px;
  background:#eee6dc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#b89b5e;
  letter-spacing:2px;
}

.product-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:999;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.product-modal.active{
  display:flex;
}

.product-modal-box{
  background:#f5f0e8;
  max-width:900px;
  width:100%;
  border-radius:28px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,0.25);
}

.product-modal-image{
  background:#eee6dc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  color:#b89b5e;
  letter-spacing:3px;
  min-height:480px;
}

.product-modal-content{
  padding:42px;
}

.product-modal-content h2{
  margin:0 0 18px;
  font-size:2.4rem;
  font-weight:normal;
}

.product-modal-content p{
  font-size:17px;
  line-height:1.8;
}

.close-modal{
  position:absolute;
  top:15px;
  right:20px;
  background:none;
  border:none;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  color:#24211d;
  z-index:2;
}

.modal-quantity{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin:26px 0;
  font-size:22px;
}

.modal-quantity button{
  width:38px;
  height:38px;
  border:1px solid #ddd3c5;
  background:#ffffff;
  border-radius:999px;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  font-family:Georgia, serif;
}

.modal-quantity button:hover{
  border-color:#b89b5e;
  color:#b89b5e;
}


/* =========================
   ABOUT PAGE
========================= */

.intro-center{
  text-align:center;
  max-width:720px;
  margin:0 auto 52px;
  font-size:18px;
  line-height:1.9;
}

.about-section{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:42px;
  align-items:start;
  margin:64px 0;
}

.about-section.reverse{
  direction:rtl;
}

.about-section.reverse .about-text{
  direction:ltr;
}

.about-image{
  max-width:320px;
}

.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  display:block;
  transition:transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img{
  transform:scale(1.02);
  box-shadow:0 22px 55px rgba(0,0,0,0.10);
}

.about-text h2{
  font-size:2rem;
  margin-top:0;
  margin-bottom:18px;
  font-weight:normal;
}

.about-text p,
.chef-story p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:18px;
}

.chef-story{
  margin:60px 0 45px;
}

.chef-story h2{
  font-size:2rem;
  font-weight:normal;
  margin-bottom:20px;
}

.experience-section{
  margin-top:60px;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.experience-item{
  background:#ffffff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 26px rgba(0,0,0,0.05);
  text-align:center;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.experience-item img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  margin-bottom:10px;
  background:#f5f0e8;
  transition:transform 0.6s ease;
}

.experience-item:hover img{
  transform:scale(1.03);
}

.experience-item p{
  margin:0;
  font-size:15px;
  line-height:1.5;
}


/* =========================
   PROFESSIONALS PAGE
========================= */

.pro-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin:70px 0;
}

.pro-section.reverse{
  direction:rtl;
}

.pro-section.reverse .pro-text{
  direction:ltr;
}

.pro-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  display:block;
  transition:transform 0.6s ease;
}

.pro-image img:hover{
  transform:scale(1.03);
}

.pro-text p{
  font-size:18px;
  line-height:1.9;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page{
  max-width:1200px;
}

.contact-layout{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:64px;
  align-items:start;
}

.contact-details{
  display:flex;
  flex-direction:column;
  gap:42px;
  padding-top:8px;
}

.contact-block{
  padding-bottom:28px;
  border-bottom:1px solid #ddd3c5;
}

.contact-block:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-block h2{
  font-size:0.95rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#6b645c;
  margin:0 0 16px;
  font-weight:normal;
}

.contact-block p{
  margin:0;
  font-size:20px;
  line-height:1.9;
}

.contact-link{
  margin-top:18px !important;
}

.contact-link a{
  color:#24211d;
  text-decoration:none;
  border-bottom:1px solid #b89b5e;
  padding-bottom:2px;
  transition:color 0.3s ease, border-color 0.3s ease;
}

.contact-link a:hover{
  color:#b89b5e;
  border-color:#b89b5e;
}

.contact-map{
  border-radius:28px;
  overflow:hidden;
  min-height:560px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  background:#ffffff;
}

.contact-map iframe{
  display:block;
  width:100%;
  height:560px;
  border:0;
}


/* =========================
   BASKET
========================= */

.empty-basket{
  text-align:center;
  margin-top:40px;
  font-size:18px;
  color:#6b645c;
}

.basket-box{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.basket-item{
  background:#ffffff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 26px rgba(0,0,0,0.05);
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.basket-item h2{
  margin:0 0 10px;
  font-size:1.5rem;
}

.basket-item p{
  margin:6px 0;
  font-size:16px;
}

.basket-item-right{
  text-align:right;
}

.basket-summary{
  margin-top:30px;
  text-align:right;
}

.basket-total-label{
  font-size:14px;
  letter-spacing:2px;
  color:#6b645c;
  margin:0;
}

.basket-total-price{
  font-size:32px;
  margin:5px 0 20px;
}

.basket-actions{
  display:flex;
  justify-content:flex-end;
  gap:15px;
  flex-wrap:wrap;
}

.basket-qty-controls{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}

.qty-button{
  width:32px;
  height:32px;
  border:1px solid #ddd3c5;
  background:#ffffff;
  border-radius:8px;
  font-size:18px;
  font-family:Georgia, serif;
  cursor:pointer;
}

.qty-button:hover{
  border-color:#b89b5e;
  color:#b89b5e;
}

.basket-qty-value{
  min-width:20px;
  text-align:center;
}

.remove-button{
  background:transparent;
  color:#24211d;
  border:1px solid #ddd3c5;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
  font-family:Georgia, serif;
}

.remove-button:hover{
  border-color:#b89b5e;
  color:#b89b5e;
}


/* =========================
   CHECKOUT
========================= */

.checkout-page{
  max-width:1200px;
}

.checkout-note{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}

.checkout-layout{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:40px;
  align-items:start;
}

.checkout-form-box,
.checkout-summary-box{
  background:#ffffff;
  border-radius:22px;
  padding:30px;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
}

.checkout-form-box h2,
.checkout-summary-box h2{
  margin-top:0;
}

.checkout-field{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
}

.checkout-field label{
  font-size:16px;
}

.checkout-field input,
.checkout-field select{
  padding:14px;
  border:1px solid #ddd3c5;
  border-radius:10px;
  font-size:16px;
  font-family:Georgia, serif;
  background:#ffffff;
}

.checkout-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.checkout-item{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-bottom:1px solid #eee4d6;
}

.checkout-item:last-child{
  border-bottom:none;
}

.checkout-item-name{
  margin:0 0 4px;
  font-size:18px;
}

.checkout-item-meta{
  margin:0;
  color:#6b645c;
  font-size:15px;
}

.checkout-item-price{
  margin:0;
  font-size:18px;
}

.checkout-total{
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #ddd3c5;
}

.checkout-confirmation p{
  margin:0 0 16px;
  font-size:18px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:980px){
  .header-inner{
    grid-template-columns:1fr;
    justify-items:center;
  }

  .nav-left,
  .nav-right{
    justify-content:center;
    flex-wrap:wrap;
  }

  .logo img{
    height:90px;
  }

  .hero-image,
  .hero-video{
    height:56vh;
    min-height:420px;
  }

  .luxury-gallery{
    grid-template-columns:1fr 1fr;
  }

  .gallery-large{
    height:420px;
    grid-row:auto;
  }

  .gallery-medium{
    height:220px;
  }

  .shop-grid{
    grid-template-columns:1fr;
  }

  .pro-section,
  .contact-layout,
  .checkout-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .pro-section.reverse{
    direction:ltr;
  }

  .contact-map{
    min-height:420px;
  }

  .contact-map iframe{
    height:420px;
  }

  .basket-item{
    flex-direction:column;
  }

  .basket-item-right{
    text-align:left;
  }

  .product-modal-box{
    grid-template-columns:1fr;
  }

  .product-modal-image{
    min-height:280px;
  }
}

@media (max-width:900px){
  .about-section{
    grid-template-columns:1fr;
    gap:24px;
    margin:50px 0;
  }

  .about-section.reverse{
    direction:ltr;
  }

  .about-image{
    max-width:100%;
  }

  .experience-grid{
    grid-template-columns:1fr;
  }

  .assortiment-grid{
    grid-template-columns:1fr;
  }

  .assortiment-item img{
    height:300px;
  }
}

@media (max-width:640px){
  .page-content{
    padding:42px 20px 60px;
  }

  .luxury-gallery{
    grid-template-columns:1fr;
  }

  .gallery-large,
  .gallery-medium{
    height:300px;
  }

  .logo img{
    height:72px;
  }

  .contact-block p{
    font-size:18px;
  }

  .contact-map{
    border-radius:20px;
    min-height:340px;
  }

  .contact-map iframe{
    height:340px;
  }

  .product-modal-content{
    padding:30px 24px;
  }

  .product-modal-content h2{
    font-size:2rem;
  }
}
.size-options{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:25px 0;
}

.size-button{
  padding:10px 18px;
  border:1px solid #ddd3c5;
  background:#ffffff;
  border-radius:999px;
  cursor:pointer;
  font-family:Georgia, serif;
  font-size:15px;
}

.size-button.active{
  background:#24211d;
  color:#ffffff;
  border-color:#24211d;
}
/* =========================
   FOOTER SOCIALS
========================= */

.site-footer{
  text-align:center;
  padding:42px 20px;
  margin-top:40px;
  border-top:1px solid #ddd3c5;
  color:#6b645c;
  background:#f5f0e8;
}

.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-bottom:16px;
}

.footer-socials .social-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#24211d;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:all 0.3s ease;
}

.footer-socials .social-icon svg{
  width:15px;
  height:15px;
  display:block;
  fill:currentColor;
}

.footer-socials .social-icon:hover{
  background:#b89b5e;
  transform:translateY(-2px);
}
/* =========================
   HOMEPAGE PREMIUM MOTION
========================= */

/* 1. Ambient luxury background */
body::before{
  content:"";
  position:fixed;
  width:520px;
  height:520px;
  background:rgba(184,155,94,0.10);
  filter:blur(120px);
  top:-160px;
  right:-140px;
  z-index:-1;
  pointer-events:none;
}

/* 2. Glass navbar */
.header{
  background:rgba(245,240,232,0.72);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.header.scrolled{
  background:rgba(245,240,232,0.88);
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

/* 3. Hero cinematic frame */
.hero-frame{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  box-shadow:0 22px 56px rgba(0,0,0,0.08);
}

.hero-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.06),
    rgba(0,0,0,0.20)
  );
  pointer-events:none;
  z-index:2;
}

.hero-image{
  box-shadow:none;
  border-radius:0;
  transform:scale(1);
  animation:heroLuxuryZoom 12s ease-in-out infinite alternate;
}

@keyframes heroLuxuryZoom{
  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.055);
  }
}

/* 4. Modern scroll reveal */
.fade-in{
  opacity:0;
  transform:translateY(60px) scale(0.97);
  animation:none;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.19,1,.22,1);
}

.fade-in.visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* 5. Gallery luxury hover */
.gallery-item{
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.gallery-item:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.14);
}

/* Better button feel */
.shop-button{
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:
    transform 0.35s cubic-bezier(.19,1,.22,1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.shop-button:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,0.16);
}
/* =========================
   PROFESSIONALS PAGE UPGRADE
========================= */

.professionals-page{
  max-width:1180px;
}

.pro-hero{
  text-align:center;
  max-width:860px;
  margin:0 auto 70px;
}

.pro-hero h1{
  font-size:clamp(2.7rem, 5vw, 5rem);
  line-height:1.08;
  margin:0 0 18px;
}

.pro-label{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:13px;
  color:#b89b5e;
}

.pro-benefits{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin:40px 0 80px;
}

.pro-benefit-card{
  background:#ffffff;
  border:1px solid #eee4d6;
  border-radius:22px;
  padding:30px;
  box-shadow:0 12px 34px rgba(0,0,0,0.05);
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.pro-benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 48px rgba(0,0,0,0.10);
}

.pro-benefit-card h3{
  font-size:1.45rem;
  font-weight:normal;
  margin:0 0 12px;
}

.pro-benefit-card p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#6b645c;
}

.pro-contact-card{
  max-width:820px;
  margin:90px auto 0;
  text-align:center;
  background:#ffffff;
  border:1px solid #eee4d6;
  border-radius:28px;
  padding:48px 34px;
  box-shadow:0 18px 45px rgba(0,0,0,0.07);
}

.pro-contact-card h2{
  margin-top:0;
}

.pro-contact-details{
  color:#24211d;
  margin:28px 0;
}

/* Responsive professionals page */
@media (max-width:900px){
  .pro-benefits{
    grid-template-columns:1fr;
    margin-bottom:60px;
  }

  .pro-hero{
    margin-bottom:50px;
  }

  .pro-contact-card{
    padding:36px 24px;
  }
}
/* =========================
   ABOUT PAGE LUXURY UPGRADE
========================= */

.about-page{
  max-width:1180px;
}

.about-hero{
  text-align:center;
  max-width:920px;
  margin:0 auto 90px;
}

.about-hero h1{
  font-size:clamp(2.8rem, 5vw, 5.2rem);
  line-height:1.08;
  margin:0 0 20px;
}

.about-label{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:13px;
  color:#b89b5e;
}

.about-page .about-section{
  margin:100px 0;
}

.about-page .about-image{
  max-width:420px;
}

.about-page .about-image img{
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,0.10);
}

.about-page .about-text{
  max-width:620px;
}

.about-page .about-text h2{
  font-size:clamp(2rem, 3vw, 3.1rem);
  line-height:1.15;
  margin-top:0;
}

.about-page .about-text p{
  color:#4f4942;
}

.chef-quote{
  max-width:880px;
  margin:100px auto;
  text-align:center;
  padding:70px 38px;
  border-top:1px solid #ddd3c5;
  border-bottom:1px solid #ddd3c5;
}

.chef-quote p{
  font-size:clamp(2rem, 4vw, 3.8rem);
  line-height:1.18;
  margin:0 0 24px;
  color:#24211d;
}

.chef-quote span{
  color:#b89b5e;
  letter-spacing:1.5px;
  font-size:15px;
}

.about-page .chef-story{
  max-width:860px;
  margin:110px auto 60px;
  text-align:center;
}

.about-page .chef-story h2{
  font-size:clamp(2.2rem, 4vw, 4rem);
  line-height:1.12;
  margin-top:0;
}

.about-page .chef-story p{
  color:#4f4942;
}

.featured-work{
  background:#24211d;
  border-radius:34px;
  padding:28px;
  box-shadow:0 30px 70px rgba(0,0,0,0.14);
}

.featured-work .experience-grid{
  gap:20px;
}

.featured-work .experience-item{
  position:relative;
  padding:0;
  overflow:hidden;
  border-radius:24px;
  background:#000000;
  min-height:390px;
  box-shadow:none;
}

.featured-work .experience-item img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:0;
  margin:0;
  opacity:0.86;
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
}

.featured-work .experience-item:hover img{
  transform:scale(1.07);
  opacity:1;
}

.experience-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:90px 24px 24px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.78),
    rgba(0,0,0,0)
  );
}

.experience-overlay p{
  margin:0;
  color:#ffffff;
  font-size:18px;
  line-height:1.45;
  text-align:left;
}

/* Responsive about page */
@media (max-width:900px){
  .about-page .about-section{
    margin:70px 0;
  }

  .about-page .about-image{
    max-width:100%;
  }

  .chef-quote{
    margin:70px auto;
    padding:50px 24px;
  }

  .featured-work{
    padding:18px;
    border-radius:26px;
  }

  .featured-work .experience-item,
  .featured-work .experience-item img{
    height:340px;
    min-height:340px;
  }
}
/* =========================
   CONTACT PAGE LUXURY UPGRADE
========================= */

.upgraded-contact-page{
  max-width:1180px;
}

.contact-hero{
  text-align:center;
  max-width:850px;
  margin:0 auto 80px;
}

.contact-label{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:13px;
  color:#b89b5e;
}

.contact-hero h1{
  font-size:clamp(2.7rem, 5vw, 5rem);
  line-height:1.08;
  margin:0 0 18px;
}

.upgraded-contact-details{
  gap:22px;
}

.contact-card{
  background:#ffffff;
  border:1px solid #eee4d6;
  border-radius:22px;
  padding:30px;
  box-shadow:0 12px 34px rgba(0,0,0,0.05);
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(0,0,0,0.10);
}

.contact-card h2{
  color:#b89b5e;
}

.contact-card a{
  text-decoration:none;
  border-bottom:1px solid #b89b5e;
}

.contact-card a:hover{
  color:#b89b5e;
}

.upgraded-contact-map{
  min-height:620px;
  border-radius:34px;
  box-shadow:0 30px 70px rgba(0,0,0,0.14);
}

.upgraded-contact-map iframe{
  height:620px;
}

@media (max-width:900px){
  .contact-hero{
    margin-bottom:55px;
  }

  .upgraded-contact-map{
    min-height:420px;
    border-radius:26px;
  }

  .upgraded-contact-map iframe{
    height:420px;
  }
}
/* =========================
   ASSORTIMENT PAGE LUXURY UPGRADE
========================= */

.assortiment-page{
  max-width:1180px;
}

.assortiment-hero{
  text-align:center;
  max-width:920px;
  margin:0 auto 60px;
}

.assortiment-label{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:13px;
  color:#b89b5e;
}

.assortiment-hero h1{
  font-size:clamp(2.8rem, 5vw, 5.2rem);
  line-height:1.08;
  margin:0 0 20px;
}

.assortiment-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:20px auto 50px;
  color:#b89b5e;
  text-transform:uppercase;
  letter-spacing:2.2px;
  font-size:12px;
}

.assortiment-divider::before,
.assortiment-divider::after{
  content:"";
  width:90px;
  height:1px;
  background:#ddd3c5;
}

.upgraded-assortiment-grid{
  gap:26px;
}

.upgraded-assortiment-grid .assortiment-item{
  position:relative;
  min-height:430px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  transition:
    transform 0.5s cubic-bezier(.19,1,.22,1),
    box-shadow 0.5s ease;
}

.upgraded-assortiment-grid .assortiment-item:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(0,0,0,0.16);
}

.upgraded-assortiment-grid .assortiment-item img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  display:block;
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
}

.upgraded-assortiment-grid .assortiment-item:hover img{
  transform:scale(1.07);
  opacity:0.95;
}

.assortiment-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:34px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.22),
    rgba(0,0,0,0.02)
  );
  color:#ffffff;
}

.assortiment-overlay h2{
  position:static;
  background:none;
  padding:0;
  border-radius:0;
  margin:0 0 8px;
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  line-height:1.08;
  font-weight:normal;
  letter-spacing:1.2px;
}

.assortiment-overlay p{
  max-width:360px;
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:rgba(255,255,255,0.88);
}

/* Responsive assortiment page */
@media (max-width:900px){
  .assortiment-hero{
    margin-bottom:45px;
  }

  .assortiment-divider{
    margin-bottom:36px;
  }

  .assortiment-divider::before,
  .assortiment-divider::after{
    width:45px;
  }

  .upgraded-assortiment-grid .assortiment-item,
  .upgraded-assortiment-grid .assortiment-item img{
    min-height:340px;
  }

  .assortiment-overlay{
    padding:26px;
  }
}


/* =========================
   GLOBAL ELEGANT SIZE OVERRIDES
   Paste-safe final overrides
========================= */

/* Overall page rhythm */
.page-content{
  padding:54px 24px 76px;
}

.page-content h1{
  font-size:clamp(2.1rem, 3.2vw, 3.4rem);
  line-height:1.12;
}

.page-content h2{
  font-size:clamp(1.55rem, 2.2vw, 2.35rem);
  line-height:1.2;
}

.page-content p,
.page-content li{
  font-size:16.5px;
  line-height:1.85;
}

.intro-center,
.assortiment-intro{
  font-size:16.5px;
  line-height:1.85;
}

/* More elegant page hero titles */
.intro-section h1,
.about-hero h1,
.pro-hero h1,
.contact-hero h1,
.assortiment-hero h1{
  font-size:clamp(2.25rem, 4vw, 4.25rem);
  line-height:1.08;
  letter-spacing:-0.5px;
}

.about-label,
.pro-label,
.contact-label,
.assortiment-label{
  font-size:11.5px;
  letter-spacing:2.3px;
}

/* Smaller section headings on upgraded pages */
.about-page .about-text h2,
.about-page .chef-story h2{
  font-size:clamp(1.75rem, 2.8vw, 3rem);
}

.chef-quote p{
  font-size:clamp(1.75rem, 3.2vw, 3rem);
}

/* Professionals page */
.pro-benefit-card h3{
  font-size:1.28rem;
}

.pro-benefit-card p{
  font-size:15.5px;
}

.pro-contact-card{
  padding:42px 30px;
}

/* Contact page */
.contact-card h2{
  font-size:0.85rem;
}

.contact-card p{
  font-size:17px;
}

/* Assortiment page: smaller hero + smaller cards */
.assortiment-hero{
  max-width:820px;
  margin:0 auto 46px;
}

.assortiment-hero h1{
  font-size:clamp(2.2rem, 3.6vw, 3.8rem);
}

.assortiment-divider{
  margin:10px auto 38px;
  font-size:11px;
}

.upgraded-assortiment-grid{
  gap:22px;
}

.upgraded-assortiment-grid .assortiment-item{
  min-height:315px;
  border-radius:24px;
}

.upgraded-assortiment-grid .assortiment-item img{
  height:315px;
  min-height:315px;
}

.assortiment-overlay{
  padding:26px;
}

.assortiment-overlay h2{
  font-size:clamp(1.45rem, 2.2vw, 2.05rem);
  letter-spacing:0.8px;
}

.assortiment-overlay p{
  font-size:14.5px;
  line-height:1.55;
  max-width:320px;
}

/* Shop / product text */
.shop-card-body h2{
  font-size:1.35rem;
}

.shop-price{
  font-size:16px;
}

.shop-price.big{
  font-size:22px;
}

.product-modal-content h2{
  font-size:2rem;
}

.product-modal-content p{
  font-size:16px;
}

/* Header slightly more elegant */
.logo img{
  height:105px;
}

.header-inner{
  padding:20px 28px;
}

.nav-left a,
.nav-right a{
  font-size:14px;
}

/* Responsive */
@media (max-width:980px){
  .logo img{
    height:82px;
  }

  .intro-section h1,
  .about-hero h1,
  .pro-hero h1,
  .contact-hero h1,
  .assortiment-hero h1{
    font-size:clamp(2rem, 7vw, 3.2rem);
  }
}

@media (max-width:900px){
  .upgraded-assortiment-grid .assortiment-item{
    min-height:260px;
  }

  .upgraded-assortiment-grid .assortiment-item img{
    height:260px;
    min-height:260px;
  }

  .assortiment-overlay{
    padding:22px;
  }

  .assortiment-overlay h2{
    font-size:1.55rem;
  }

  .assortiment-overlay p{
    font-size:14px;
  }
}

@media (max-width:640px){
  .page-content{
    padding:38px 20px 58px;
  }

  .logo img{
    height:70px;
  }

  .page-content p,
  .page-content li,
  .intro-center,
  .assortiment-intro{
    font-size:15.5px;
  }

  .upgraded-assortiment-grid .assortiment-item{
    min-height:235px;
  }

  .upgraded-assortiment-grid .assortiment-item img{
    height:235px;
    min-height:235px;
  }
}
