/* ============================================
   Rahkla Wellness — style.css
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ---- CSS Variables ---- */
:root {
  --primary: #2d2d2d;
  --accent: #e8b4b8;
  --accent-dark: #d49aa0;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --text: #333333;
  --text-light: #888888;
  --border: #ebebeb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.25;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
h3 {
  font-size: 1.15rem;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
}
.logo span {
  color: var(--accent-dark);
}

/* Nav */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover {
  color: var(--primary);
}
.main-nav a:hover::after {
  width: 100%;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--primary);
  transition: color var(--transition);
}
.cart-btn:hover {
  color: var(--accent-dark);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 20px 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff5f6 0%, #fce8ea 40%, #fdf0e8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 180, 184, 0.35) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(232, 180, 184, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px 20px 80px;
  margin: 0 auto 0 calc((100% - 1200px) / 2 + 20px);
}
@media (max-width: 1240px) {
  .hero-content {
    margin-left: 20px;
  }
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #444;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 45, 45, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background: #fff;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.category-card:hover {
  transform: translateY(-4px);
}
.category-card:hover .cat-overlay {
  opacity: 1;
}
.cat-img {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.cat-img-1 {
  background: linear-gradient(145deg, #f9e4e6 0%, #e8c5c8 100%);
}
.cat-img-2 {
  background: linear-gradient(145deg, #f0e8f5 0%, #dbb8e8 100%);
}
.cat-img-3 {
  background: linear-gradient(145deg, #e8f0e8 0%, #b8d4b8 100%);
}
.cat-img-4 {
  background: linear-gradient(145deg, #e8f4f8 0%, #b8d8e8 100%);
}
.cat-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
}
.cat-label h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.cat-label span {
  font-size: 0.8rem;
  opacity: 0.85;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 180, 184, 0.15);
  opacity: 0;
  transition: opacity var(--transition);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.product-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.product-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-bg {
  transform: scale(1.05);
}
.product-img-1 {
  background: linear-gradient(135deg, #fce8ea 0%, #f5c8cc 100%);
}
.product-img-2 {
  background: linear-gradient(135deg, #f0e8f5 0%, #dcc8e8 100%);
}
.product-img-3 {
  background: linear-gradient(135deg, #e8f0e8 0%, #c8d8c8 100%);
}
.product-img-4 {
  background: linear-gradient(135deg, #fce8d8 0%, #f0c8a8 100%);
}
.product-img-5 {
  background: linear-gradient(135deg, #e8f4f8 0%, #b8d8e8 100%);
}
.product-img-6 {
  background: linear-gradient(135deg, #f8f0e8 0%, #e8d8c0 100%);
}
.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.product-wishlist:hover {
  color: #e85b6f;
  background: #fff;
}
.product-body {
  padding: 20px;
}
.product-category {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.product-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.product-price .old-price {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.add-to-cart {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.add-to-cart:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

/* ============================================
   USP STRIP
   ============================================ */
.usp {
  background: var(--primary);
  padding: 56px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.usp-item {
  color: #fff;
}
.usp-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.usp-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.usp-item p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, #fff5f6 0%, #fce8ea 100%);
}
.newsletter-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-box h2 {
  margin-bottom: 12px;
}
.newsletter-box p {
  color: var(--text-light);
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--accent);
}
.newsletter-form input::placeholder {
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span {
  color: var(--accent);
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-col ul li a:hover {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px;
  display: none;
}
#cookie-banner.visible {
  display: block;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.88rem;
  color: var(--text);
  flex: 1;
  min-width: 220px;
}
.cookie-text a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #2d2d2d;
  transition: 0.2s;
  min-width: 130px;
}
.cookie-btn-accept {
  background: #2d2d2d;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #444;
}
.cookie-btn-decline {
  background: #fff;
  color: #2d2d2d;
}
.cookie-btn-decline:hover {
  background: #f5f5f5;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #fff5f6 0%, #fce8ea 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-header h1 {
  margin-bottom: 12px;
}
.page-header p {
  color: var(--text-light);
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--accent-dark);
}
.breadcrumb span {
  opacity: 0.5;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-placeholder {
  height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fce8ea 0%, #f5c8cc 40%, #fce8d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-text h2 {
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-values {
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.value-card h3 {
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.about-team {
  background: #fff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #fce8ea, #f5c8cc);
}
.team-card h4 {
  margin-bottom: 4px;
}
.team-card span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9rem;
}
.contact-item-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 {
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  background: #fff;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-wrap h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--primary);
}
.legal-wrap h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--primary);
}
.legal-wrap p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.legal-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-wrap ul li {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.88rem;
}
.legal-wrap table th,
.legal-wrap table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.legal-wrap table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--primary);
}
.legal-wrap table td {
  color: var(--text-light);
}
.legal-meta {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
  .hero-content {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-img {
    height: 200px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cookie-inner {
    flex-direction: column;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* ============================================
   SALE BANNER
   ============================================ */
.sale-banner-section {
  padding: 2rem 0;
  background: #fff9f9;
}
.sale-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #fff0f3 0%, #fce4ec 100%);
  border-radius: 16px;
  padding: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sale-banner-inner {
    grid-template-columns: 1fr;
  }
  .sale-image {
    display: none;
  }
}
.sale-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e91e63;
  display: block;
  margin-bottom: 0.5rem;
}
.sale-banner-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0.5rem 0;
  color: #2d2d2d;
}
.sale-percent {
  color: #e91e63;
}
.sale-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.sale-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5e8ea;
}

/* ============================================
   CATEGORY IMAGE CONTAINERS
   ============================================ */
.cat-img {
  position: relative;
  overflow: hidden;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-img-5 {
  background: linear-gradient(145deg, #e8f4ee 0%, #b8d4c8 100%);
}
.cat-img-6 {
  background: linear-gradient(145deg, #f8f0e8 0%, #e8d0b8 100%);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.cat-page-hero {
  padding: 3rem 0 2rem;
  background: #fafafa;
}
.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #2d2d2d;
}
.cat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .cat-hero-inner {
    grid-template-columns: 1fr;
  }
  .cat-hero-img {
    display: none;
  }
}
.cat-hero-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5e8ea;
}
.cat-hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cat-hero-text p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
  background: #fff;
}
.filter-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
}
.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 130px;
  font-family: inherit;
}
.filter-select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================
   PRODUCT GRID (category page)
   ============================================ */
.cat-products {
  padding: 2rem 0 4rem;
}
.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f5e8ea;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-new {
  background: #2d2d2d;
  color: #fff;
}
.badge-sale {
  background: #e91e63;
  color: #fff;
}
.badge-best {
  background: #f5a623;
  color: #fff;
}
.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: 0.2s;
}
.wishlist-btn:hover {
  background: #ffe4e8;
}
.prod-cat-tag {
  font-size: 0.75rem;
  color: #e8b4b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.prod-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.prod-name a {
  color: inherit;
  text-decoration: none;
}
.prod-name a:hover {
  color: #e8b4b8;
}
.prod-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.prod-price {
  display: flex;
  flex-direction: column;
}
.curr-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: #2d2d2d;
}
.btn-cart {
  background: #2d2d2d;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-cart:hover {
  background: #e8b4b8;
  color: #2d2d2d;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}
.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
  font-family: inherit;
}
.page-btn:hover,
.page-btn.active {
  background: #2d2d2d;
  color: #fff;
  border-color: #2d2d2d;
}

/* ============================================
   CART MODAL
   ============================================ */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
}
.cart-modal[hidden] {
  display: none;
}
.cart-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.cart-modal-panel {
  position: relative;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.25s ease;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.cart-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-modal-header h2 {
  font-size: 1.2rem;
  margin: 0;
}
.cart-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #666;
  padding: 0.25rem 0.5rem;
  font-family: inherit;
}
.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: #888;
}
.cart-empty p {
  margin-bottom: 1rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  background: #f5e8ea;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.cart-item-price {
  color: #888;
  font-size: 0.9rem;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: inherit;
}
.cart-item-remove:hover {
  color: #e91e63;
}
.cart-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.btn-full {
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
  display: block;
}

/* ============================================
   HERO with image
   ============================================ */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero .hero-content {
  color: #fff;
}
.hero .hero-content h1 {
  color: #fff;
}
.hero .hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   USP icon fix
   ============================================ */
.usp-icon svg {
  display: inline-block;
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s;
  z-index: 200;
  margin-top: 8px;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: #2d2d2d;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}
.dropdown-menu a:hover {
  background: #f5e8ea;
}
.dropdown-menu a::after {
  display: none;
}
.nav-link-with-arrow {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 4rem 0;
  background: #fafafa;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review-text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8b4b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.9rem;
}
.review-author span {
  font-size: 0.8rem;
  color: #888;
}
