/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3E2723;
  --secondary: #5D4037;
  --accent: #D4A574;
  --light: #EFEBE9;
  --warm: #8D6E63;
  --text: #2C1810;
  --white: #FFF8F0;
  --gold: #C9A96E;
  --cream: #FAF3EB;
  --dark-overlay: rgba(62, 39, 35, 0.85);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.3;
}

/* Updated brand palette – Fine (orange tones) */
:root {
  --primary: #1f130f;
  --secondary: #e65100;
  --accent: #ffb74d;
  --light: #fff3e0;
  --warm: #b36b47;
  --text: #24130e;
  --white: #fffaf5;
  --gold: #ff9f43;
  --cream: #fff7ec;
  --dark-overlay: rgba(31, 19, 15, 0.9);
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--primary);
  color: var(--accent);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--accent);
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid rgba(93, 64, 55, 0.15);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(62, 39, 35, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-icons a {
  color: var(--secondary);
  font-size: 20px;
  transition: color 0.3s;
}

.nav-icons a:hover {
  color: var(--accent);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 19, 15, 0.9) 0%, rgba(230, 81, 0, 0.8) 45%, rgba(230, 81, 0, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 520px;
  text-align: left;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 360px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 39, 35, 0.3);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 17px;
  color: var(--warm);
  max-width: 600px;
  margin: 0 auto;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
  border-color: var(--accent);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--warm);
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(62, 39, 35, 0.12);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-stars .count {
  color: var(--warm);
  font-size: 13px;
}

.product-info p {
  font-size: 14px;
  color: var(--warm);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-price .currency {
  font-size: 18px;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}

/* ===== REVIEWS ===== */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.reviews-section .section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 19, 15, 0.96) 0%, rgba(230, 81, 0, 0.9) 100%);
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-section .section-title h2,
.reviews-section .section-title p {
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 248, 240, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 248, 240, 0.15);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 15px;
}

.review-text {
  color: var(--light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.review-name {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.review-verified {
  color: var(--warm);
  font-size: 12px;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(212, 165, 116, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(62, 39, 35, 0.08);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--warm);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(62, 39, 35, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-text blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--secondary);
  font-size: 17px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--primary);
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 8px;
  background: rgba(255, 248, 240, 0.1);
  color: var(--white);
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--warm);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}

.newsletter-form button:hover {
  background: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--light);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-col h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-col p {
  font-size: 14px;
  color: var(--warm);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--warm);
  transition: color 0.3s;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--warm);
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-payments span {
  background: rgba(255, 248, 240, 0.08);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--warm);
  border: 1px solid rgba(212, 165, 116, 0.1);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--primary);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--accent);
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 14px;
  color: var(--warm);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: 60px 20px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.product-detail-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
}

.product-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.product-detail-info .product-stars {
  margin-bottom: 20px;
  font-size: 18px;
}

.product-detail-info .price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.product-detail-info .description {
  font-size: 16px;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-features {
  margin-bottom: 30px;
}

.product-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-selector label {
  font-weight: 700;
  font-size: 15px;
}

.quantity-selector .qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid rgba(93, 64, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--light);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Lato', sans-serif;
}

.quantity-selector button:hover {
  background: var(--accent);
  color: var(--white);
}

.quantity-selector input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: var(--primary);
  background: var(--white);
}

.product-detail-info .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  margin-bottom: 15px;
}

.product-guarantee {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 64, 55, 0.1);
}

.product-guarantee .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--warm);
}

.product-guarantee .item span:first-child {
  font-size: 18px;
}

/* ===== INFO PAGE ===== */
.info-page {
  padding: 60px 20px;
}

.info-container {
  max-width: 900px;
  margin: 0 auto;
}

.info-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-nav a {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--light);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}

.info-nav a:hover,
.info-nav a.active {
  background: var(--secondary);
  color: var(--white);
}

.info-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.info-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.info-section h3 {
  font-size: 20px;
  margin: 25px 0 12px;
}

.info-section p {
  font-size: 15px;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-section ul {
  margin: 10px 0 20px 20px;
}

.info-section ul li {
  list-style: disc;
  font-size: 15px;
  color: var(--warm);
  line-height: 1.7;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid rgba(93, 64, 55, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

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

.contact-info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 116, 0.15);
}

.contact-info-box h3 {
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info-item .icon {
  font-size: 20px;
  min-width: 30px;
  text-align: center;
}

.contact-info-item .text {
  font-size: 15px;
  color: var(--warm);
  line-height: 1.6;
}

.contact-info-item .text strong {
  color: var(--text);
}

/* ===== CATALOG PAGE ===== */
.catalog-products {
  padding: 60px 20px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== ORDER FORM ===== */
.order-form-section {
  background: var(--primary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.order-form-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.08);
}

.order-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.05);
}

.order-form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.order-form-section .section-title h2 {
  color: var(--white);
}

.order-form-section .section-title p {
  color: var(--accent);
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.order-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-form .form-group.full-width {
  grid-column: 1 / -1;
}

.order-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 14px 18px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: var(--white);
  background: rgba(255, 248, 240, 0.08);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: var(--warm);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 248, 240, 0.12);
}

.order-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A574' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.order-form select option {
  background: var(--primary);
  color: var(--white);
}

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

.order-form .btn-submit-order {
  grid-column: 1 / -1;
  padding: 16px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
  margin-top: 10px;
}

.order-form .btn-submit-order:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.order-form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--warm);
  margin-top: 5px;
}

.order-form-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--light);
  padding: 20px 30px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.cookie-banner-text p {
  font-size: 14px;
  color: var(--warm);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--gold);
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Lato', sans-serif;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cookie-btn-reject:hover {
  background: rgba(212, 165, 116, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--warm);
  border: 1px solid rgba(141, 110, 99, 0.3);
  font-size: 13px;
  padding: 12px 20px;
}

.cookie-btn-settings:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.show {
  display: flex;
}

.cookie-modal {
  background: var(--cream);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cookie-modal > p {
  font-size: 14px;
  color: var(--warm);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cookie-category {
  background: var(--white);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category-header h4 {
  font-size: 16px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.cookie-category p {
  font-size: 13px;
  color: var(--warm);
  line-height: 1.6;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle .slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .slider {
  background: var(--accent);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.cookie-modal-buttons .cookie-btn {
  flex: 1;
  text-align: center;
}

/* Cookies Page Styles */
.cookies-page-content {
  padding: 60px 20px;
}

.cookies-container {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-type-card {
  background: var(--white);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 20px rgba(62, 39, 35, 0.08);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-type-icon {
  font-size: 28px;
}

.cookie-type-header h3 {
  font-size: 20px;
  margin: 0;
}

.cookie-type-card p {
  font-size: 15px;
  color: var(--warm);
  line-height: 1.7;
  margin-bottom: 10px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
}

.cookie-table th {
  background: var(--light);
  color: var(--primary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  color: var(--warm);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-badge.required {
  background: rgba(212, 165, 116, 0.2);
  color: var(--secondary);
}

.cookie-badge.optional {
  background: rgba(141, 110, 99, 0.15);
  color: var(--warm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }

  .steps-grid,
  .products-grid,
  .reviews-grid,
  .benefits-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-image img {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    gap: 15px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    justify-content: center;
    margin-top: 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .steps-grid,
  .products-grid,
  .reviews-grid,
  .benefits-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .product-detail-info h1 {
    font-size: 28px;
  }

  .product-detail-info .price {
    font-size: 28px;
  }

  .product-guarantee {
    flex-direction: column;
    gap: 10px;
  }

  .info-nav {
    gap: 6px;
  }

  .info-nav a {
    padding: 8px 14px;
    font-size: 12px;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal {
    padding: 25px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }
}