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

:root {
  --color-white: #FFFFFF;
  --color-pink-light: #F5F0F2;
  --color-pink: #D4A5B8;
  --color-pink-medium: #C895A8;
  --color-pink-dark: #B88598;
  --color-purple-light: #F0EDF2;
  --color-purple: #C4B5D4;
  --color-purple-medium: #B4A5C4;
  --color-purple-dark: #7A6B8A;
  --color-tiffany-light: #E0F7F5;
  --color-tiffany: #A8E6E0;
  --color-tiffany-medium: #7FD4CC;
  --color-tiffany-dark: #6BCFC6;
  --color-text-dark: #1A1A1A;
  --color-text-muted: #5A5A5A;
  --color-text-light: #8A8A8A;
  --container-width: min(1200px, 92vw);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #FAF9F9 0%, #F5F0F2 50%, #E0F7F5 100%);
  background-attachment: fixed;
  color: var(--color-text-dark);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Волнистые фоновые формы с тиффани */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-tiffany-light));
  border-radius: 50% 30% 70% 40%;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  transform: rotate(45deg);
  filter: blur(40px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, var(--color-tiffany-light), var(--color-pink-light));
  border-radius: 40% 60% 30% 70%;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-30deg);
  filter: blur(40px);
}

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

a:hover {
  color: var(--color-pink-dark);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(168, 230, 224, 0.2);
  box-shadow: 0 2px 20px rgba(168, 230, 224, 0.08);
  max-width: 100vw;
  overflow-x: hidden;
}

.navbar {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: 50px;
  width: 50px;
  display: block;
  flex-shrink: 0;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
  position: relative;
}

nav a {
  font-weight: 500;
  color: var(--color-text-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  text-align: center;
}

nav a:hover {
  background: var(--color-pink-light);
  color: var(--color-pink-dark);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle:hover {
  background: var(--color-pink-light);
}

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

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

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

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

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  white-space: nowrap;
}

.nav-contact .phone {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  line-height: 1.3;
}

.nav-contact .hours {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Buttons */
.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(221, 160, 221, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-pink-light);
  transform: translateY(-2px);
}

/* Main content */
main {
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section {
  width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-tiffany-light));
  border-radius: 50% 30% 70% 40%;
  opacity: 0.3;
  z-index: -1;
  transform: translateY(-50%) rotate(25deg);
  filter: blur(30px);
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--color-tiffany-light), var(--color-purple-light));
  border-radius: 30% 70% 50% 40%;
  opacity: 0.25;
  z-index: -1;
  transform: rotate(-15deg);
  filter: blur(30px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-copy .tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-gift-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-left: 1rem;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-top: 2rem;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Catalog Section */
.catalog-section {
  position: relative;
  padding: 5rem 0;
}

.catalog-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--color-tiffany-light), var(--color-pink-light));
  border-radius: 40% 60% 30% 70%;
  opacity: 0.25;
  z-index: -1;
  transform: rotate(-20deg);
  filter: blur(35px);
}

.catalog-section::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-tiffany-light));
  border-radius: 60% 40% 50% 30%;
  opacity: 0.22;
  z-index: -1;
  transform: rotate(-25deg);
  filter: blur(35px);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.catalog-tab {
  padding: 0.75rem 2rem;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.catalog-tab:hover {
  color: var(--color-pink-dark);
  background: var(--color-pink-light);
}

.catalog-tab.active {
  color: var(--color-pink-dark);
  border-color: var(--color-pink);
  background: var(--color-pink-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 182, 193, 0.2);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

.product-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.view-all-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Delivery Section */
.delivery-section {
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-tiffany-light));
  padding: 5rem 0;
  border-radius: var(--radius-lg);
  margin: 4rem auto;
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.delivery-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.delivery-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.delivery-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* For Whom Section */
.for-whom-section {
  padding: 5rem 0;
  position: relative;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.for-whom-card {
  text-align: center;
  padding: 2rem;
}

.for-whom-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.for-whom-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-tiffany-light));
  border-radius: 50% 30% 70% 40%;
  opacity: 0.25;
  z-index: -1;
  transform: rotate(15deg);
  filter: blur(30px);
}

.reviews-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--color-tiffany-light), var(--color-purple-light));
  border-radius: 30% 70% 50% 40%;
  opacity: 0.22;
  z-index: -1;
  transform: rotate(-20deg);
  filter: blur(30px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.review-name {
  font-weight: 600;
  color: var(--color-text-dark);
}

.review-text {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--color-text-muted);
}

.contact-info p {
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--color-pink);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
  opacity: 0.3;
}

.footer-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

.footer-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact-item strong {
  color: var(--color-pink);
  min-width: 80px;
  font-weight: 600;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-pink);
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-pink);
  transition: width 0.3s ease;
}

.footer nav a:hover {
  color: var(--color-pink);
  padding-left: 0.5rem;
}

.footer nav a:hover::before {
  width: 100%;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-link:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 165, 184, 0.3);
}

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--color-pink);
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--color-pink);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: var(--color-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 184, 0.4);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.legal-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.legal-meta a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-meta a:hover {
  color: var(--color-pink);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-pink);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-newsletter-form {
    flex-direction: column;
  }
  
  .footer-newsletter-form button {
    width: 100%;
  }
  
  .section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

.breadcrumbs {
  width: var(--container-width);
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: inherit;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: var(--color-pink-light);
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-pink-dark);
  font-size: 0.85rem;
}

/* Form elements */
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 182, 193, 0.3);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text-dark);
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Additional card styles */
.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 182, 193, 0.2);
}

.article-card h1, .article-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--color-text-dark);
  margin-top: 0;
}

.flex-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
  border: 1px solid rgba(255, 182, 193, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 1rem 1.2rem;
  text-align: left;
}

table th {
  background: var(--color-pink-light);
  font-weight: 700;
  color: var(--color-text-dark);
}

table tr + tr {
  border-top: 1px solid rgba(255, 182, 193, 0.2);
}

.notice {
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--color-purple-light);
  color: var(--color-purple-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(221, 160, 221, 0.3);
  position: relative;
}

.account-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2.3rem;
  display: grid;
  gap: 1.4rem;
  border: 1px solid rgba(255, 182, 193, 0.2);
}

.cart-summary {
  display: grid;
  gap: 1.2rem;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.2);
  height: fit-content;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

/* Utility classes */
.muted {
  color: var(--color-text-muted);
}

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

/* Responsive */
@media (max-width: 1200px) {
  .navbar {
    gap: 1rem;
  }
  
  nav {
    gap: 0.6rem;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .nav-contact .phone {
    font-size: 0.85rem;
  }
  
  .nav-contact .hours {
    font-size: 0.75rem;
  }
}

@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .brand {
    flex: 0 0 auto;
  }
  
  .navbar nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(168, 230, 224, 0.2);
    position: static;
    display: flex;
  }
  
  .navbar nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }
  
  .nav-actions {
    margin-left: auto;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .nav-contact {
    font-size: 0.85rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .container-width {
    padding: 0 2rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }
  
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
  :root {
    --container-width: min(100%, calc(100vw - 2rem));
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .navbar {
    padding: 1rem 0;
    gap: 1rem;
    max-width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    position: relative;
  }
  
  body.cookie-banner-visible header {
    top: 0;
  }
  
  body.cookie-banner-visible .navbar nav {
    max-height: calc(100vh - 200px);
  }
  
  .brand-title {
    font-size: 1rem;
  }
  
  .brand-logo {
    height: 40px;
    width: 40px;
  }
  
  .navbar nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 4rem 0 2rem 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--color-pink) transparent !important;
    z-index: 999 !important;
    order: unset !important;
    justify-content: flex-start !important;
    flex: unset !important;
    min-width: unset !important;
    transition: right 0.3s ease !important;
  }
  
  .navbar nav::-webkit-scrollbar {
    width: 4px;
  }
  
  .navbar nav::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .navbar nav::-webkit-scrollbar-thumb {
    background: var(--color-pink);
    border-radius: 2px;
  }
  
  .navbar nav.active {
    right: 0 !important;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .navbar nav a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: left;
    border-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(168, 230, 224, 0.1);
    transition: background 0.2s ease, padding-left 0.2s ease;
    color: var(--color-text-dark);
    font-weight: 500;
  }
  
  .navbar nav a:first-child {
    border-top: 1px solid rgba(168, 230, 224, 0.1);
  }
  
  .navbar nav a:last-child {
    border-bottom: none;
  }
  
  .navbar nav a:hover,
  .navbar nav a:active {
    background: var(--color-pink-light);
    padding-left: 2rem;
  }
  
  .nav-actions {
    margin-left: auto;
    gap: 0.5rem;
  }
  
  .nav-contact {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .btn-outline {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
  
  .hero-copy {
    padding: 1.5rem !important;
    margin: 0 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .hero-copy .tagline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .hero-cta .btn,
  .hero-cta .btn-outline {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.5rem;
  }

  .product-card, .delivery-card, .review-card {
    padding: 1.25rem;
    margin: 0;
  }
  
  .product-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }

  .catalog-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .catalog-tab {
    text-align: center;
    padding: 0.75rem 1rem;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Responsive image layouts */
  .section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .delivery-section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .hero-media img {
    width: 100%;
    height: auto;
  }
  
  .flex-split {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .article-card {
    padding: 1.25rem;
    margin: 0;
  }
  
  .form {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
    width: 100%;
  }
  
  .breadcrumbs {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  .account-card {
    padding: 1.25rem;
    margin: 0 0.5rem;
  }
  
  /* Ensure all containers respect mobile width */
  .container-width,
  main,
  .section > div {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Fix hero background on mobile */
  .hero[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
  }
  
  .hero[style*="background-image"] > div[style*="position: absolute"] {
    background: rgba(255, 255, 255, 0.9) !important;
  }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
  :root {
    --container-width: min(100%, calc(100vw - 1.5rem));
    --radius-lg: 16px;
    --radius-md: 10px;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .brand-title {
    font-size: 0.9rem;
  }
  
  .brand-logo {
    height: 35px;
    width: 35px;
  }
  
  .navbar nav {
    width: 260px !important;
    max-width: 80vw !important;
    padding: 3.5rem 0 1.5rem 0 !important;
  }
  
  .navbar nav a {
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
    min-height: 48px;
  }
  
  .section {
    padding: 1.5rem 0.75rem;
  }
  
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .hero-copy {
    padding: 1.25rem !important;
    margin: 0 0.5rem;
  }
  
  .hero-copy h1 {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 1.4rem;
    padding: 0 0.25rem;
  }
  
  .product-card, .delivery-card, .review-card, .article-card {
    padding: 1rem;
  }
  
  .btn, .btn-outline {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .footer {
    padding: 2rem 0 0;
  }
  
  .footer-inner {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .footer-brand p {
    font-size: 0.85rem;
  }
}

/* Cookie Banner */
.cookie-overlay {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 230, 224, 0.2);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-actions .btn,
.cookie-actions .btn-outline {
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
}

.cookie-link {
  color: var(--color-pink-dark);
  text-decoration: underline;
  font-size: 0.7rem;
  white-space: nowrap;
}

.cookie-link:hover {
  color: var(--color-purple-dark);
}

body.cookie-lock {
  overflow: auto;
}

@media (max-width: 720px) {
  .cookie-banner {
    padding: 0.4rem 0.75rem;
  }
  
  .cookie-banner p {
    font-size: 0.7rem;
    min-width: auto;
  }
  
  .cookie-actions {
    gap: 0.4rem;
  }
  
  .cookie-actions .btn,
  .cookie-actions .btn-outline {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
  
  .cookie-link {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
