/* Base Styles */
:root {
  --primary-color: #4361ee;
  --primary-dark: #3a56d4;
  --secondary-color: #7209b7;
  --secondary-dark: #6008a1;
  --accent-color: #f72585;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1f2937;
  --border-color: #e0e0e0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: var(--font-family);
  font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-decoration: none;
}

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

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

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

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

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

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

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

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--bg-light);
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

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

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

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

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

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

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

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

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

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

.call-to-action {
  margin-top: 3rem;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  text-align: center;
}

.call-to-action h3 {
  margin-bottom: 1.5rem;
}

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

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

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

/* Products Section */
.products {
  padding: 5rem 0;
}

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

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

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

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

.product-image {
  height: 200px;
  overflow: hidden;
}

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

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

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

/* History Section */
.history {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

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

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

/* Statistics Section */
.statistics {
  padding: 3rem 0;
}

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

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

.statistic-item {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  text-align: center;
  transition: var(--transition);
}

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

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

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

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

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

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.cookie-more-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-more-info a {
  color: white;
  text-decoration: underline;
}

/* Add to Cart Notification */
.add-to-cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  z-index: 9999;
  box-shadow: var(--box-shadow);
  display: none;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.add-to-cart-notification.show {
  display: flex;
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

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

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

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

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

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

.stars {
  display: flex;
  color: #fbbf24;
}

.product-features {
  margin: 1.5rem 0;
}

.product-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-period-select {
  margin: 1.5rem 0;
}

.period-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.period-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.period-option input {
  margin-right: 0.5rem;
}

.option-text {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.period-option input:checked + .option-text {
  background-color: rgba(67, 97, 238, 0.1);
  border-color: var(--primary-color);
}

.discount {
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 20px;
  margin-left: 0.5rem;
}

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

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

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
}

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

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

.tab-content {
  display: none;
}

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

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

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

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

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

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

.average-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.reviews-count {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.rating-breakdown {
  flex-grow: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.rating-level {
  width: 80px;
}

.progress-bar {
  flex-grow: 1;
  height: 8px;
  background-color: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
}

.rating-percent {
  width: 40px;
  text-align: right;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

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

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

.review-rating {
  margin-bottom: 0.75rem;
}

.related-products {
  margin-top: 3rem;
}

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

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

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

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

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

.related-product-card h3, .related-product-card .price {
  padding: 0 1rem;
}

.related-product-card h3 {
  margin-top: 1rem;
}

.related-product-card .price {
  margin-bottom: 1rem;
}

.related-product-card .btn {
  display: block;
  margin: 1rem;
}

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

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

.empty-cart-icon {
  margin: 0 auto 2rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.cart-table {
  width: 100%;
  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: 600;
}

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

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

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

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

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem;
}

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

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

.cart-summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

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

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

.cart-totals {
  width: 350px;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
}

.totals-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.totals-row.total {
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.recommended-products {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

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

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

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

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

.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.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

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

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

.checkout-summary {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  position: sticky;
  top: 100px;
}

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

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

.checkout-item-details {
  display: flex;
  flex-direction: column;
}

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

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

.checkout-item-quantity {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkout-security {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.security-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color);
}

.security-text h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.security-text p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.success-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color);
}

.success-info {
  margin: 2rem 0;
  text-align: left;
}

.success-info ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.success-info ol li {
  margin-bottom: 0.5rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Contact Page */
.page-header {
  background-color: var(--bg-light);
  padding: 3rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
}

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

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

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

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

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

.contact-form-container {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
}

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

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.faq-container {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

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

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

.form-success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.form-success-message.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  text-align: center;
  max-width: 500px;
}

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

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

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

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

.mission-item {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

.team-member {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

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

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

.team-member .social-icons {
  justify-content: center;
  margin-top: 1.5rem;
}

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

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 0;
  position: absolute;
}

.testimonial-content::before {
  top: 0.5rem;
  left: 0;
}

.testimonial-content::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

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

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

.author-company {
  color: var(--text-light);
}

.datacenter {
  padding: 5rem 0;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.feature-text h3 {
  margin-bottom: 0.5rem;
}

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

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

.certification-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
}

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

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

.certification-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

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

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  border-radius: var(--border-radius);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.cta-content h2,
.cta-content p {
  color: white;
}

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

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

.cta-buttons .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
  }
  
  .cart-price {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cart-header, .cart-item {
    grid-template-columns: 1fr 1fr 0.5fr;
  }
  
  .cart-quantity {
    display: none;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
