:root {
  --primary-color: #5d4eff;
  --primary-hover: #4a3bff;
  --secondary-color: #ff4e50;
  --text-color: #333333;
  --text-light: #777777;
  --background-color: #f9f9f9;
  --dark-bg: #1a1a2e;
  --light-bg: #ffffff;
  --border-color: #e1e1e1;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-bg: #101022;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  font-size: 16px;
}

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

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-hover);
}

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

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

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

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--light-bg);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  line-height: 1.4;
}

.btn:hover {
  background-color: var(--primary-hover);
  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-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Custom List Styles */
.custom-list {
  list-style: none;
  padding-left: 0;
}

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

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

/* Header */
header {
  background-color: var(--light-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 5px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c54 100%);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  text-align: center;
}

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

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

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

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(93, 78, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

.stat {
  text-align: center;
  padding: 1rem;
  min-width: 160px;
}

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

.cta {
  margin-top: 3rem;
  text-align: center;
}

.cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

/* About Products Section */
.about-products {
  background-color: var(--gray-100);
}

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

.about-products p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-products h3 {
  margin: 2.5rem 0 1rem 0;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--box-shadow);
}

.badge svg {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.badge span {
  font-weight: 600;
}

/* Products Section */
.products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.products-grid.small {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

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

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

.product-link {
  display: block;
  color: var(--text-color);
}

.product-link:hover {
  color: var(--text-color);
}

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

.product h3 {
  padding: 1rem 1rem 0.5rem 1rem;
  font-size: 1.1rem;
}

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

.product .description {
  padding: 0.5rem 1rem 1rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.add-to-cart, .view-details {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem;
}

/* Product Details Page */
.product-details {
  padding: 3rem 0;
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.breadcrumbs a {
  color: var(--gray-600);
}

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

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

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

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

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

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

.product-price {
  margin-bottom: 1.5rem;
}

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

.product-short-description {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.product-attributes {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.attribute {
  display: flex;
  margin-bottom: 0.75rem;
}

.attribute:last-child {
  margin-bottom: 0;
}

.attribute-label {
  width: 120px;
  font-weight: 600;
  color: var(--gray-700);
}

.attribute-value {
  color: var(--gray-800);
}

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

.quantity label {
  margin-right: 1rem;
  font-weight: 600;
}

.quantity select {
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  width: 80px;
}

.product-guarantee {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  color: var(--gray-700);
}

.guarantee-item svg {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

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

.tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}

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

.tab-content {
  display: none;
}

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

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

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

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

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

.delivery-note {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.delivery-note h4 {
  margin-bottom: 1rem;
}

.related-products h3 {
  margin-bottom: 1.5rem;
}

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

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

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-empty svg {
  margin: 0 auto 1.5rem auto;
  color: var(--gray-500);
}

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

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

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

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 120px 40px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

.cart-item-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.cart-item-name {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cart-item-price {
  color: var(--gray-600);
}

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

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  font-weight: 600;
}

.quantity-btn.decrease {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.increase {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--gray-300);
  border-left: none;
  border-right: none;
  font-weight: 600;
}

.cart-item-total {
  font-weight: 700;
  color: var(--primary-color);
}

.remove-item {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition);
}

.remove-item:hover {
  color: var(--danger-color);
}

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

.cart-totals {
  margin-bottom: 1.5rem;
}

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

.cart-total-row.final {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

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

.cart-actions a {
  flex: 1;
}

.cart-features {
  margin-top: 3rem;
}

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

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

.checkout-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

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

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-300);
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.step-connector {
  width: 60px;
  height: 2px;
  background-color: var(--gray-300);
  margin: 0 1rem;
}

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

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

.checkout-form-container h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.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(--gray-300);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(93, 78, 255, 0.1);
}

.form-help {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

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

.form-actions button, .form-actions a {
  flex: 1;
}

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

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

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

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

.checkout-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-item-image {
  width: 80px;
  margin-right: 1rem;
}

.checkout-item-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.checkout-item-name {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.checkout-item-info {
  display: flex;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.checkout-item-quantity {
  margin-right: 0.5rem;
}

.checkout-totals {
  margin-bottom: 1.5rem;
}

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

.checkout-total-row.final {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  padding-top: 1rem;
}

.checkout-security {
  margin-bottom: 1.5rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.security-badge {
  display: flex;
  align-items: center;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 0.75rem;
}

.security-badge svg {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.security-note {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.help-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.help-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.help-section p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

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

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

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--success-color);
}

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

.success-content p {
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.success-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.info-card {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.info-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

.recommended-section h2 {
  margin-bottom: 3rem;
}

/* Contact Page */
.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c54 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(93, 78, 255, 0.1);
  border-radius: 50%;
  margin-right: 1.5rem;
  color: var(--primary-color);
}

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

.method-details p {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

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

.social-connect h3 {
  margin-bottom: 1rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

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

.contact-form {
  margin-top: 1.5rem;
}

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

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

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

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

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

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

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

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

.story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-content h3 {
  margin: 2.5rem 0 1rem 0;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-content: start;
}

.stat-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
}

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

.stat-label {
  color: var(--gray-700);
  font-weight: 600;
}

.about-values {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

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

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

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

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(93, 78, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--gray-600);
}

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

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

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

.member-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
}

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

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.member-social {
  display: flex;
  gap: 0.75rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

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

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

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

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

.partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(93, 78, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.partner h3 {
  margin-bottom: 0.5rem;
}

.partner p {
  color: var(--gray-600);
}

.cta-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c54 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

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

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

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

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

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

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

.footer-column p, .footer-column address p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

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

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

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

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

.footer-column .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

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

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

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-bg);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  display: block;
}

.cookie-notice .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-notice p {
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

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

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

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

.notification-content svg {
  margin-right: 0.75rem;
  color: var(--success-color);
}

.notification-content p {
  margin: 0;
  font-weight: 600;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  
  .success-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cart-item-image {
    grid-row: 1 / 4;
  }
  
  .cart-item-details {
    grid-column: 2;
    grid-row: 1;
  }
  
  .cart-item-quantity {
    grid-column: 2;
    grid-row: 2;
  }
  
  .cart-item-total {
    grid-column: 2;
    grid-row: 3;
  }
  
  .remove-item {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-notice .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav ul li {
    margin-left: 1rem;
  }
  
  .notification {
    right: 1rem;
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 576px) {
  .header {
    height: auto;
    padding: 1rem 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  nav ul li {
    margin-left: 0.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .features-grid, .stats-container {
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
