/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
}

.container {
  max-width: 1140px; /* Bootstrap lg */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.w-100 {
  width: 100% !important;
}

/* ================= TOPBAR ================= */
.topbar {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #e5e7eb;
  font-size: 13px;
}
.topbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left span {
  margin-right: 18px;
}
.topbar i {
  margin-right: 6px;
  color: #38bdf8;
}

/* ================= HEADER ================= */
.main-header {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

/* LOGO */
.logo img {
  height: 44px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* SEARCH */
.header-search {
  display: flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px 10px;
}
.header-search input {
  border: none;
  background: transparent;
  padding: 6px 10px;
  outline: none;
  width: 180px;
}
.header-search button {
  border: none;
  background: none;
  cursor: pointer;
  color: #334155;
}

/* ICON BUTTONS */
.icon-btn {
  position: relative;
  color: #1f2937;
  font-size: 18px;
  text-decoration: none;
}
.icon-btn:hover {
  color: #2563eb;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .header-search input {
    width: 120px;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-content h1 span {
  color: #93c5fd;
}

.hero-content p {
  font-size: 16px;
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary:hover {
  background: #16a34a;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* TRUST */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-trust strong {
  display: block;
  font-size: 14px;
}
.hero-trust span {
  font-size: 13px;
  color: #d1d5db;
}

/* RIGHT VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #d3c3c3;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}
.hero-card img {
  max-width: 360px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .hero-card {
    transform: none;
  }
}

/* ================= CATEGORY SECTION ================= */
.categories {
  background: #f8fafc;
  padding: 90px 0;
}

.categories-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #0f172a;
}
.section-header p {
  color: #475569;
  max-width: 620px;
  margin: auto;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.category-card {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 18px;
  padding: 34px 26px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(34, 197, 94, 0.12)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ICON */
.category-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

/* TEXT */
.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FEATURED PRODUCTS ================= */
.featured-products {
  background: #ffffff;
  padding: 90px 0;
}

.featured-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

/* IMAGE */
.product-image {
  background: #f1f5f9;
  padding: 30px;
  text-align: center;
}
.product-image img {
  max-height: 180px;
  object-fit: contain;
}

/* INFO */
.product-info {
  padding: 22px;
  flex-grow: 1;
}
.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* META */
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.price {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.in-stock {
  color: #16a34a;
  font-size: 13px;
}
.out-stock {
  color: #dc2626;
  font-size: 13px;
}

/* ACTIONS */
.product-actions {
  padding: 18px 22px;
  border-top: 1px solid #e5e7eb;
}

.btn-cart {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.btn-cart:hover {
  background: #1d4ed8;
}

.btn-disabled {
  width: 100%;
  background: #e5e7eb;
  color: #64748b;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: not-allowed;
}

.product-actions,
.product-actions * {
  position: relative;
  z-index: 2;
}

/* PRODUCT CARD LINK RESET */
.product-card a.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Prevent underline on hover/focus as well */
.product-card a.product-link:hover,
.product-card a.product-link:focus {
  text-decoration: none;
  color: inherit;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-us {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 90px 0;
}

.why-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.15);
}

/* ICON */
.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

/* TEXT */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.why-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= POLICY STRIP ================= */
.policy-strip {
  background: #0f172a;
  padding: 60px 0;
  color: #ffffff;
}

.policy-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.policy-item {
  text-align: center;
}

.policy-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.policy-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.policy-item p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .policy-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .policy-container {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT HOME ================= */
.about-home {
  background: #ffffff;
  padding: 90px 0;
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.about-link:hover {
  text-decoration: underline;
}

/* ================= SUPPORT CTA ================= */
.support-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 90px 0;
  color: #ffffff;
}

.support-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.support-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.support-content p {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ACTION BUTTONS */
.support-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.btn-support-primary {
  background: #22c55e;
  color: #022c22;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-support-primary:hover {
  background: #16a34a;
}

.btn-support-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-support-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* CONTACT INFO */
.support-info {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .support-actions {
    flex-direction: column;
  }
  .support-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 14px;
}

/* MAIN */
.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-logo img {
  height: 44px;
  margin-bottom: 18px;
}
.footer-desc {
  color: #cbd5f5;
  line-height: 1.7;
  max-width: 420px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  padding: 30px 0 20px;
  text-align: center;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-address {
  font-size: 13px;
  color: #cbd5f5;
  text-align: start;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}

.footer-disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: #94a3b8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PRODUCT PAGE ================= */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  background: #f1f5f9;
}

.product-hero {
  padding: 80px 0;
  background: #ffffff;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-image-main img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-details h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.product-stock.in-stock {
  color: #16a34a;
  margin-bottom: 16px;
}

.product-short-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.btn-buy {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

.product-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.product-highlights {
  background: #0f172a;
  color: #fff;
  padding: 60px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.product-section {
  padding: 80px 0;
}

.product-section.light-bg {
  background: #f8fafc;
}

.specs-box,
.compatibility-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  line-height: 1.8;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-hero-grid,
  .highlights-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= APPLE STYLE PRODUCT HERO ================= */

.product-hero-apple {
  background: #f5f5f7; /* Apple-like soft gray */
  padding: 90px 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.product-hero-image {
  text-align: center;
}

.product-hero-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* CONTENT */
.product-hero-content {
  max-width: 520px;
}

.product-brand {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 12px;
}

.product-title {
  font-size: 36px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 14px;
}

.product-price {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
  color: #1d1d1f;
}

.product-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #515154;
  margin-bottom: 32px;
}

/* CTA */
.product-cta-wrap {
  margin-bottom: 26px;
}

.btn-apple {
  background: #0071e3; /* Apple blue */
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.btn-apple:hover {
  background: #0077ed;
}

.stock-note {
  color: #b91c1c;
  font-size: 14px;
}

/* MICRO TRUST */
.product-micro-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-micro-points li {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-content {
    margin: auto;
  }
}

/* ================= APPLE STYLE TABS (CONTAINER SAFE) ================= */

.product-tabs-apple {
  background: #ffffff;
  padding: 60px 0; /* reduced */
}

.product-tabs-apple .container {
  max-width: 1140px; /* HARD LIMIT */
}

/* TAB NAV */
.tab-nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #d2d2d7;
  margin-bottom: 32px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 15px;
  color: #6e6e73;
  cursor: pointer;
}

.tab-btn.active {
  color: #1d1d1f;
  font-weight: 500;
  border-bottom: 2px solid #1d1d1f;
}

/* TAB CONTENT */
.tab-panel {
  display: none;
  max-width: 100%; /* NOT 820px */
  line-height: 1.75;
  color: #515154;
  font-size: 15px;
}

.tab-panel.active {
  display: block;
}

/* SPEC TABLE */
.spec-table-apple {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table-apple th {
  width: 32%;
  padding: 10px 8px;
  text-align: left;
  color: #1d1d1f;
  font-weight: 500;
}

.spec-table-apple td {
  padding: 10px 8px;
  color: #515154;
}

/* ================= APPLE STYLE ASSURANCE ROW ================= */

.product-assurance {
  background: #f5f5f7;
  padding: 60px 0;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.assurance-item {
  max-width: 260px;
  margin: 0 auto;
}

.assurance-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.assurance-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.assurance-item p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .assurance-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= STICKY ADD TO CART ================= */

.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #d2d2d7;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 999;
}

.sticky-atc.show {
  transform: translateY(0);
}

.sticky-atc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
}

/* INFO */
.sticky-atc-info {
  display: flex;
  flex-direction: column;
}

.sticky-atc-title {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-size: 14px;
  color: #515154;
}

/* ACTION */
.sticky-atc-action .btn-apple {
  padding: 10px 26px;
  font-size: 14px;
  border-radius: 999px;
}

/* MOBILE ADJUST */
@media (max-width: 600px) {
  .sticky-atc-title {
    max-width: 200px;
  }
}

/* =====================================================
   CART PAGE — PROFESSIONAL ECOMMERCE DESIGN
===================================================== */

.cart-page {
  padding: 80px 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cart-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1d1d1f;
}

/* ================= LAYOUT ================= */

.cart-layout {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 64px;
}

/* ================= TABLE HEADER ================= */

.cart-head {
  display: grid;
  grid-template-columns: 1fr 160px 140px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ================= ROW ================= */

.cart-row {
  display: grid;
  grid-template-columns: 1fr 160px 140px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ================= PRODUCT ================= */

.cart-product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product img {
  width: 84px;
  height: auto;
  border-radius: 12px;
  background: #f5f5f7;
}

.cart-product h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.4;
}

/* ================= QUANTITY ================= */

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty input {
  width: 56px;
  height: 36px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
}

.cart-qty button {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  cursor: pointer;
}

.cart-qty button:hover {
  background: #e5e7eb;
}

/* ================= PRICE + REMOVE ================= */

.cart-price {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
}

.cart-remove {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-remove:hover {
  text-decoration: underline;
}

/* ================= ORDER SUMMARY ================= */

.cart-summary {
  background: #f9fafb;
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 120px;
}

.cart-summary h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #1d1d1f;
}

/* SUMMARY ROWS */

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 16px;
  color: #1d1d1f;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* ================= CTA ================= */

.cart-summary .btn-apple {
  width: 100%;
  margin-top: 28px;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.cart-summary .btn-apple:hover {
  background: #0077ed;
}

/* ================= NOTE ================= */

.summary-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6e6e73;
  text-align: center;
  line-height: 1.6;
}

/* ================= EMPTY ================= */

.cart-empty {
  text-align: center;
  padding: 100px 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-head {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-price {
    text-align: left;
  }

  .cart-summary {
    position: static;
    margin-top: 40px;
  }
}

/* =====================================================
   CHECKOUT PAGE — PREMIUM & ATTRACTIVE DESIGN
===================================================== */

.checkout-page {
  padding: 90px 0;
  background: #f5f5f7;
}

.checkout-title {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 48px;
}

/* ================= LAYOUT ================= */

.checkout-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 64px;
}

/* ================= LEFT: FORM ================= */

.checkout-form {
  background: #ffffff;
  padding: 44px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.checkout-form h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 20px;
  color: #1d1d1f;
}

.checkout-form h2:first-of-type {
  margin-top: 0;
}

/* FORM GROUP */

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  background: #ffffff;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0071e3;
}

/* ================= PAYMENT OPTIONS ================= */

.payment-option {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.payment-option:hover {
  border-color: #0071e3;
}

.payment-option input {
  margin-right: 10px;
}

.payment-option label {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
}

.payment-option p {
  font-size: 13px;
  color: #6e6e73;
  margin: 6px 0 0 26px;
}

/* ================= PLACE ORDER BUTTON ================= */

.checkout-form .btn-apple {
  width: 100%;
  margin-top: 30px;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  background: linear-gradient(180deg, #0077ed, #0063cc);
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.checkout-form .btn-apple:hover {
  background: linear-gradient(180deg, #007fff, #006ad9);
}

/* ================= RIGHT: ORDER SUMMARY ================= */

.checkout-summary {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 120px;
}

.checkout-summary h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #1d1d1f;
}

/* ITEMS */

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.summary-item span:first-child {
  max-width: 70%;
}

/* TOTALS */

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 18px;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* NOTE */

.summary-note {
  margin-top: 18px;
  font-size: 13px;
  color: #6e6e73;
  text-align: center;
  line-height: 1.6;
}

/* ================= ERROR ================= */

.checkout-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-form,
  .checkout-summary {
    padding: 28px;
  }

  .checkout-summary {
    position: static;
    margin-top: 40px;
  }
}

/* =====================================================
   ORDER SUCCESS PAGE
===================================================== */

.order-success-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.order-success-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 56px 48px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.order-success-card h1 {
  font-size: 34px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

/* MESSAGE */
.success-message {
  font-size: 16px;
  color: #374151;
  margin-bottom: 36px;
}

/* STEPS */
.success-steps {
  text-align: left;
  background: #f9fafb;
  padding: 28px;
  border-radius: 18px;
  margin-bottom: 36px;
}

.success-steps h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.success-steps ul {
  margin: 0;
  padding-left: 18px;
}

.success-steps li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

/* ACTIONS */
.success-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-outline {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #d2d2d7;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline:hover {
  background: #f5f5f7;
}

/* NOTE */
.success-note {
  font-size: 13px;
  color: #6e6e73;
}

.success-note a {
  color: #0071e3;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .order-success-card {
    padding: 36px 24px;
  }

  .success-actions {
    flex-direction: column;
  }
}

/* =====================================================
   TRACK ORDER PAGE
===================================================== */

.track-order-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.track-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.track-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 48px;
}

/* CARD */
.track-card {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* FORM */
.track-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.track-form label {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
}

.track-form input {
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

.track-form input:focus {
  outline: none;
  border-color: #0071e3;
}

.track-form .btn-apple {
  margin-top: 10px;
  padding: 14px 0;
  border-radius: 999px;
}

/* ERROR */
.track-error {
  margin-top: 16px;
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

/* RESULT */
.track-result {
  margin-top: 32px;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-icon.processing {
  background: #fef3c7;
  color: #92400e;
}

.status-icon.dispatched {
  background: #dcfce7;
  color: #166534;
}

.track-result h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.track-result p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 24px;
}

/* META */
.track-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #f9fafb;
  padding: 16px;
  border-radius: 14px;
  font-size: 13px;
}

.track-meta strong {
  display: block;
  color: #1d1d1f;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .track-card {
    padding: 28px 22px;
  }

  .track-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* =====================================================
   RETURN ORDER PAGE
===================================================== */

.return-order-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.return-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.return-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 48px;
}

/* CARD */
.return-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FORM */
.return-form .form-group {
  margin-bottom: 22px;
}

.return-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.return-form input,
.return-form select,
.return-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
}

.return-form textarea {
  min-height: 90px;
  resize: vertical;
}

.return-form input:focus,
.return-form select:focus,
.return-form textarea:focus {
  outline: none;
  border-color: #0071e3;
}

/* ERROR */
.return-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* NOTE */
.return-note {
  font-size: 13px;
  color: #6e6e73;
  margin-top: 14px;
  text-align: center;
}

/* SUCCESS */
.return-success {
  text-align: center;
}

.return-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-success h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.return-success p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 24px;
}

.return-meta {
  background: #f9fafb;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .return-card {
    padding: 30px 22px;
  }
}

/* =====================================================
   AUTH (LOGIN / REGISTER)
===================================================== */

.auth-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.auth-info h1 {
  font-size: 42px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.auth-info p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 24px;
  max-width: 420px;
}

.auth-points {
  list-style: none;
  padding: 0;
}

.auth-points li {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.auth-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* RIGHT SIDE */
.auth-form-area {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.auth-form-area h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  margin-bottom: 16px;
}

.auth-form input:focus {
  outline: none;
  border-color: #0071e3;
}

.auth-switch {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
}

.auth-switch a {
  color: #0071e3;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .auth-info {
    text-align: center;
  }

  .auth-info p {
    margin: 0 auto 24px;
  }
}

/* =====================================================
   MY ACCOUNT PAGE
===================================================== */

.account-page {
  padding: 90px 0;
  background: #f5f5f7;
}

.account-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1d1d1f;
}

/* LAYOUT */
.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

/* SIDEBAR */
.account-sidebar {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.account-sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.account-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-sidebar li {
  margin-bottom: 12px;
  font-size: 14px;
}

.account-sidebar li a {
  text-decoration: none;
  color: #374151;
}

.account-sidebar li.active {
  font-weight: 600;
  color: #1d1d1f;
}

/* CONTENT */
.account-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CARD */
.account-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.account-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* INFO */
.account-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.account-info span {
  display: block;
  font-size: 13px;
  color: #6e6e73;
  margin-bottom: 4px;
}

.account-info strong {
  font-size: 15px;
  color: #1d1d1f;
}

/* ACTIONS */
.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.account-action {
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.account-action:hover {
  border-color: #0071e3;
  background: #f9fafb;
}

.account-action h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.account-action p {
  font-size: 14px;
  color: #6e6e73;
}

/* NOTE */
.account-note {
  font-size: 14px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-actions {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US PAGE
===================================================== */

.about-page {
  background: #ffffff;
}

/* HERO */
.about-hero {
  background: linear-gradient(180deg, #f5f5f7, #ffffff);
  padding: 100px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.about-hero p {
  font-size: 16px;
  color: #374151;
  max-width: 640px;
  margin: 0 auto;
}

/* SECTIONS */
.about-section {
  padding: 90px 0;
}

.about-section.light {
  background: #f9fafb;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.center {
  text-align: center;
}

.max {
  max-width: 720px;
  margin: 0 auto;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* HIGHLIGHT */
.about-highlight {
  background: #f5f5f7;
  padding: 36px;
  border-radius: 20px;
  text-align: center;
}

.about-highlight strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.about-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.about-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.about-features h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* LIST */
.about-list {
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 8px;
}

/* DISCLAIMER */
.about-disclaimer {
  background: #f9fafb;
  padding: 30px 0;
  font-size: 13px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .about-cards,
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}

/* =====================================================
   CONTACT US PAGE
===================================================== */

.contact-page {
  padding: 100px 0;
  background: #f5f5f7;
}

.contact-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 60px;
}

/* LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 24px;
  max-width: 420px;
}

.contact-details {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.contact-details div {
  margin-bottom: 18px;
}

.contact-details strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #1d1d1f;
}

.contact-details span {
  font-size: 14px;
  color: #374151;
}

.contact-note {
  margin-top: 24px;
  font-size: 14px;
  color: #6e6e73;
}

/* RIGHT FORM */
.contact-form-area {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-area h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  margin-bottom: 16px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0071e3;
}

/* SUCCESS */
.contact-success {
  text-align: center;
}

.contact-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-success h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-success p {
  font-size: 15px;
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    margin: 0 auto 24px;
  }
}

/* =====================================================
   FAQ PAGE
===================================================== */

.faq-page {
  padding: 100px 0;
  background: #ffffff;
}

.faq-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.faq-subtitle {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 70px;
}

/* SECTIONS */
.faq-section {
  padding: 20px;
}

.faq-section.light {
  background: #f9fafb;
  padding: 20px;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1d1d1f;
}

/* ITEMS */
.faq-item {
  max-width: 820px;
  margin-bottom: 26px;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.faq-item p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-page {
    padding: 70px 0;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 32px;
  }
}

/* =====================================================
   SHOP PAGE
===================================================== */

.shop-page {
  padding: 90px 0;
  background: #ffffff;
}

.shop-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1d1d1f;
}

/* LAYOUT */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}

/* SIDEBAR */
.shop-sidebar {
  border-right: 1px solid #e5e7eb;
  padding-right: 30px;
}

.shop-sidebar h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.shop-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-sidebar li {
  margin-bottom: 10px;
}

.shop-sidebar a {
  text-decoration: none;
  font-size: 14px;
  color: #374151;
}

.shop-sidebar a.active {
  font-weight: 600;
  color: #0071e3;
}

/* PRODUCTS */
.shop-products {
  width: 100%;
}

.shop-empty {
  font-size: 15px;
  color: #6e6e73;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-link {
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.product-image {
  background: #f5f5f7;
  padding: 24px;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
}

/* INFO */
.product-info {
  padding: 22px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.product-info p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 14px;
}

/* META */
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: 600;
}

.stock.in-stock {
  color: #16a34a;
  font-size: 13px;
}

.stock.out-stock {
  color: #b91c1c;
  font-size: 13px;
}

/* CART */
.add-cart-form {
  padding: 18px;
  border-top: 1px solid #e5e7eb;
}

.btn-disabled {
  width: 100%;
  padding: 14px;
  border: none;
  background: #e5e7eb;
  color: #6e6e73;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    border-right: none;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CATEGORY PAGE
===================================================== */

.category-page {
  background: #ffffff;
}

/* HERO */
.category-hero {
  background: linear-gradient(180deg, #f5f5f7, #ffffff);
  padding: 90px 0 70px;
  text-align: center;
}

.category-hero h1 {
  font-size: 40px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.category-hero p {
  font-size: 16px;
  color: #374151;
  max-width: 640px;
  margin: 0 auto;
}

/* CONTENT */
.category-content {
  padding: 70px 0 100px;
}

/* INFO */
.category-info {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* EMPTY */
.category-empty {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .category-hero h1 {
    font-size: 32px;
  }
}

/* =====================================================
   POLICY PAGES (PRIVACY, TERMS, REFUND, ETC.)
===================================================== */

.policy-page {
  padding: 90px 0;
  background: #ffffff;
}

.policy-title {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.policy-updated {
  font-size: 13px;
  color: #6e6e73;
  margin-bottom: 40px;
}

.policy-content {
  max-width: 900px;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.policy-content p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
}

.policy-contact {
  margin-top: 16px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-title {
    font-size: 32px;
  }
}

.shop-search-note {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 30px;
}
