/* ======= GENERAL STYLES ======= */
:root {
  --primary-color: #00c2cb; /* Turquoise */
  --secondary-color: #ffdb58; /* Yellow */
  --dark-color: #333333; /* Charcoal gray */
  --light-color: #ffffff; /* White */
  --gray-color: #f5f5f5;
  --border-color: #e1e1e1;
  --text-color: #333333;
  --text-light-color: #666666;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* ======= BUTTONS ======= */
.btn-primary,
.btn-secondary,
.btn-view {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #00a8b0;
  color: var(--light-color);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #ffd12e;
  transform: translateY(-2px);
}

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

.btn-view:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-cookie {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 0.25rem;
}

/* ======= HEADER & NAVIGATION ======= */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

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

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

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

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

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

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

.cart-icon svg {
  margin-right: 4px;
}

#cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  position: absolute;
  top: -8px;
  right: -8px;
  font-weight: bold;
}

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

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

/* ======= HERO SECTION ======= */
.hero {
  background-image: linear-gradient(135deg, rgba(0, 194, 203, 0.9), rgba(0, 130, 135, 0.8)), url('https://via.placeholder.com/1920x1080');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  padding: 6rem 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ======= BENEFITS SECTION ======= */
.benefits {
  padding: 5rem 0;
  background-color: var(--gray-color);
}

.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-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 194, 203, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

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

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

.stat {
  padding: 1rem;
}

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

.cta-banner {
  background: linear-gradient(90deg, var(--primary-color), #008489);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  color: var(--light-color);
}

.cta-banner h3 {
  color: var(--light-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* ======= ABOUT PRODUCTS SECTION ======= */
.about-products {
  padding: 5rem 0;
}

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

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

.about-content h3 {
  margin-top: 2rem;
}

.about-content ul {
  margin-bottom: 1.5rem;
}

.about-content li {
  margin-bottom: 0.5rem;
}

/* ======= POLL SECTION ======= */
.poll-section {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

.poll-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.poll-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.poll-container h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.poll-option {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.poll-option input {
  margin-right: 0.75rem;
}

.poll-option label {
  cursor: pointer;
}

#poll-form button {
  margin-top: 1.5rem;
  width: 100%;
}

#poll-results {
  text-align: center;
  padding: 1rem;
}

/* ======= PRODUCTS SECTION ======= */
.products {
  padding: 5rem 0;
}

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

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

.product-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.product-image {
  overflow: hidden;
  position: relative;
  padding-top: 75%; /* 4:3 aspect ratio */
}

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

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

.product-details {
  padding: 1.5rem;
}

.product-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.product-details h3 a {
  color: var(--dark-color);
}

.product-details h3 a:hover {
  color: var(--primary-color);
}

.price {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.description {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-light-color);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-add-to-cart {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  flex-grow: 1;
}

.btn-add-to-cart:hover {
  background-color: #00a8b0;
}

.product-actions .btn-view {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* ======= NEWSLETTER SECTION ======= */
.newsletter {
  padding: 5rem 0;
  background-color: var(--gray-color);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
}

#newsletter-form {
  display: flex;
  margin-bottom: 1rem;
}

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

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
}

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

#newsletter-form input {
  flex-grow: 1;
  margin-right: 0.5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ======= FOOTER ======= */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column a {
  color: var(--light-color);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

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

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

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  opacity: 0.7;
  font-size: 0.875rem;
}

/* ======= COOKIE NOTICE ======= */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

#customize-cookies {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

#decline-cookies {
  background-color: transparent;
  color: white;
  border: none;
}

.cookie-more-info {
  font-size: 0.75rem;
  opacity: 0.7;
}

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

/* ======= CART NOTIFICATION ======= */
.cart-notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  z-index: 1000;
  transform: translateX(150%);
  transition: transform 0.3s ease-out;
  max-width: 300px;
}

.cart-notification.show {
  transform: translateX(0);
}

.cart-notification-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-notification svg {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cart-notification p {
  margin-bottom: 1rem;
  text-align: center;
}

.view-cart {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.close-notification {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-light-color);
}

/* ======= PRODUCT DETAIL PAGE ======= */
.product-detail {
  padding: 4rem 0;
}

.breadcrumb {
  margin-bottom: 2rem;
  color: var(--text-light-color);
}

.breadcrumb a {
  color: var(--text-color);
}

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

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

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

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

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

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stars {
  color: #FFD700;
  margin-right: 0.75rem;
}

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

.product-availability {
  color: var(--success-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

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

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

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  width: fit-content;
}

.quantity-decrease, .quantity-increase {
  background-color: var(--gray-color);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.25rem;
}

.quantity-controls input {
  width: 60px;
  text-align: center;
  border: none;
  padding: 0.5rem;
  font-size: 1rem;
}

#product-add-to-cart {
  margin-right: 1rem;
}

/* Tabs */
.product-tabs {
  margin-bottom: 4rem;
}

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

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

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

.tab-panel {
  display: none;
}

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

.feature-list li {
  margin-bottom: 0.75rem;
}

/* Reviews */
.review-summary {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

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

.total-reviews {
  color: var(--text-light-color);
}

.review-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

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

.review-author {
  font-weight: 500;
  margin-right: 1rem;
}

.review-rating {
  color: #FFD700;
  margin-right: 1rem;
}

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

/* Related Products */
.related-products {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

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

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

/* ======= ABOUT PAGE ======= */
.page-header {
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.about-intro {
  padding: 4rem 0;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

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

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

.team-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: 2rem;
}

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

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

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

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

.values-section {
  padding: 4rem 0;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
}

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

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

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

.testimonials-slider {
  margin-top: 3rem;
  overflow: hidden;
}

.testimonial {
  margin: 0 1rem;
}

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

.testimonial-content:before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(0,0,0,0.1);
  line-height: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), #008489);
  color: var(--light-color);
  text-align: center;
}

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

.cta-content h2 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ======= CONTACT PAGE ======= */
.contact-section {
  padding: 4rem 0;
}

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

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

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  margin-bottom: 2rem;
}

.method-icon {
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.method-details h3 {
  margin-bottom: 0.5rem;
}

.method-note {
  font-size: 0.875rem;
  color: var(--text-light-color);
  margin-top: 0.5rem;
}

.social-links a {
  margin-right: 1rem;
}

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

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

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

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

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

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

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

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq-toggle {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.map-section {
  padding: 4rem 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-placeholder {
  height: 400px;
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light-color);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: var(--light-color);
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

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

/* ======= CART PAGE ======= */
.cart-section {
  padding: 4rem 0;
}

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

.empty-cart-icon {
  color: var(--primary-color);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.cart-empty h2 {
  margin-bottom: 1rem;
}

.cart-empty p {
  margin-bottom: 2rem;
  color: var(--text-light-color);
}

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

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

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

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

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

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

.cart-product-name a {
  color: var(--dark-color);
  font-weight: 500;
}

.cart-product-name a:hover {
  color: var(--primary-color);
}

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

.cart-quantity-input {
  width: 60px;
  text-align: center;
  margin: 0 0.5rem;
}

.product-remove button {
  background: none;
  border: none;
  color: var(--text-light-color);
  cursor: pointer;
}

.product-remove button:hover {
  color: var(--error-color);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.coupon-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coupon-section input {
  max-width: 250px;
}

.cart-summary {
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.cart-summary h2 {
  margin-bottom: 1.5rem;
}

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

.total-row {
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: none;
}

#proceed-checkout {
  margin-top: 2rem;
  width: 100%;
}

.recommended-products {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

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

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

.shipping-info {
  padding: 4rem 0;
}

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

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

.shipping-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.shipping-item h3 {
  margin-bottom: 1rem;
}

/* ======= CHECKOUT PAGE ======= */
.checkout-section {
  padding: 4rem 0;
}

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

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

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

.required {
  color: var(--error-color);
}

.order-summary {
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}

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

.order-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

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

.order-product-name {
  margin-right: 0.5rem;
}

.order-product-quantity {
  color: var(--text-light-color);
}

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

.order-total {
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--border-color);
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-color);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.secure-checkout svg {
  margin-right: 0.5rem;
}

.customer-support {
  padding: 4rem 0;
  background-color: var(--gray-color);
  text-align: center;
}

.customer-support p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.support-option {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

.support-option h3 {
  margin-bottom: 0.75rem;
}

.support-hours {
  font-size: 0.875rem;
  color: var(--text-light-color);
  margin-top: 0.5rem;
}

/* ======= SUCCESS PAGE ======= */
.success-section {
  padding: 6rem 0;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.order-info {
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.next-steps {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

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

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

.step-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
}

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

.step-content h3 {
  margin-bottom: 0.75rem;
}

.support-section {
  padding: 4rem 0;
  text-align: center;
}

.support-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.support-method {
  text-align: center;
}

.support-method .support-icon {
  margin-bottom: 1rem;
}

.newsletter-section {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  margin: 2rem 0;
  display: flex;
}

.newsletter-disclaimer {
  font-size: 0.875rem;
  color: var(--text-light-color);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 4rem 0;
  }

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

  .benefits, .products, .newsletter, .about-intro, .team-section, .values-section, 
  .testimonials-section, .contact-section, .faq-section, .cart-section, .checkout-section,
  .success-section, .next-steps {
    padding: 3rem 0;
  }

  .product-detail-content {
    gap: 2rem;
  }

  .related-products-grid, .products-grid, .recommended-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cta-banner {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  nav {
    width: 100%;
    margin-top: 1rem;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0.75rem 0;
  }

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

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

  .contact-methods {
    gap: 2rem;
  }

  .cart-header, .cart-item {
    grid-template-columns: 3fr 1fr 1fr;
  }

  .product-subtotal, .product-remove {
    display: none;
  }

  .cart-item .product-subtotal, .cart-item .product-remove {
    display: block;
    grid-column: span 2;
    text-align: right;
    padding-top: 1rem;
  }

  #newsletter-form, .newsletter-form {
    flex-direction: column;
  }

  #newsletter-form input, .newsletter-form input {
    margin-right: 0;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
  }

  #newsletter-form button, .newsletter-form button {
    border-radius: var(--border-radius);
  }
}

@media (max-width: 576px) {
  .stats-container, .support-contact {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .method-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cart-header, .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-column {
    padding: 0.5rem 0;
  }

  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .cart-product-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cart-actions {
    flex-direction: column;
  }

  .coupon-section {
    width: 100%;
  }

  .order-header, .order-item {
    flex-direction: column;
  }

  .order-product-price {
    margin-top: 0.5rem;
    text-align: right;
  }

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