/* ===== Base Styles ===== */
:root {
  --primary-color: #ff4500;
  --primary-light: #ff7644;
  --primary-dark: #cc3700;
  --secondary-color: #2b2b2b;
  --accent-color: #4a90e2;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-color: #ffffff;
  --background-dark: #f4f4f4;
  --background-darker: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --border-color: #e0e0e0;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

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

button, .button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
}

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

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

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.main-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

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

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

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

.header-cart {
  position: relative;
}

.cart-icon {
  color: var(--text-white);
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

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

/* ===== Breadcrumb Styles ===== */
.breadcrumb {
  background-color: var(--background-dark);
  padding: 0.8rem 0;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  margin: 0;
}

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

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
}

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

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

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

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

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

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

.cta-button {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--text-white);
}

/* ===== Advantages Section ===== */
.advantages {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.advantages h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.advantage-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.advantage-item:hover {
  transform: translateY(-10px);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.advantage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.stat {
  text-align: center;
}

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

.cta-container {
  text-align: center;
}

/* ===== Product Info Section ===== */
.product-info {
  padding: 5rem 0;
  background-color: var(--background-dark);
}

.product-info h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.product-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-info h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-badge svg {
  color: var(--primary-color);
}

.guarantee-badge p {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0;
}

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

.products-section 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(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.product-info {
  padding: 1.5rem;
}

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

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

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

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

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

.add-to-cart {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  flex-grow: 1;
}

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

.view-product {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  color: var(--primary-color);
  text-align: center;
  flex-grow: 1;
}

.view-product:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* ===== Complaint Section ===== */
.complaint-section {
  padding: 5rem 0;
  background-color: var(--background-dark);
}

.complaint-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.complaint-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.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: 4px;
  font-size: 1rem;
  font-family: inherit;
}

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

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

.submit-button {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: var(--transition);
  width: 100%;
}

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

/* ===== Cookie Consent ===== */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  display: block;
}

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

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

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

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

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#customize-cookies {
  background-color: var(--background-color);
  color: var(--text-color);
}

#customize-cookies:hover {
  background-color: var(--background-darker);
}

#decline-cookies {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

#decline-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--text-white);
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  color: var(--text-light);
  margin-bottom: 0.7rem;
}

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

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

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

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

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

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

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

.social-icons svg {
  color: var(--text-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.glossary {
  margin-bottom: 2.5rem;
  text-align: left;
}

.glossary h3 {
  margin-bottom: 1.5rem;
  color: var(--text-white);
  text-align: center;
}

.glossary-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.glossary-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--primary-light);
}

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

/* ===== Product Detail Page ===== */
.product-detail {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

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

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

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

.product-price-container {
  margin-bottom: 2rem;
}

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

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

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

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

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

.quantity-decrease,
.quantity-increase {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-dark);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.quantity-decrease:hover,
.quantity-increase:hover {
  background-color: var(--background-darker);
}

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

.quantity-controls input:focus {
  outline: none;
}

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

.product-actions .add-to-cart,
.product-actions .buy-now {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.product-actions .add-to-cart {
  background-color: var(--accent-color);
  color: var(--text-white);
}

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

.product-actions .buy-now {
  background-color: var(--primary-color);
  color: var(--text-white);
}

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

.product-highlights {
  padding: 1.5rem;
  background-color: var(--background-dark);
  border-radius: 8px;
}

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

.product-highlights ul {
  list-style: none;
  margin: 0;
}

.product-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.product-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.product-full-description {
  max-width: 900px;
  margin: 0 auto;
}

.product-full-description h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.product-full-description p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.product-full-description h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.product-full-description ul {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

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

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

.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;
}

/* ===== Cart Page ===== */
.cart-section {
  padding: 4rem 0;
  min-height: 60vh;
}

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

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: var(--background-dark);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.cart-empty svg {
  margin: 0 auto 2rem;
  color: var(--text-light);
}

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

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

.continue-shopping {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.continue-shopping:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.cart-table {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  padding: 1rem;
  background-color: var(--secondary-color);
  color: var(--text-white);
  font-weight: 600;
}

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

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

.cart-product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

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

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

.cart-quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-dark);
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.cart-quantity-btn:hover {
  background-color: var(--background-darker);
}

.cart-quantity span {
  font-weight: 600;
}

.cart-subtotal {
  font-weight: 600;
  color: var(--primary-dark);
}

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

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

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

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cart-total {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.checkout-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.checkout-button:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

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

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

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

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

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

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

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

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

.checkout-agreement {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-agreement input {
  margin-top: 0.3rem;
}

.place-order-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.place-order-button:hover {
  background-color: var(--primary-dark);
}

.order-summary {
  background-color: var(--background-dark);
  padding: 2.5rem;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}

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

.checkout-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

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

.checkout-item-price {
  display: flex;
  justify-content: space-between;
}

.checkout-item-quantity {
  color: var(--text-light);
}

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

.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.checkout-total {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.checkout-security {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

.checkout-security p:first-of-type {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ===== Success Page ===== */
.success-section {
  padding: 5rem 0;
  min-height: 60vh;
}

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

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

.success-content h1 {
  margin-bottom: 1.5rem;
}

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

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

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-support {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--text-white);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.contact-support:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* ===== Contact Page ===== */
.contact-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
  text-align: center;
}

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

.contact-section {
  padding: 5rem 0;
}

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

.contact-info {
  background-color: var(--background-dark);
  padding: 2.5rem;
  border-radius: 8px;
}

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

.contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.contact-details h3 {
  margin-bottom: 0.7rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

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

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

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

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--background-color);
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background-color: var(--background-color);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* ===== About Page ===== */
.about-hero {
  padding: 4rem 0;
  background-color: var(--background-dark);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

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

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

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

.about-story p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

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

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

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

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-content h2,
.values-content h2 {
  margin-bottom: 2rem;
}

.mission-content p,
.values-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  margin: 0;
}

.values-list li {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

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

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

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

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

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

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

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

.team-member p:last-of-type {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.testimonial-content p {
  font-style: italic;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.2;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

.partners-section {
  padding: 5rem 0;
}

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

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

.partner {
  text-align: center;
}

.partner-logo {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.partner p {
  font-weight: 600;
}

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

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

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

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--text-white);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .product-detail-grid {
    gap: 3rem;
  }
  
  .mission-grid {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 3fr 1fr 1fr 0.5fr;
  }
  
  .cart-product {
    grid-column: 1 / 5;
    margin-bottom: 1rem;
  }
  
  .cart-price {
    grid-row: 2;
    grid-column: 1;
  }
  
  .cart-quantity {
    grid-row: 2;
    grid-column: 2;
  }
  
  .cart-subtotal {
    grid-row: 2;
    grid-column: 3;
  }
  
  .cart-remove {
    grid-row: 2;
    grid-column: 4;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .main-nav {
    margin-top: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}
