/* ===== VYLOXE - Women's Fashion Store ===== */
/* Color Palette */
:root {
  --bg: #FFF5F0;
  --header-bg: #F5E6DA;
  --primary: #8B2252;
  --btn-text: #FFFBF3;
  --footer-bg: #D4A5A5;
  --text: #2D2926;
  --accent: #C08497;
  --card-bg: #FFFFFF;
  --gold: #D4AF37;
  --border-light: #F0DED5;
  --overlay: rgba(45,41,38,0.5);
  --announcement-bg: #8B2252;
  --trust-bg: #F5E6DA;
  --plum: #561A5C;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--plum);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--plum);
  color: var(--btn-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,34,82,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--btn-text);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
}

.btn-gold:hover {
  background: #C5A028;
  transform: translateY(-2px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--announcement-bg);
  color: var(--btn-text);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.announcement-bar a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.logo a {
  color: var(--primary);
}

.logo a:hover {
  color: var(--plum);
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

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

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

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

.header-icons a,
.header-icons button {
  color: var(--text);
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--header-bg);
  padding: 20px;
  border-top: 1px solid var(--border-light);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--trust-bg);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.trust-item .icon {
  font-size: 1.2rem;
}

/* ===== HERO BANNER / SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(45,41,38,0.55) 0%, rgba(45,41,38,0.1) 60%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide-content {
  max-width: 500px;
  color: #fff;
}

.slide-content h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
  color: var(--text);
}

.slider-btn:hover {
  background: white;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: white;
}

/* ===== CATEGORY SECTION ===== */
.categories-section {
  padding: 60px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(45,41,38,0.7));
  color: white;
}

.category-card .overlay h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.category-card .overlay span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.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-card .quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--btn-text);
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.product-card .product-info {
  padding: 16px;
}

.product-card .product-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-card .product-name a {
  color: var(--text);
}

.product-card .product-name a:hover {
  color: var(--primary);
}

.product-card .product-colors {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-card .product-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
}

.product-card .product-sizes {
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
}

/* ===== COLLECTION FILTERS ===== */
.collection-header {
  padding: 40px 0 20px;
  text-align: center;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  background: var(--card-bg);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--header-bg) 0%, #FAD4D4 100%);
  padding: 60px 0;
  text-align: center;
}

.newsletter-section h2 {
  margin-bottom: 12px;
}

.newsletter-section p {
  margin-bottom: 28px;
  color: var(--text);
  opacity: 0.8;
}

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

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  font-size: 0.95rem;
  outline: none;
  background: white;
  font-family: 'Inter', sans-serif;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--btn-text);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
  font-family: 'Inter', sans-serif;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(45,41,38,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45,41,38,0.1);
  color: var(--text);
  transition: all 0.3s;
}

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

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--header-bg) 0%, #FAD4D4 100%);
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.85;
}

.about-content {
  padding: 60px 0;
}

.about-content .container {
  max-width: 800px;
}

.about-content h2 {
  margin: 40px 0 16px;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
}

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

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  background: white;
}

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

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

.contact-info-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.contact-info-item .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  padding: 60px 0;
}

.policy-page .container {
  max-width: 800px;
}

.policy-page h1 {
  text-align: center;
  margin-bottom: 12px;
}

.policy-page .last-updated {
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 40px;
}

.policy-page h2 {
  margin: 36px 0 16px;
  font-size: 1.4rem;
}

.policy-page h3 {
  margin: 24px 0 12px;
  font-size: 1.15rem;
}

.policy-page p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-page ul, .policy-page ol {
  margin: 12px 0 20px 20px;
}

.policy-page li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-page .highlight-box {
  background: var(--header-bg);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid var(--primary);
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.policy-page table th,
.policy-page table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.policy-page table th {
  background: var(--header-bg);
  font-weight: 600;
}

/* ===== FAQ PAGE ===== */
.faq-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  line-height: 1.7;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 10000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.cart-header h3 {
  font-size: 1.2rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 4px;
}

.cart-item-remove:hover {
  color: var(--primary);
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--accent);
}

.cart-empty .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.cart-footer .note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 10px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--accent);
}

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

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

.breadcrumb span {
  margin: 0 8px;
}

/* ===== FEATURED BANNER ===== */
.featured-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--header-bg) 0%, #f3d5d5 100%);
}

.featured-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.featured-banner p {
  max-width: 500px;
  margin: 0 auto 28px;
  opacity: 0.85;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9998;
  display: none;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  font-size: 0.85rem;
  flex: 1;
}

.cookie-banner p a {
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btns button {
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid var(--primary);
  font-family: 'Inter', sans-serif;
}

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

.cookie-decline {
  background: transparent;
  color: var(--primary);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--header-bg) 0%, #FAD4D4 100%);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .slide img {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 1.8rem;
  }
  
  .slide-overlay {
    padding: 0 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .trust-bar .container {
    gap: 16px;
  }
  
  .trust-item {
    font-size: 0.75rem;
  }
  
  .cookie-banner.show {
    flex-direction: column;
    text-align: center;
  }
  
  .filter-bar {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .featured-banner h2 {
    font-size: 1.8rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-card .product-info {
    padding: 12px;
  }
  
  .product-card .product-name {
    font-size: 0.8rem;
  }
  
  .header-inner {
    padding: 10px 16px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .slide img {
    height: 220px;
  }
  
  .slide-content h2 {
    font-size: 1.4rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== PRODUCT COUNT BADGE ===== */
.product-count {
  text-align: center;
  padding: 10px 0 0;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: background 0.3s;
  box-shadow: 0 4px 12px rgba(139,34,82,0.3);
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: var(--plum);
}

/* ===== VISUALLY HIDDEN (accessibility) ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
