/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #2a9d8f;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --background-color: #fff;
  --background-alt: #f8f9fa;
  --border-color: #ddd;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --spacing: 1rem;
  --spacing-sm: 0.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Lora', serif;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: var(--spacing);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing);
}

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

a:hover {
  color: color-mix(in srgb, var(--primary-color) 70%, black);
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

section {
  padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary-color) 80%, black);
  color: white;
}

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

.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 80%, black);
  color: white;
}

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

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

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

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

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

.cart-link {
  display: flex;
  align-items: center;
  position: relative;
}

.cart-icon {
  margin-right: 5px;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Advantages Section */
.advantages {
  background-color: var(--background-alt);
  text-align: center;
}

.advantages h2 {
  margin-bottom: 2rem;
}

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

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.advantage-card h3 {
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cta {
  margin-top: 2rem;
}

/* About Products Section */
.about-products {
  background-color: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h3 {
  margin-top: 2rem;
  color: var(--primary-color);
}

/* Products Section */
.products {
  text-align: center;
}

.products h2 {
  margin-bottom: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-link {
  display: block;
  height: 100%;
  color: var(--text-color);
  text-decoration: none;
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.5rem;
  text-align: left;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.btn-add-to-cart, .btn-view {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.9rem;
  flex: 1;
}

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

.btn-add-to-cart:hover {
  background-color: color-mix(in srgb, var(--primary-color) 80%, black);
}

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

.btn-view:hover {
  background-color: rgba(230, 57, 70, 0.1);
}

/* Customer Letter Section */
.customer-letter {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

.letter-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.letter-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.letter-header {
  margin-bottom: 2rem;
}

.letter-date {
  color: var(--text-lighter);
  margin-bottom: 0.5rem;
}

.letter-greeting {
  font-weight: 600;
  font-size: 1.2rem;
}

.letter-body p {
  margin-bottom: 1rem;
}

.letter-signature {
  margin-top: 2rem;
  text-align: right;
}

.signature {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

/* Pizza Comparison Section */
.pizza-comparison {
  padding: 5rem 0;
}

.table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.comparison-table th, .comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--background-alt);
}

.comparison-table tr:hover {
  background-color: rgba(230, 57, 70, 0.05);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ddd;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 0.8rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.btn-cookie-accept, .btn-cookie-customize, .btn-cookie-decline {
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-cookie-customize {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-cookie-decline {
  background-color: transparent;
  color: #aaa;
}

.cookie-more-info {
  font-size: 0.9rem;
  color: #aaa;
}

.cookie-more-info a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Product Detail Page */
.breadcrumbs {
  background-color: var(--background-alt);
  padding: 1rem 0;
}

.breadcrumbs ul {
  display: flex;
  list-style: none;
}

.breadcrumbs li {
  font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--text-lighter);
}

.product-detail {
  padding: 3rem 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-info h1 {
  margin-bottom: 1rem;
}

.product-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
}

.stars {
  color: #ffc107;
  margin-right: 0.5rem;
}

.review-count {
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.product-sku {
  color: var(--text-lighter);
  font-size: 0.9rem;
}

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

.product-description {
  margin-bottom: 2rem;
}

.product-options {
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.option-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  font-size: 1rem;
}

.product-quantity {
  margin-bottom: 2rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: var(--background-alt);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn.minus {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

#quantity {
  width: 60px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-buy-now {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  flex: 1;
}

.btn-buy-now:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 80%, black);
}

.product-meta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.meta-item svg {
  margin-right: 0.8rem;
  color: var(--primary-color);
}

/* Product Tabs */
.product-details-tabs {
  background-color: var(--background-alt);
  padding: 3rem 0;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 2rem;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.ingredients-list {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.ingredients-list li {
  margin-bottom: 0.5rem;
}

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

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.nutrition-table th, .nutrition-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

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

.review-summary {
  margin-bottom: 2rem;
}

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

.large-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rating-stars {
  color: #ffc107;
  margin: 0.5rem 0;
}

.customer-reviews .review {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.reviewer-name {
  font-weight: 600;
}

.review-rating {
  color: #ffc107;
}

.review-date {
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* Related Products Section */
.related-products {
  padding: 3rem 0;
}

.related-products h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

/* About Page */
.page-header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.about-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5');
  background-size: cover;
  background-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-item {
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

.our-process {
  background-color: var(--background-alt);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

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

.section-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background-alt);
  color: var(--text-color);
  transition: var(--transition);
}

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

.testimonials-section {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  text-align: right;
}

.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591');
  background-size: cover;
  background-position: center;
  color: white;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page */
.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1604382354936-07c5d9983bd3');
  background-size: cover;
  background-position: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  color: var(--primary-color);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
}

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

.social-contact {
  margin-top: 3rem;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}

.form-checkbox label {
  font-weight: normal;
}

.faq-section {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

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

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.map-section {
  padding: 5rem 0;
  text-align: center;
}

.map-placeholder {
  height: 400px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 400px;
}

.map-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Cart Page */
.cart-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591');
  background-size: cover;
  background-position: center;
}

.empty-cart-message {
  text-align: center;
  padding: 4rem 0;
}

.empty-cart-icon {
  color: var(--text-lighter);
  margin-bottom: 1.5rem;
}

.cart-items-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.cart-headers {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  padding: 1rem;
  background-color: var(--background-alt);
  font-weight: 600;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.cart-product {
  display: flex;
  align-items: center;
}

.cart-product-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-right: 1.5rem;
}

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

.cart-product-name {
  font-weight: 600;
}

.cart-price, .cart-total {
  font-weight: 600;
}

.cart-quantity {
  display: flex;
  align-items: center;
}

.cart-quantity-btn {
  width: 30px;
  height: 30px;
  background-color: var(--background-alt);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-quantity-input {
  width: 40px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  text-align: center;
}

.cart-remove {
  color: var(--text-lighter);
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-actions {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-summary {
  padding: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total {
  font-size: 1.25rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.free-delivery-message, .almost-free-delivery {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.free-delivery-message {
  background-color: rgba(42, 157, 143, 0.1);
  color: var(--secondary-color);
}

.almost-free-delivery {
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--primary-color);
}

.free-delivery-message svg, .almost-free-delivery svg {
  margin-right: 0.8rem;
}

.checkout-button {
  margin-top: 2rem;
}

.popular-items {
  padding: 5rem 0;
}

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

/* Checkout Page */
.checkout-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591');
  background-size: cover;
  background-position: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.checkout-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.order-summary {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item-name {
  font-weight: 600;
}

.checkout-item-price {
  text-align: right;
}

.order-totals {
  margin-top: 2rem;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.order-grand-total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.delivery-estimate {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.delivery-estimate h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.order-security {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  color: var(--text-light);
}

.security-icon {
  margin-right: 1rem;
}

.empty-checkout-message {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-light);
}

/* Success Page */
.success-section {
  padding: 5rem 0;
  text-align: center;
}

.success-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.success-icon {
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.success-message {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.success-details {
  margin-bottom: 2rem;
}

.estimate-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.success-actions {
  margin-top: 3rem;
}

.after-order-suggestions {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

.suggestion-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.suggestion-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.suggestion-card h3 {
  margin-bottom: 1rem;
}

.suggestion-card p {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid, .contact-grid, .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 0;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .cart-headers {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cart-product {
    grid-column: 1 / -1;
  }
  
  .cart-price, .cart-quantity, .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-price::before {
    content: 'Price:';
    font-weight: normal;
  }
  
  .cart-quantity::before {
    content: 'Quantity:';
    font-weight: normal;
  }
  
  .cart-total::before {
    content: 'Total:';
    font-weight: normal;
  }
  
  .cart-remove {
    text-align: right;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-actions a, .form-actions button {
    width: 100%;
  }
}
