@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a1a2e;
  --color-accent: #e8491d;
  --color-bg: #ffffff;
  --color-bg-dark: #1a1a2e;
  --color-bg-light: #f5f5f7;
  --color-text: #333;
  --color-text-light: #666;
  --color-text-white: #fff;
  --color-border: #e0e0e0;
  --font-main: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
.logo-img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}
.nav a:hover {
  color: var(--color-accent);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}
.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.cart-btn:hover {
  background: var(--color-bg-light);
}
.cart-icon {
  width: 20px;
  height: 20px;
}
.login-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.login-btn:hover {
  opacity: 0.85;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 50%, #e8edf5 100%);
  padding: 80px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content {
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(26, 26, 46, 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 73, 29, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 73, 29, 0.4);
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}
.hero-rating span {
  font-size: 13px;
  color: var(--color-text-light);
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--color-bg);
  padding: 50px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 36px;
}
.trust-bar h2 strong {
  color: var(--color-accent);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--color-bg-light);
  transition: transform 0.3s;
}
.trust-item:hover {
  transform: translateY(-4px);
}
.trust-item .trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.trust-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 80px 0;
  background: var(--color-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 16px;
  color: var(--color-text-light);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}
.category-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.category-overlay .explore-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}
.category-overlay .explore-link:hover {
  opacity: 1;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 0;
  background: var(--color-bg-light);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.products-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}
.tab-buttons {
  display: flex;
  gap: 10px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-light);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}
.shop-all-link {
  text-align: center;
  margin-top: 40px;
}
.shop-all-link a {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  transition: all 0.3s;
}
.shop-all-link a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===== BANNER ===== */
.banner {
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.cta-content .cta-logo {
  width: 180px;
  margin-bottom: 24px;
}
.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-content p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.7;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}
.cta-image img {
  border-radius: 16px;
  width: 100%;
}

/* ===== COMMUNITY ===== */
.community {
  padding: 80px 0;
  background: var(--color-bg-light);
  text-align: center;
}
.community h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.community p {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ===== MEMBER LOGIN ===== */
.member-login {
  padding: 60px 0;
  background: var(--color-bg);
  text-align: center;
}
.member-login h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.member-login p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  width: 160px;
  margin-bottom: 16px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-contact a:hover {
  opacity: 1;
}
.newsletter-form {
  display: flex;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  padding: 12px 20px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: opacity 0.2s;
}
.newsletter-form button:hover {
  opacity: 0.85;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}
.footer-address {
  font-size: 13px;
  opacity: 0.5;
}
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE CONTENT (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 550px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 80px;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.page-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-content p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.page-content ul li {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 10px;
}
.page-content ul li strong {
  color: var(--color-primary);
}
.page-content blockquote {
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-light);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-light);
}
.page-content blockquote strong {
  color: var(--color-primary);
  font-style: normal;
}
.page-content a {
  color: var(--color-accent);
  text-decoration: underline;
}
.page-content a:hover {
  opacity: 0.8;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  margin-top: 20px;
}
.faq-category {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq-question {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--color-bg-light);
}
.faq-question .arrow {
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--color-bg-light);
}
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 600px;
}
.faq-item.active .faq-answer .faq-answer-inner {
  padding-top: 16px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-main);
  transition: border-color 0.2s;
  outline: none;
  background: var(--color-bg-light);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button {
  margin-top: 24px;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 73, 29, 0.3);
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 73, 29, 0.4);
}

.contact-info-card {
  background: var(--color-bg-light);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.contact-info-item p strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}
.contact-info-item a {
  color: var(--color-accent);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 60px 0;
  background: var(--color-bg-light);
  text-align: center;
}
.newsletter-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.newsletter-section p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.newsletter-section .newsletter-form {
  max-width: 420px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 38px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .login-btn {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    margin: 0 auto 32px;
  }
  .hero-rating {
    justify-content: center;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-header {
    flex-direction: column;
    gap: 16px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-image {
    order: -1;
  }
  .section-header h2,
  .community h2 {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .page-hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .tab-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  flex-direction: column;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav-close {
  align-self: flex-end;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--color-primary);
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}

/* ===== NEWSLETTER SECTION (subpages) ===== */
.newsletter-section {
  background: var(--color-bg-light);
  padding: 60px 20px;
  text-align: center;
}
.newsletter-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.newsletter-section p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.newsletter-section .newsletter-form {
  max-width: 460px;
  margin: 0 auto;
  background: var(--color-bg-dark);
  border-radius: 12px;
  padding: 4px 4px 4px 16px;
  display: flex;
}
.newsletter-section .newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
}
.newsletter-section .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-section .newsletter-form button {
  border-radius: 8px;
  padding: 12px 24px;
}

.product-details-description .product-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*products*/
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 60px 0;
}
.product-grid img {
  border-radius: 16px;
}
.product-grid h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.product-details-description .product-quantity {
  position: relative;
  background-color: var(--color-bg-dark);
  border-radius: 10px;
  margin-right: 10px;
}
.price span {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 20px;
}
.product-details-description svg {
  margin: 16px 0;
}
.order-btn,
.submit-btn {
  border: none;
  outline: none;
  cursor: pointer;
}
.product-details-description .product-quantity button {
  background: none;
  color: #fff;
  height: 50px;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
}
.product-details-description .product-quantity input {
  width: 35px;
  height: 50px;
  border: 0;
  padding: 0 5px;
  background: none;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: #fff;
  text-align: center;
}
.product-details-description .product-quantity>*:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 16px;
}
.product-details-description ul {
  padding-top: 16px;
}
.product-details-description .product-quantity>*:last-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-right: 16px;
}
.cart-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 1000;
  padding: 50px 30px;
  transform: translateX(-105%);
  visibility: hidden;
  transition: 0.3s;
}
.cart-box.open {
  transform: translateX(0);
  visibility: visible;
}
.close-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.cart-box h2 {
  color: var(--color-bg-dark);
}
.order {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.order input,
.order select {
  width: 100%;
  border-radius: 8px;
  outline: none;
  border: 1px solid var(--color-border);
  padding: 16px;
  transition: 0.3s;
}
.order input:focus,
.order select:focus {
  border-color: var(--color-accent);
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.submit-btn {
  margin-top: 20px;
  align-self: center;
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
}
.thanks-text {
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (max-width:767.98px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-image {
    order: 1;
  }
  .product-details-description {
    order: 0;
  }
}
@media screen and (max-width:575.98px) {
  .cart-box {
    width: 100%;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
.cookPopup_btn {
  outline: none;
  border: none;
  cursor: pointer;
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
.docs {
  padding: 50px 10px;
}