* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary-black: #1a1a1a;
  --soft-white: #f5f5f5;
  --platinum-silver: silver;
  --accent-silver: #8a8a8a;
  --dark-gray: #2d2d2d;
  --light-gray: #e0e0e0;
}
body {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #f5f5f5;
  color: var(--soft-white);
  font-family:
    Segoe UI,
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  line-height: 1.6;
}
.App,
body {
  min-height: 100vh;
}
.App {
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1 1;
  padding-top: 80px;
}
header {
  background: linear-gradient(180deg, #1a1a1a, #2d2d2d);
  border-bottom: 2px solid silver;
  border-bottom: 2px solid var(--platinum-silver);
  box-shadow: 0 4px 20px #c0c0c01a;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 1rem 2rem;
}
.logo-section {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.logo-img {
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 8px;
  height: 60px;
  object-fit: cover;
  width: 60px;
}
.logo-text h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo-text p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
nav ul {
  align-items: center;
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
nav a {
  border-radius: 4px;
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
nav a:hover {
  background: #c0c0c01a;
}
.cart-icon-link,
nav a:hover {
  color: silver;
  color: var(--platinum-silver);
}
.cart-icon-link {
  font-size: 1.5rem;
  position: relative;
}
.cart-count {
  align-items: center;
  background: silver;
  background: var(--platinum-silver);
  border-radius: 50%;
  color: #1a1a1a;
  color: var(--primary-black);
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 20px;
}
.hero-section {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a 50%, #2d2d2d);
  border-bottom: 3px solid silver;
  border-bottom: 3px solid var(--platinum-silver);
  box-shadow: 0 8px 32px #c0c0c026;
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.hero-section h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 3.5rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px #00000080;
}
.hero-section p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 800px;
}
.features-section {
  margin: 4rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}
.features-intro {
  margin-bottom: 3rem;
  text-align: center;
}
.features-intro h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.features-intro p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 700px;
}
.features-grid {
  grid-gap: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}
.feature-card {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: #f5f5f5;
  border-color: var(--soft-white);
  box-shadow: 0 12px 32px #c0c0c033;
  transform: translateY(-8px);
}
.feature-icon {
  color: silver;
  color: var(--platinum-silver);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.feature-card p {
  color: silver;
  color: var(--platinum-silver);
  line-height: 1.8;
}
.stats-section {
  grid-gap: 2rem;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
  padding: 3rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  color: silver;
  color: var(--platinum-silver);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.cta-section {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.cta-section h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.cta-section p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.detailed-info-section {
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}
.detailed-info-content {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  padding: 3rem;
}
.detailed-info-content h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-align: center;
}
.info-block {
  margin-bottom: 2rem;
}
.info-block h3 {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.info-block p {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  text-align: justify;
}
.products-section {
  margin: 4rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}
.products-section h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
}
.products-grid {
  grid-gap: 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.product-card {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: #f5f5f5;
  border-color: var(--soft-white);
  box-shadow: 0 16px 40px #c0c0c033;
  transform: translateY(-10px);
}
.product-image-container {
  background: #2d2d2d;
  background: var(--dark-gray);
  border-bottom: 2px solid silver;
  border-bottom: 2px solid var(--platinum-silver);
  height: 280px;
  overflow: hidden;
  width: 100%;
}
.product-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.product-card:hover .product-image {
  transform: scale(1.1);
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.product-rating {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.stars {
  display: flex;
  gap: 0.2rem;
}
.rating-text,
.stars {
  color: silver;
  color: var(--platinum-silver);
}
.rating-text {
  font-size: 0.9rem;
}
.product-description {
  line-height: 1.6;
}
.product-description,
.product-price {
  color: silver;
  color: var(--platinum-silver);
  margin-bottom: 1rem;
}
.product-price {
  font-size: 1.8rem;
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 1rem;
}
.btn {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: silver;
  background: var(--platinum-silver);
  color: #1a1a1a;
  color: var(--primary-black);
  flex: 1 1;
}
.btn-primary:hover {
  background: #f5f5f5;
  background: var(--soft-white);
  box-shadow: 0 4px 12px #c0c0c04d;
  transform: translateY(-2px);
}
.btn-secondary {
  background: #0000;
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  color: silver;
  color: var(--platinum-silver);
  flex: 1 1;
}
.btn-secondary:hover {
  background: silver;
  background: var(--platinum-silver);
  color: #1a1a1a;
  color: var(--primary-black);
  transform: translateY(-2px);
}
.product-detail-container {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem;
}
.product-detail-content {
  grid-gap: 3rem;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
  padding: 3rem;
}
@media (max-width: 450px) {
  .product-detail-content {
    padding: 1rem;
  }
}
.product-detail-image {
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 8px;
  height: 500px;
  object-fit: cover;
  width: 100%;
}
.product-detail-info h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.product-detail-info .product-rating {
  margin-bottom: 1.5rem;
}
.product-detail-info .product-price {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.product-detail-description {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.product-detail-actions .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}
.cart-container {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem;
}
.cart-container h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-align: center;
}
.cart-empty {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
}
.cart-empty h2 {
  color: silver;
  color: var(--platinum-silver);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cart-empty p {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cart-items {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 2rem;
}
.cart-item {
  grid-gap: 2rem;
  align-items: center;
  border-bottom: 1px solid silver;
  border-bottom: 1px solid var(--platinum-silver);
  display: grid;
  gap: 2rem;
  grid-template-columns: 120px 1fr auto;
  padding: 1.5rem;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 8px;
  height: 120px;
  object-fit: cover;
  width: 120px;
}
.cart-item-info h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cart-item-price {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.cart-item-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.quantity-controls {
  align-items: center;
  background: #2d2d2d;
  background: var(--dark-gray);
  border: 1px solid silver;
  border: 1px solid var(--platinum-silver);
  border-radius: 6px;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}
.quantity-btn {
  background: silver;
  background: var(--platinum-silver);
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  color: var(--primary-black);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  height: 32px;
  transition: all 0.3s ease;
  width: 32px;
}
.quantity-btn:hover {
  background: #f5f5f5;
  background: var(--soft-white);
  transform: scale(1.1);
}
.quantity-display {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}
.remove-btn {
  background: #0000;
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 6px;
  color: silver;
  color: var(--platinum-silver);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.remove-btn:hover {
  background: silver;
  background: var(--platinum-silver);
  color: #1a1a1a;
  color: var(--primary-black);
}
.cart-summary {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 2rem;
}
.cart-summary h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.summary-row {
  border-bottom: 1px solid silver;
  border-bottom: 1px solid var(--platinum-silver);
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
.summary-row:last-child {
  border-bottom: none;
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.5rem;
  font-weight: 700;
}
.checkout-btn {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  width: 100%;
}
.checkout-container {
  margin: 2rem auto;
  max-width: 800px;
  padding: 2rem;
}
.checkout-container h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-align: center;
}
.checkout-form {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 3rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  color: silver;
  color: var(--platinum-silver);
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  background: #2d2d2d;
  background: var(--dark-gray);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 6px;
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  background: #1a1a1a;
  background: var(--primary-black);
  border-color: #f5f5f5;
  border-color: var(--soft-white);
  outline: none;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.order-summary-box {
  background: #2d2d2d;
  background: var(--dark-gray);
  border: 1px solid silver;
  border: 1px solid var(--platinum-silver);
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
}
.order-summary-box h3 {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.summary-item {
  color: #f5f5f5;
  color: var(--soft-white);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.summary-total {
  border-top: 2px solid silver;
  border-top: 2px solid var(--platinum-silver);
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
}
.submit-btn {
  background: silver;
  background: var(--platinum-silver);
  border: none;
  border-radius: 6px;
  color: #1a1a1a;
  color: var(--primary-black);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  width: 100%;
}
.submit-btn:hover {
  background: #f5f5f5;
  background: var(--soft-white);
  box-shadow: 0 8px 16px #c0c0c04d;
  transform: translateY(-2px);
}
.success-container {
  margin: 4rem auto;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}
.success-content {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 4rem 3rem;
}
.success-icon {
  color: silver;
  color: var(--platinum-silver);
  font-size: 5rem;
  margin-bottom: 2rem;
}
.success-content h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.success-content p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-container {
  margin: 2rem auto;
  max-width: 1400px;
  padding: 2rem;
}
.about-hero {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  margin-bottom: 4rem;
  padding: 4rem 3rem;
  text-align: center;
}
.about-hero h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.about-hero p {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 800px;
}
.history-section {
  margin-bottom: 4rem;
}
.history-section h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
}
.timeline {
  margin: 0 auto;
  max-width: 1000px;
  padding: 2rem 0;
  position: relative;
}
.timeline:before {
  background: silver;
  background: var(--platinum-silver);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2px;
}
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.timeline-content {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  padding: 2rem;
  width: 45%;
}
.timeline-year {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: silver;
  color: var(--platinum-silver);
  line-height: 1.6;
}
.timeline-marker {
  background: silver;
  background: var(--platinum-silver);
  border: 4px solid #1a1a1a;
  border: 4px solid var(--primary-black);
  border-radius: 50%;
  height: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
  z-index: 1;
}
.team-section {
  margin-bottom: 4rem;
}
.team-section h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
}
.team-grid {
  grid-gap: 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.team-card {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  box-shadow: 0 8px 24px #0006;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.team-card:hover {
  border-color: #f5f5f5;
  border-color: var(--soft-white);
  box-shadow: 0 16px 40px #c0c0c033;
  transform: translateY(-10px);
}
.team-photo {
  border-bottom: 2px solid silver;
  border-bottom: 2px solid var(--platinum-silver);
  height: 400px;
  object-fit: cover;
  width: 100%;
}
.team-info {
  padding: 2rem;
}
.team-info h3 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.team-role {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-bio,
.team-role {
  color: silver;
  color: var(--platinum-silver);
}
.team-bio {
  line-height: 1.6;
}
.contact-container {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem;
}
.contact-container h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
}
.contact-content {
  grid-gap: 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}
.contact-info {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 3rem;
}
.contact-info h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.info-item {
  align-items: flex-start;
  background: #2d2d2d;
  background: var(--dark-gray);
  border: 1px solid silver;
  border: 1px solid var(--platinum-silver);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
}
.info-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
.info-details h3,
.info-icon {
  color: silver;
  color: var(--platinum-silver);
}
.info-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.info-details p {
  color: #f5f5f5;
  color: var(--soft-white);
  line-height: 1.6;
}
.contact-form-section {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 3rem;
}
.contact-form-section h2 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.policy-container {
  margin: 2rem auto;
  max-width: 1000px;
  padding: 2rem;
}
.policy-content {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 12px;
  padding: 3rem;
}
@media (max-width: 450px) {
  .policy-content {
    padding: 1rem;
  }
}
.policy-content h1 {
  color: #f5f5f5;
  color: var(--soft-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  .policy-content h1 {
    font-size: 1.5em;
  }
}
.policy-date {
  font-style: italic;
  margin-bottom: 2rem;
}
.policy-content h2,
.policy-date {
  color: silver;
  color: var(--platinum-silver);
}
.policy-content h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.policy-content p {
  color: #f5f5f5;
  color: var(--soft-white);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}
.policy-content ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
}
.policy-content li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.policy-content li,
footer {
  color: #f5f5f5;
  color: var(--soft-white);
}
footer {
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border-top: 3px solid silver;
  border-top: 3px solid var(--platinum-silver);
  margin-top: 4rem;
  padding: 3rem 2rem 1rem;
}
.footer-content {
  grid-gap: 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 0 auto 2rem;
  max-width: 1400px;
}
.footer-section h3 {
  color: silver;
  color: var(--platinum-silver);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.footer-section p {
  color: #f5f5f5;
  color: var(--soft-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.8rem;
}
.footer-section a {
  color: #f5f5f5;
  color: var(--soft-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom,
.footer-section a:hover {
  color: silver;
  color: var(--platinum-silver);
}
.footer-bottom {
  border-top: 1px solid silver;
  border-top: 1px solid var(--platinum-silver);
  padding-top: 2rem;
  text-align: center;
}
.footer-logo {
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  border-radius: 8px;
  height: 80px;
  margin-bottom: 1rem;
  width: 80px;
}
.cookie-consent {
  animation: slideUp 0.5s ease;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border-top: 3px solid silver;
  border-top: 3px solid var(--platinum-silver);
  bottom: 0;
  box-shadow: 0 -4px 20px #00000080;
  left: 0;
  padding: 1.5rem 2rem;
  position: fixed;
  right: 0;
  z-index: 9999;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.cookie-content {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}
.cookie-text {
  flex: 1 1;
}
.cookie-text p {
  color: #f5f5f5;
  color: var(--soft-white);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.cookie-text a {
  color: silver;
  color: var(--platinum-silver);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cookie-btn {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}
.cookie-btn-accept {
  background: silver;
  background: var(--platinum-silver);
  color: #1a1a1a;
  color: var(--primary-black);
}
.cookie-btn-accept:hover {
  background: #f5f5f5;
  background: var(--soft-white);
  transform: translateY(-2px);
}
.cookie-btn-customize {
  background: #0000;
  border: 2px solid silver;
  border: 2px solid var(--platinum-silver);
  color: silver;
  color: var(--platinum-silver);
}
.cookie-btn-customize:hover {
  background: silver;
  background: var(--platinum-silver);
  color: #1a1a1a;
  color: var(--primary-black);
}
.cookie-btn-decline {
  background: #0000;
  border: 2px solid #f5f5f5;
  border: 2px solid var(--soft-white);
  color: #f5f5f5;
  color: var(--soft-white);
}
.cookie-btn-decline:hover {
  background: #f5f5f5;
  background: var(--soft-white);
}
.cookie-btn-decline:hover,
.notification {
  color: #1a1a1a;
  color: var(--primary-black);
}
.notification {
  animation: slideIn 0.3s ease;
  background: silver;
  background: var(--platinum-silver);
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000004d;
  font-weight: 600;
  padding: 1rem 1.5rem;
  position: fixed;
  right: 2rem;
  top: 100px;
  z-index: 9999;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    gap: 1rem;
  }
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .cart-item,
  .contact-content,
  .product-detail-content {
    grid-template-columns: 1fr;
  }
  .cart-item {
    gap: 1rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .timeline:before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }
  .timeline-content {
    width: 100%;
  }
  .timeline-marker {
    left: 20px;
  }
}
.hamburger-menu {
  background: none;
  border: none;
  color: #d6d1d1;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
  z-index: 1001;
}
.hamburger-menu:hover {
  color: #8b7355;
}
.hamburger-menu svg {
  display: block;
}
@media (max-width: 768px) {
  .header-content {
    position: relative;
  }
  .hamburger-menu {
    display: block;
  }
  nav {
    background-color: #fff;
    box-shadow: 0 4px 10px #0000001a;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease;
    visibility: hidden;
  }
  nav.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
  }
  nav ul li {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav a {
    color: #333 !important;
    display: block;
    justify-content: flex-start;
    padding: 1rem 2rem;
    width: 100%;
  }
  nav a:hover {
    background-color: #f8f9fa;
  }
}
.soc {
  color: silver;
  text-decoration: none;
}
.custom-popup-overlay {
  align-items: center;
  background: #0009;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.25rem;
  position: fixed;
  z-index: 2000;
}
.custom-popup {
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  border: 1px solid silver;
  border-radius: 12px;
  box-shadow: 0 16px 50px #0009;
  color: var(--soft-white);
  max-width: 420px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  width: 100%;
}
.custom-popup-icon {
  align-items: center;
  background: silver;
  border-radius: 50%;
  color: var(--primary-black);
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  margin: 0 auto 1rem;
  width: 58px;
}
.custom-popup h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.custom-popup p {
  color: var(--platinum-silver);
  margin-bottom: 1.5rem;
}
.custom-popup-close {
  background: transparent;
  border: 0;
  color: var(--platinum-silver);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.25rem;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
}
.custom-popup-close:hover {
  color: var(--soft-white);
} /*# sourceMappingURL=main.9e70f277.css.map*/
