:root {
  --blue-dark: #081f3a;
  --blue-mid: #0f3d66;
  --blue-accent: #1e6bb8;
  --text-dark: #1f2933;
  --border: #e5e7eb;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

/* HEADER */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand img {
  height: 44px;
}

.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.book-btn {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.book-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Icons */
.header-icon {
  position: relative;
  font-size: 20px;
  color: #1f2933;
  text-decoration: none;
}

.header-icon:hover {
  color: #1f2933;
  text-decoration: none;
}

/* Cart count */
.cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  line-height: 1;
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #081f3a 0%, #0f3d66 50%, #1e6bb8 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-title span {
  color: #c7e1ff;
}

.hero-text {
  font-size: 16px;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-btn {
  background: #ffffff;
  color: #0b2c4d;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #e6f0ff;
  color: #0b2c4d;
}

/* Contact */
.hero-contact small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.hero-contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

/* Visual */
.hero-visual img {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

/* ================= HERO SEARCH ================= */
.hero-search {
  display: flex;
  max-width: 520px;
  margin-bottom: 28px;
  background: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
}

.hero-search input::placeholder {
  color: #6b7280;
}

.hero-search button {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  color: #ffffff;
  border: none;
  padding: 0 26px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-search button:hover {
  opacity: 0.9;
}

/* ================= CATEGORIES ================= */
.printer-categories {
  padding: 80px 0;
  background: #f8fafc;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-head p {
  max-width: 620px;
  margin: auto;
  color: #6b7280;
  font-size: 15px;
}

/* Card */
.category-card {
  display: block;
  background: #ffffff;
  padding: 34px 26px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  opacity: 0;
  transition: 0.3s ease;
}

.category-card:hover::before {
  opacity: 1;
}

/* Icon */
.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 34px;
  filter: brightness(0) invert(1);
}

/* Text */
.category-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.category-card span {
  font-size: 14px;
  color: #6b7280;
}

.printer-categories .section-head {
  margin-bottom: 48px;
}
.category-card,
.category-card:hover,
.category-card:focus {
  text-decoration: none;
}

/* ================= PRODUCTS ================= */
.home-products {
  padding: 90px 0;
  background: #ffffff;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  height: 100%;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Image */
.product-image {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 30px;
  text-align: center;
}

.product-image img {
  max-width: 160px;
  transition: 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Body */
.product-body {
  padding: 24px;
}

.product-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.product-meta {
  display: inline-block;
  font-size: 12px;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-body p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Button */
.product-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: white;
}

.product-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

.home-products .section-head {
  margin-bottom: 52px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.product-tags span {
  font-size: 11px;
  background: #eef2ff;
  color: #1e40af;
  padding: 4px 8px;
  border-radius: 10px;
}

.product-rating {
  font-size: 14px;
  color: #f59e0b !important;
  margin-bottom: 8px;
}

.product-rating span {
  color: #6b7280 !important;
  font-size: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-price {
  font-size: 18px;
  color: var(--text-dark);
}
.product-btn,
.product-btn:hover,
.product-btn:focus {
  text-decoration: none;
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-link,
.product-link:hover,
.product-link:focus,
.product-link * {
  text-decoration: none !important;
  color: inherit;
}

/* ================= ABOUT BLOCK (NEW) ================= */
.about-block {
  padding: 110px 0;
  background: #0b1220; /* deep neutral dark */
  color: #e5e7eb;
}

/* Visual */
.about-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  border-radius: 26px;
}

/* Overlay */
.about-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 16px;
}

.about-overlay strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.about-overlay span {
  font-size: 12px;
  color: #cbd5f5;
}

/* Content */
.about-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.about-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #ffffff;
}

.about-heading span {
  color: #9ca3af;
}

.about-desc {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 18px;
  max-width: 640px;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 34px 0;
}

.about-item {
  background: #111827;
  padding: 20px;
  border-radius: 18px;
}

.about-item h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.about-item p {
  font-size: 13px;
  color: #9ca3af;
}

/* CTA */
.about-cta {
  display: inline-block;
  margin-top: 10px;
  background: #ffffff;
  color: #0b1220;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.about-cta:hover {
  background: #e5e7eb;
  color: #0b1220;
}

/* ================= WHY CHOOSE US ================= */
.why-choose {
  padding: 110px 0;
  background: #f5f5f4; /* warm neutral */
}

/* Left */
.why-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #52525b;
  margin-bottom: 14px;
}

.why-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #0f172a;
}

.why-heading span {
  color: #334155;
}

.why-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 16px;
  max-width: 480px;
}

/* CTA */
.why-cta {
  display: inline-block;
  margin-top: 14px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.why-cta:hover {
  background: #020617;
  color: #ffffff;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.why-card i {
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 14px;
  display: inline-block;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.why-card p {
  font-size: 14px;
  color: #475569;
}

/* ================= FAQ ================= */
.faq-section {
  padding: 110px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

/* Head */
.faq-head {
  margin-bottom: 60px;
}

.faq-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 15px;
  color: #475569;
  max-width: 600px;
  margin: auto;
}

/* Wrapper */
.faq-wrapper {
  max-width: 820px;
  margin: auto;
}

/* Item */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 26px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #0f172a;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

/* Content */
.faq-item p {
  margin-top: 14px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 110px 0;
  background: #fafafa;
}

/* Head */
.testimonials-head {
  margin-bottom: 60px;
}

.testimonials-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.testimonials-subtitle {
  font-size: 15px;
  color: #475569;
  max-width: 620px;
  margin: auto;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stars */
.testimonial-stars {
  font-size: 18px;
  color: #f59e0b;
  margin-bottom: 14px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* User */
.testimonial-user strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.testimonial-user span {
  font-size: 13px;
  color: #6b7280;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0a0a0a;
  color: #d1d5db;
  padding: 90px 0 40px;
}

/* Layout */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Brand */
.footer-brand img {
  height: 42px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: #9ca3af;
  max-width: 380px;
  margin-bottom: 22px;
}

/* Payments */
.footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 22px;
  opacity: 0.85;
}

/* Columns */
.footer-col h4 {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact li {
  color: #9ca3af;
  line-height: 1.6;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 13px;
  color: #9ca3af;
}

.footer-legal a {
  font-size: 13px;
  color: #9ca3af;
  margin-left: 16px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}
.footer-contact-inline a,
.footer-contact-inline a:hover,
.footer-contact-inline a:focus,
.footer-contact-inline a:active {
  color: #9ca3af !important;
  text-decoration: none !important;
}

/* ================= ABOUT HERO ================= */
.about-hero {
  padding: 140px 0 90px;
  background: #0b1220;
  color: #e5e7eb;
}

.about-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}

.about-hero-title span {
  color: #9ca3af;
}

.about-hero-text {
  font-size: 17px;
  max-width: 680px;
  color: #cbd5e1;
}

/* ================= ABOUT CONTENT ================= */
.about-content {
  padding: 100px 0;
  background: #ffffff;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ================= DIFFERENCE ================= */
.about-difference {
  padding: 100px 0;
  background: #f5f5f4;
}

.about-difference h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 50px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.difference-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

.difference-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.difference-item p {
  font-size: 14px;
  color: #475569;
}
/* About hero visual */
.about-hero-visual {
  background: #111827;
  padding: 40px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-hero-visual img {
  max-width: 220px;
  opacity: 0.95;
}

/* ================= CONTACT ================= */
.contact-hero {
  padding: 120px 0 80px;
  background: #0b1220;
  color: #e5e7eb;
}

.contact-kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
  display: inline-block;
}

.contact-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.contact-text {
  font-size: 16px;
  max-width: 640px;
  color: #cbd5e1;
}

/* Section */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Success */
.contact-success {
  background: #ecfeff;
  color: #065f46;
  border: 1px solid #99f6e4;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-size: 14px;
}

/* Form */
.contact-form label {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0f172a;
}

/* Button */
.contact-btn {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}

.contact-btn:hover {
  background: #020617;
}

/* Info */
.contact-info {
  background: #f5f5f4;
  padding: 32px;
  border-radius: 22px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #0f172a;
}

.contact-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 18px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 14px;
}
.contact-success {
  background: #ecfeff;
  color: #065f46;
  border: 1px solid #99f6e4;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 14px;
}

/* ================= POLICY ================= */
.policy-hero {
  padding: 120px 0 70px;
  background: #0b1220;
  color: #e5e7eb;
}

.policy-kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  display: inline-block;
}

.policy-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.policy-intro {
  font-size: 16px;
  max-width: 700px;
  color: #cbd5e1;
}

/* Content */
.policy-content {
  padding: 90px 0;
  background: #ffffff;
}

.policy-block {
  max-width: 900px;
  margin-bottom: 60px;
}

.policy-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.policy-block p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}
/* ================= TRACK ORDER ================= */
.track-hero {
  padding: 120px 0 70px;
  background: #0b1220;
  color: #e5e7eb;
}

.track-kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  display: inline-block;
}

.track-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.track-text {
  font-size: 16px;
  max-width: 650px;
  color: #cbd5e1;
}

/* Section */
.track-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Result */
.track-result {
  max-width: 520px;
  margin: 0 auto 30px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
}

/* Box */
.track-box {
  max-width: 420px;
  margin: auto;
  background: #f5f5f4;
  padding: 36px;
  border-radius: 22px;
}

/* Form */
.track-form label {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
  display: block;
}

.track-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 18px;
  font-size: 14px;
}

.track-form input:focus {
  outline: none;
  border-color: #0f172a;
}

/* Button */
.track-btn {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}

.track-btn:hover {
  background: #020617;
}
/* ================= TRACK STATUS ================= */
.track-status {
  max-width: 520px;
  margin: 0 auto 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 20px;
}

.track-status h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.order-id {
  font-size: 14px;
  margin-bottom: 20px;
  color: #374151;
}

/* Timeline */
.status-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.status-timeline li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #9ca3af;
}

.status-timeline li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ca3af;
  font-size: 18px;
}

/* Completed */
.status-timeline li.done {
  color: #16a34a;
  font-weight: 600;
}

.status-timeline li.done::before {
  content: "✔";
  color: #16a34a;
}

/* Current */
.status-timeline li.active {
  color: #0f172a;
  font-weight: 600;
}

.status-timeline li.active::before {
  content: "●";
  color: #0f172a;
}

/* Note */
.status-note {
  font-size: 13px;
  color: #475569;
}

/* ================= RETURN ORDER ================= */
.return-hero {
  padding: 120px 0 70px;
  background: #0b1220;
  color: #e5e7eb;
}

.return-kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  display: inline-block;
}

.return-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.return-text {
  font-size: 16px;
  max-width: 650px;
  color: #cbd5e1;
}

/* Section */
.return-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Status */
.return-status {
  max-width: 520px;
  margin: 0 auto 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 20px;
}

.return-status h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.return-order-id {
  font-size: 14px;
  margin-bottom: 20px;
  color: #374151;
}

/* Timeline */
.return-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.return-timeline li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #9ca3af;
}

.return-timeline li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ca3af;
  font-size: 18px;
}

.return-timeline li.done {
  color: #16a34a;
  font-weight: 600;
}

.return-timeline li.done::before {
  content: "✔";
  color: #16a34a;
}

.return-timeline li.active {
  color: #0f172a;
  font-weight: 600;
}

.return-timeline li.active::before {
  content: "●";
  color: #0f172a;
}

/* Note */
.return-note {
  font-size: 13px;
  color: #475569;
}

/* Box */
.return-box {
  max-width: 420px;
  margin: auto;
  background: #f5f5f4;
  padding: 36px;
  border-radius: 22px;
}

/* Form */
.return-form label {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
  display: block;
}

.return-form input,
.return-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 18px;
  font-size: 14px;
}

.return-form input:focus,
.return-form select:focus {
  outline: none;
  border-color: #0f172a;
}

/* Button */
.return-btn {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}

.return-btn:hover {
  background: #020617;
}

/* ================= SHOP ================= */
.shop-hero {
  padding: 120px 0 70px;
  background: #0b1220;
  color: #e5e7eb;
}

.shop-kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  display: inline-block;
}

.shop-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.shop-text {
  font-size: 16px;
  max-width: 650px;
  color: #cbd5e1;
}

/* Section */
.shop-section {
  padding: 90px 0;
  background: #ffffff;
}
/* ================= PRODUCT IMAGE FIX ================= */
.product-img {
  width: 100%;
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
/* Product card vertical spacing */
.shop-section .col-lg-4,
.shop-section .col-md-6 {
  margin-bottom: 40px; /* space between rows */
}
/* Add to cart button */
.add-to-cart-btn {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: #020617;
  color: white;
  text-decoration: none;
}

.product-title {
  font-size: 22px;
  line-height: 30px;
  margin-top: 8px;
}

.add-to-cart-btn:disabled {
  background: #16a34a;
  cursor: default;
}
/* ================= PRODUCT PAGE ================= */
.product-page {
  padding: 130px 0 90px;
  background: #ffffff;
}

/* Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.product-image-wrap {
  background: #f8fafc;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-wrap img {
  max-width: 100%;
  object-fit: contain;
}

/* Info */
.product-category {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6b7280;
}

.product-name {
  font-size: 42px;
  font-weight: 700;
  margin: 14px 0;
  color: #0f172a;
}

.product-rating {
  font-size: 15px;
  color: #f59e0b;
}

.product-rating span {
  color: #6b7280;
  font-size: 13px;
}

.product-summary {
  font-size: 16px;
  color: #475569;
  margin: 20px 0;
  max-width: 520px;
}

/* Price */
.product-price span {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
}

/* Button */
.primary-btn {
  margin-top: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
}

.primary-btn:hover {
  background: #020617;
}

/* Highlights */
.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product-highlights div {
  background: #f5f5f4;
  padding: 20px;
  border-radius: 20px;
}

.product-highlights strong {
  display: block;
  font-size: 13px;
  color: #334155;
}

.product-highlights span {
  font-size: 14px;
  color: #0f172a;
}

/* ================= DETAILS ================= */
.product-details-section {
  padding: 100px 0;
  background: #f8fafc;
}

.details-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.details-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 28px;
}

.details-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #0f172a;
}

.details-card p,
.details-card li {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ================= CART PAGE ================= */
.cart-page {
  padding: 120px 0 100px;
  background: #ffffff;
}

.cart-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0f172a;
}

/* Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr 80px 100px;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
}

.cart-item-img img {
  width: 100%;
  object-fit: contain;
}

.cart-item-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0f172a;
}

.cart-item-info p {
  font-size: 13px;
  color: #6b7280;
}

.cart-item-qty,
.cart-item-price {
  font-size: 14px;
  color: #0f172a;
}

/* Summary */
.cart-summary {
  background: #f8fafc;
  padding: 36px;
  border-radius: 26px;
  height: fit-content;
}

.cart-summary h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #0f172a;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
  color: #374151;
}

.summary-row.total {
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}

/* Checkout */
.checkout-btn {
  width: 100%;
  margin-top: 30px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.checkout-btn:hover {
  background: #020617;
}

.cart-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 14px;
  text-align: center;
}

/* ================= CHECKOUT ================= */
.checkout-page {
  padding: 120px 0 100px;
  background: #ffffff;
}

.checkout-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0f172a;
}

/* Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* Form */
.checkout-form h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #0f172a;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.form-grid label {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.form-grid input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* Payment */
.payment-title {
  margin-top: 10px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  cursor: pointer;
}

.payment-option strong {
  font-size: 15px;
  color: #0f172a;
}

.payment-option small {
  font-size: 13px;
  color: #6b7280;
}

/* Summary */
.checkout-summary {
  background: #f8fafc;
  padding: 36px;
  border-radius: 26px;
  height: fit-content;
}

.checkout-summary h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #0f172a;
}

.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
}

.summary-total {
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}

/* Place Order */
.place-order-btn {
  width: 100%;
  margin-top: 30px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.place-order-btn:hover {
  background: #020617;
}

.checkout-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 14px;
  text-align: center;
}

/* ================= LOGIN ================= */
.login-page {
  padding: 130px 0 100px;
  background: #f8fafc;
}

.login-box {
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.login-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.login-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

/* Fields */
.login-field {
  margin-bottom: 20px;
}

.login-field label {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.login-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* Button */
.login-btn {
  width: 100%;
  margin-top: 10px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.login-btn:hover {
  background: #020617;
}

/* Error */
.login-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Demo info */
.login-demo {
  margin-top: 30px;
  font-size: 13px;
  color: #475569;
  background: #f1f5f9;
  padding: 14px;
  border-radius: 14px;
}

/* ================= SIGNUP ================= */
.signup-page {
  padding: 130px 0 100px;
  background: #f8fafc;
}

.signup-box {
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.signup-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.signup-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

.signup-field {
  margin-bottom: 20px;
}

.signup-field label {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.signup-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* Button */
.signup-btn {
  width: 100%;
  margin-top: 10px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.signup-btn:hover {
  background: #020617;
}

/* Footer */
.signup-footer {
  margin-top: 26px;
  font-size: 13px;
  color: #475569;
  text-align: center;
}

.signup-footer a {
  color: #0f172a;
  font-weight: 600;
}
/* ================= MY ACCOUNT ================= */
.account-page {
  padding: 120px 0 100px;
  background: #ffffff;
}

.account-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

.account-box {
  max-width: 600px;
  background: #f8fafc;
  padding: 40px;
  border-radius: 30px;
}

/* Info */
.account-info h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0f172a;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.info-row span {
  color: #6b7280;
}

.info-row strong {
  color: #0f172a;
}

/* Actions */
.account-actions {
  margin-top: 30px;
  text-align: right;
}

.logout-btn {
  background: #dc2626;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.logout-btn:hover {
  background: #b91c1c;
}

/* global */
.margs-bot {
  margin-bottom: 15px;
}

/* ================= PAYMENT METHOD TOGGLE ================= */

.payment-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.payment-card {
  cursor: pointer;
  border-radius: 18px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  transition: all 0.25s ease;
  position: relative;
}

.payment-card-inner {
  padding: 22px 20px;
}

.payment-card strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.payment-card span {
  font-size: 13px;
  color: #64748b;
}

/* Hover */
.payment-card:hover {
  border-color: #94a3b8;
  transform: translateY(-2px);
}

/* Active (Selected) */
.payment-card.active {
  border-color: #0f172a;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* Check Indicator */
.payment-card.active::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= THANK YOU PAGE ================= */

.thankyou-page {
  padding: 120px 0;
  background: #f8fafc;
}

.thankyou-box {
  max-width: 720px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thankyou-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.thankyou-text {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
}

.order-info {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 30px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.order-row strong {
  color: #0f172a;
}

.order-steps {
  text-align: left;
  margin: 30px 0;
}

.order-steps h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.order-steps ul {
  padding-left: 18px;
}

.order-steps li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #475569;
}

.delivery-note {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.support-box {
  background: #f1f5f9;
  padding: 18px;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 30px;
}

.thankyou-actions .thankyou-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.thankyou-btn.primary {
  background: #0f172a;
  color: #ffffff;
}

/* ================= HERO PARTNER BADGE ================= */

.hero-partner {
  text-align: center;
}

.hero-partner img {
  max-width: 160px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-partner img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ================= APPOINTMENT PAGE ================= */

.appointment-page {
  padding: 120px 0;
  background: #f8fafc;
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.appointment-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.appointment-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.appointment-text {
  font-size: 15px;
  color: #475569;
  margin-bottom: 24px;
}

.appointment-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.appointment-points li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #334155;
}

.appointment-contact {
  margin-top: 30px;
  font-size: 14px;
}

.appointment-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.appointment-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.appointment-form .form-group {
  margin-bottom: 16px;
}

.appointment-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #334155;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: #6366f1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.appointment-btn {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #0f172a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.appointment-note {
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

/* Mobile */
@media (max-width: 992px) {
  .appointment-wrapper {
    grid-template-columns: 1fr;
  }
}
