/* RESET & BASE */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont;
  color: #222;
  background: #ffffff;
}

a {
  text-decoration: none;
}

/* ================================
   TOP BAR – SHARP & FULL WIDTH
================================ */

.top-bar {
  background: #111827; /* near-black */
  color: #e5e7eb;
  font-size: 13px;
  padding: 10px 0;
}

.top-bar .container {
  max-width: 1400px;
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 26px;
  white-space: nowrap;
}

.top-bar i {
  color: #3b82f6;
  font-size: 13px;
}

.top-bar span:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar span {
    margin-right: 16px;
    margin-bottom: 4px;
  }
}

/* ================================
   MAIN HEADER – FULL SCREEN STYLE
================================ */

.header-main {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  padding: 0;
}

/* Container wider than default */
.header-main .container {
  max-width: 1400px;
  padding: 0 24px;
}

/* LOGO */
.site-logo {
  font-size: 24px;
  font-weight: 700;
  color: #0d6efd;
  padding: 18px 0;
}

.site-logo:hover {
  color: #084298;
}

/* NAV MENU */
.main-menu {
  gap: 36px;
}

.main-menu .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  padding: 22px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.main-menu .nav-link:hover {
  color: #0d6efd;
  border-bottom-color: #0d6efd;
}

/* SEARCH BAR – SHARP */
.search-form {
  margin-left: 40px;
}

.search-form input {
  width: 260px;
  padding: 10px 14px;
  font-size: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 0; /* SHARP */
  outline: none;
  transition: border-color 0.2s ease;
}

.search-form input:focus {
  border-color: #0d6efd;
}

/* HEADER ICONS */
.header-icons {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.header-icons a {
  font-size: 18px;
  color: #111827;
  margin-left: 26px;
  position: relative;
  transition: color 0.2s ease;
}

.header-icons a:hover {
  color: #0d6efd;
}

/* CART COUNT – SHARP */
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 0; /* SHARP */
  line-height: 1;
}

/* ================================
   MOBILE NAV – CLEAN & SOLID
================================ */

@media (max-width: 991px) {
  .navbar-toggler {
    border: none;
    padding: 10px;
  }

  .navbar-collapse {
    border-top: 2px solid #e5e7eb;
    padding: 20px 0;
    margin-top: 10px;
  }

  .main-menu {
    gap: 0;
  }

  .main-menu .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .search-form {
    margin: 20px 0;
    width: 100%;
  }

  .search-form input {
    width: 100%;
  }

  .header-icons {
    justify-content: center;
    margin: 20px 0 0;
  }

  .header-icons a {
    margin: 0 18px;
  }
}

/* ================================
   HERO SECTION – POWER & IMPACT
================================ */

.hero-section {
  position: relative;
  padding: 110px 0;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #020617 0%,
    #0b1c2d 35%,
    #0d6efd 70%,
    #1e40af 100%
  );
  overflow: hidden;
}

/* Subtle grid / tech overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-subtitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-description {
  font-size: 17px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 34px;
}

/* BUTTONS – SHARP */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-btn {
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.hero-btn.primary {
  background: #ffffff;
  color: #020617;
}

.hero-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: #93c5fd;
}

.hero-btn.secondary:hover {
  background: #93c5fd;
  color: #020617;
}

/* TRUST ROW */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-trust img {
  max-height: 65px;
  background: #ffffff;
  padding: 6px 10px;
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-visual img {
  max-width: 90%;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 991px) {
  .hero-section {
    padding: 90px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-visual {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    font-size: 16px;
  }
}

/* ================================
   CATEGORY SECTION – 3D POWER
================================ */

.category-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #020617 0%, #0b1c2d 100%);
  color: #ffffff;
}

.category-section .section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.category-section .section-header p {
  font-size: 16px;
  color: #cbd5f5;
}

/* CARD */
.category-card {
  display: block;
  position: relative;
  height: 100%;
  background: #020617;
  border: 2px solid transparent;
  transform-style: preserve-3d;
  transition: all 0.35s ease;
  text-decoration: none;
}

/* GRADIENT BORDER */
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #3b82f6, #9333ea, #06b6d4);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* INNER CONTENT */
.category-inner {
  position: relative;
  padding: 40px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateZ(30px);
}

.category-inner h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.category-inner span {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* HOVER – 3D LIFT */
.category-card:hover {
  transform: translateY(-12px) rotateX(6deg) rotateY(-6deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.35);
}

/* TEXT GLOW ON HOVER */
.category-card:hover h3 {
  color: #93c5fd;
}

.category-card:hover span {
  color: #e5e7eb;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .category-section {
    padding: 80px 0;
  }

  .category-card:hover {
    transform: translateY(-6px);
  }

  .category-inner {
    padding: 30px 22px;
  }
}

/* ================================
   FEATURED PRODUCTS – NEXT LEVEL
================================ */

.featured-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #020617 0%, #020617 40%, #0b1c2d 100%);
  color: #ffffff;
}

.featured-section .section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.featured-section .section-header p {
  color: #c7d2fe;
}

/* PRODUCT CARD */
.product-card {
  height: 100%;
  background: #020617;
  border: 2px solid #1e293b;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  transform-style: preserve-3d;
}

/* IMAGE */
.product-image {
  background: linear-gradient(135deg, #020617, #020617);
  padding: 25px;
  text-align: center;
}

.product-image img {
  max-height: 190px;
  transition: transform 0.35s ease;
}

/* BODY */
.product-body {
  padding: 24px;
  flex-grow: 1;
}

.product-title a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin: 12px 0;
}

/* TAGS */
.product-tags span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #93c5fd;
  border: 1px solid #1e3a8a;
  padding: 4px 8px;
  margin: 0 6px 6px 0;
}

/* FOOTER */
.product-footer {
  padding: 20px 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PRICE */
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: #93c5fd;
}

/* BUTTON */
.add-to-cart-btn {
  background: transparent;
  border: 2px solid #93c5fd;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* HOVER EFFECT – 3D LIFT */
.product-card:hover {
  transform: translateY(-14px) rotateX(5deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(147, 197, 253, 0.25);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .featured-section {
    padding: 80px 0;
  }

  .product-card:hover {
    transform: translateY(-6px);
  }
}

/* ================================
   ABOUT SECTION – BRAND STORY
================================ */

.about-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #020617 0%, #0b1c2d 50%, #020617 100%);
  color: #ffffff;
  overflow: hidden;
}

/* Subtle diagonal accent */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(59, 130, 246, 0.15) 100%
  );
  pointer-events: none;
}

/* CONTENT */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 16px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 18px;
}

/* ACTIONS */
.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-btn {
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.about-btn.primary {
  background: #ffffff;
  color: #020617;
}

.about-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.about-btn.secondary {
  background: transparent;
  color: #93c5fd;
  border-color: #93c5fd;
}

.about-btn.secondary:hover {
  background: #93c5fd;
  color: #020617;
}

/* VISUAL STATS */
.about-visual {
  position: relative;
  z-index: 2;
  border: 2px solid #1e293b;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(2, 6, 23, 0.85);
}

.about-stat {
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #cbd5f5;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 991px) {
  .about-section {
    padding: 90px 0;
  }

  .about-title {
    font-size: 34px;
  }

  .about-visual {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-stat {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }
}

/* ================================
   WHY CHOOSE US – TRUST & AUTHORITY
================================ */

.why-choose-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #020617 0%, #0b1c2d 100%);
  color: #ffffff;
}

/* HEADER */
.why-choose-section .section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.why-choose-section .section-header p {
  color: #c7d2fe;
}

/* CARD */
.why-card {
  height: 100%;
  border: 2px solid #1e293b;
  padding: 36px 26px;
  background: #020617;
  transition: all 0.3s ease;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #93c5fd;
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(147, 197, 253, 0.2);
  border-color: #93c5fd;
}

/* TRUST STRIP */
.why-trust-strip {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 2px solid #1e293b;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #cbd5f5;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 991px) {
  .why-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 90px 0;
  }

  .why-trust-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ================================
   TESTIMONIALS – REAL TRUST
================================ */

.testimonial-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #020617 0%, #0b1c2d 100%);
  color: #ffffff;
}

/* HEADER */
.testimonial-section .section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.testimonial-section .section-header p {
  color: #c7d2fe;
}

/* CARD */
.testimonial-card {
  height: 100%;
  background: #020617;
  border: 2px solid #1e293b;
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
}

/* QUOTE */
.testimonial-quote {
  font-size: 15px;
  line-height: 1.9;
  color: #e5e7eb;
  margin-bottom: 26px;
}

/* META */
.testimonial-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #93c5fd;
}

.testimonial-meta span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cbd5f5;
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #93c5fd;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(147, 197, 253, 0.2);
}

/* TRUST FOOTNOTE */
.testimonial-trust {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 2px solid #1e293b;
  text-align: center;
}

.testimonial-trust span {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #cbd5f5;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .testimonial-section {
    padding: 90px 0;
  }

  .testimonial-card {
    padding: 30px 22px;
  }
}

/* ================================
   FOOTER – ENTERPRISE GRADE
================================ */

.site-footer {
  background: linear-gradient(180deg, #020617 0%, #020617 60%, #01030a 100%);
  color: #cbd5f5;
}

/* TOP */
.footer-top {
  padding: 90px 0 70px;
  border-bottom: 2px solid #1e293b;
}

/* BRAND */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 25px;
}

.footer-payments img {
  max-width: 220px;
}

/* HEADINGS */
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 20px;
}

/* NAV */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: #cbd5f5;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact {
  margin-bottom: 16px;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 4px;
}

.footer-contact p,
.footer-contact a {
  font-size: 14px;
  color: #cbd5f5;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
  padding: 25px 0;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: #94a3b8;
}

.footer-note {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .footer-top {
    padding: 70px 0 50px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-note {
    margin-top: 10px;
  }
}

/* ================================
   BREADCRUMB
================================ */

.breadcrumb-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.breadcrumb-wrap h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-wrap nav {
  font-size: 14px;
  color: #cbd5f5;
}

.breadcrumb-wrap nav a {
  color: #93c5fd;
}

.breadcrumb-wrap nav span {
  margin: 0 6px;
}

/* ================================
   ABOUT CONTENT
================================ */

.about-page-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.about-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-page-subtitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
}

.about-page-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-page-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ================================
   STATS
================================ */

.about-stats {
  padding: 80px 0;
  background: #020617;
  border-top: 2px solid #1e293b;
  border-bottom: 2px solid #1e293b;
}

.stat-box strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #93c5fd;
}

.stat-box span {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
}

.about-values h2 {
  color: white;
  margin-bottom: 30px;
}

/* ================================
   VALUES
================================ */

.about-values {
  padding: 100px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

.value-card {
  height: 100%;
  padding: 36px 28px;
  border: 2px solid #1e293b;
  background: #020617;
  transition: all 0.3s ease;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
}

/* ================================
   CTA
================================ */

.about-cta {
  padding: 100px 0;
  text-align: center;
  background: #020617;
}

.about-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.about-page-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #93c5fd;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.about-page-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .breadcrumb-wrap h1 {
    font-size: 32px;
  }

  .about-page-section,
  .about-values,
  .about-cta {
    padding: 70px 0;
  }
}

/* ================================
   CONTACT BREADCRUMB
================================ */

.contact-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.contact-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.contact-breadcrumb nav {
  font-size: 14px;
}

.contact-breadcrumb nav a {
  color: #93c5fd;
}

.contact-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   CONTACT MAIN
================================ */

.contact-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

/* INFO BOX */
.contact-info-box {
  height: 100%;
  border: 2px solid #1e293b;
  padding: 36px 30px;
  background: #020617;
}

.contact-info-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-info-box p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #93c5fd;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: #cbd5f5;
}

.contact-item a:hover {
  color: #ffffff;
}

.contact-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #1e293b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

/* FORM BOX */
.contact-form-box {
  border: 2px solid #1e293b;
  padding: 40px;
  background: #020617;
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.form-intro {
  font-size: 14px;
  margin-bottom: 20px;
  color: #cbd5f5;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid #1e293b;
  color: #ffffff;
  font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: #93c5fd;
}

/* BUTTON */
.contact-btn {
  margin-top: 15px;
  padding: 14px 36px;
  border: 2px solid #93c5fd;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* SUCCESS */
.contact-success {
  padding: 18px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-weight: 600;
}

/* ================================
   SUPPORT STRIP
================================ */

.contact-support {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

.support-box {
  border: 2px solid #1e293b;
  padding: 30px;
  height: 100%;
}

.support-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 10px;
}

.support-box p {
  font-size: 14px;
  color: #cbd5f5;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .contact-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .contact-section,
  .contact-support {
    padding: 70px 0;
  }

  .contact-form-box {
    padding: 30px;
  }
}

/* ================================
   POLICY BREADCRUMB
================================ */

.policy-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.policy-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.policy-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.policy-breadcrumb nav {
  font-size: 14px;
}

.policy-breadcrumb nav a {
  color: #93c5fd;
}

.policy-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   POLICY CONTENT
================================ */

.policy-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.policy-wrapper {
  max-width: 1220px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
}

/* INTRO */
.policy-intro {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 35px;
  color: #e5e7eb;
}

/* HEADINGS */
.policy-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* TEXT */
.policy-wrapper p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* LIST */
.policy-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-wrapper ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* NOTE */
.policy-note {
  margin-top: 40px;
  padding: 20px;
  border-left: 4px solid #93c5fd;
  background: rgba(147, 197, 253, 0.08);
  font-size: 14px;
}

.policy-note a {
  color: #93c5fd;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .policy-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .policy-section {
    padding: 70px 0;
  }
}

/* ================================
   AUTH / LOGIN – ENTERPRISE STYLE
================================ */

.auth-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

/* LAYOUT */
.auth-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid #1e293b;
}

/* BRAND PANEL */
.auth-brand {
  padding: 60px 50px;
  background: linear-gradient(180deg, #020617, #020617);
}

.auth-brand h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #93c5fd;
}

.auth-brand p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.auth-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-points li {
  font-size: 14px;
  margin-bottom: 14px;
  color: #e5e7eb;
  position: relative;
  padding-left: 18px;
}

.auth-points li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #93c5fd;
  font-size: 10px;
  top: 6px;
}

/* FORM PANEL */
.auth-form-box {
  padding: 60px 50px;
  background: #020617;
  border-left: 2px solid #1e293b;
}

.auth-form-box h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.auth-subtext {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 25px;
}

/* INPUTS */
.auth-form-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: transparent;
  border: 2px solid #1e293b;
  color: #ffffff;
  font-size: 14px;
}

.auth-form-box input:focus {
  outline: none;
  border-color: #93c5fd;
}

/* BUTTON */
.auth-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid #93c5fd;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.auth-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* ERROR */
.auth-error {
  padding: 14px;
  border: 2px solid #ef4444;
  color: #ef4444;
  font-size: 14px;
  margin-bottom: 15px;
}

/* FOOTER LINK */
.auth-footer-link {
  margin-top: 22px;
  font-size: 14px;
  color: #cbd5f5;
}

.auth-footer-link a {
  color: #93c5fd;
  font-weight: 600;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-brand {
    padding: 40px;
    border-bottom: 2px solid #1e293b;
  }

  .auth-form-box {
    padding: 40px;
    border-left: none;
  }

  .auth-section {
    padding: 80px 0;
  }
}

/* ================================
   AUTH SUCCESS MESSAGE
================================ */

.auth-success {
  padding: 18px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-weight: 600;
  font-size: 14px;
}

.auth-success a {
  display: inline-block;
  margin-top: 8px;
  color: #93c5fd;
  font-weight: 700;
}

/* ================================
   CART BREADCRUMB
================================ */

.cart-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.cart-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
}

.cart-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
}

.cart-breadcrumb nav {
  font-size: 14px;
}

.cart-breadcrumb nav a {
  color: #93c5fd;
}

.cart-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   CART MAIN
================================ */

.cart-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}

/* ITEMS */
.cart-items {
  border: 2px solid #1e293b;
}

.cart-head,
.cart-item {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.4fr;
  padding: 18px 22px;
  border-bottom: 1px solid #1e293b;
}

.cart-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #93c5fd;
}

.cart-item strong {
  font-size: 15px;
  color: #ffffff;
}

.cart-price {
  font-weight: 700;
}

.cart-remove a {
  color: #ef4444;
  font-size: 14px;
}

/* SUMMARY */
.cart-summary-box {
  border: 2px solid #1e293b;
  padding: 30px;
  height: fit-content;
}

.cart-summary-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 15px;
}

.summary-note {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 25px;
}

/* BUTTONS */
.cart-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #93c5fd;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-btn:hover {
  background: #93c5fd;
  color: #020617;
}

.cart-btn.full {
  width: 100%;
  text-align: center;
}

.cart-continue {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #93c5fd;
}

/* EMPTY */
.cart-empty-box {
  text-align: center;
  padding: 80px;
  border: 2px dashed #1e293b;
}

.cart-empty-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ================================
   ASSURANCE
================================ */

.cart-assurance {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cart-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .cart-section,
  .cart-assurance {
    padding: 70px 0;
  }

  .cart-head {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ================================
   CHECKOUT HERO
================================ */

.checkout-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #fff;
}

.checkout-head h1 {
  font-size: 42px;
  font-weight: 800;
}

.checkout-head p {
  color: #c7d2fe;
}

.checkout-steps {
  margin-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}

.checkout-steps .active {
  color: #93c5fd;
  font-weight: 700;
}

/* ================================
   CHECKOUT LAYOUT
================================ */

.checkout-section {
  padding: 100px 0;
  background: #020617;
  color: #e5e7eb;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}

/* ================================
   CHECKOUT CARD
================================ */

.checkout-card {
  border: 2px solid #1e293b;
  padding: 30px;
  margin-bottom: 30px;
}

.checkout-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* ================================
   FORM
================================ */

.checkout-card input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid #1e293b;
  color: #fff;
  margin-bottom: 15px;
}

.checkout-card input::placeholder {
  color: #94a3b8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ================================
   PAYMENT
================================ */

.payment-option input {
  display: none;
}

.payment-card {
  display: flex;
  gap: 15px;
  padding: 16px;
  border: 2px solid #1e293b;
  cursor: pointer;
  margin-bottom: 15px;
}

.payment-option input:checked + .payment-card {
  border-color: #93c5fd;
  background: rgba(147, 197, 253, 0.05);
}

.payment-card span {
  font-size: 13px;
  color: #94a3b8;
}

/* ================================
   SUMMARY
================================ */

.order-summary {
  list-style: none;
  padding: 0;
}

.order-summary li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #1e293b;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0;
}

/* ================================
   BUTTONS
================================ */

.checkout-btn {
  width: 100%;
  padding: 16px;
  border: 2px solid #93c5fd;
  background: transparent;
  color: #93c5fd;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-btn:hover {
  background: #93c5fd;
  color: #020617;
}

.checkout-outline-btn {
  display: inline-block;
  margin-top: 15px;
  color: #93c5fd;
}

/* ================================
   SUCCESS
================================ */

.checkout-success-box {
  max-width: 600px;
  margin: auto;
  text-align: center;
  border: 2px solid #22c55e;
  padding: 60px;
}

.success-order-id {
  margin: 20px 0;
  font-size: 18px;
  color: #22c55e;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ================================
   TRACK ORDER BREADCRUMB
================================ */

.track-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.track-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.track-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
}

.track-breadcrumb nav {
  font-size: 14px;
}

.track-breadcrumb nav a {
  color: #93c5fd;
}

.track-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   TRACK MAIN LAYOUT
================================ */

.track-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.track-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* FORM BOX */
.track-form-box {
  border: 2px solid #1e293b;
  padding: 36px;
}

.track-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.track-form-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.track-form-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: transparent;
  border: 2px solid #1e293b;
  color: #ffffff;
}

.track-form-box input:focus {
  outline: none;
  border-color: #93c5fd;
}

.track-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid #93c5fd;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.track-btn:hover {
  background: #93c5fd;
  color: #020617;
}

.track-help {
  margin-top: 15px;
  font-size: 13px;
}

/* STATUS BOX */
.track-status-box {
  border: 2px solid #1e293b;
  padding: 36px;
}

.track-status-card {
  margin-bottom: 30px;
}

.track-message {
  margin-top: 10px;
  font-size: 15px;
}

/* STEPS */
.track-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.track-step {
  text-align: center;
  opacity: 0.4;
}

.track-step.active {
  opacity: 1;
}

.track-step span {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid #93c5fd;
  line-height: 30px;
  font-weight: 700;
}

.track-step p {
  font-size: 13px;
  margin-top: 8px;
}

/* PLACEHOLDER */
.track-placeholder {
  font-size: 15px;
  color: #94a3b8;
}

/* ================================
   ASSURANCE STRIP
================================ */

.track-assurance {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

.assurance-box {
  border: 2px solid #1e293b;
  padding: 30px;
}

.assurance-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #93c5fd;
}

.assurance-box p {
  font-size: 14px;
  color: white;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .track-layout {
    grid-template-columns: 1fr;
  }

  .track-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .track-section,
  .track-assurance {
    padding: 70px 0;
  }
}

/* ================================
   RETURN BREADCRUMB
================================ */

.return-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.return-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.return-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
}

.return-breadcrumb nav {
  font-size: 14px;
}

.return-breadcrumb nav a {
  color: #93c5fd;
}

.return-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   RETURN MAIN
================================ */

.return-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.return-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* INFO BOX */
.return-info-box {
  border: 2px solid #1e293b;
  padding: 36px;
}

.return-info-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.return-info-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.return-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.return-points li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.return-points li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #93c5fd;
  font-size: 10px;
  top: 6px;
}

.return-note {
  font-size: 13px;
  border-top: 2px solid #1e293b;
  padding-top: 15px;
}

/* FORM BOX */
.return-form-box {
  border: 2px solid #1e293b;
  padding: 40px;
}

.return-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.return-subtext {
  font-size: 14px;
  margin-bottom: 20px;
}

.return-form-box input,
.return-form-box select,
.return-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: transparent;
  border: 2px solid #1e293b;
  color: #ffffff;
  font-size: 14px;
}

.return-form-box select option {
  background: #020617;
}

.return-form-box input:focus,
.return-form-box select:focus,
.return-form-box textarea:focus {
  outline: none;
  border-color: #93c5fd;
}

/* BUTTON */
.return-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #93c5fd;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.return-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* SUCCESS */
.return-success h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.return-success p {
  font-size: 15px;
  margin-bottom: 12px;
}

/* ================================
   ASSURANCE STRIP
================================ */

.return-assurance {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .return-layout {
    grid-template-columns: 1fr;
  }

  .return-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .return-section,
  .return-assurance {
    padding: 70px 0;
  }
}

/* ================================
   SHOP BREADCRUMB
================================ */

.shop-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.shop-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 6px;
}

.shop-breadcrumb-inner p {
  font-size: 16px;
  color: #cbd5f5;
}

.shop-breadcrumb nav {
  font-size: 14px;
}

.shop-breadcrumb nav a {
  color: #93c5fd;
}

.shop-breadcrumb nav span {
  margin: 0 6px;
}

/* ================================
   SHOP LAYOUT
================================ */

.shop-section {
  padding: 100px 0;
  background: #020617;
  color: #cbd5f5;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ================================
   SIDEBAR
================================ */

.shop-filter {
  border: 2px solid #1e293b;
  padding: 30px;
  height: fit-content;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #93c5fd;
  margin-bottom: 12px;
}

.filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-group li {
  margin-bottom: 10px;
}

.filter-group a {
  font-size: 14px;
  color: #cbd5f5;
}

.filter-group a:hover {
  color: #ffffff;
}

.filter-note {
  font-size: 13px;
  border-top: 2px solid #1e293b;
  padding-top: 15px;
}

/* ================================
   PRODUCTS
================================ */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.shop-card {
  border: 2px solid #1e293b;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
}

/* IMAGE */
.shop-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #1e293b;
  text-align: center;
}

.shop-card-image img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

/* BODY */
.shop-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.shop-card-body h3 a {
  color: #ffffff;
}

.shop-card-body p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* TAGS */
.shop-tags {
  margin-bottom: 18px;
}

.shop-tags span {
  display: inline-block;
  font-size: 12px;
  border: 1px solid #93c5fd;
  padding: 4px 10px;
  margin: 0 6px 6px 0;
}

/* FOOTER */
.shop-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-footer strong {
  font-size: 18px;
  color: #93c5fd;
}

/* BUTTON */
.shop-cart-btn {
  padding: 8px 16px;
  border: 2px solid #93c5fd;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-cart-btn:hover {
  background: #93c5fd;
  color: #020617;
}

/* ================================
   EMPTY STATE
================================ */

.shop-empty {
  border: 2px dashed #1e293b;
  padding: 60px;
  text-align: center;
}

.shop-empty h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-empty a {
  color: #93c5fd;
  font-weight: 700;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .shop-section {
    padding: 70px 0;
  }
}

/* ================================
   PRODUCT BREADCRUMB
================================ */

.product-breadcrumb {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #ffffff;
}

.product-breadcrumb-inner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-breadcrumb-inner p {
  color: #c7d2fe;
  font-size: 16px;
}

.product-breadcrumb nav {
  font-size: 14px;
  margin-top: 12px;
}

.product-breadcrumb nav a {
  color: #93c5fd;
}

.product-breadcrumb nav span {
  margin: 0 6px;
  color: #94a3b8;
}

/* ================================
   PRODUCT MAIN SECTION
================================ */

.product-section {
  padding: 100px 0;
  background: #020617;
  color: #e5e7eb;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ================================
   PRODUCT IMAGE
================================ */

.product-image-box {
  border: 2px solid #1e293b;
  padding: 40px;
  text-align: center;
  background: #020617;
}

.product-image-box img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

/* ================================
   PRODUCT SUMMARY
================================ */

.product-summary h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 20px;
}

/* TAGS / FEATURES */
.product-tags {
  margin-bottom: 20px;
}

.product-tags span {
  display: inline-block;
  border: 2px solid #93c5fd;
  color: #93c5fd;
  padding: 6px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

/* PRICE */
.product-price-box {
  font-size: 28px;
  font-weight: 900;
  margin: 25px 0;
  color: #ffffff;
}

/* CTA */
.product-cart-btn {
  display: inline-block;
  padding: 16px 34px;
  border: 2px solid #93c5fd;
  color: #93c5fd;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-cart-btn:hover {
  background: #93c5fd;
  color: #020617;
}

.out-of-stock {
  color: #ef4444;
  font-weight: 800;
}

/* META */
.product-meta {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #94a3b8;
}

/* ================================
   SPECIFICATIONS
================================ */

.product-specs {
  padding: 100px 0;
  background: #020617;
  border-top: 2px solid #1e293b;
}

.product-specs h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ffffff;
}

/* GRID SPECS */
.specs-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid #1e293b;
}

.specs-table > div {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1e293b;
  border-right: 1px solid #1e293b;
  font-size: 14px;
}

.specs-table > div:nth-child(even) {
  border-right: none;
}

.specs-table strong {
  color: #94a3b8;
  font-weight: 700;
}

.specs-table span {
  color: #e5e7eb;
  font-weight: 600;
}

/* ================================
   ASSURANCE STRIP
================================ */

.product-assurance {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0b1c2d);
}

.assurance-box {
  border: 2px solid #1e293b;
  padding: 35px;
}

.assurance-box h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.assurance-box p {
  font-size: 14px;
  color: #94a3b8;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .specs-table {
    grid-template-columns: 1fr;
  }

  .specs-table > div {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .product-breadcrumb-inner h1 {
    font-size: 32px;
  }

  .product-section,
  .product-specs,
  .product-assurance {
    padding: 70px 0;
  }
}

/* ================================
   ACCOUNT DASHBOARD HERO
================================ */

.account-dashboard-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #0b1c2d);
  color: #fff;
}

.account-dashboard-head h1 {
  font-size: 42px;
  font-weight: 800;
}

.account-dashboard-head p {
  color: #c7d2fe;
}

.account-breadcrumb {
  margin-top: 10px;
  font-size: 14px;
}

.account-breadcrumb a {
  color: #93c5fd;
}

.account-breadcrumb span {
  margin: 0 6px;
}

/* ================================
   ACCOUNT LAYOUT
================================ */

.account-dashboard {
  padding: 100px 0;
  background: #020617;
  color: #e5e7eb;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ================================
   SIDEBAR
================================ */

.account-sidebar {
  border: 2px solid #1e293b;
  padding: 25px;
  height: fit-content;
}

.account-user {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border: 2px solid #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #93c5fd;
}

.account-user-info span {
  font-size: 13px;
  color: #94a3b8;
}

.account-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.account-menu li {
  margin-bottom: 12px;
}

.account-menu a {
  color: #cbd5f5;
  font-weight: 600;
}

.account-menu a.active,
.account-menu a:hover {
  color: #93c5fd;
}

.account-logout {
  display: block;
  margin-top: 20px;
  padding: 12px;
  border: 2px solid #ef4444;
  color: #ef4444;
  text-align: center;
  font-weight: 700;
}

.account-logout:hover {
  background: #ef4444;
  color: #020617;
}

/* ================================
   CONTENT
================================ */

.account-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.account-card {
  border: 2px solid #1e293b;
  padding: 30px;
}

.account-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.account-info-grid span {
  font-size: 13px;
  color: #94a3b8;
}

.status-active {
  color: #22c55e;
  font-weight: 700;
}

/* ================================
   ACTIONS
================================ */

.account-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.account-action-box {
  border: 2px solid #1e293b;
  padding: 25px;
  transition: all 0.3s ease;
}

.account-action-box:hover {
  border-color: #93c5fd;
}

.account-action-box h4 {
  font-size: 16px;
  font-weight: 700;
}

.account-action-box p {
  font-size: 14px;
  color: #94a3b8;
}

/* ================================
   NOTE
================================ */

.account-note {
  padding: 18px;
  border: 2px dashed #1e293b;
  font-size: 14px;
  color: #94a3b8;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-actions {
    grid-template-columns: 1fr;
  }

  .account-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Payment Method Section */
.payment-method {
  margin-top: 20px;
}

.payment-method h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

/* Hide default radio */
.payment-option input {
  display: none;
}

/* Card wrapper */
.payment-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  border: 2px solid #e2e6ea;
  border-radius: 10px;
  background: #000000;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

/* Hover */
.payment-card:hover {
  border-color: #0a74ff;
  background: #f5f9ff;
}

/* Selected state */
.payment-option input:checked + .payment-card {
  border-color: #0a74ff;
  background: #000000;
}

/* Icon */
.payment-icon {
  font-size: 28px;
}

/* Text */
.payment-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.payment-text span {
  font-size: 13px;
  color: #6c757d;
}

.hp-partner-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* mobile friendly */
}

.hp-partner {
  max-width: 150px;
  cursor: pointer;
}

.trustpilot-badge {
  max-width: 120px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

/* 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;
}

.vertical-cta {
  position: fixed;
  right: -62px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  z-index: 9999;
}

.vertical-cta:hover {
  background: #1e40af;
  color: white;
}

/* Hide on small screens */
@media (max-width: 900px) {
  .vertical-cta {
    display: none;
  }
}
/* Logo inside CTA */
.vertical-cta .cta-logo {
  width: 18px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}
/* Keep text inline */
.vertical-cta span {
  vertical-align: middle;
}
