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

:root {
  --brand-primary: #f4a5b8;
  --brand-secondary: #ffc0cb;
  --brand-tertiary: #d4a5c4;
  --brand-deep: #2d3748;
  --brand-muted: #718096;
  --brand-cream: #fff8f0;
  --brand-pink-light: #ffe4e9;
  --brand-pink-soft: #ffd6e0;
  --brand-blue-grey: #c8d4e0;
  --brand-blue-grey-light: #e8f0f8;
  --brand-card: #ffffff;
  --brand-border: rgba(45, 55, 72, 0.08);
  --brand-shadow: 0 24px 60px rgba(244, 165, 184, 0.15);
  --brand-radius-lg: 32px;
  --brand-radius-md: 20px;
  --brand-radius-sm: 12px;
  --container-width: min(1180px, 92vw);
}

@media (max-width: 768px) {
  :root {
    --container-width: 100%;
    --brand-radius-lg: 20px;
    --brand-radius-md: 16px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(to bottom, rgba(232, 240, 248, 0.98) 0%, rgba(255, 228, 233, 0.98) 50%, rgba(255, 214, 224, 0.98) 100%);
  color: var(--brand-deep);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--brand-primary);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 240, 0.98);
  border-bottom: 1px solid rgba(244, 165, 184, 0.2);
  box-shadow: 0 2px 10px rgba(244, 165, 184, 0.1);
}

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

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    gap: 1rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(244, 165, 184, 0.2));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-title {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.1;
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.2rem;
  }

  .brand-logo {
    height: 44px;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 165, 184, 0.2), rgba(255, 200, 220, 0.2));
  color: var(--brand-primary);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid rgba(244, 165, 184, 0.3);
}

nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: var(--brand-deep);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

nav a:hover, nav a:focus {
  background: rgba(244, 165, 184, 0.15);
  color: var(--brand-primary);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 1001;
  position: relative;
}

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

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

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

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

/* 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: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Tablet navigation - show menu but compact */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    gap: 0.4rem;
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  nav a {
    padding: 0.5rem 0.65rem;
    font-size: 0.95rem;
    width: auto !important;
  }

  .brand-title {
    font-size: 1.4rem;
  }

  .brand-logo {
    height: 50px;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Mobile navigation */
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.98), rgba(255, 240, 245, 0.98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: -4px 0 20px rgba(244, 165, 184, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--brand-radius-sm);
    font-size: 1.1rem;
  }

  nav a:hover, nav a:focus {
    background: rgba(244, 165, 184, 0.2);
  }
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-actions .btn-outline {
    display: inline-flex;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn,
  .nav-actions .btn-outline {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .nav-actions .btn span {
    display: none;
  }
}

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn {
  background: linear-gradient(135deg, #f4a5b8, #ffc0cb);
  color: white;
  box-shadow: 0 8px 20px rgba(244, 165, 184, 0.4);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 165, 184, 0.5);
  background: linear-gradient(135deg, #ffb3c6, #ffd1dc);
}

.btn-outline {
  background: rgba(255, 248, 240, 0.9);
  color: var(--brand-primary);
  border: 2px solid rgba(244, 165, 184, 0.6);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  background: rgba(255, 240, 245, 0.95);
  box-shadow: 0 4px 15px rgba(244, 165, 184, 0.3);
}

main {
  padding-bottom: 6rem;
}

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

.section:nth-child(even) {
  background: rgba(255, 228, 233, 0.3);
  border-radius: var(--brand-radius-lg);
  margin: 2rem auto;
  padding: 4.5rem 1rem;
}

.section:nth-child(odd):not(.hero) {
  background: rgba(232, 240, 248, 0.3);
  border-radius: var(--brand-radius-lg);
  margin: 2rem auto;
  padding: 4.5rem 1rem;
}

/* Tablet section adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .section {
    padding: 3.5rem 1.5rem;
  }

  .section:nth-child(even),
  .section:nth-child(odd):not(.hero) {
    margin: 1.5rem auto;
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 1rem;
  }

  .section:nth-child(even),
  .section:nth-child(odd):not(.hero) {
    margin: 1rem auto;
    padding: 2.5rem 1rem;
    border-radius: var(--brand-radius-md);
  }
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.section.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding-top: 5.5rem;
  position: relative;
  background: linear-gradient(to bottom, rgba(200, 212, 224, 0.3) 0%, rgba(255, 228, 233, 0.5) 50%, rgba(255, 214, 224, 0.6) 100%);
  border-radius: var(--brand-radius-lg);
  margin: 2rem auto;
  padding: 5.5rem 1rem 4rem;
}

/* Tablet hero section */
@media (min-width: 769px) and (max-width: 1024px) {
  .section.hero {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem 3rem;
    margin: 1.5rem auto;
  }

  .hero-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section.hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem 2.5rem;
    margin: 1rem auto;
    border-radius: var(--brand-radius-md);
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: 100%;
    height: auto;
  }
}

.hero-copy .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-muted);
}

.hero-copy h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  margin: 1rem 0 1.2rem;
  color: var(--brand-deep);
}

.hero-copy p {
  max-width: 520px;
  color: var(--brand-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media img {
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.tile {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  border-radius: var(--brand-radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(244, 165, 184, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 240, 245, 1));
}

.tile h3 {
  font-family: 'Fraunces', serif;
  margin: 0;
  font-size: 1.55rem;
}

.muted {
  color: var(--brand-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-top: 1rem;
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 250, 0.98));
  border-radius: var(--brand-radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244, 165, 184, 0.3);
}

.product-card h2 {
  font-family: 'Fraunces', serif;
  margin: 0;
  font-size: 1.65rem;
}

.product-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--brand-muted);
}

.price-tag {
  font-weight: 700;
  font-size: 1.15rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(244, 165, 184, 0.15);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.article-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  border-radius: var(--brand-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
  position: relative;
  z-index: 1;
}

.article-card h2 {
  font-family: 'Fraunces', serif;
  margin-top: 0;
}

.rich-text h2, .rich-text h3 {
  font-family: 'Fraunces', serif;
  color: var(--brand-deep);
}

.rich-text p {
  margin-bottom: 1.6rem;
  color: var(--brand-muted);
}

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

input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--brand-radius-sm);
  border: 1px solid rgba(26, 32, 48, 0.12);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

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

label {
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 0.35rem;
  display: block;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--brand-radius-md);
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  border: 1px solid rgba(244, 165, 184, 0.15);
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-scroll {
    margin: 0 -1rem;
    border-radius: 0;
  }

  table {
    min-width: 600px;
  }

  table th, table td {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }
}

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

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

table th {
  background: rgba(244, 165, 184, 0.12);
  font-weight: 700;
}

table tr + tr {
  border-top: 1px solid rgba(45, 55, 72, 0.05);
}

.notice {
  padding: 1rem 1.4rem;
  border-radius: var(--brand-radius-sm);
  background: rgba(244, 165, 184, 0.12);
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(244, 165, 184, 0.3);
  position: relative;
}

.footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 50%, #1a1f2e 100%);
  color: white;
  padding: 0;
  position: relative;
  margin-top: 4rem;
}

.footer-decorative {
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(244, 165, 184, 0.4) 20%, 
    rgba(244, 165, 184, 0.6) 50%, 
    rgba(244, 165, 184, 0.4) 80%, 
    transparent 100%);
  margin-bottom: 3rem;
}

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

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-width: 95vw;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .section:nth-child(even),
  .section:nth-child(odd):not(.hero) {
    padding: 3.5rem 1.5rem;
    margin: 1.5rem auto;
  }

  .section.hero {
    padding: 4rem 1.5rem 3rem;
    gap: 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .flex-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-card {
    padding: 2rem;
  }

  .tile, .product-card {
    padding: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .nav-actions .btn,
  .nav-actions .btn-outline {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 1rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 1.5rem;
  }
}

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

.brand-title-footer {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}


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

.footer-column h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.footer-contact a {
  color: rgba(244, 165, 184, 0.9);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: rgba(255, 200, 220, 1);
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -1.2rem;
  opacity: 0;
  color: rgba(244, 165, 184, 1);
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: rgba(244, 165, 184, 1);
  padding-left: 1.2rem;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

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

.legal-meta a {
  color: rgba(244, 165, 184, 0.8);
  transition: color 0.2s ease;
}

.legal-meta a:hover {
  color: rgba(255, 200, 220, 1);
}

.brand-logo-footer {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(244, 165, 184, 0.3));
  opacity: 0.95;
}


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

.breadcrumbs a {
  color: inherit;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: rgba(244, 165, 184, 0.2);
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-primary);
}

.cart-summary {
  display: grid;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  padding: 2rem;
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
}

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

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

.policy article {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
  padding: 2.8rem;
}

.policy article h1 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
}

.policy article h2 {
  font-family: 'Fraunces', serif;
  margin-top: 2rem;
}

.legal-list {
  padding-left: 1.4rem;
  color: var(--brand-muted);
}

.account-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 8px 30px rgba(244, 165, 184, 0.2);
  border: 1px solid rgba(244, 165, 184, 0.15);
  padding: 2.3rem;
  display: grid;
  gap: 1.4rem;
}

.account-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-history {
  display: grid;
  gap: 1.2rem;
}

.order-card {
  border: 1px solid rgba(244, 165, 184, 0.2);
  border-radius: var(--brand-radius-md);
  padding: 1.3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  box-shadow: 0 4px 15px rgba(244, 165, 184, 0.1);
}


/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .hero-cta .btn,
  .hero-cta .btn-outline {
    flex: 0 1 auto;
  }

  .breadcrumbs {
    padding: 0 1.5rem;
  }

  /* Map iframe for tablets */
  .article-card iframe {
    height: 400px !important;
  }

  .table-scroll {
    margin: 0;
  }

  table {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  header {
    position: sticky;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .tile, .product-card, .article-card, .account-card, .cart-summary {
    padding: 1.5rem;
  }

  .tile-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flex-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .breadcrumbs {
    padding: 0 1rem;
    margin: 1rem auto 0;
  }

  /* Map iframe adaptation */
  .article-card iframe {
    height: 350px !important;
  }

  .article-card h2[style*="padding"] {
    padding: 1.5rem 1rem 1rem !important;
  }

  .article-card p[style*="padding"] {
    padding: 1rem !important;
  }
}

@media (max-width: 480px) {
  .tile, .product-card, .article-card, .account-card, .cart-summary {
    padding: 1.2rem;
  }

  .btn, .btn-outline {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
}

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