:root {
  --primary-color: #ff6b6b;
  --primary-dark: #e85a5a;
  --secondary-color: #4ecdc4;
  --accent-color: #ffd166;
  --dark-color: #2f3542;
  --light-color: #f9f9f9;
  --gray-color: #a4b0be;
  --gray-light: #dfe4ea;
  --gray-dark: #57606f;
  --success-color: #51cf66;
  --error-color: #ff6b6b;
  --warning-color: #ffd166;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  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(--primary-dark);
}

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

ul, ol {
  list-style: none;
}

button, 
input, 
select, 
textarea {
  font-family: var(--font-main);
  font-size: 1rem;
}

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

section {
  padding: 4rem 0;
}

/* Custom Frame for Images */
.custom-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 4px solid var(--primary-color);
}

.custom-frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: calc(var(--border-radius) + 4px);
  opacity: 0.3;
  transition: var(--transition);
}

.custom-frame:hover::before {
  opacity: 0.6;
}

.custom-frame img {
  transition: var(--transition);
  transform: scale(1);
}

.custom-frame:hover img {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  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: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

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

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

.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;
  transform: translateY(-2px);
}

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

.header-top {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  border-radius: 50px;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--gray-light);
  width: 250px;
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 0.3rem;
  flex: 1;
  outline: none;
  font-size: 0.9rem;
}

.search-bar button {
  background: none;
  border: none;
  color: var(--gray-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar button svg {
  width: 20px;
  height: 20px;
  fill: var(--gray-dark);
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.account-link, 
.cart-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark-color);
  font-size: 0.85rem;
}

.account-link svg, 
.cart-link svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-color);
  margin-bottom: 0.2rem;
}

.account-link:hover, 
.cart-link:hover,
.account-link.active, 
.cart-link.active {
  color: var(--primary-color);
}

.account-link:hover svg, 
.cart-link:hover svg,
.account-link.active svg, 
.cart-link.active svg {
  fill: var(--primary-color);
}

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

.main-nav {
  padding: 0.5rem 0;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

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

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

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

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

/* Hero Section */
.hero-banner {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://source.unsplash.com/random/1600x900/?toy');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0,0,0,0.6);
  border-radius: var(--border-radius);
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
  background-color: white;
  text-align: center;
  padding: 5rem 0;
}

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

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

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

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

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

.benefit-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-color);
}

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

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

.stat {
  text-align: center;
}

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

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-dark);
}

.cta-banner {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.cta-banner h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* About Products Section */
.about-products {
  background-color: var(--light-color);
  padding: 5rem 0;
}

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

.product-description, 
.quality-guarantees {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.editor-note {
  background-color: #fff9e6;
  border-left: 5px solid var(--accent-color);
  padding: 2rem;
  margin-bottom: 4rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.editor-note h2 {
  color: var(--dark-color);
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.editor-content {
  position: relative;
  padding-left: 20px;
}

.editor-content::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-color);
  font-family: Georgia, serif;
}

.editor-content p:last-child {
  text-align: right;
  font-style: italic;
  margin-top: 1.5rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: white;
}

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

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

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

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

.product-image {
  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;
}

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

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

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

.product-description {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

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

.btn-add-to-cart,
.btn-buy-now {
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-add-to-cart {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  flex: 1;
}

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

.btn-buy-now {
  background-color: var(--primary-color);
  color: white;
  flex: 1;
}

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

/* Newsletter Section */
.newsletter {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

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

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0 1.5rem;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col p {
  color: var(--gray-light);
  margin-bottom: 0.8rem;
}

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

.footer-col ul li a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

address p {
  margin-bottom: 0.5rem;
}

address a {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.social-links a svg {
  fill: white;
  width: 20px;
  height: 20px;
}

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

.copyright {
  color: var(--gray-color);
  text-align: center;
  font-size: 0.9rem;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1001;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s ease;
}

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

/* Cookies Consent */
.cookies-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1002;
  padding: 1.5rem;
  display: none;
}

.cookies-consent h4 {
  margin-bottom: 0.5rem;
}

.cookies-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cookies-buttons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.cookies-buttons button {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  border: none;
}

.btn-customize, .btn-decline {
  background-color: white;
  border: 1px solid var(--gray-color);
  color: var(--dark-color);
}

.btn-accept:hover {
  background-color: #40b057;
}

.btn-customize:hover, .btn-decline:hover {
  background-color: var(--gray-light);
}

.cookies-policy {
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Product Detail Page */
.product-detail {
  padding: 4rem 0;
}

.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.breadcrumbs a {
  color: var(--gray-dark);
  text-decoration: none;
}

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

.product-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-gallery {
  position: relative;
}

.main-image {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.product-info h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.product-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.product-stock {
  font-weight: 600;
}

.in-stock {
  color: var(--success-color);
}

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

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

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

.product-features h3 {
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

.quantity-selector {
  display: flex;
  align-items: center;
  max-width: 140px;
}

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

.quantity-selector input {
  width: 60px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--gray-light);
  border-left: none;
  border-right: none;
}

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

.product-actions .btn-add-to-cart,
.product-actions .btn-buy-now {
  padding: 1rem 1.5rem;
  flex: 1;
  font-size: 1rem;
}

.product-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shipping-info,
.guarantee-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.shipping-info svg,
.guarantee-info svg {
  fill: var(--secondary-color);
}

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

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

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

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.tab-content {
  display: none;
}

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

.tab-content h2 {
  margin-bottom: 1.5rem;
}

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

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

.specs-table th {
  font-weight: 600;
  width: 40%;
  background-color: var(--light-color);
}

.note {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-style: italic;
}

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

.shipping-option {
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.shipping-option h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.shipping-option p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.shipping-notes {
  font-size: 0.9rem;
  color: var(--gray-dark);
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: var(--border-radius);
}

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

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

/* About Page */
.about-hero {
  padding: 5rem 0;
}

.about-hero h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.mission {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.mission h2 {
  margin-bottom: 1.5rem;
}

.mission p {
  font-size: 1.2rem;
}

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

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

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

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

.value-icon {
  margin-bottom: 1.5rem;
}

.value-icon svg {
  fill: var(--primary-color);
}

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

.team-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

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

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.team-member h3 {
  margin-bottom: 0.3rem;
}

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

.team-member p:nth-of-type(2) {
  margin-bottom: 1.5rem;
}

.team-member .social-links {
  justify-content: center;
}

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

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

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

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 5rem;
  color: var(--gray-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
}

.cta-content .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.cta-content .newsletter-form button {
  background-color: var(--dark-color);
}

.cta-content .newsletter-form button:hover {
  background-color: black;
}

/* Contact Page */
.contact-hero {
  text-align: center;
  padding: 5rem 0 3rem;
}

.contact-hero h1 {
  margin-bottom: 1.5rem;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-content {
  padding: 3rem 0 5rem;
}

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

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

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

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

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-icon svg {
  fill: var(--primary-color);
}

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

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.contact-form-wrapper > p {
  margin-bottom: 2rem;
}

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

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

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

.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 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-wrapper input {
  width: auto;
  margin-top: 0.3rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.form-success svg {
  fill: var(--success-color);
}

.form-success h3 {
  color: var(--success-color);
}

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

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active h3::after {
  content: '-';
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-light);
}

/* Cart Page */
.cart-section {
  padding: 4rem 0;
}

.cart-section h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cart-empty svg {
  fill: var(--gray-color);
}

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

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

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

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

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

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

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

.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

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

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

.cart-quantity-selector {
  display: flex;
  align-items: center;
  max-width: 120px;
}

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

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

.cart-remove button {
  background: none;
  border: none;
  color: var(--error-color);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.cart-remove button:hover {
  transform: scale(1.2);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

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

.cart-coupon input {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  width: 200px;
}

.cart-summary {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 400px;
  margin-left: auto;
}

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

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

.summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: none;
  padding-top: 1.5rem;
}

.btn-checkout {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
}

.shopping-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.guarantee-icon {
  margin-bottom: 1rem;
}

.guarantee-icon svg {
  fill: var(--secondary-color);
}

.guarantee-item h3 {
  margin-bottom: 0.5rem;
}

.recently-viewed h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Checkout Page */
.checkout-section {
  padding: 4rem 0;
}

.checkout-header {
  text-align: center;
  margin-bottom: 3rem;
}

.checkout-header h1 {
  margin-bottom: 2rem;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-light);
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

.progress-step.active .step-number {
  background-color: var(--primary-color);
  color: white;
}

.progress-step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.progress-step.complete .step-number {
  background-color: var(--success-color);
  color: white;
}

.progress-line {
  flex: 1;
  height: 2px;
  background-color: var(--gray-light);
  margin: 0 0.5rem;
}

.checkout-empty {
  text-align: center;
  padding: 4rem;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.checkout-empty svg {
  fill: var(--gray-color);
}

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

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

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

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

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

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

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

.checkout-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.item-image {
  position: relative;
}

.item-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.item-quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.item-info {
  flex: 1;
}

.item-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

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

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

.have-coupon {
  margin-bottom: 2rem;
}

.btn-toggle-coupon {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.coupon-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.coupon-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
}

.btn-apply-coupon {
  padding: 0.8rem 1.5rem;
  background-color: var(--dark-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
}

.secure-checkout {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.secure-icon svg {
  fill: var(--success-color);
}

.secure-text h4 {
  margin-bottom: 0.3rem;
}

.secure-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--gray-dark);
}

.return-to-cart {
  text-align: center;
}

.return-to-cart a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.return-to-cart svg {
  fill: currentColor;
}

.btn-place-order {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.terms-checkbox {
  margin-top: 1.5rem;
}

.notes-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

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

.success-icon svg {
  fill: var(--success-color);
}

.success-content h1 {
  margin-bottom: 1rem;
  color: var(--success-color);
}

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

.order-confirmation {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

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

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

.next-steps ol {
  list-style: none;
  counter-reset: steps;
}

.next-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--light-color);
  border-radius: 50%;
}

.step-icon svg {
  fill: var(--primary-color);
}

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

.step-content p {
  margin-bottom: 0;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr auto;
  }
  
  .price-col {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .header-top .container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .header-actions {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-bar {
    width: 100%;
  }
  
  .user-actions {
    width: 100%;
    justify-content: space-around;
  }
  
  .main-nav ul {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 1fr auto;
  }
  
  .quantity-col, .total-col {
    display: none;
  }
  
  .cart-quantity-selector {
    margin-top: 1rem;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cart-coupon {
    width: 100%;
  }
  
  .cart-summary {
    max-width: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 2rem 0;
  }
  
  .benefits-grid, .products-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-product {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cart-product img {
    width: 100%;
    height: auto;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .next-steps li {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-icon {
    margin: 0 auto 1rem;
  }
}
