/* Base styles */
:root {
  --primary-color: #FF5E14;
  --primary-dark: #E54500;
  --secondary-color: #1E2A3B;
  --accent-color: #FFBC00;
  --light-color: #F7F7F7;
  --dark-color: #2D2D2D;
  --text-color: #333333;
  --border-color: #E0E0E0;
  --success-color: #28A745;
  --danger-color: #DC3545;
  --gray-light: #F5F5F5;
  --gray-medium: #E0E0E0;
  --gray-dark: #8A8A8A;
  
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 16px;
  
  --container-width: 1200px;
  --container-padding: 1.5rem;
  --section-spacing: 5rem;
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

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

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

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

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

.btn-outline:hover {
  border-color: var(--gray-dark);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.hidden {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header styles */
header {
  background-color: white;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

#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.75rem;
  font-weight: bold;
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  text-align: center;
  margin-bottom: var(--section-spacing);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits section */
.benefits {
  padding: 5rem 0;
  background-color: white;
  margin-bottom: var(--section-spacing);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  background-color: white;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 4rem 0;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.benefits .btn-secondary {
  margin: 0 auto;
  display: block;
  max-width: 200px;
}

/* About products section */
.about-products {
  padding: 5rem 0;
  background-color: var(--gray-light);
  margin-bottom: var(--section-spacing);
}

.about-products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.about-content p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quality-guarantees {
  background-color: white;
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  max-width: 800px;
  margin: 3rem auto;
  box-shadow: var(--shadow-small);
}

.quality-guarantees h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quality-guarantees ul {
  list-style-position: inside;
  columns: 2;
}

.quality-guarantees li {
  margin-bottom: 0.75rem;
}

/* Products section */
.products {
  padding: 5rem 0;
  background-color: white;
  margin-bottom: var(--section-spacing);
}

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

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

.product-card {
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.25rem;
  margin: 1rem 1rem 0.5rem;
}

.product-card .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0 1rem 0.75rem;
}

.product-card p {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin: 0 1rem 1.5rem;
  min-height: 60px;
}

.product-actions {
  display: flex;
  padding: 0 1rem 1.5rem;
  gap: 0.5rem;
}

.product-actions .btn {
  flex: 1;
}

/* Testimonials section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--gray-light);
  margin-bottom: var(--section-spacing);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.testimonial-content:before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--gray-medium);
  opacity: 0.5;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

/* Footer styles */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0 2rem;
}

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

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

.footer-links h4, .footer-contact h4 {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: white;
  box-shadow: var(--shadow-large);
  border-radius: var(--border-radius-medium);
  z-index: 9999;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-more {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* Notification */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.notification.active {
  transform: translateX(0);
}

.notification p {
  margin-bottom: 0;
}

/* Product detail page */
.product-detail {
  padding: 5rem 0;
  background-color: white;
}

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

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

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

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

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

.product-details ul {
  list-style-position: inside;
}

.product-details li {
  margin-bottom: 0.5rem;
}

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

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

.quantity-controls {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-light);
  border: 1px solid var(--gray-medium);
  font-size: 1.25rem;
  cursor: pointer;
}

.quantity-btn:first-child {
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.quantity-btn:last-child {
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.quantity-controls input {
  width: 60px;
  height: 36px;
  border: 1px solid var(--gray-medium);
  text-align: center;
  font-size: 1rem;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-buttons .btn {
  flex: 1;
}

.related-products {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

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

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

/* About page */
.page-banner {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 5rem;
}

.page-banner h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.about-story {
  padding-bottom: 5rem;
}

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

.values-list {
  margin-top: 3rem;
}

.values-list li {
  margin-bottom: 2rem;
}

.values-list li strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.about-image {
  position: sticky;
  top: 100px;
}

.about-image img {
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.image-caption {
  font-style: italic;
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.team-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

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

.team-member:hover {
  transform: translateY(-10px);
}

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

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

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

.team-member p:nth-child(3) {
  font-weight: 600;
  color: var(--primary-color);
}

.team-member .social-icons {
  margin: 0.5rem 1.5rem 1.5rem;
}

.achievements {
  padding: 5rem 0;
  background-color: white;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.achievement {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  background-color: var(--gray-light);
  transition: transform 0.3s ease;
}

.achievement:hover {
  transform: translateY(-5px);
}

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

.achievement h3 {
  margin-bottom: 0.75rem;
}

.achievement p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.cta {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta .btn {
  margin-top: 2rem;
  background-color: white;
  color: var(--primary-color);
}

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

/* Contact page */
.contact-section {
  padding: 5rem 0;
}

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

.contact-info h2 {
  margin-bottom: 1.5rem;
}

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

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-right: 1.5rem;
}

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

.text-muted {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

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

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

.contact-form h2 {
  margin-bottom: 2rem;
}

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

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

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

.form-group input, 
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius-small);
  font-family: var(--font-main);
  font-size: 1rem;
}

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

.full-width {
  grid-column: 1 / -1;
}

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

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--gray-dark);
}

.business-hours {
  padding: 5rem 0;
  background-color: white;
}

.business-hours h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.hours-item {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
}

.hours-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hours-item p {
  margin-bottom: 0;
  font-weight: 600;
}

/* Cart page */
.cart-section {
  padding: 5rem 0;
  min-height: 50vh;
}

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

.empty-cart-icon {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

.cart-items {
  margin-bottom: 3rem;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-medium);
  font-weight: 600;
}

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

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

.item-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-small);
  margin-right: 1rem;
}

.item-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.item-id {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

.item-quantity .quantity-btn {
  width: 28px;
  height: 28px;
}

.item-quantity span {
  width: 36px;
  text-align: center;
  font-weight: 600;
}

.item-remove button {
  background: transparent;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.item-remove button:hover {
  transform: scale(1.15);
}

.cart-summary {
  background-color: white;
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  max-width: 500px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1.5rem;
}

.cart-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cart-actions .btn {
  flex: 1;
}

.you-might-like {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.you-might-like h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Checkout page */
.checkout-section {
  padding: 5rem 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

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

.checkout-form-container h2 {
  margin-bottom: 2rem;
}

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

.order-summary h2 {
  margin-bottom: 2rem;
}

.order-items {
  margin-bottom: 2rem;
}

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

.item-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.item-info p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.item-total {
  font-weight: 700;
  align-self: center;
}

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

.back-to-cart {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.back-to-cart a {
  color: var(--gray-dark);
  transition: color 0.3s ease;
}

.back-to-cart a:hover {
  color: var(--primary-color);
}

/* 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-large);
  box-shadow: var(--shadow-medium);
}

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

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

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

.estimated-delivery {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
  margin-bottom: 2.5rem;
}

.estimated-delivery h3 {
  margin-bottom: 0.5rem;
}

.delivery-note {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-top: 0.5rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-link {
  margin-top: 1rem;
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.recommendations {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.recommendations h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .product-detail-container,
  .about-grid,
  .contact-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .quality-guarantees ul {
    columns: 1;
  }
  
  .cart-header {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-medium);
  }
  
  .item-product {
    margin-bottom: 1rem;
  }
  
  .item-price, .item-quantity, .item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .item-price::before {
    content: "Price:";
    font-weight: normal;
  }
  
  .item-quantity::before {
    content: "Quantity:";
    font-weight: normal;
  }
  
  .item-total::before {
    content: "Total:";
    font-weight: normal;
  }
  
  .item-remove {
    text-align: right;
    margin-top: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  header .container {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-between;
  }
  
  nav ul li {
    margin: 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .benefits, .products, .about-story, .team-section, .contact-section, .cart-section, .checkout-section {
    padding: 3rem 0;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .success-content {
    padding: 2rem 1.5rem;
  }
}
