/* ====================================================
   pimanwealucjy Flowers - Premium Florist Design
   Google Ads Compliant - Azerbaijani Flower Shop
   ==================================================== */

/* Root Variables */
:root {
  --primary-color: #FFB6C1;
  --secondary-color: #D4AF37;
  --accent-color: #FFF0F5;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --pastel-pink: #FFB6C1;
  --light-pink: #FFF0F5;
  --green: #228B22;
  --border-color: #E8E8E8;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-top {
  background: var(--light-pink);
  padding: 10px 0;
  font-size: 0.9rem;
}

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

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info a {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.header-main {
  padding: 20px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2rem;
  display: block;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: #C5A028;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* Section */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--light-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.product-availability {
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 15px;
  font-weight: 500;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Features */
.features {
  background: var(--light-pink);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-box {
  background: var(--light-pink);
  padding: 40px;
  border-radius: 15px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item p {
  margin-bottom: 5px;
  color: var(--text-light);
}

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

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

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 30px;
  text-align: center;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p {
  color: #CCCCCC;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: #CCCCCC;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #CCCCCC;
  font-size: 0.9rem;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-image {
  width: 100%;
  height: 400px;
  background: var(--light-pink);
  border-radius: 15px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Decoration Page */
.decoration-hero {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
  padding: 100px 0;
  text-align: center;
}

.decoration-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.decoration-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.decoration-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.decoration-image {
  width: 100%;
  height: 250px;
  background: var(--light-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-content {
  padding: 30px;
}

.decoration-content h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.decoration-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.price-info {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.active {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
  }

  .header-top .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .contact-grid,
  .about-content {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .section {
    padding: 50px 0;
  }

  /* Cart Mobile */
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

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

  .checkout-summary {
    position: static;
  }

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

  .btn-cart-group {
    flex-direction: column;
  }

  .btn-cart-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 40px 0;
  }
}

/* ============================================
   TABLET LANDSCAPE (1024px - 768px)
   ============================================ */

@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .product-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    gap: 30px;
  }
}

/* ============================================
   MOBILE LANDSCAPE (768px - 480px)
   ============================================ */

@media (max-width: 768px) and (min-width: 481px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
  /* Logo Size */
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  /* Hero Buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 15px 20px;
  }
  
  /* Hero Features */
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-feature {
    padding: 15px;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Forms */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Contact Page */
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .contact-info-item .icon {
    margin-bottom: 10px;
  }
  
  /* Bouquet Gallery */
  .bouquet-gallery {
    grid-template-columns: 1fr;
  }
  
  /* About Page */
  .about-features {
    grid-template-columns: 1fr;
  }
  
  /* Order Summary */
  .order-summary-items {
    max-height: 300px;
  }
  
  /* Table Responsive */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  /* Service Cards */
  .service-card {
    padding: 25px;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  /* Product Cards */
  .product-card {
    padding: 15px;
  }
  
  .product-image {
    height: 250px;
  }
  
  /* Advantages Grid */
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 25px;
  }
}

/* ============================================
   EXTRA SMALL MOBILE (max-width: 375px)
   ============================================ */

@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero-feature {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  .feature-icon {
    font-size: 1.2rem;
  }
  
  .product-card {
    padding: 12px;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .section-title h2 {
    font-size: 1.4rem;
  }
}

/* ============================================
   ORIENTATION: LANDSCAPE
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 40px 0;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .hero-feature {
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
  /* Increase tap targets */
  .btn,
  .main-nav a,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Remove hover effects on touch devices */
  .product-card:hover,
  .service-card:hover {
    transform: none;
  }
  
  /* Keep box-shadow but remove transform */
  .btn:hover {
    transform: none;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .site-header,
  .menu-toggle,
  .hero-buttons,
  .footer,
  #cookie-consent-banner {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
  }
  
  .product-card,
  .service-card {
    break-inside: avoid;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

/* Cart Styles */
.cart-icon-wrapper {
  position: relative;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.cart-icon {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.cart-icon:hover {
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.cart-count.hidden {
  display: none;
}

/* Cart Page */
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.cart-items {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

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

.cart-item-image {
  width: 100px;
  height: 100px;
  background: var(--light-pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cart-item-details h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.cart-item-price {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 5px;
}

.quantity-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.quantity-btn:hover {
  color: var(--gold);
}

.quantity-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 5px 10px;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}

.remove-item:hover {
  opacity: 0.7;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-summary {
  background: var(--light-pink);
  border-radius: 15px;
  padding: 30px;
}

.cart-summary h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.summary-row:last-child {
  border-bottom: none;
  padding-top: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.summary-label {
  color: var(--text-light);
}

.summary-value {
  font-weight: 600;
  color: var(--text-dark);
}

.summary-total {
  color: var(--gold);
}

/* Checkout Page */
.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

.checkout-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.checkout-form h2 {
  margin-bottom: 30px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.2rem;
}

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

.checkout-summary {
  background: var(--light-pink);
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.item-name {
  font-weight: 500;
}

.item-quantity {
  color: var(--text-light);
  font-size: 0.9rem;
}

.item-price {
  font-weight: 600;
  color: var(--gold);
}

/* Button Add to Cart */
.btn-add-cart {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-add-cart:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-cart-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Success Message */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* 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-width: 0;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none;
  }
}

/* ===========================
   GOOGLE MAPS
   =========================== */

.map-container {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Map info overlay */
.map-info-card {
  background: white;
  padding: 25px;
  margin: -80px auto 0;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  text-align: center;
}

.map-info-card h3 {
  margin: 0 0 15px 0;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.map-info-card p {
  margin: 8px 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.map-info-card .map-directions-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-info-card .map-directions-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
  
  .map-info-card {
    margin: -60px 15px 0;
    padding: 20px;
  }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

#cookie-consent-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  z-index: 10000;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--gold);
}

#cookie-consent-banner.show {
  bottom: 0;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.cookie-consent-text h3::before {
  content: "🍪";
  font-size: 1.5rem;
}

.cookie-consent-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
  color: var(--primary-color);
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons button {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  white-space: nowrap;
}

#cookie-accept-all {
  background: linear-gradient(135deg, var(--gold) 0%, #C4941F 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#cookie-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

#cookie-reject-all {
  background: #F5F5F5;
  color: var(--text-dark);
  border: 2px solid #E0E0E0;
}

#cookie-reject-all:hover {
  background: #EBEBEB;
  border-color: #D0D0D0;
}

#cookie-settings {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

#cookie-settings:hover {
  background: var(--gold);
  color: white;
}

/* Cookie Notification (after accept/reject) */
.cookie-notification {
  position: fixed;
  top: 100px;
  right: -400px;
  background: linear-gradient(135deg, var(--green) 0%, #1a6b1a 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-notification::before {
  content: "✓";
  font-size: 1.5rem;
  font-weight: bold;
}

.cookie-notification.show {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 20px 15px;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-consent-text {
    min-width: 100%;
  }

  .cookie-consent-text h3 {
    font-size: 1.1rem;
  }

  .cookie-consent-text p {
    font-size: 0.9rem;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-buttons button {
    width: 100%;
    padding: 14px 20px;
  }

  .cookie-notification {
    right: -300px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .cookie-notification.show {
    right: auto;
  }
}

