/* ============================================
   ATTARS USA — Premium Stylesheet
   Inspired by fregor.in
   ============================================ */

:root {
  --bg-color: #FDFCF7;
  --bg-alt: #F5F3ED;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-light: #888888;
  --primary-gold: #C9A84C;
  --primary-gold-light: #e0c76e;
  --primary-accent: #C05A3A;
  --primary-hover: #A04A2F;
  --light-border: #E8E6DE;
  --white: #FFFFFF;
  --black: #111111;
  --footer-bg: #1a1a1a;
  --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

/* ===== Announcement Bar (Scrolling Ticker) ===== */
.announcement-bar {
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 0.6rem 0;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: announcementScroll 20s linear infinite;
}

.announcement-content {
  display: flex;
  flex-shrink: 0;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  min-width: 50vw;
}

@keyframes announcementScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== Coming Soon Page ===== */
.coming-soon-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-alt) 100%);
}

.coming-soon-container {
  text-align: center;
  max-width: 550px;
}

.coming-soon-icon {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  animation: comingSoonPulse 3s ease-in-out infinite;
}

@keyframes comingSoonPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.coming-soon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.coming-soon-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.coming-soon-divider {
  width: 50px;
  height: 1.5px;
  background-color: var(--primary-gold);
  margin: 0 auto 2rem;
}

.coming-soon-notify {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.coming-soon-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--light-border);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-left ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
  padding-right: 3rem;
}

.nav-right ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  padding-left: 3rem;
}

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

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

nav a {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 2rem;
}

.account-link {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  transition: var(--transition);
}

.account-link:hover {
  color: var(--primary-gold);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.cart-link:hover {
  color: var(--primary-gold);
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* ===== Hero Banner ===== */
.hero-banner {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 20%, #8B4513 40%, #CD853F 60%, #D4A055 75%, #c07830 90%, #2d1200 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(205, 133, 63, 0.4), transparent),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255, 200, 100, 0.25), transparent),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255, 165, 0, 0.2), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 223, 150, 1) 0%, rgba(255, 200, 80, 0.6) 40%, transparent 70%);
  border-radius: 50%;
  animation: sparkleFloat 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) scale(1.2);
  }
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-text-area {
  text-align: center;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary-gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #FDFCF0 !important;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(253, 252, 240, 0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background-color: var(--primary-gold) !important;
  border: 2px solid var(--primary-gold) !important;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--black) !important;
  font-weight: 600;
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.3);
}

.hero-btn:hover {
  background-color: var(--primary-gold-light) !important;
  border-color: var(--primary-gold-light) !important;
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.4);
}

.hero-btn-outline {
  background-color: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Product Showcase Row */
.hero-products-showcase {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.hero-product-track {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.hero-product-item {
  flex: 0 0 auto;
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: productRise 0.8s ease-out backwards;
  cursor: pointer;
  transition: transform 0.4s ease;
}

@keyframes productRise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-product-item:hover {
  transform: translateY(-10px) scale(1.04);
}

.hero-product-item img {
  width: 140px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.hero-product-item:hover img {
  filter: drop-shadow(0 15px 40px rgba(255, 200, 100, 0.4));
  transform: scale(1.06);
}

.hero-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--primary-gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.hero-product-item:hover .hero-product-name {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--black);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background-color: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

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

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

/* ===== Sections ===== */
.section-padding {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--bg-alt);
  max-width: 100%;
  padding: 5rem 5%;
}

.section-alt .product-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 400;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1.5px;
  background-color: var(--primary-gold);
  margin: 1rem auto 0;
}

/* ===== Category Cards ===== */
.category-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  padding: 3rem 4rem;
  text-align: center;
  transition: var(--transition);
  min-width: 260px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: var(--primary-gold);
}

.category-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.category-icon span {
  font-size: 1.5rem;
  font-weight: 400;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Product Card */
.product-card {
  text-align: center;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--light-border);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

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

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  padding: 1.5rem;
  overflow: hidden;
}

.product-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-card-info {
  padding: 1.5rem 1rem;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.price {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-card .btn {
  width: calc(100% - 2rem);
  margin: 0 1rem 1.5rem;
  padding: 0.7rem;
  font-size: 0.75rem;
}

/* ===== Why Section ===== */
.why-section {
  background-color: var(--white);
  max-width: 100%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--primary-gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background-color: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.why-card p {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--black);
  padding: 4rem 5%;
  text-align: center;
}

.newsletter-content {
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid #444;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form input:focus {
  border-color: var(--primary-gold);
}

.newsletter-form .btn {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--black);
  white-space: nowrap;
}

.newsletter-form .btn:hover {
  background: var(--primary-gold-light);
  border-color: var(--primary-gold-light);
  color: var(--black);
  transform: none;
}

/* ===== Footer ===== */
footer {
  background-color: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(1.2);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--black);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-gold);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact li a:hover {
  color: var(--primary-gold);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 5%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Product Detail Page ===== */
.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-img-wrap {
  background: var(--bg-alt);
  padding: 3rem;
  text-align: center;
}

.detail-img-wrap img {
  max-width: 100%;
  height: auto;
}

.detail-info h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.detail-info .price {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.detail-desc {
  color: var(--text-body);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== About Page ===== */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 3rem;
}

/* ===== Checkout Page ===== */
.checkout-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.order-summary {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-border);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--text-body);
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--light-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-color);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
}

.empty-message {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

/* ===== Policy Pages ===== */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-border);
  font-style: italic;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.policy-section h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
  font-weight: 500;
  color: var(--text-dark);
}

.policy-section p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.policy-section ul,
.policy-section ol {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section ul li,
.policy-section ol li {
  margin-bottom: 0.5rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.policy-table th,
.policy-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border: 1px solid var(--light-border);
}

.policy-table th {
  background: var(--bg-alt);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.policy-table td {
  color: var(--text-body);
}

.policy-table tr:hover td {
  background: rgba(201, 168, 76, 0.04);
}

/* ===== Page Header Bar ===== */
.page-header {
  background: var(--black);
  padding: 3rem 5%;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 400;
}

.page-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 56px;
  }

  .header-inner {
    padding: 0.9rem 5%;
  }

  .logo-img {
    height: 60px;
  }

  .announcement-bar {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-left,
  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--light-border);
    padding: 1rem 5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex: unset;
  }

  .nav-left.open,
  .nav-right.open {
    display: block;
  }

  .nav-left ul,
  .nav-right ul {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
  }

  .nav-left ul li,
  .nav-right ul li {
    border-bottom: 1px solid var(--light-border);
  }

  nav a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.9rem;
  }

  nav a::after {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .hero-product-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-product-item {
    width: 130px;
    scroll-snap-align: center;
  }

  .hero-product-item img {
    width: 110px;
    height: 130px;
  }

  .hero-product-name {
    opacity: 1;
    font-size: 0.72rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 1.5rem 1rem;
  }

  .product-detail-container,
  .checkout-container {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
    gap: 0.8rem;
  }

  .category-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 50px;
  }

  .logo-img {
    height: 54px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
