/* ================= 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;
}

/* =====================================================
   GLOBAL FORM NORMALIZATION (SITE-WIDE)
===================================================== */

/* Box sizing fix — CRITICAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Default form elements */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

/* Inputs & Textareas */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="search"],
textarea,
select {
  width: 100%;
  display: block;
}

/* Prevent mobile overflow */
input,
textarea {
  min-width: 0;
}

/* Textarea resizing control */
textarea {
  resize: vertical;
}

/* Buttons */
button {
  cursor: pointer;
}

/* Forms inside grid/flex */
form {
  width: 100%;
}

/* Fix flex/grid children overflow */
.checkout-fields,
.checkout-grid,
.contact-form-row,
.auth-form-hard,
.register-form-hard,
.cart-item-qty form {
  min-width: 0;
}

/* Inputs inside grid columns */
.checkout-fields > *,
.checkout-grid > *,
.contact-form-row > * {
  min-width: 0;
}

/* Remove weird Safari input overflow */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Mobile-specific hard fix */
@media (max-width: 768px) {
  input,
  textarea,
  select,
  button {
    width: 100% !important;
  }
}

/* =====================================================
   DARK HEADER — CENTER LOGO / LEFT MENU / RIGHT ACTIONS
   COLOR SYSTEM: ENTERPRISE BLUE
===================================================== */

.main-header {
  background: #0b0f19;
  border-bottom: 3px solid #111827;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* WRAP */
.header-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ================= LEFT NAV ================= */

.header-nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-left a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.header-nav-left a:hover {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

/* ================= CENTER LOGO ================= */

.header-logo-center {
  justify-self: center;
}

.header-logo-center img {
  height: 80px;
  width: auto;
  display: block;
}

/* ================= RIGHT ACTIONS ================= */

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

/* SEARCH */

.header-search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 2px solid white;
  background: transparent;
  max-width: 360px;
}

.header-search-pill i {
  font-size: 14px;
  color: white;
}

.header-search-pill input {
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}

.header-search-pill input::placeholder {
  color: #9ca3af;
}

/* ICON BUTTONS */

.action-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background: transparent;
}

.action-icon:hover {
  background: #2563eb;
  color: #ffffff;
}

/* CART COUNT */

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border: 2px solid #0b0f19;
}

/* ================= RESPONSIVE ================= */

/* LARGE TABLET */
@media (max-width: 1100px) {
  .header-search-pill {
    display: none;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .header-nav-left {
    display: none;
  }

  .header-wrap {
    grid-template-columns: auto 1fr auto;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .header-wrap {
    padding: 14px 16px;
  }

  .header-logo-center img {
    height: 48px;
  }

  .action-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .cart-count {
    font-size: 10px;
    padding: 2px 5px;
  }
}

/* =====================================================
   HERO — ENTERPRISE PRINTER PLATFORM (ALL NEW)
===================================================== */

.hero-enterprise {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(11, 15, 25, 0.92) 0%,
      rgba(11, 15, 25, 0.75) 60%,
      rgba(11, 15, 25, 0.95) 100%
    ),
    url("../images/hero-printer-bg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 80px 20px 80px;
  color: #ffffff;
  overflow-x: hidden;
}

.hero-enterprise-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr;
}

/* ================= CONTENT ================= */

.hero-content {
  max-width: 880px;
}

/* BADGE */

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.4);
}

/* HEADING */

.hero-heading {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 26px;
  margin-top:1px;
}

.hero-heading span {
  color: #2563eb;
}

/* TEXT */

.hero-text {
  font-size: 18px;
  line-height: 1.85;
  color: #e5e7eb;
  margin-bottom: 44px;
}

.hero-stats-pro {
  background: #00000047;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid white;
  box-shadow: 0 30px 70px rgb(255 255 255 / 22%);
}

/* ================= ACTIONS ================= */

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

/* PRIMARY */

.hero-btn.primary {
  background: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.hero-btn.primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

/* SECONDARY */

.hero-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-btn.secondary:hover {
  background: #ffffff;
  color: #0b0f19;
}

/* ================= STATS ================= */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 36px;
}

.hero-stats strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-stats span {
  font-size: 14px;
  color: #cbd5f5;
}

.hp-partner-wrapper {
    margin-top: 15px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */

@media (max-width: 900px) {
  .hero-heading {
    font-size: 44px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .hero-enterprise {
    padding: 120px 16px 100px;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-btn {
    width: auto;
    min-width: 220px;
  }

  .hero-heading {
    font-size: 34px;
  }
}

/* =====================================================
   FEATURED PRODUCTS — SOFT 3D PREMIUM
===================================================== */

.featured-3d {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 120px 20px;
}

.featured-3d-inner {
  max-width: 1280px;
  margin: auto;
}

/* HEADER */

.featured-3d-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.featured-3d-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.featured-3d-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */

.featured-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* CARD */

.product-3d-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 2px 0 rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-3d-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 36px 70px rgba(15, 23, 42, 0.14),
    0 6px 0 rgba(15, 23, 42, 0.08);
}

/* LINK */

.product-3d-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}

/* MEDIA (3D EFFECT) */

.product-3d-media {
  padding: 36px;
  background: radial-gradient(circle at top, #f1f5f9, #e2e8f0);
  text-align: center;
  perspective: 900px;
  border-top-right-radius: 26px;
  border-top-left-radius: 26px;
}

.product-3d-media img {
  max-height: 190px;
  object-fit: contain;
  transform: translateZ(40px);
  box-shadow:
    0 22px 34px rgba(0, 0, 0, 0.18),
    0 6px 0 rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-3d-card:hover .product-3d-media img {
  transform: translateZ(70px) scale(1.04);
  box-shadow:
    0 32px 54px rgba(0, 0, 0, 0.25),
    0 8px 0 rgba(0, 0, 0, 0.32);
}

/* INFO */

.product-3d-info {
  padding: 24px 26px 10px;
}

.product-3d-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.product-3d-info p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FOOTER */

.product-3d-footer {
  padding: 22px 26px 26px;
  border-top: 1px solid #e5e7eb;
}

.product-3d-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

/* PRICE */

.product-3d-price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

/* STOCK */

.product-3d-stock {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.product-3d-stock.in {
  background: #dcfce7;
  color: #166534;
}

.product-3d-stock.out {
  background: #fee2e2;
  color: #991b1b;
}

/* BUTTON */

.product-3d-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.product-3d-btn:hover {
  background: #1d4ed8;
}

.product-3d-btn.disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .featured-3d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-3d {
    padding: 90px 16px;
  }

  .featured-3d-grid {
    grid-template-columns: 1fr;
  }

  .featured-3d-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   ABOUT BRAND — OPERATIONAL SNAPSHOT (WITH BG)
===================================================== */

.about-snapshot {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 130px 20px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.about-snapshot-inner {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEAD ================= */

.about-snapshot-head {
  max-width: 820px;
  margin-bottom: 90px;
}

.about-snapshot-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.about-snapshot-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.85;
}

/* ================= GRID ================= */

.about-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

/* BLOCK */

.snapshot-block {
  padding-top: 26px;
  border-top: 3px solid #2563eb;
}

.snapshot-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.snapshot-block p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}

/* ================= FOOTER ================= */

.about-snapshot-footer {
  margin-top: 80px;
  display: flex;
  gap: 18px;
}

.snapshot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  box-sizing: border-box;
}

/* PRIMARY */

.snapshot-link.primary {
  background: #2563eb;
  color: #ffffff;
}

.snapshot-link.primary:hover {
  background: #1d4ed8;
}

/* SECONDARY */

.snapshot-link.secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.snapshot-link.secondary:hover {
  background: #2563eb;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .about-snapshot {
    padding: 100px 16px;
  }

  .about-snapshot-head h2 {
    font-size: 32px;
  }

  .about-snapshot-footer {
    flex-direction: column;
  }

  .snapshot-link {
    width: 100%;
  }
}

/* =====================================================
   WHY CHOOSE US — OPERATIONAL ADVANTAGE
===================================================== */

.why-advantage {
  background: #ffffff;
  padding: 140px 20px;
}

.why-advantage-inner {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */

.why-advantage-head {
  max-width: 760px;
  margin-bottom: 90px;
}

.why-advantage-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.why-advantage-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.85;
}

/* ================= GRID ================= */

.why-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ================= CARD ================= */

.advantage-card {
  padding-top: 28px;
  border-top: 3px solid #2563eb;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.advantage-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.85;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .why-advantage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .why-advantage {
    padding: 100px 16px;
  }

  .why-advantage-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   PRINTER CATEGORIES — SOFT WORKFLOW GRID
===================================================== */

.printer-categories-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 130px 20px;
}

.printer-categories-soft-inner {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */

.printer-categories-soft-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.printer-categories-soft-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.printer-categories-soft-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

/* ================= GRID ================= */

.printer-categories-soft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* CARD */

.soft-category-card {
  background: #ffffff;
  padding: 36px 38px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.soft-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 68px rgba(15, 23, 42, 0.14);
}

/* TEXT */

.soft-category-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.soft-category-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* CTA */

.soft-category-cta {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .printer-categories-soft-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .printer-categories-soft {
    padding: 100px 16px;
  }

  .printer-categories-soft-head h2 {
    font-size: 32px;
  }

  .soft-category-card {
    padding: 30px 26px;
  }
}

/* =====================================================
   CUSTOMER TESTIMONIALS — TRUST LED DESIGN
===================================================== */

.trust-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 130px 20px;
}

.trust-testimonials-inner {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */

.trust-testimonials-head {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}

.trust-testimonials-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.trust-testimonials-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

/* ================= GRID ================= */

.trust-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* ================= CARD ================= */

.trust-testimonial {
  background: #ffffff;
  padding: 34px 32px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* QUOTE */

.trust-quote {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* AUTHOR */

.trust-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-author span {
  font-size: 13px;
  color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .trust-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .trust-testimonials {
    padding: 100px 16px;
  }

  .trust-testimonials-head h2 {
    font-size: 32px;
  }

  .trust-testimonial {
    padding: 28px 24px;
  }
}

/* =====================================================
   FOOTER — SEGMENTED ROW DESIGN (NEW)
===================================================== */

.footer-alt {
  background: #0b0f19;
  color: #e5e7eb;
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= INFO BAR ================= */

.footer-info {
  padding: 80px 20px;
  border-bottom: 1px solid #1f2937;
}

.footer-info-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.footer-info-brand img {
  height: 100px;
  margin-bottom: 16px;
}

.footer-info-brand p {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.8;
  max-width: 520px;
}

.footer-info-contact strong {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-info-contact a,
.footer-info-contact span {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-info-contact a:hover {
  color: #2563eb;
}

/* ================= LINK STRIP ================= */

.footer-links-strip {
  background: #0f172a;
  padding: 26px 20px;
}

.footer-links-strip-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inline-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-inline-nav a:hover {
  color: #2563eb;
}

.footer-inline-nav.muted a {
  font-weight: 500;
  color: #9ca3af;
}

/* ================= BASE ================= */

.footer-base {
  padding: 40px 20px 30px;
}

.footer-base-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-business strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-business span {
  font-size: 13px;
  color: #9ca3af;
}

.footer-copy {
  font-size: 13px;
  color: #9ca3af;
  text-align: right;
}

.footer-disclaimer {
  max-width: 1000px;
  margin: 18px auto 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-info-inner {
    grid-template-columns: 1fr;
  }

  .footer-base-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    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 {
  color: #000;
  padding: 60px 0;
  font-weight: 600;
}

.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 DETAILS — MODERN DESIGN
===================================================== */

.product-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* LAYOUT */

.product-modern-layout {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* HEADER */

.product-modern-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.product-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #475569;
}

.product-rating span {
  margin-left: 6px;
  font-size: 13px;
}

/* IMAGE */

.product-modern-image {
  margin: 40px 0;
  text-align: center;
}

.product-modern-image img {
  max-height: 340px;
  object-fit: contain;
}

/* HIGHLIGHTS */

.product-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.product-highlights div {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
}

.product-highlights i {
  display: block;
  font-size: 20px;
  color: #2563eb;
  margin-bottom: 6px;
}

/* SECTIONS */

.product-section-modern {
  margin-bottom: 50px;
}

.product-section-modern h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.product-section-modern p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* FEATURES */

.product-feature-list {
  padding-left: 18px;
  font-size: 15px;
  color: #475569;
}

.product-feature-list li {
  margin-bottom: 10px;
}

/* SPEC GRID */

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-spec-grid div {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}

.product-spec-grid span {
  font-size: 13px;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

/* BUY CARD */

.product-buy-modern {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.buy-card-modern {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.buy-price strong {
  font-size: 26px;
}

.tax-note {
  font-size: 13px;
  color: #64748b;
}

.buy-availability {
  margin: 20px 0;
}

.buy-availability strong.in {
  color: #16a34a;
}

.buy-availability strong.out {
  color: #dc2626;
}

/* BUTTON */

.buy-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.buy-btn:hover {
  background: #1d4ed8;
}

.buy-out {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* TRUST */

.buy-trust {
  margin-top: 24px;
  font-size: 13px;
  color: #475569;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .product-modern-layout {
    grid-template-columns: 1fr;
  }

  .product-buy-modern {
    position: static;
  }

  .product-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   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 — FLOW DESIGN
===================================================== */

.checkout-flow {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HEADER */

.checkout-flow-header {
  background: #020617;
  padding: 120px 20px 90px;
}

.checkout-flow-header-inner {
  max-width: 860px;
  margin: auto;
}

.checkout-flow-header h1 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 14px;
}

.checkout-flow-header p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
}

/* BODY */

.checkout-flow-body {
  max-width: 1300px;
  margin: auto;
  padding: 110px 20px;
}

/* ERROR */

.checkout-flow-error {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 20px;
  margin-bottom: 50px;
}

/* LAYOUT */

.checkout-flow-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 70px;
}

/* STEPS */

.checkout-step {
  margin-bottom: 60px;
}

.checkout-step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-index {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-step h2 {
  font-size: 22px;
}

.checkout-step-body textarea,
.checkout-step-body input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

.checkout-fields {
  display: grid;
  gap: 16px;
}

.checkout-fields.two {
  grid-template-columns: 1fr 1fr;
}

.checkout-fields.one {
  grid-template-columns: 1fr;
  margin-top: 16px;
}

/* PAYMENT */

.payment-choice {
  display: block;
  margin-bottom: 16px;
}

.payment-choice input {
  display: none;
}

.payment-choice-ui {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.payment-choice-ui i {
  font-size: 22px;
  color: #2563eb;
}

.payment-choice:has(input:checked) .payment-choice-ui {
  border-color: #2563eb;
  background: #eff6ff;
}

/* SUMMARY */

.checkout-flow-summary {
  border-radius: 28px;
  padding: 40px;
  background: #f8fafc;
  height: fit-content;
}

.checkout-flow-summary h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
}

.checkout-totals {
  border-top: 1px solid #e5e7eb;
  padding-top: 18px;
  margin-top: 20px;
}

.checkout-totals .grand {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

/* BUTTON */

.checkout-flow-submit {
  width: 100%;
  margin-top: 28px;
  padding: 18px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.checkout-flow-submit:hover {
  background: #1d4ed8;
}

/* NOTE */

.checkout-flow-note {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .checkout-flow-layout {
    grid-template-columns: 1fr;
  }

  .checkout-fields.two {
    grid-template-columns: 1fr;
  }

  .checkout-flow-header h1 {
    font-size: 34px;
  }
}

/* =====================================================
   ORDER SUCCESS — MODERN DESIGN
===================================================== */

.order-success-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HERO */

.order-success-hero {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 120px 20px 100px;
  text-align: center;
}

.order-success-hero-inner {
  max-width: 720px;
  margin: auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
}

.order-success-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.order-success-hero p {
  font-size: 16px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* CONTENT */

.order-success-content {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px;
}

/* CARDS */

.success-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 40px;
}

.success-card.highlight {
  background: #eff6ff;
  border-left: 6px solid #2563eb;
}

.success-card h2 {
  font-size: 24px;
  margin-bottom: 22px;
}

/* STATUS GRID */

.success-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.status-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.status-card span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.status-card strong {
  font-size: 16px;
}

/* STEPS */

.success-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-steps li {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.success-steps strong {
  font-size: 15px;
}

.success-steps span {
  font-size: 14px;
  color: #475569;
}

/* ACTIONS */

.success-actions {
  display: flex;
  gap: 18px;
  margin: 40px 0;
}

.success-btn {
  flex: 1;
  padding: 16px;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.success-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.success-btn.primary:hover {
  background: #1d4ed8;
}

.success-btn.secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.success-btn.secondary:hover {
  background: #2563eb;
  color: #ffffff;
}

/* SUPPORT */

.success-support {
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.success-support a {
  color: #2563eb;
  text-decoration: none;
}

.success-support a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .success-status-grid {
    grid-template-columns: 1fr;
  }

  .success-actions {
    flex-direction: column;
  }

  .order-success-hero h1 {
    font-size: 32px;
  }
}

/* =====================================================
   TRACK ORDER — MODERN DESIGN
===================================================== */

.track-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HERO */

.track-modern-hero {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 120px 20px 90px;
}

.track-modern-hero-inner {
  max-width: 800px;
  margin: auto;
}

.track-modern-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
}

.track-modern-hero p {
  font-size: 16px;
  color: #cbd5f5;
}

/* BODY */

.track-modern-body {
  max-width: 1000px;
  margin: auto;
  padding: 90px 20px;
}

/* SEARCH */

.track-search-card {
  background: #f8fafc;
  border-radius: 26px;
  padding: 40px;
  margin-bottom: 70px;
}

.track-search-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.track-search-note {
  font-size: 14px;
  color: #475569;
  margin-bottom: 26px;
}

.track-search-form {
  display: flex;
  gap: 14px;
}

.track-search-form input {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
}

.track-search-form button {
  padding: 16px 26px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

.track-search-form button:hover {
  background: #1d4ed8;
}

/* ALERT */

.track-alert {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
}

.track-alert.error {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
}

/* RESULT */

.track-result-modern {
  margin-top: 40px;
}

/* STATUS CARD */

.track-status-card {
  text-align: center;
  margin-bottom: 50px;
}

.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #ffffff;
}

.status-icon.processing {
  background: #f59e0b;
}

.status-icon.dispatched {
  background: #22c55e;
}

/* PROGRESS */

.track-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}

.progress-step {
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.progress-step span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cbd5f5;
  margin: 0 auto 8px;
}

.progress-step.completed span {
  background: #22c55e;
}

.progress-step.active span {
  background: #2563eb;
}

/* DETAILS */

.track-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.track-details div {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.track-details span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.track-details strong {
  font-size: 15px;
}

/* HELP */

.track-help {
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.track-help a {
  color: #2563eb;
  text-decoration: none;
}

.track-help a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .track-search-form {
    flex-direction: column;
  }

  .track-progress {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .track-details {
    grid-template-columns: 1fr;
  }

  .track-modern-hero h1 {
    font-size: 32px;
  }
}

/* =====================================================
   RETURN REQUEST — MODERN DESIGN
===================================================== */

.return-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HERO */

.return-modern-hero {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 120px 20px 90px;
}

.return-modern-hero-inner {
  max-width: 820px;
  margin: auto;
}

.return-modern-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
}

.return-modern-hero p {
  font-size: 16px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* BODY */

.return-modern-body {
  max-width: 760px;
  margin: auto;
  padding: 90px 20px;
}

/* FORM CARD */

.return-form-card {
  background: #f8fafc;
  border-radius: 26px;
  padding: 44px;
}

.return-form-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.return-form-note {
  font-size: 14px;
  color: #475569;
  margin-bottom: 32px;
}

/* FORM */

.return-form-modern .form-group {
  margin-bottom: 22px;
}

.return-form-modern label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.return-form-modern input,
.return-form-modern select,
.return-form-modern textarea {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.return-form-modern textarea {
  min-height: 120px;
  resize: vertical;
}

.return-form-modern input:focus,
.return-form-modern select:focus,
.return-form-modern textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* ALERT */

.return-alert {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 14px;
}

.return-alert.error {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
}

/* BUTTON */

.return-submit-btn {
  width: 100%;
  padding: 16px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.return-submit-btn:hover {
  background: #1d4ed8;
}

/* POLICY NOTE */

.return-policy-note {
  margin-top: 14px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* SUCCESS */

.return-success-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
}

.return-success-card .success-icon {
  width: 70px;
  height: 70px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.return-success-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.return-success-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* REFERENCE */

.return-reference {
  margin-bottom: 30px;
}

.return-reference span {
  display: block;
  font-size: 13px;
  color: #64748b;
}

.return-reference strong {
  font-size: 16px;
}

/* ACTIONS */

.return-actions {
  display: flex;
  gap: 16px;
}

.return-btn {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.return-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.return-btn.secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

/* RESPONSIVE */

@media (max-width: 640px) {
  .return-actions {
    flex-direction: column;
  }

  .return-modern-hero h1 {
    font-size: 32px;
  }

  .return-form-card {
    padding: 34px 24px;
  }
}

/* =====================================================
   AUTH — MODERN LOGIN DESIGN
===================================================== */

.auth-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f8fafc;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

/* LAYOUT */

.auth-modern-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
}

/* LEFT SIDE */

.auth-modern-side {
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #ffffff;
  padding: 100px 70px;
  display: flex;
  align-items: center;
}

.auth-side-content {
  max-width: 420px;
}

.auth-modern-side h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.auth-modern-side p {
  font-size: 16px;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 30px;
}

.auth-side-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-side-points li {
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 18px;
}

.auth-side-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
}

/* RIGHT SIDE */

.auth-modern-form {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

/* CARD */

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12);
}

.auth-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.auth-subtext {
  font-size: 14px;
  color: #475569;
  margin-bottom: 28px;
}

/* FORM */

.auth-input {
  margin-bottom: 20px;
}

.auth-input label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-input input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.auth-input input:focus {
  outline: none;
  border-color: #2563eb;
}

/* BUTTON */

.auth-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.auth-submit-btn:hover {
  background: #1d4ed8;
}

/* FOOTER */

.auth-footer {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.auth-footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .auth-modern-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-modern-side {
    display: none;
  }

  .auth-card {
    box-shadow: none;
    padding: 36px 24px;
  }
}

/* =====================================================
   ACCOUNT DASHBOARD — MODERN DESIGN
===================================================== */

.account-modern {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

/* HEADER */

.account-modern-header {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 110px 20px 90px;
  color: #ffffff;
}

.account-modern-header-inner {
  max-width: 1000px;
  margin: auto;
}

.account-modern-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.account-modern-header p {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 620px;
}

/* BODY */

.account-modern-body {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* PROFILE CARD */

.profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px 30px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info {
  flex: 1;
}

.profile-info strong {
  display: block;
  font-size: 16px;
}

.profile-info span {
  font-size: 14px;
  color: #475569;
}

.profile-logout {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
}

.profile-logout:hover {
  text-decoration: underline;
}

/* SECTIONS */

.account-section-modern h2 {
  font-size: 26px;
  margin-bottom: 26px;
}

/* ACTIONS */

.account-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.account-action-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.account-action-card i {
  font-size: 24px;
  color: #2563eb;
  margin-bottom: 16px;
  display: block;
}

.account-action-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.account-action-card span {
  font-size: 14px;
  color: #475569;
}

.account-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

/* INFO GRID */

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.info-item span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

/* NOTICE */

.account-notice-modern {
  background: #eff6ff;
  border-left: 6px solid #2563eb;
  padding: 26px;
  border-radius: 18px;
}

.account-notice-modern strong {
  display: block;
  margin-bottom: 6px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .account-action-grid {
    grid-template-columns: 1fr;
  }

  .account-info-grid {
    grid-template-columns: 1fr;
  }

  .account-modern-header h1 {
    font-size: 32px;
  }
}

/* =====================================================
   ABOUT PAGE — MODERN BUSINESS DESIGN
===================================================== */

.about-modern {
  background: #ffffff;
  color: #0f172a;
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= HERO ================= */

.about-modern-hero {
  background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
  padding: 120px 20px 100px;
}

.about-modern-hero-inner {
  max-width: 900px;
  margin: auto;
}

.about-modern-hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.about-modern-hero p {
  font-size: 17px;
  color: #cbd5f5;
  max-width: 640px;
  line-height: 1.8;
}

/* ================= BODY ================= */

.about-modern-body {
  max-width: 900px;
  margin: auto;
  padding: 100px 20px;
}

/* BLOCK */

.about-modern-block {
  margin-bottom: 80px;
}

.about-modern-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-modern-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 14px;
}

/* HIGHLIGHT BLOCK */

.about-modern-block.highlight {
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
}

.about-modern-block.highlight.muted {
  background: #f1f5f9;
}

/* LIST */

.about-modern-list {
  padding-left: 20px;
  margin-top: 16px;
}

.about-modern-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

.about-modern-list.negative li {
  color: #7c2d12;
}

/* LEGAL */

.about-modern-block.legal {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-modern-hero h1 {
    font-size: 34px;
  }

  .about-modern-body {
    padding: 80px 16px;
  }

  .about-modern-block.highlight {
    padding: 28px;
  }
}

/* =====================================================
   ABOUT US — RICH CONTENT SECTION
===================================================== */

.about-rich {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 60px 20px;
}

.about-rich-head {
  max-width: 900px;
  margin: 0 auto 90px;
  text-align: center;
}

.about-rich-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-rich-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.9;
}

/* GRID */

.about-rich-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

/* CARD */

.about-rich-card {
  background: #ffffff;
  padding: 42px 40px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.about-rich-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.about-rich-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ICON */

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.about-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-rich-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-rich {
    padding: 110px 16px;
  }

  .about-rich-head h2 {
    font-size: 32px;
  }

  .about-rich-card {
    padding: 32px 26px;
  }
}

/* =====================================================
   ABOUT US — PROCESS SECTION
===================================================== */

.about-process {
  background: #ffffff;
  padding: 150px 20px;
}

.about-process-head {
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}

.about-process-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-process-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.9;
}

/* GRID */

.about-process-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

/* CARD */

.process-card {
  background: #f8fafc;
  padding: 40px 36px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.process-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ICON */

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.process-icon i {
  font-size: 22px;
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-process {
    padding: 120px 16px;
  }

  .about-process-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   ABOUT US — DIFFERENTIATION SECTION
===================================================== */

.about-difference {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 150px 20px;
}

.about-difference-head {
  max-width: 900px;
  margin: 0 auto 110px;
  text-align: center;
}

.about-difference-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-difference-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.9;
}

/* GRID */

.about-difference-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

/* CARD */

.difference-card {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.1);
}

.difference-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}

.difference-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ICON */

.difference-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.difference-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .about-difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about-difference-grid {
    grid-template-columns: 1fr;
  }

  .about-difference {
    padding: 120px 16px;
  }

  .about-difference-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   CONTACT PAGE — BUSINESS PROFESSIONAL
===================================================== */

.contact-business {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HEADER */

.contact-business-header {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 110px 20px 90px;
}

.contact-business-header-inner {
  max-width: 900px;
  margin: auto;
}

.contact-business-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-business-header p {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 620px;
  line-height: 1.7;
}

/* BODY */

.contact-business-body {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* INFO PANEL */

.contact-info-panel h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-info-intro {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.contact-info-card i {
  font-size: 20px;
  color: #2563eb;
  margin-top: 2px;
}

.contact-info-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-card span {
  font-size: 14px;
  color: #334155;
}

/* HOURS */

.contact-business-hours {
  margin-top: 36px;
  padding: 18px;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
}

.contact-business-hours strong {
  display: block;
  margin-bottom: 6px;
}

/* FORM PANEL */

.contact-form-panel h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-form-note {
  font-size: 14px;
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.6;
}

.contact-form-business input,
.contact-form-business textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: inherit;
  border-radius: 10px;
}

.contact-form-business textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-business input:focus,
.contact-form-business textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-business button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
}

.contact-form-business button:hover {
  background: #1d4ed8;
}

/* SUCCESS */

.contact-success-box {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  padding: 36px;
  border-radius: 16px;
}

.contact-success-box h2 {
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-business-body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-business-header h1 {
    font-size: 34px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ — BUSINESS INFORMATION CENTER
===================================================== */

.faq-business {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HEADER */

.faq-business-header {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 120px 20px 90px;
}

.faq-business-header-inner {
  max-width: 900px;
  margin: auto;
}

.faq-business-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.faq-business-header p {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 640px;
  line-height: 1.7;
}

/* BODY */

.faq-business-body {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

/* INTRO */

.faq-intro {
  max-width: 720px;
  margin-bottom: 80px;
}

.faq-intro p {
  font-size: 16px;
  color: #334155;
  line-height: 1.9;
}

/* GRID */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */

.faq-card {
  background: #f8fafc;
  border-radius: 22px;
  padding: 36px 34px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.faq-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.faq-card-head i {
  font-size: 22px;
  color: #2563eb;
}

.faq-card-head h2 {
  font-size: 22px;
  font-weight: 600;
}

.faq-q {
  margin-bottom: 22px;
}

.faq-q strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.faq-q p {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-business-header h1 {
    font-size: 34px;
  }
}

/* =====================================================
   SHOP — CLEAN & CLICKABLE DESIGN
===================================================== */

.shop-clean {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HEADER */

.shop-clean-header {
  background: #0f172a;
  padding: 100px 20px 80px;
  text-align: center;
  color: #ffffff;
}

.shop-clean-header-inner {
  max-width: 900px;
  margin: auto;
}

.shop-clean-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.shop-clean-header p {
  font-size: 16px;
  color: #cbd5f5;
}

.shop-clean-result {
  margin-top: 16px;
  font-size: 14px;
  color: #e0e7ff;
}

/* BODY */

.shop-clean-body {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* EMPTY */

.shop-clean-empty {
  text-align: center;
  max-width: 520px;
  margin: 60px auto;
}

.shop-clean-empty strong {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}

.shop-clean-empty p {
  font-size: 15px;
  color: #475569;
}

/* GRID */

.shop-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */

.shop-clean-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

/* LINK RESET */

.shop-clean-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

/* IMAGE */

.shop-clean-media {
  position: relative;
  background: #f8fafc;
  padding: 34px;
  text-align: center;
}

.shop-clean-media img {
  max-height: 190px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shop-clean-card:hover img {
  transform: scale(1.06);
}

.shop-clean-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.shop-clean-stock.in {
  background: #dcfce7;
  color: #166534;
}

.shop-clean-stock.out {
  background: #fee2e2;
  color: #991b1b;
}

/* INFO */

.shop-clean-info {
  padding: 22px 24px 14px;
}

.shop-clean-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.shop-clean-info p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FOOTER ROW — PRICE LEFT, BUTTON RIGHT */

.shop-clean-footer {
  padding: 18px 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ← THIS IS THE KEY */
  gap: 12px;
}

/* PRICE */

.shop-clean-price {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

/* BUTTON FORM FIX */

.shop-clean-footer form {
  margin: 0;
  text-align: end;
}

/* BUTTON */

.shop-clean-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.shop-clean-btn:hover {
  background: #1d4ed8;
}

.shop-clean-btn.disabled {
  background: #e5e7eb;
  color: #64748b;
  cursor: not-allowed;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .shop-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .shop-clean-grid {
    grid-template-columns: 1fr;
  }

  .shop-clean-header h1 {
    font-size: 32px;
  }
}

/* =====================================================
   CART — MODERN DESIGN
===================================================== */

.cart-modern {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HEADER */

.cart-modern-header {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 100px 20px 80px;
}

.cart-modern-header-inner {
  max-width: 900px;
  margin: auto;
}

.cart-modern-header h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 8px;
}

.cart-modern-header p {
  font-size: 15px;
  color: #cbd5f5;
}

/* BODY */

.cart-modern-body {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
}

/* EMPTY */

.cart-empty-modern {
  text-align: center;
  max-width: 420px;
  margin: auto;
}

.cart-empty-modern i {
  font-size: 40px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.cart-empty-modern strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.cart-empty-modern p {
  color: #475569;
  margin-bottom: 24px;
}

/* LAYOUT */

.cart-modern-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
}

/* ITEMS */

.cart-item-card {
  display: grid;
  grid-template-columns: 90px 1.6fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #f8fafc;
}

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.cart-item-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 13px;
  color: #64748b;
}

/* QTY */

.cart-item-qty form {
  display: flex;
  gap: 8px;
}

.cart-item-qty input {
  width: 60px;
  padding: 8px;
  border: 1px solid #cbd5f5;
  border-radius: 8px;
  text-align: center;
}

.cart-item-qty button {
  padding: 8px 10px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.cart-item-qty button:hover {
  background: #1d4ed8;
}

/* TOTAL */

.cart-item-total strong {
  display: block;
  margin-bottom: 8px;
}

.cart-remove-icon {
  background: none;
  border: none;
  color: #b91c1c;
  cursor: pointer;
}

.cart-remove-icon:hover {
  color: #7f1d1d;
}

/* SUMMARY */

.cart-summary-modern {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 32px;
  height: fit-content;
}

.cart-summary-modern h2 {
  font-size: 22px;
  margin-bottom: 26px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
}

.summary-line.total {
  font-size: 16px;
  font-weight: 700;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 16px;
}

/* BUTTON */

.cart-primary-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 26px;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.cart-primary-btn:hover {
  background: #1d4ed8;
}

.cart-summary-note {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .cart-modern-layout {
    grid-template-columns: 1fr;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-qty form {
    justify-content: center;
  }
}

/* =====================================================
   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;
}

/* HP Link */
.hp-partner {
  max-width: 150px;
  cursor: pointer;
  margin-bottom: 8px;
}

/* Popup styles */
.hp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hp-popup {
  background: #fff;
  padding: 25px;
  max-width: 420px;
  width: 90%;
  border-radius: 6px;
  text-align: center;
}

.hp-popup-actions {
  margin-top: 20px;
}

.hp-popup-actions button {
  padding: 8px 18px;
  margin: 0 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#hpProceed {
  background: #0076ce;
  color: #fff;
}

#hpCancel {
  background: #ccc;
}

.text-center{
    text-align:center!important;
    display: block!important;
}

.margin-top-10{
    margin-top:20px!important;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.modal-content {
  background: #fff;
  width: 80%;
  height: 80%;
  margin: 5% auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.modal iframe {
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}



:root {
  --sidebar-color: #2563eb;
}

/* Wrapper */
.pdf-module {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: Inter, sans-serif;

  /* IMPORTANT: makes panel anchor correctly */
  display: flex;
  align-items: center;
}

/* Vertical Tab */
.pdf-tab {
  background: var(--sidebar-color);
  color: #fff;
  border: none;
  padding: 14px 12px;
  cursor: pointer;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  border-radius: 8px 0 0 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Slide-out Panel */
.pdf-panel {
  position: absolute;
  left: calc(100% + 14px); /* space from sidebar */
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 240px;
  background: transparent;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Show ONLY on hover */
.pdf-module:hover .pdf-panel {
  opacity: 1;
  pointer-events: auto;
}

/* Hover bridge (prevents flicker) */
.pdf-panel::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  width: 14px;
  height: 100%;
}

/* PDF option blocks */
.pdf-panel a {
  display: block;
  background: #ffffff;
  border-left: 4px solid var(--sidebar-color);
  padding: 14px 16px;

  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pdf-panel a:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

img.cta-cert {
    width: 20px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transform: rotate(90deg);
    margin-bottom: 10px;
}
