/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
}

.container {
  max-width: 1140px; /* Bootstrap lg */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.w-100 {
  width: 100% !important;
}

/* ================= TOPBAR (CHARCOAL + EMERALD) ================= */

.topbar {
  background: linear-gradient(90deg, #0b0f14, #111827);
  color: #e5e7eb;
  font-size: 13px;
}

.topbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* LEFT */
.topbar-left {
  display: flex;
  gap: 22px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar-item i {
  color: #22c55e; /* emerald */
  font-size: 13px;
}

.topbar-item:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* RIGHT */
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #facc15; /* soft gold */
}

.topbar-badge i {
  color: #22c55e;
  font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .topbar-left {
    flex-direction: column;
    gap: 8px;
  }

  .topbar-right {
    justify-content: center;
  }
}

/* ================= HEADER (NEW STRUCTURE) ================= */

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* ================= LEFT ================= */

.header-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand img {
  height: 60px;
}

/* NAV */
.header-nav {
  display: flex;
  gap: 26px;
}

.header-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #22c55e; /* emerald */
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ================= CENTER SEARCH ================= */

.header-search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f7;
  padding: 10px 16px;
  border-radius: 999px;
  max-width: 420px;
  width: 100%;
}

.header-search-pill i {
  color: #6b7280;
  font-size: 14px;
}

.header-search-pill input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  outline: none;
}

/* ================= RIGHT ================= */

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 999px;
}

.action-icon {
  position: relative;
  font-size: 18px;
  color: #1f2937;
  text-decoration: none;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.action-icon:hover {
  background: #e5e7eb;
  color: #000000;
}

/* CART COUNT */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #22c55e;
  color: #022c22;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-wrap {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .header-search-pill {
    display: none;
  }
}

/* ================= HERO (TEXT-FIRST, PREMIUM) ================= */

.hero-new {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(34, 197, 94, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(250, 204, 21, 0.12),
      transparent 45%
    ),
    linear-gradient(180deg, #0b0f14, #111827);
  color: #ffffff;
  padding: 140px 20px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle depth */
.hero-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.12),
    transparent 60%
  );
}

.hero-new-inner {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* EYEBROW */
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 18px;
}

/* TITLE */
.hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-title span {
  color: #22c55e;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 18px;
  color: #d1d5db;
  max-width: 720px;
  margin: 0 auto 42px;
  line-height: 1.8;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
}

.btn-hero-primary {
  background: #22c55e;
  color: #022c22;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #16a34a;
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* TRUST STRIP */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
}

.hero-proof strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.hero-proof span {
  font-size: 14px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================= CATEGORY SECTION (EDITORIAL STYLE) ================= */

.categories-new {
  background: #ffffff;
  padding: 110px 20px;
}

.categories-inner {
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.section-head {
  max-width: 680px;
  margin-bottom: 70px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a;
}

.section-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* TILE */
.category-tile {
  position: relative;
  padding: 34px 28px;
  border-radius: 24px;
  text-decoration: none;
  color: #0f172a;
  background: #f9fafb;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.14);
}

.category-tile:hover::before {
  opacity: 1;
}

/* LABEL */
.tile-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #16a34a;
}

/* TEXT */
.category-tile h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.category-tile p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tile-cta {
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
}

/* ACCENT BACKGROUNDS */
.category-tile.inkjet::before {
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.18),
    transparent 60%
  );
}

.category-tile.laser::before {
  background: radial-gradient(
    circle at top,
    rgba(250, 204, 21, 0.18),
    transparent 60%
  );
}

.category-tile.home::before {
  background: radial-gradient(
    circle at top,
    rgba(148, 163, 184, 0.22),
    transparent 60%
  );
}

.category-tile.office::before {
  background: radial-gradient(
    circle at top,
    rgba(99, 102, 241, 0.18),
    transparent 60%
  );
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .category-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-tiles {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 30px;
  }
}

/* ================= FEATURED SHOWCASE ================= */

.featured-showcase {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  padding: 120px 20px;
}

.showcase-inner {
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.showcase-header {
  max-width: 640px;
  margin-bottom: 70px;
}

.showcase-header h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a;
}

.showcase-header p {
  font-size: 16px;
  color: #475569;
}

/* GRID */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.showcase-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.14);
}

/* LINK RESET */
.showcase-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* MEDIA */
.showcase-media {
  position: relative;
  background: #f5f5f7;
  padding: 40px 0;
  text-align: center;
}

.showcase-media img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

/* BADGES */
.price-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.stock-badge.in {
  background: #dcfce7;
  color: #166534;
}

.stock-badge.out {
  background: #fee2e2;
  color: #991b1b;
}

/* INFO */
.showcase-info {
  padding: 26px;
}

.showcase-info h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #0f172a;
}

.showcase-info p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ACTIONS */
.showcase-actions {
  padding: 22px;
  border-top: 1px solid #e5e7eb;
}

.btn-showcase {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
}

.btn-showcase:hover {
  background: #16a34a;
}

.btn-showcase.disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-header h2 {
    font-size: 30px;
  }
}

/* ================= WHY TRUST SECTION ================= */

.why-trust {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 120px 20px;
  color: #ffffff;
}

.why-trust-inner {
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.why-head {
  max-width: 720px;
  margin-bottom: 70px;
}

.why-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 16px;
}

.why-head h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-head p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.7;
}

/* GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.why-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  padding: 38px 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

/* ICON */
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon i {
  font-size: 22px;
  color: #22c55e;
}

/* TEXT */
.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-head h2 {
    font-size: 30px;
  }
}

/* ================= PURCHASE ASSURANCE STRIP ================= */

.assurance-strip {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 80px 20px;
}

.assurance-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

/* ITEM */
.assurance-item {
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assurance-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.14);
}

/* ICON */
.assurance-item i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 14px;
}

/* TEXT */
.assurance-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.assurance-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .assurance-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .assurance-inner {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT BRAND SECTION ================= */

.about-brand {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  padding: 120px 20px;
}

.about-brand-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-brand-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
  object-fit: cover;
}

/* CONTENT */
.about-brand-content {
  max-width: 560px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 16px;
}

.about-brand-content h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-brand-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ACTIONS */
.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn-about-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-about-primary:hover {
  background: #16a34a;
}

.btn-about-secondary {
  border: 1px solid #d1d5db;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-about-secondary:hover {
  background: #f3f4f6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-brand-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-brand-content {
    text-align: center;
    margin: auto;
  }

  .about-actions {
    justify-content: center;
    flex-direction: column;
  }
}

/* ================= SUPPORT CTA ================= */
.support-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 90px 0;
  color: #ffffff;
}

.support-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.support-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.support-content p {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ACTION BUTTONS */
.support-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.btn-support-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-support-primary:hover {
  background: #16a34a;
}

.btn-support-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-support-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* CONTACT INFO */
.support-info {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .support-actions {
    flex-direction: column;
  }
  .support-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= FOOTER (NEW PREMIUM DESIGN) ================= */

.footer-new {
  background: linear-gradient(135deg, #020617 0%, #0b1f17 40%, #020617 100%);
  color: #e5e7eb;
}

/* ================= TOP ================= */

.footer-top {
  padding: 100px 20px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
}

/* BRAND */
.footer-brand img {
  height: 100px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.8;
  max-width: 420px;
}

/* LINKS */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #22c55e;
}

/* ================= BOTTOM ================= */

.footer-bottom-new {
  padding: 40px 20px 50px;
}

.footer-bottom-inner-new {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* META */
.footer-meta {
  font-size: 14px;
  color: #cbd5f5;
}

.footer-meta strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

/* COPY */
.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}

/* NOTE */
.footer-note {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner-new {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PRODUCT PAGE ================= */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  background: #f1f5f9;
}

.product-hero {
  padding: 80px 0;
  background: #ffffff;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-image-main img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-details h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.product-stock.in-stock {
  color: #16a34a;
  margin-bottom: 16px;
}

.product-short-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.btn-buy {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

.product-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.product-highlights {
  background: #0f172a;
  color: #fff;
  padding: 60px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.product-section {
  padding: 80px 0;
}

.product-section.light-bg {
  background: #f8fafc;
}

.specs-box,
.compatibility-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  line-height: 1.8;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-hero-grid,
  .highlights-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PRODUCT PAGE — FINAL, CLEAN & PRODUCTION READY
===================================================== */

/* -----------------------------
   PRODUCT HERO
----------------------------- */

.product-hero-modern {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 110px 20px 90px;
}

.product-hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-media {
  text-align: center;
}

.product-media img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-summary {
  max-width: 520px;
}

.product-brand-pill {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 10px;
}

.product-summary h1 {
  font-size: 38px;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 14px;
}

.product-price-row {
  font-size: 26px;
  font-weight: 600;
  color: #0f172a;
}

.tax-note {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.product-short {
  margin: 22px 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.product-actions {
  margin-bottom: 18px;
}

.btn-product-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-product-primary:hover {
  background: #16a34a;
}

.stock-note {
  font-size: 14px;
  color: #b91c1c;
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: #475569;
}

/* -----------------------------
   PRODUCT TABS (FIXED)
----------------------------- */

.product-tabs-modern {
  background: #ffffff;
  padding: 90px 20px;
}

.tab-nav-modern {
  display: flex;
  justify-content: center;
  gap: 42px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 44px;
}

.tab-nav-modern .tab-btn {
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 15px;
  color: #64748b;
  cursor: pointer;
  position: relative;
}

.tab-nav-modern .tab-btn.active {
  color: #0f172a;
  font-weight: 600;
}

.tab-nav-modern .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #16a34a;
}

/* TAB CONTENT WRAPPER */
.tab-panels {
  max-width: 900px;
  margin: auto;
}

/* PANELS */
.tab-panel {
  display: none;
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

.tab-panel.active {
  display: block;
}

/* SPEC TABLE */
.spec-table-modern {
  width: 100%;
  border-collapse: collapse;
}

.spec-table-modern th {
  width: 35%;
  text-align: left;
  padding: 12px 10px;
  font-weight: 500;
  color: #0f172a;
}

.spec-table-modern td {
  padding: 12px 10px;
  color: #475569;
}

/* LIST */
.usage-list {
  padding-left: 20px;
}

.usage-list li {
  margin-bottom: 8px;
}

/* -----------------------------
   ASSURANCE SECTION
----------------------------- */

.product-assurance-modern {
  background: #f9fafb;
  padding: 90px 20px;
}

.assurance-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.assurance-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.assurance-box i {
  font-size: 26px;
  color: #16a34a;
  margin-bottom: 12px;
}

.assurance-box h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.assurance-box p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* -----------------------------
   STICKY ADD TO CART (TOP)
----------------------------- */

.sticky-atc-modern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  display: none;
}

.sticky-atc-modern.show {
  display: block;
}

.sticky-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-inner strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}

.sticky-inner span {
  font-size: 14px;
  color: #475569;
}

/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 900px) {
  .product-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-summary {
    margin: auto;
  }

  .product-trust {
    justify-content: center;
  }

  .assurance-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .assurance-wrap {
    grid-template-columns: 1fr;
  }

  .tab-nav-modern {
    gap: 24px;
  }
}

/* =====================================================
   CART PAGE — PROFESSIONAL ECOMMERCE DESIGN
===================================================== */

.cart-page {
  padding: 80px 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cart-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1d1d1f;
}

/* ================= LAYOUT ================= */

.cart-layout {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 64px;
}

/* ================= TABLE HEADER ================= */

.cart-head {
  display: grid;
  grid-template-columns: 1fr 160px 140px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ================= ROW ================= */

.cart-row {
  display: grid;
  grid-template-columns: 1fr 160px 140px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ================= PRODUCT ================= */

.cart-product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product img {
  width: 84px;
  height: auto;
  border-radius: 12px;
  background: #f5f5f7;
}

.cart-product h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.4;
}

/* ================= QUANTITY ================= */

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty input {
  width: 56px;
  height: 36px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
}

.cart-qty button {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  cursor: pointer;
}

.cart-qty button:hover {
  background: #e5e7eb;
}

/* ================= PRICE + REMOVE ================= */

.cart-price {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
}

.cart-remove {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-remove:hover {
  text-decoration: underline;
}

/* ================= ORDER SUMMARY ================= */

.cart-summary {
  background: #f9fafb;
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 120px;
}

.cart-summary h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #1d1d1f;
}

/* SUMMARY ROWS */

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 16px;
  color: #1d1d1f;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* ================= CTA ================= */

.cart-summary .btn-apple {
  width: 100%;
  margin-top: 28px;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.cart-summary .btn-apple:hover {
  background: #0077ed;
}

/* ================= NOTE ================= */

.summary-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6e6e73;
  text-align: center;
  line-height: 1.6;
}

/* ================= EMPTY ================= */

.cart-empty {
  text-align: center;
  padding: 100px 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-head {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-price {
    text-align: left;
  }

  .cart-summary {
    position: static;
    margin-top: 40px;
  }
}

/* =====================================================
   CHECKOUT — MODERN PREMIUM DESIGN
===================================================== */

.checkout-modern {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.checkout-wrap {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.checkout-header {
  margin-bottom: 60px;
}

.checkout-step {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
}

.checkout-header h1 {
  font-size: 40px;
  margin: 12px 0;
  color: #0f172a;
}

.checkout-header p {
  color: #475569;
}

/* GRID */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

/* LEFT CARD */
.checkout-card {
  background: #ffffff;
  padding: 44px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/* SECTIONS */
.checkout-section {
  margin-bottom: 36px;
}

.checkout-section h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #16a34a;
}

/* PAYMENT */
.payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-card:hover {
  border-color: #16a34a;
  background: #f0fdf4;
}

.payment-card input {
  accent-color: #16a34a;
}

/* BUTTON */
.btn-checkout-primary {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn-checkout-primary:hover {
  background: #16a34a;
}

/* SUMMARY */
.checkout-summary-modern {
  background: #ffffff;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  height: fit-content;
}

.checkout-summary-modern h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.summary-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.summary-total div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total .total {
  font-size: 18px;
  font-weight: 600;
}

/* TRUST */
.checkout-trust {
  margin-top: 18px;
  font-size: 13px;
  color: #6b7280;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ERROR */
.checkout-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS — MODERN CELEBRATION UI
===================================================== */

.order-success-modern {
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
  padding: 120px 20px;
}

.success-wrap {
  max-width: 900px;
  margin: auto;
}

/* CARD */
.success-card-modern {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
}

/* CHECK ICON */
.success-check {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.success-card-modern h1 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #0f172a;
}

/* MESSAGE */
.success-message {
  font-size: 16px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* TIMELINE */
.success-timeline {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.timeline-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.timeline-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #475569;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-step.active span {
  background: #22c55e;
  color: #022c22;
}

.timeline-step p {
  font-size: 13px;
  color: #475569;
}

/* INFO */
.success-info {
  background: #f9fafb;
  padding: 24px;
  border-radius: 18px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ACTIONS */
.success-actions-modern {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.btn-success-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-success-primary:hover {
  background: #16a34a;
}

.btn-success-secondary {
  border: 1px solid #d1d5db;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-success-secondary:hover {
  background: #f3f4f6;
}

/* SUPPORT */
.success-support {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.success-support a {
  color: #16a34a;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .success-card-modern {
    padding: 40px 24px;
  }

  .success-timeline {
    flex-direction: column;
    gap: 18px;
  }

  .success-actions-modern {
    flex-direction: column;
  }
}

/* =====================================================
   TRACK ORDER — MODERN & REASSURING DESIGN
===================================================== */

.track-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.track-inner {
  max-width: 800px;
  margin: auto;
}

/* HEADER */
.track-head {
  text-align: center;
  margin-bottom: 70px;
}

.track-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
}

.track-head h1 {
  font-size: 40px;
  margin: 14px 0;
  color: #0f172a;
}

.track-head p {
  font-size: 16px;
  color: #475569;
}

/* CARD */
.track-box {
  background: #ffffff;
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* FORM */
.track-form-new label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.track-input-row {
  display: flex;
  gap: 14px;
}

.track-input-row input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
}

.track-input-row input:focus {
  outline: none;
  border-color: #22c55e;
}

.btn-track {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
}

.btn-track:hover {
  background: #16a34a;
}

/* ERROR */
.track-error-new {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

/* RESULT */
.track-result-new {
  margin-top: 36px;
}

/* STATUS */
.track-status {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.track-status i {
  font-size: 26px;
  margin-top: 4px;
}

.track-status.processing {
  background: #fef3c7;
  color: #92400e;
}

.track-status.dispatched {
  background: #dcfce7;
  color: #166534;
}

.track-status h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* META */
.track-meta-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #f1f5f9;
  padding: 18px;
  border-radius: 16px;
  font-size: 14px;
}

.track-meta-new strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .track-box {
    padding: 32px 24px;
  }

  .track-input-row {
    flex-direction: column;
  }

  .track-head h1 {
    font-size: 32px;
  }

  .track-meta-new {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RETURN ORDER — MODERN & TRUST-BUILDING DESIGN
===================================================== */

.return-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.return-inner {
  max-width: 820px;
  margin: auto;
}

/* HEADER */
.return-head {
  text-align: center;
  margin-bottom: 70px;
}

.return-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
}

.return-head h1 {
  font-size: 40px;
  margin: 14px 0;
  color: #0f172a;
}

.return-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* CARD */
.return-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* FORM */
.return-form-new .form-group {
  margin-bottom: 22px;
}

.return-form-new label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.return-form-new input,
.return-form-new select,
.return-form-new textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
}

.return-form-new textarea {
  min-height: 110px;
  resize: vertical;
}

.return-form-new input:focus,
.return-form-new select:focus,
.return-form-new textarea:focus {
  outline: none;
  border-color: #22c55e;
}

/* ERROR */
.return-error-new {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

/* BUTTONS */
.btn-return-primary {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
}

.btn-return-primary:hover {
  background: #16a34a;
}

.btn-return-secondary {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: #0f172a;
  text-decoration: none;
}

.btn-return-secondary:hover {
  background: #f1f5f9;
}

/* SUCCESS */
.return-success-new {
  text-align: center;
}

.return-success-new i {
  font-size: 52px;
  color: #22c55e;
  margin-bottom: 18px;
}

.return-success-new h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.return-success-new p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 26px;
}

/* META */
.return-meta-new {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 14px;
}

/* NOTE */
.return-note-new {
  font-size: 13px;
  color: #6b7280;
  margin-top: 18px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .return-box {
    padding: 32px 24px;
  }

  .return-head h1 {
    font-size: 32px;
  }
}

/* =====================================================
   AUTH — MODERN LOGIN DESIGN
===================================================== */

.auth-new {
  min-height: 100vh;
  background: linear-gradient(180deg, #020617 0%, #0b0f14 100%);
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.auth-new-inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT BRAND */
.auth-brand {
  color: #ffffff;
}

.auth-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 18px;
  display: inline-block;
}

.auth-brand h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}

.auth-brand h1 span {
  color: #22c55e;
}

.auth-brand p {
  font-size: 17px;
  color: #d1d5db;
  max-width: 420px;
  line-height: 1.7;
}

/* FEATURES */
.auth-features {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: #e5e7eb;
}

/* RIGHT CARD */
.auth-card {
  background: #ffffff;
  padding: 46px;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.auth-card h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #0f172a;
}

.auth-desc {
  font-size: 14px;
  color: #475569;
  margin-bottom: 28px;
}

/* FORM */
.auth-form-new .form-group {
  margin-bottom: 22px;
}

.auth-form-new label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.auth-form-new input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
}

.auth-form-new input:focus {
  outline: none;
  border-color: #22c55e;
}

/* BUTTON */
.btn-auth-primary {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
}

.btn-auth-primary:hover {
  background: #16a34a;
}

/* FOOTER */
.auth-footer {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
}

.auth-footer a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .auth-new-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .auth-brand {
    text-align: center;
  }

  .auth-brand p {
    margin: 0 auto;
  }
}

/* =====================================================
   AUTH — REGISTER PAGE VARIATION
===================================================== */

.auth-register .auth-brand h1 span {
  color: #22c55e;
}

.auth-register .auth-card {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   MY ACCOUNT — MODERN DASHBOARD DESIGN
===================================================== */

.account-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.account-new-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.account-head {
  margin-bottom: 60px;
}

.account-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
}

.account-head h1 {
  font-size: 40px;
  margin: 14px 0;
  color: #0f172a;
}

.account-head p {
  font-size: 16px;
  color: #475569;
}

/* GRID */
.account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

/* SIDEBAR */
.account-nav {
  background: #ffffff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.account-user {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-user span {
  font-size: 13px;
  color: #475569;
}

/* MENU */
.account-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}

.account-menu li.active {
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
}

.account-menu a {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 10px;
}

/* MAIN */
.account-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* PANEL */
.account-panel {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.account-panel h2 {
  font-size: 22px;
  margin-bottom: 22px;
}

/* INFO */
.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.account-info-grid span {
  font-size: 13px;
  color: #6b7280;
}

/* ACTIONS */
.account-actions-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.account-action-new {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-action-new i {
  font-size: 22px;
  color: #22c55e;
}

.account-action-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* NOTE */
.account-note-new {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f1f5f9;
  padding: 18px;
  border-radius: 16px;
  font-size: 14px;
  color: #475569;
}

.account-note-new i {
  color: #16a34a;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .account-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .account-actions-new {
    grid-template-columns: 1fr;
  }

  .account-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US PAGE
===================================================== */
.about-page {
  background: #ffffff;
}

.about-page section,
.about-page .about-section,
.about-page .about-block {
  position: relative;
  overflow: hidden;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  color: #0f172a;
}

.about-page p {
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
}

.about-hero-new {
  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, #020617, #0b0f14);
  padding: 160px 20px 130px;
  text-align: center;
  color: #ffffff;
}

.about-hero-inner {
  max-width: 900px;
  margin: auto;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 20px;
}

.about-hero-new h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 26px;
}

.about-hero-new h1 span {
  color: #22c55e;
}

.about-hero-new p {
  font-size: 18px;
  color: #d1d5db;
  max-width: 760px;
  margin: auto;
}

.about-block {
  padding: 120px 20px;
}

.about-block.light {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.about-block .container {
  max-width: 1200px;
  margin: auto;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-split h2 {
  font-size: 38px;
  margin-bottom: 22px;
}

.about-split p {
  margin-bottom: 18px;
}

.about-stat-box {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.about-stat-box strong {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.about-stat-box span {
  font-size: 15px;
  color: #475569;
}

.about-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 70px;
}

.about-card-new {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.16);
}

.about-card-new i {
  font-size: 32px;
  color: #22c55e;
  margin-bottom: 18px;
}

.about-card-new h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.about-values div {
  padding-top: 18px;
  border-top: 2px solid #e5e7eb;
}

.about-values h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-list-new {
  list-style: none;
  padding: 0;
}

.about-list-new li {
  font-size: 15px;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.about-list-new li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.about-disclaimer-new {
  background: radial-gradient(
      circle at top,
      rgba(250, 204, 21, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, #020617, #0b0f14);
  padding: 100px 20px;
}

.disclaimer-box {
  max-width: 920px;
  margin: auto;
  display: flex;
  gap: 26px;
  background: rgba(255, 255, 255, 0.06);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.disclaimer-box i {
  font-size: 34px;
  color: #facc15;
}

.disclaimer-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.disclaimer-box p {
  font-size: 14px;
  color: #cbd5f5;
}

@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-cards-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-hero-new h1 {
    font-size: 38px;
  }

  .about-block {
    padding: 80px 20px;
  }

  .about-cards-new,
  .about-values {
    grid-template-columns: 1fr;
  }

  .disclaimer-box {
    flex-direction: column;
  }
}

/* =====================================================
   CONTACT PAGE — NEW PREMIUM DESIGN
===================================================== */

.contact-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.contact-new-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.contact-head {
  max-width: 700px;
  margin-bottom: 80px;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 14px;
}

.contact-head h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.contact-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* LEFT INFO */
.contact-info-new h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-info-new p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 28px;
}

/* INFO CARDS */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.contact-card i {
  font-size: 20px;
  color: #22c55e;
  margin-top: 4px;
}

.contact-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 14px;
  color: #475569;
}

/* NOTE */
.contact-note-new {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
  background: #f1f5f9;
  border-radius: 16px;
}

.contact-note-new i {
  color: #16a34a;
  margin-top: 4px;
}

/* RIGHT FORM */
.contact-form-new {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.contact-form-new h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

/* FORM */
.contact-form-fields input,
.contact-form-fields textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  margin-bottom: 16px;
}

.contact-form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: #22c55e;
}

/* TWO COLUMN INPUTS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* BUTTON */
.btn-contact {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
}

.btn-contact:hover {
  background: #16a34a;
}

/* SUCCESS */
.contact-success-new {
  text-align: center;
}

.contact-success-new i {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 18px;
}

.contact-success-new h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-success-new p {
  font-size: 15px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ — MODERN ACCORDION DESIGN
===================================================== */

.faq-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.faq-inner {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.faq-head {
  text-align: center;
  margin-bottom: 80px;
}

.faq-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
}

.faq-head h1 {
  font-size: 40px;
  margin: 14px 0;
  color: #0f172a;
}

.faq-head p {
  font-size: 16px;
  color: #475569;
}

/* GROUP */
.faq-group {
  margin-bottom: 60px;
}

.faq-group h2 {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.faq-answer p {
  padding: 0 0 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-head h1 {
    font-size: 32px;
  }
}

/* =====================================================
   SHOP PAGE — MODERN MARKETPLACE UI
===================================================== */

.shop-modern {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.shop-wrap {
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.shop-header {
  margin-bottom: 50px;
}

.shop-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16a34a;
}

.shop-header h1 {
  font-size: 42px;
  margin-top: 12px;
  color: #0f172a;
}

.shop-search-note {
  margin-top: 12px;
  font-size: 14px;
  color: #475569;
}

/* GRID */
.shop-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}

/* FILTERS */
.shop-filters {
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  height: fit-content;
}

.shop-filters h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
}

.filter-list a:hover {
  background: #f0fdf4;
}

.filter-list a.active {
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
}

/* PRODUCTS GRID */
.product-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.product-card-modern {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px rgba(15, 23, 42, 0.14);
}

/* IMAGE */
.product-thumb {
  background: #f8fafc;
  padding: 26px;
  position: relative;
  text-align: center;
}

.product-thumb img {
  max-height: 180px;
  object-fit: contain;
}

.stock-badge.in {
  background: #dcfce7;
  color: #166534;
}

.stock-badge.out {
  background: #fee2e2;
  color: #991b1b;
}

/* BODY */
.product-body {
  padding: 22px;
}

.product-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f172a;
}

.product-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FOOTER */
.product-footer {
  margin-top: auto;
  padding: 18px 22px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 17px;
  font-weight: 600;
}

/* CART BUTTON */
.btn-add-cart {
  background: #22c55e;
  color: #022c22;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #16a34a;
}

/* EMPTY */
.shop-empty {
  font-size: 15px;
  color: #6b7280;
}

a.product-link {
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .product-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CART — MODERN ECOMMERCE DESIGN
===================================================== */

.cart-new {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 120px 20px;
}

.cart-new-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.cart-headline {
  margin-bottom: 60px;
}

.cart-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
}

.cart-headline h1 {
  font-size: 40px;
  margin-top: 14px;
  color: #0f172a;
}

/* EMPTY */
.cart-empty-new {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-new i {
  font-size: 44px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.cart-empty-new h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cart-empty-new p {
  color: #6b7280;
  margin-bottom: 22px;
}

/* GRID */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
}

/* ITEMS */
.cart-items-new {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cart-item-new {
  background: #ffffff;
  padding: 22px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* PRODUCT */
.cart-product-new {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-product-new img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 14px;
}

/* QTY */
.cart-qty-new input {
  width: 70px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.cart-qty-new button {
  margin-left: 8px;
  background: none;
  border: none;
  color: #16a34a;
  font-size: 13px;
  cursor: pointer;
}

/* PRICE */
.cart-price-new {
  text-align: right;
}

.cart-remove-new {
  background: none;
  border: none;
  font-size: 13px;
  color: #dc2626;
  cursor: pointer;
  margin-top: 6px;
}

/* SUMMARY */
.cart-summary-new {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  height: fit-content;
}

.cart-summary-new h2 {
  font-size: 24px;
  margin-bottom: 22px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 14px;
}

.summary-line.total {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
  margin-top: 14px;
}

/* BUTTON */
.btn-cart-primary {
  display: block;
  margin-top: 26px;
  padding: 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.btn-cart-primary:hover {
  background: #16a34a;
}

/* TRUST */
.summary-trust {
  margin-top: 18px;
  font-size: 13px;
  color: #6b7280;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-item-new {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cart-price-new {
    text-align: left;
  }
}

/* =====================================================
   CATEGORY PAGE
===================================================== */

.category-page {
  background: #ffffff;
}

/* HERO */
.category-hero {
  background: linear-gradient(180deg, #f5f5f7, #ffffff);
  padding: 90px 0 70px;
  text-align: center;
}

.category-hero h1 {
  font-size: 40px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.category-hero p {
  font-size: 16px;
  color: #374151;
  max-width: 640px;
  margin: 0 auto;
}

/* CONTENT */
.category-content {
  padding: 70px 0 100px;
}

/* INFO */
.category-info {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* EMPTY */
.category-empty {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .category-hero h1 {
    font-size: 32px;
  }
}

/* =====================================================
   POLICY PAGES (PRIVACY, TERMS, REFUND, ETC.)
===================================================== */

.policy-page {
  padding: 90px 0;
  background: #ffffff;
}

.policy-title {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.policy-updated {
  font-size: 13px;
  color: #6e6e73;
  margin-bottom: 40px;
}

.policy-content {
  max-width: 900px;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.policy-content p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
}

.policy-contact {
  margin-top: 16px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-title {
    font-size: 32px;
  }
}

.shop-search-note {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 30px;
}

/* Book Your Appointment */

/* ================= LANDING HERO ================= */

.landing-hero {
  width: 100%;
  height: 420px; /* desktop height */
  overflow: hidden;
  background: #0f172a;
}

.landing-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE: remove fixed height */
@media (max-width: 768px) {
  .landing-hero {
    height: auto;
  }

  .landing-hero img {
    height: auto;
    object-fit: contain;
  }
}

/* ================= LANDING CONTENT + FORM ================= */

.landing-convert {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.landing-convert-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.convert-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.convert-content .lead {
  font-size: 17px;
  color: #334155;
  margin-bottom: 18px;
  line-height: 1.8;
}

.convert-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.convert-points {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.convert-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* FORM BOX */
.convert-form {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

.convert-form h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #0f172a;
}

.form-note {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

/* FORM */
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.lead-form input:focus {
  outline: none;
  border-color: #16a34a;
}

/* FIX CONSENT ALIGNMENT */
.form-consent {
  display: flex;
  align-items: flex-start; /* IMPORTANT */
  gap: 12px;
  font-size: 13px;
  color: #475569;
  margin: 20px 0 28px;
  line-height: 1.6;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px; /* aligns checkbox with first line */
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-consent label {
  cursor: pointer;
}

.form-consent a {
  color: #16a34a;
  font-weight: 500;
  text-decoration: none;
}

/* BUTTON */
.btn-convert {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #022c22;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn-convert:hover {
  background: linear-gradient(180deg, #16a34a, #15803d);
}

.lead-form input,
.btn-convert {
  width: 100%;
  box-sizing: border-box;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .landing-convert-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .convert-form {
    padding: 34px 26px;
  }
}

@media (max-width: 600px) {
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================= SERVICES SECTION ================= */

.landing-services {
  padding: 90px 0;
  background: #ffffff;
}

.services-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
  color: #0f172a;
}

.services-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  background: #f8fafc;
  padding: 36px 30px;
  border-radius: 22px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* ICON */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY CHOOSE US ================= */

.landing-why {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.why-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.why-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 10px;
}

.why-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #0f172a;
}

.why-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.14);
}

/* ICON */
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/* TEXT */
.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #0f172a;
}

.why-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.form-success {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 14px;
  text-align: center;
}
