/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

.container {
  max-width: 1140px; /* Bootstrap lg */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.w-100 {
  width: 100% !important;
}

/* ================= TOP INFO STRIP ================= */

.top-info-strip {
  background: #0f172a;
  color: #cbd5f5;
  font-size: 13px;
}

.top-info-inner {
  max-width: 1280px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-info-inner span {
  margin-right: 18px;
}

.top-info-inner i {
  margin-right: 6px;
  color: #38bdf8;
}

/* ================= FRESH HEADER ================= */

.fresh-header {
  background: #ffffff;
  padding: 22px 0;
}

.fresh-header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

/* BRAND */

.brand-block img {
  height: 46px;
}

/* CENTER NAV */

.center-nav {
  background: #f1f5f9;
  padding: 12px 26px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  gap: 26px;
}

.center-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.center-nav a:hover {
  color: #2563eb;
}

/* ACTION CAPSULE */

.action-capsule {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

/* SEARCH */

.capsule-search {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border-radius: 999px;
  padding: 6px 10px;
}

.capsule-search input {
  border: none;
  background: transparent;
  padding: 6px 8px;
  width: 140px;
  font-size: 14px;
  outline: none;
}

.capsule-search button {
  border: none;
  background: none;
  cursor: pointer;
  color: #475569;
}

/* ICONS */

.capsule-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  text-decoration: none;
  position: relative;
}

.capsule-icon:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* CART COUNT */

.capsule-icon.cart .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}

/* MOBILE TOGGLE */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #1e293b;
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
}

.mobile-search {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
}

.mobile-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.mobile-search button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .fresh-header-inner {
    grid-template-columns: auto auto auto;
  }

  .center-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .capsule-search input {
    display: none;
  }
  .capsule-search {
    display: none;
  }
}

/* ================= LAUNCH HERO ================= */

.launch-hero {
  background: #2969ed;
  padding: 120px 0 140px;
}

.launch-hero-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  align-items: center;
  gap: 80px;
}

/* COPY */

.launch-copy h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
  color: white;
  margin-bottom: 26px;
}

.launch-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: white;
  max-width: 520px;
  margin-bottom: 36px;
}

/* CTA */

.launch-cta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-main {
  background: #1d1d1f;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.cta-main:hover {
  background: #000000;
}

.cta-link {
  font-size: 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.cta-link:hover {
  text-decoration: underline;
}

/* VISUAL */

.launch-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.launch-visual img {
  width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .launch-hero {
    padding: 90px 0 100px;
  }

  .launch-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .launch-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .launch-cta {
    justify-content: center;
  }

  .launch-visual img {
    transform: none;
    margin-top: 40px;
  }
}

/* ================= ABOUT MODERN ================= */

.about-modern {
  background: #f9fafb;
  padding: 110px 0;
}

.about-modern-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* STORY */

.about-story h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 26px;
}

.about-story p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
  max-width: 560px;
}

/* HIGHLIGHTS */

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.highlight-card {
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.highlight-card strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.highlight-card span {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-modern {
    padding: 90px 0;
  }

  .about-modern-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story h2 {
    font-size: 32px;
  }
}

/* ================= CATEGORY NAV ================= */

.category-nav {
  background: #ffffff;
  padding: 120px 0;
}

.category-nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

.category-nav-head {
  text-align: center;
  margin-bottom: 70px;
}

.category-nav-head h2 {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 14px;
}

.category-nav-head p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* GRID */

.category-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* ITEM */

.category-nav-item {
  position: relative;
  padding: 34px 32px 38px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-nav-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* TAG */

.cat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 14px;
}

/* TEXT */

.category-nav-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.category-nav-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ACTION */

.cat-action {
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .category-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-nav {
    padding: 90px 0;
  }

  .category-nav-head h2 {
    font-size: 32px;
  }

  .category-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CURATED PRODUCTS ================= */

.curated-products {
  background: #ffffff;
  padding: 110px 0;
}

.curated-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

.curated-header {
  text-align: center;
  margin-bottom: 60px;
}

.curated-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.curated-header p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* LIST */

.curated-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
}

/* ITEM */

.curated-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.curated-item:hover {
  border-color: #c7d2fe;
  background: #f9fafb;
}

/* LINK */

.curated-link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

/* IMAGE */

.curated-image {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curated-image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* INFO */

.curated-info h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.curated-info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* META */

.curated-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.curated-price {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
}

.curated-stock {
  font-size: 13px;
}

.curated-stock.in-stock {
  color: #16a34a;
}

.curated-stock.out-stock {
  color: #b91c1c;
}

/* ACTION WRAPPER */

.curated-action {
  grid-column: 1 / -1; /* spans full card width */
  margin-top: 18px;
}

/* FORM FULL WIDTH */

.curated-cart-form {
  width: 100%;
}

/* FULL WIDTH BUTTON */

.curated-cart-btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 14px;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.25s ease,
    transform 0.15s ease;
}

/* HOVER */

.curated-cart-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* DISABLED */

.curated-disabled {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 14px;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 14px;
}

/* BADGE */

.curated-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* FEATURE TAG */

.curated-feature {
  display: inline-block;
  font-size: 12px;
  color: #2563eb;
  margin-bottom: 6px;
  font-weight: 500;
}

/* RATING */

.curated-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.stars {
  font-size: 13px;
  color: #facc15;
  letter-spacing: 1px;
}

.rating-text {
  font-size: 13px;
  color: #6b7280;
}

/* POSITION FIX */

.curated-item {
  position: relative;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .curated-list {
    grid-template-columns: 1fr;
  }

  .curated-item {
    grid-template-columns: 1fr;
  }

  .curated-action {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

/* ================= TRUST STRIP ================= */

/* LEAD TEXT */

.trust-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #c7d2fe;
  max-width: 540px;
  margin-bottom: 28px;
}

/* BULLETS */

.trust-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.trust-bullets li {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.trust-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-size: 22px;
  line-height: 1;
}

/* ACTIONS */

.trust-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.trust-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.trust-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.trust-btn-secondary {
  font-size: 15px;
  color: #c7d2fe;
  text-decoration: none;
  align-self: center;
}

.trust-btn-secondary:hover {
  text-decoration: underline;
}

/* MICRO TRUST */

.trust-micro {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: #94a3b8;
}

.trust-strip {
  background:
    radial-gradient(
      circle at top right,
      rgba(59, 130, 246, 0.25),
      transparent 60%
    ),
    linear-gradient(135deg, #0f172a, #020617);
  padding: 120px 0;
  color: #e5e7eb;
}

.trust-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.trust-head h2 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
}

.trust-head p {
  font-size: 17px;
  line-height: 1.8;
  color: #cbd5f5;
  max-width: 520px;
}

/* RIGHT */

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* POINT */

.trust-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.trust-point:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

/* ICON */

.trust-icon {
  font-size: 28px;
  line-height: 1;
}

/* TEXT */

.trust-point strong {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.trust-point em {
  font-size: 14px;
  font-style: normal;
  color: #cbd5f5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .trust-strip {
    padding: 90px 0;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trust-head h2 {
    font-size: 34px;
  }
}

/* ================= TESTIMONIALS CLEAN ================= */

.testimonials-clean {
  background: #ffffff;
  padding: 120px 0;
}

.testimonials-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.testimonials-head h2 {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.testimonials-head p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* GRID */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* CARD */

.testimonial-card {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px 26px 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  background: #ffffff;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* FEATURED */

.testimonial-card.featured {
  border-color: #c7d2fe;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

/* STARS */

.testimonial-stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* TEXT */

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
}

/* AUTHOR */

.testimonial-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.testimonial-card span {
  font-size: 13px;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-clean {
    padding: 90px 0;
  }

  .testimonials-head h2 {
    font-size: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HUMAN SUPPORT ================= */

.human-support {
  background:
    linear-gradient(135deg, #020617, #0f172a),
    radial-gradient(
      circle at bottom right,
      rgba(59, 130, 246, 0.35),
      transparent 55%
    );
  padding: 130px 0;
  color: #e5e7eb;
}

.human-support-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */

.human-support-content h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.human-support-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #c7d2fe;
  max-width: 520px;
  margin-bottom: 30px;
}

/* POINTS */

.human-support-points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.human-support-points li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #e5e7eb;
}

.human-support-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #60a5fa;
}

/* ACTIONS */

.human-support-actions {
  display: flex;
  gap: 18px;
}

.human-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.human-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.human-btn-secondary {
  font-size: 15px;
  color: #c7d2fe;
  text-decoration: none;
  align-self: center;
}

.human-btn-secondary:hover {
  text-decoration: underline;
}

/* RIGHT PANEL */

.human-support-panel {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  padding: 36px 34px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-panel-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.support-panel-item span {
  font-size: 22px;
}

.support-panel-item strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.support-panel-item em {
  font-size: 14px;
  font-style: normal;
  color: #c7d2fe;
}

/* NOTE */

.support-panel-note {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .human-support {
    padding: 90px 0;
  }

  .human-support-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .human-support-content h2 {
    font-size: 34px;
  }
}

/* ================= SIMPLE BLACK FOOTER ================= */

.simple-footer {
  background: #000000;
  color: #d1d5db;
  font-size: 14px;
}

.simple-footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */

.footer-brand img {
  height: 42px;
  margin-bottom: 14px;
}

.footer-brand p {
  line-height: 1.7;
  color: #9ca3af;
}

/* BLOCK */

.footer-block h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 10px;
}

.footer-block ul li a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-block ul li a:hover {
  text-decoration: underline;
}

.footer-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* BOTTOM */

.simple-footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 25px 20px 30px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

.footer-disclaimer {
  margin-top: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .simple-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= 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;
  }
}

/* ================= APPLE STYLE PRODUCT HERO ================= */

.product-hero-apple {
  background: #f5f5f7; /* Apple-like soft gray */
  padding: 90px 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.product-hero-image {
  text-align: center;
}

.product-hero-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* CONTENT */
.product-hero-content {
  max-width: 520px;
}

.product-brand {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 12px;
}

.product-title {
  font-size: 36px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 14px;
}

.product-price {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
  color: #1d1d1f;
}

.product-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #515154;
  margin-bottom: 32px;
}

/* CTA */
.product-cta-wrap {
  margin-bottom: 26px;
}

.btn-apple {
  background: #0071e3; /* Apple blue */
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.btn-apple:hover {
  background: #0077ed;
}

.stock-note {
  color: #b91c1c;
  font-size: 14px;
}

/* MICRO TRUST */
.product-micro-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-micro-points li {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-content {
    margin: auto;
  }
}

/* ================= APPLE STYLE TABS (CONTAINER SAFE) ================= */

.product-tabs-apple {
  background: #ffffff;
  padding: 60px 0; /* reduced */
}

.product-tabs-apple .container {
  max-width: 1140px; /* HARD LIMIT */
}

/* TAB NAV */
.tab-nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #d2d2d7;
  margin-bottom: 32px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 15px;
  color: #6e6e73;
  cursor: pointer;
}

.tab-btn.active {
  color: #1d1d1f;
  font-weight: 500;
  border-bottom: 2px solid #1d1d1f;
}

/* TAB CONTENT */
.tab-panel {
  display: none;
  max-width: 100%; /* NOT 820px */
  line-height: 1.75;
  color: #515154;
  font-size: 15px;
}

.tab-panel.active {
  display: block;
}

/* SPEC TABLE */
.spec-table-apple {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table-apple th {
  width: 32%;
  padding: 10px 8px;
  text-align: left;
  color: #1d1d1f;
  font-weight: 500;
}

.spec-table-apple td {
  padding: 10px 8px;
  color: #515154;
}

/* ================= APPLE STYLE ASSURANCE ROW ================= */

.product-assurance {
  background: #f5f5f7;
  padding: 60px 0;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.assurance-item {
  max-width: 260px;
  margin: 0 auto;
}

.assurance-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.assurance-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.assurance-item p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .assurance-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= STICKY ADD TO CART ================= */

.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #d2d2d7;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 999;
}

.sticky-atc.show {
  transform: translateY(0);
}

.sticky-atc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
}

/* INFO */
.sticky-atc-info {
  display: flex;
  flex-direction: column;
}

.sticky-atc-title {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-size: 14px;
  color: #515154;
}

/* ACTION */
.sticky-atc-action .btn-apple {
  padding: 10px 26px;
  font-size: 14px;
  border-radius: 999px;
}

/* MOBILE ADJUST */
@media (max-width: 600px) {
  .sticky-atc-title {
    max-width: 200px;
  }
}

/* =====================================================
   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 ================= */

.checkout-page {
  background: #ffffff;
}

/* HEADER — SAME SYSTEM */

.checkout-header {
  padding: 140px 0 90px;
  background: #f9fafb;
  text-align: center;
}

.checkout-header h1 {
  font-size: 46px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.checkout-header p {
  font-size: 16px;
  color: #374151;
  max-width: 620px;
  margin: 0 auto;
}

/* BODY */

.checkout-body {
  padding: 110px 0 150px;
}

/* LAYOUT */

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

/* FORM */

.checkout-form h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 20px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #111827;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
}

/* PAYMENT */

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.payment-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  display: block;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.payment-card input {
  display: none;
}

.payment-card:has(input:checked) {
  border-color: #2563eb;
  background: #f0f7ff;
}

.payment-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #111827;
}

.payment-content span {
  font-size: 13px;
  color: #6b7280;
}

/* BUTTON */

.btn-place-order {
  margin-top: 40px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

/* SUMMARY */

.checkout-summary {
  background: #f9fafb;
  padding: 32px;
  border-radius: 22px;
  position: sticky;
  top: 120px;
}

.checkout-summary h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

.summary-head,
.summary-row {
  display: grid;
  grid-template-columns: 1fr 70px 110px;
  padding: 12px 0;
}

.summary-head {
  font-size: 13px;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
}

.summary-row {
  border-bottom: 1px solid #f1f5f9;
}

.summary-totals {
  margin-top: 24px;
}

.summary-totals div {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.summary-totals .total {
  font-size: 18px;
  font-weight: 600;
}

.checkout-left {
  display: block;
}

.paypal-wrap {
  margin-top: 30px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS PAGE
===================================================== */

.order-success-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.order-success-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 56px 48px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.order-success-card h1 {
  font-size: 34px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

/* MESSAGE */
.success-message {
  font-size: 16px;
  color: #374151;
  margin-bottom: 36px;
}

/* STEPS */
.success-steps {
  text-align: left;
  background: #f9fafb;
  padding: 28px;
  border-radius: 18px;
  margin-bottom: 36px;
}

.success-steps h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.success-steps ul {
  margin: 0;
  padding-left: 18px;
}

.success-steps li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

/* ACTIONS */
.success-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-outline {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #d2d2d7;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline:hover {
  background: #f5f5f7;
}

/* NOTE */
.success-note {
  font-size: 13px;
  color: #6e6e73;
}

.success-note a {
  color: #0071e3;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .order-success-card {
    padding: 36px 24px;
  }

  .success-actions {
    flex-direction: column;
  }
}

/* =====================================================
   TRACK ORDER PAGE
===================================================== */

.track-order-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.track-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.track-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 48px;
}

/* CARD */
.track-card {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* FORM */
.track-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.track-form label {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
}

.track-form input {
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

.track-form input:focus {
  outline: none;
  border-color: #0071e3;
}

.track-form .btn-apple {
  margin-top: 10px;
  padding: 14px 0;
  border-radius: 999px;
}

/* ERROR */
.track-error {
  margin-top: 16px;
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

/* RESULT */
.track-result {
  margin-top: 32px;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-icon.processing {
  background: #fef3c7;
  color: #92400e;
}

.status-icon.dispatched {
  background: #dcfce7;
  color: #166534;
}

.track-result h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.track-result p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 24px;
}

/* META */
.track-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #f9fafb;
  padding: 16px;
  border-radius: 14px;
  font-size: 13px;
}

.track-meta strong {
  display: block;
  color: #1d1d1f;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .track-card {
    padding: 28px 22px;
  }

  .track-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* =====================================================
   RETURN ORDER PAGE
===================================================== */

.return-order-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.return-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.return-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 48px;
}

/* CARD */
.return-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FORM */
.return-form .form-group {
  margin-bottom: 22px;
}

.return-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.return-form input,
.return-form select,
.return-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

.return-form textarea {
  min-height: 90px;
  resize: vertical;
}

.return-form input:focus,
.return-form select:focus,
.return-form textarea:focus {
  outline: none;
  border-color: #0071e3;
}

/* ERROR */
.return-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* NOTE */
.return-note {
  font-size: 13px;
  color: #6e6e73;
  margin-top: 14px;
  text-align: center;
}

/* SUCCESS */
.return-success {
  text-align: center;
}

.return-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-success h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.return-success p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 24px;
}

.return-meta {
  background: #f9fafb;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .return-card {
    padding: 30px 22px;
  }
}

/* ================= AUTH PAGE ================= */

.auth-page {
  background: #f5f5f7;
}

/* HEADER (MATCH CONTACT / FAQ SIZE) */
.auth-header {
  padding: 90px 0 50px;
  text-align: center;
}

.auth-header h1 {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: 15px;
  color: #6e6e73;
}

/* BODY */
.auth-body {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

/* CARD */
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 42px 36px 38px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FORM */
.auth-form {
  width: 100%;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.field input {
  width: 100%;
  box-sizing: border-box; /* IMPORTANT FIX */
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

/* PASSWORD */
.password-field {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #6e6e73;
}

/* BUTTON */
.auth-submit {
  width: 100%;
  box-sizing: border-box; /* SAME WIDTH AS INPUT */
  margin-top: 8px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  background: #0071e3;
  color: #ffffff;
  cursor: pointer;
}

.auth-submit:hover {
  background: #0077ed;
}

/* SWITCH */
.auth-switch {
  margin-top: 26px;
  font-size: 14px;
  text-align: center;
  color: #6e6e73;
}

.auth-switch a {
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ================= ACCOUNT PAGE ================= */

.account-page {
  background: #f5f5f7;
}

/* HEADER */
.account-header {
  padding: 90px 0 60px;
  text-align: center;
}

.account-header h1 {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.account-header p {
  font-size: 15px;
  color: #6e6e73;
}

/* LAYOUT */
.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  padding-bottom: 100px;
}

/* SIDEBAR */
.account-sidebar {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.account-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0071e3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.account-user span {
  font-size: 13px;
  color: #6e6e73;
}

/* NAV */
.account-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #1d1d1f;
  cursor: pointer;
}

.account-nav a.active {
  background: #0071e3;
  color: #ffffff;
}

.account-nav a:hover {
  background: #f5f5f7;
}

.account-nav .logout {
  margin-top: 16px;
  color: #b91c1c;
}

/* CONTENT */
.account-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* STATS */
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-card span {
  font-size: 13px;
  color: #6e6e73;
}

.stat-card strong {
  display: block;
  font-size: 20px;
  margin: 6px 0;
}

.stat-card a {
  font-size: 14px;
  color: #0071e3;
  text-decoration: none;
}

/* CARD */
.account-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.account-card h2 {
  font-size: 22px;
  margin-bottom: 22px;
}

/* INFO */
.account-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.account-info span {
  font-size: 13px;
  color: #6e6e73;
  display: block;
  margin-bottom: 4px;
}

.account-info strong {
  font-size: 15px;
  color: #1d1d1f;
}

/* NOTE */
.account-note {
  font-size: 14px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT INTRO ================= */

.about-intro {
  background: linear-gradient(180deg, #0a0a0a, #000000);
  color: #e5e7eb;
  padding: 140px 0 120px;
}

.about-intro-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.about-intro h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 28px;
  color: #ffffff;
}

.about-intro-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 22px;
  max-width: 760px;
}

.about-intro-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-intro {
    padding: 110px 0 90px;
  }

  .about-intro h1 {
    font-size: 34px;
  }
}

/* ================= ABOUT OPENING ================= */

.about-opening {
  background: #f9fafb; /* soft neutral */
  padding: 140px 0 120px;
}

.about-opening-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */

.about-opening-left h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 600;
  color: #111827;
}

/* RIGHT */

.about-opening-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-opening {
    padding: 110px 0 90px;
  }

  .about-opening-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-opening-left h1 {
    font-size: 34px;
  }
}

/* ================= ABOUT PROCESS ================= */

.about-process {
  background: #ffffff;
  padding: 140px 0;
}

.about-process-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

.about-process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.about-process-head h2 {
  font-size: 38px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.about-process-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

/* GRID */

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
}

/* CARD */

.process-card {
  position: relative;
  padding-left: 56px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  font-weight: 600;
  color: #2563eb;
}

/* CONTENT */

.process-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 10px;
  max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-process {
    padding: 110px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-process-head h2 {
    font-size: 32px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  background: #ffffff;
}

/* HEADER */

.contact-header {
  padding: 140px 0 90px;
  background: #f9fafb;
}

.contact-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.contact-header p {
  font-size: 17px;
  color: #374151;
  max-width: 560px;
  line-height: 1.8;
}

/* BODY */

.contact-body {
  padding: 100px 0 140px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: start;
}

/* FORM */

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 36px;
  color: #111827;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row label {
  display: block;
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-submit {
  margin-top: 18px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.contact-submit:hover {
  background: #000000;
}

/* SUCCESS */

.contact-success {
  max-width: 420px;
}

.success-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}

/* DETAILS */

.contact-details-wrap {
  padding-top: 10px;
}

.contact-details-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
  color: #111827;
}

.contact-line {
  margin-bottom: 22px;
}

.contact-line span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-line strong {
  font-size: 15px;
  color: #111827;
  line-height: 1.6;
}

.contact-footnote {
  margin-top: 30px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-header {
    padding: 110px 0 70px;
  }

  .contact-header h1 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-body {
    padding: 80px 0 100px;
  }
}

/* ================= FAQ PAGE ================= */

.faq-page {
  background: #ffffff;
}

/* HEADER — SAME PATTERN AS CONTACT */

.faq-header {
  padding: 140px 0 90px;
  background: #f9fafb;
  text-align: center;
}

.faq-header h1 {
  font-size: 46px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.faq-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  max-width: 640px;
  margin: 0 auto;
}

/* BODY */

.faq-body {
  padding: 110px 0 150px;
}

/* GROUP */

.faq-group {
  max-width: 820px;
  margin: 0 auto 90px;
}

.faq-group h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 30px;
}

/* ROW */

.faq-row {
  margin-bottom: 26px;
}

.faq-row h3 {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 6px;
}

.faq-row p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  max-width: 700px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .faq-header {
    padding: 110px 0 70px;
  }

  .faq-header h1 {
    font-size: 34px;
  }

  .faq-body {
    padding: 80px 0 110px;
  }

  .faq-group {
    margin-bottom: 70px;
  }
}

/* ================= SHOP PAGE ================= */

.shop-page {
  background: #ffffff;
}

/* HEADER */
.shop-header {
  padding: 90px 0 60px;
  text-align: center;
}

.shop-header h1 {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.shop-header p {
  font-size: 16px;
  color: #6e6e73;
}

/* GRID */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 100px;
}

/* CARD */
.shop-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* BADGE */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  color: #fff;
}

.badge-hot {
  background: #ef4444;
}
.badge-new {
  background: #2563eb;
}
.badge-sale {
  background: #16a34a;
}

/* IMAGE */
.shop-image {
  background: #f5f5f7;
  padding: 32px;
  text-align: center;
}

.shop-image img {
  max-height: 190px;
  object-fit: contain;
}

/* INFO */
.shop-info {
  padding: 22px 22px 18px;
}

.shop-info h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

/* RATING */
.shop-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars {
  color: #f59e0b;
  font-size: 14px;
}

.reviews {
  font-size: 13px;
  color: #6e6e73;
}

.shop-info p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* META */
.shop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.stock.in {
  color: #16a34a;
  font-size: 13px;
}

.stock.out {
  color: #b91c1c;
  font-size: 13px;
}

/* ACTION */
.shop-action {
  padding: 18px;
  border-top: 1px solid #e5e7eb;
}

.shop-btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  border: none;
  background: #0071e3;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.shop-card a {
  text-decoration: none;
}

.shop-btn:hover {
  background: #0077ed;
}

.shop-btn.disabled {
  background: #e5e7eb;
  color: #6e6e73;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   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;
}

.innovodel-vertical-cta {
    position: fixed;
    right: -50px;
    border: 2px solid white;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}