:root {
  --cream: #fff7ea;
  --sand: #f1dfc7;
  --soft: #fbefe0;
  --brown: #4a2415;
  --brown2: #6b351f;
  --gold: #b57531;
  --line: #e2cdb4;
  --muted: #8b6c5a;
  --dark: #2a150d;
  --shadow: 0 18px 45px rgba(42, 21, 13, 0.12);
  --container: 1420px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, sans-serif;
  background: linear-gradient(180deg, var(--cream), #fffaf3 45%, var(--soft));
  color: var(--dark);
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.container {
  width: min(var(--container), calc(100% - 56px));
  margin: auto;
}
.btn,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  background: var(--brown);
  color: #fff7ea;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--brown2);
}
.btn-light {
  background: #efe0c9;
  color: var(--dark);
}
.btn-light:hover {
  background: #fff2dd;
}
.topbar {
  height: 38px;
  background: linear-gradient(90deg, #3a1c10, #663119);
  color: #fff3e4;
  font-size: 0.9rem;
}
.topbar .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topbar span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.main-header {
  background: #fff7e9;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  height: 108px;
  display: grid;
  grid-template-columns: 260px 1fr 210px;
  align-items: center;
  gap: 30px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.08em;
}
.logo small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 10px;
  color: #8a6a58;
}
.custom-logo {
  max-height: 90px;
  width: auto;
}
.nav-links ul {
  display: flex;
  justify-content: center;
  gap: 42px;
  list-style: none;
}
.nav-links a {
  font-weight: 750;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.nav-icons {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 1.5rem;
}
.hero {
  height: 350px;
  background: linear-gradient(
      90deg,
      rgba(30, 15, 8, 0.78),
      rgba(30, 15, 8, 0.35)
    ),
    url("https://layla-naturelle.com/wp-content/uploads/2026/05/marrakech_front_page.png")
      center/cover;
  display: flex;
  align-items: center;
  color: white;
}
.hero-content {
  max-width: 760px;
  margin-left: 32%;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.38rem;
  margin: 14px 0 24px;
  color: #fff3e4;
}
.benefits {
  background: #f5e7d2;
  border-bottom: 1px solid var(--line);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px;
  border-right: 1px solid #d3b895;
}
.benefit:last-child {
  border-right: 0;
}
.benefit-icon {
  font-size: 2rem;
  color: var(--gold);
}
.benefit strong {
  display: block;
  color: var(--brown);
  font-size: 0.98rem;
}
.benefit span {
  font-size: 0.9rem;
  color: var(--muted);
}
.section {
  padding: 72px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}
.kicker {
  display: block;
  color: var(--brown2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.section h2,
.page-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown);
  font-size: 2.8rem;
  line-height: 1;
}
.section-sub {
  color: var(--muted);
  margin-top: 6px;
}
.view-all {
  font-weight: 700;
  color: var(--brown);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff9ef;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--brown);
  color: white;
  padding: 9px 14px;
  font-weight: 900;
  font-size: 0.78rem;
  z-index: 5;
  text-transform: uppercase;
}
.product-image {
  height: 330px;
  background: #ead6bf;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-image img {
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.product-info {
  padding: 18px 20px 24px;
}
.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.product-info p {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 66px;
}
.price {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown2);
  font-size: 1.85rem;
  font-weight: 700;
  margin: 14px 0;
}
.product-info .btn {
  width: 100%;
  min-height: 42px;
}
.visual {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(
      circle at 25% 15%,
      rgba(255, 255, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #b77b3c, #4d2415);
}
.visual:before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 247, 234, 0.35);
}
.bottle {
  width: 82px;
  height: 190px;
  border-radius: 24px 24px 13px 13px;
  background: linear-gradient(180deg, #54301f 0 18%, #c17a2e 19%, #8b4a22 100%);
  border: 4px solid rgba(255, 247, 234, 0.72);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}
.bottle:before {
  content: "";
  position: absolute;
  width: 34px;
  height: 40px;
  background: #1d1510;
  left: 20px;
  top: -34px;
  border-radius: 12px 12px 0 0;
}
.bottle:after {
  content: "ARGAN\A OIL\A 100% PURE";
  white-space: pre;
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 32px;
  padding: 12px 3px;
  background: #f7dfb3;
  color: #4a2415;
  text-align: center;
  font-weight: 900;
  font-size: 0.65rem;
  line-height: 1.25;
}


// 

.table {
    position: relative;
}

.table:after {
    content: "";
    position: absolute;
    top: 74px;
    left: 0;

    width: 105px;
    height: 78px;

    background-image: url("https://layla-naturelle.com/wp-content/uploads/2026/05/81649327-a1c2-4d02-8a23-4e3ef91de28e.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}


.ashtray {
  width: 190px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #29160e 0 34%,
    #c69a4b 35% 40%,
    #0d352f 41% 51%,
    #e8c176 52% 59%,
    #20100a 60% 100%
  );
  border: 7px solid #bd8840;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.25);
  position: relative;
}
.ashtray:before,
.ashtray:after {
  content: "";
  position: absolute;
  top: 49px;
  width: 40px;
  height: 17px;
  background: #ead2a0;
  border-radius: 999px;
}
.ashtray:before {
  left: -14px;
}
.ashtray:after {
  right: -14px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}
.collection-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  background: #2a150d;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.collection-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(0.62);
  transition: 0.35s;
}
.collection-card:hover img {
  transform: scale(1.05);
}
.collection-card div {
  position: relative;
  z-index: 2;
}
.collection-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.panel {
  background: #fff9ef;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 44px;
}
.panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--brown);
  line-height: 1;
}
.panel p {
  color: var(--muted);
  margin: 18px 0;
}
.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.detail-list div {
  padding: 14px 16px;
  background: #f6e8d5;
  border-left: 4px solid var(--gold);
}
.about-band {
  background: linear-gradient(
      90deg,
      rgba(42, 21, 13, 0.92),
      rgba(42, 21, 13, 0.62)
    ),
    url("https://images.unsplash.com/photo-1539020140153-e479b8c22e70?auto=format&fit=crop&w=1800&q=85")
      center/cover;
  color: #fff3e4;
}
.about-band h2 {
  color: white;
}
.about-band p {
  color: #f4decb;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq {
  background: #fff9ef;
  border: 1px solid var(--line);
  padding: 24px;
}
.faq h3 {
  color: var(--brown);
  margin-bottom: 8px;
}
.newsletter {
  background: #f2dfc3;
  border: 1px solid var(--line);
  padding: 34px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.newsletter input {
  height: 50px;
  border: 1px solid var(--line);
  padding: 0 18px;
  background: #fffaf2;
  min-width: 320px;
}
.content-page {
  padding: 72px 0;
}
.content-card {
  background: #fff9ef;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 40px;
}
.entry-content {
  margin-top: 20px;
}
.entry-content p {
  margin-bottom: 18px;
}
.footer {
  background: #2a150d;
  color: #fff3e4;
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer a,
.footer p {
  display: block;
  color: #d8bda5;
  margin-top: 9px;
}
.footer h4 {
  margin-bottom: 12px;
  color: white;
}
.mini-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 0.85;
  letter-spacing: 0.08em;
}
@media (max-width: 1050px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    margin-left: 0;
  }
  .benefit-grid,
  .product-grid,
  .collection-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-image {
    height: 290px;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .newsletter input {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .topbar {
    height: auto;
    padding: 8px 0;
  }
  .topbar .container {
    display: grid;
  }
  .nav {
    height: 86px;
  }
  .logo {
    font-size: 2.1rem;
  }
  .hero {
    height: 430px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .benefit-grid,
  .product-grid,
  .collection-grid,
  .split,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: grid;
  }
  .benefit {
    border-right: 0;
    border-bottom: 1px solid #d3b895;
  }
  .product-image {
    height: 270px;
  }
}
