/* LAPIDARIUM - Clean Classic Antique Gallery Styles */

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

:root {
  --primary: #7E9AC9;
  --primary-dark: #5a7bb0;
  --secondary: #403C3D;
  --accent: #8B6914;
  --gold: #C9A227;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --bg: #FFFFFF;
  --bg-cream: #F8F6F3;
  --bg-light: #FAFAFA;
  --border: #E0E0E0;
  --border-light: #EEEEEE;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

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

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: white;
  opacity: 0.9;
}

.contact-info a:hover {
  opacity: 1;
}

.contact-info .separator {
  margin: 0 12px;
  opacity: 0.5;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: white;
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
}

/* Navigation */
.navbar {
  background: var(--secondary);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  padding: 8px 16px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  opacity: 0.9;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: white;
  opacity: 1;
}

.nav-menu .btn-shop {
  background: var(--primary);
  color: white;
  margin-left: 12px;
  padding: 10px 20px;
}

.nav-menu .btn-shop:hover {
  background: var(--primary-dark);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 12px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: var(--bg-cream);
  color: var(--primary);
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
  background: var(--bg-cream);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ornament {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 8px;
  margin-bottom: 16px;
}

/* Quick Info Bar */
.quick-info {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

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

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.quick-info-item strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 2px;
}

.quick-info-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-ornament {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Services Grid */
.services-section {
  background: var(--bg-cream);
}

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

.service-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card svg {
  color: var(--primary);
  margin-bottom: 16px;
}

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

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Gallery Grid */
.gallery-section {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-card h3 {
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.gallery-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

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

.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-card h3 {
  font-size: 16px;
  color: var(--secondary);
  padding: 16px 16px 6px;
}

.product-category {
  font-size: 13px;
  color: var(--primary);
  padding: 0 16px 16px;
}

/* About Preview */
.about-preview {
  background: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .lead {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Visit Section */
.visit-section {
  background: white;
}

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

.visit-info h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.visit-details {
  margin: 24px 0;
}

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

.visit-item:last-child {
  border-bottom: none;
}

.visit-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.visit-item strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 4px;
}

.visit-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.visit-map iframe {
  display: block;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 48px 0 0;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.footer-social a {
  color: rgba(255,255,255,0.7);
}

.footer-social a:hover {
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Page Headers */
.page-header {
  background: var(--bg-cream);
  padding: 60px 0 50px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 12px;
}

.page-header .ornament {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 6px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Info Cards */
.info-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

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

.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #d32f2f;
}

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

.contact-info-list {
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
}

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

.contact-info-item a:hover {
  color: var(--primary);
}

/* Social Buttons */
.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-light);
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Bank Details */
.bank-details {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0;
}

.bank-details p {
  margin: 6px 0;
  font-family: monospace;
  font-size: 14px;
  color: var(--text);
}

.bank-details strong {
  color: var(--secondary);
}

/* External Links */
.external-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.external-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.external-link:hover {
  border-color: var(--primary);
}

.external-link svg {
  color: var(--primary);
}

.external-link span {
  font-size: 14px;
  color: var(--text);
}

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 32px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .external-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    display: none;
  }

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

  .nav-menu a {
    width: 100%;
    padding: 12px 16px;
    color: white;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
    border: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .social-buttons {
    flex-direction: column;
  }
}

/* =============================================
   SHOP STYLES
   ============================================= */

/* Cart Icon */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.shop-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-cream);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.sale-badge,
.premium-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 1;
}

.sale-badge {
  background: #d32f2f;
  color: white;
}

.premium-badge {
  background: var(--gold);
  color: white;
}

.shop-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-card-content h3 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.shop-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex: 1;
}

.shop-card-price {
  margin-bottom: 12px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  margin-right: 10px;
}

.current-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
}

.shop-card .btn {
  width: 100%;
  padding: 10px;
}

.shop-card .btn.added {
  background: #4caf50;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-notification svg {
  color: #4caf50;
}

.cart-notification span {
  color: var(--text);
  font-size: 14px;
}

.notification-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* Cart Page */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-icon {
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: 0.4;
}

.cart-empty h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 120px 1fr 40px;
  gap: 16px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 120px 1fr 40px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

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

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

.cart-item-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.cart-item-details h3 {
  font-size: 14px;
  color: var(--secondary);
}

.cart-item-price {
  color: var(--text-light);
  font-size: 14px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
}

.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-input {
  width: 44px;
  text-align: center;
  padding: 6px;
  font-size: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.cart-item-total {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--primary);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
}

.cart-item-remove:hover {
  color: #d32f2f;
}

.cart-summary {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14px;
}

.summary-row.summary-total {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--secondary);
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--border-light);
}

.summary-row.summary-total span:last-child {
  color: var(--primary);
  font-size: 20px;
}

.summary-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  margin: 12px 0;
}

.summary-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-checkout {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 10px;
}

.cart-summary .btn-secondary {
  width: 100%;
}

/* Checkout Page */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.checkout-form {
  background: transparent;
  padding: 0;
  border: none;
}

.checkout-section {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.checkout-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.checkout-section .step-number {
  width: 28px;
  height: 28px;
  font-size: 13px;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Shipping Options */
.shipping-options,
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-option,
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.shipping-option input,
.payment-option input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.shipping-option-content,
.payment-option-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.shipping-option input:checked + .shipping-option-content,
.payment-option input:checked + .payment-option-content {
  border-color: var(--primary);
  background: white;
}

.shipping-option-info strong,
.payment-option-content strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 2px;
}

.shipping-option-info span,
.payment-option-content span {
  font-size: 13px;
  color: var(--text-muted);
}

.shipping-price {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--primary);
}

.payment-option-content {
  gap: 12px;
}

.payment-option-content svg {
  color: var(--primary);
  flex-shrink: 0;
}

.payment-option-content div {
  flex: 1;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.checkbox-label span {
  font-size: 14px;
  color: var(--text-light);
}

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

.btn-place-order {
  width: 100%;
  padding: 14px;
  gap: 8px;
}

/* Checkout Summary */
.checkout-summary {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.checkout-items {
  margin-bottom: 16px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-name {
  color: var(--text-light);
  font-size: 14px;
}

.checkout-item-price {
  font-size: 14px;
  color: var(--text);
}

.summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.checkout-trust {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--primary);
}

/* Order Success Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 440px;
  text-align: center;
}

.success-icon {
  color: #4caf50;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.order-number {
  background: var(--bg-light);
  padding: 12px;
  border-radius: var(--radius);
  margin: 20px 0;
}

.order-number strong {
  color: var(--primary);
  font-family: monospace;
  font-size: 15px;
}

/* Shop Responsive */
@media (max-width: 1024px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
  }

  .cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
  }

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

  .category-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 13px;
  }

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

  .cart-notification {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
}
