/* ========================================
   0. Import Font
   ======================================== */
/* ========================================
   1. CSS Reset
   ======================================== */
   
@font-face {
  font-family: 'AvenirNextLTProDemi';
  src: url('../fonts/AvenirNextLTProDemi.woff2') format('woff2'),
       url('../fonts/AvenirNextLTProDemi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
 font-family: 'AvenirNextLTProDemi', sans-serif;
  font-weight: 400;
  font-size: var(--fs-regular);
  line-height: 1.3;
  color: var(--color-text);
  background: #eeeeee;
  position: relative;
  min-height: 100vh;
}

/* Remove default list, link, and button styles */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   2. Root Variables
   ======================================== */
:root {
  /* Colors */
  --color-primary: #061426;
  --color-primary-dark: #1d5dc5;
  --color-primary-light: #eff0f2;
  --color-text: #3d3d3d;
  --color-text-light: #8e8984;
  --color-heading: #383636;
  --color-theme-white: #f9f7f5;
  --color-border: #dae8ff;
  --color-danger: #dc3545;
  --color-success: #28a745;
  --color-warning: #ffc107;

  /* Gradients */
  --bg-gradient: linear-gradient(180deg, #0f385a 0%, #040b19 100%);
  --liner-gradient: linear-gradient(90deg, #0f385a 0%, #040b19 100%);

  /* Font Sizes */
  --fs-regular: 18px;
  --fs-normal: 24px;
  --fs-heading: 32px;
  --fs-btn: 20px;
  --fs-title: 50px;

  /* Font Families */
  --nunito-sans: "Avenir Next LT Pro";

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-pill: 500px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* ========================================
   3. Typography
   ======================================== */
.theme__title {
  font-size: var(--fs-title);
  font-weight: 700;
  color: var(--color-heading);
}

.theme__heading {
  font-size: var(--fs-heading);
  font-weight: 600;
  color: var(--color-heading);
}

.theme__heading span,
.theme__heading i {
  color: var(--color-primary);
}

.theme__subheading {
  font-size: var(--fs-heading);
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 10;
}

.text__light {
  color: var(--color-text-light);
}

/* ========================================
   4. Buttons
   ======================================== */
.theme__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 22px;
  font-size: var(--fs-btn);
  font-weight: 500;
  border-radius: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* ========================================
   5. Input
   ======================================== */
input::placeholder {
  color: #bebebe !important;
}

/* ========================================
   6. Reusable Elements
   ======================================== */
.section {
  padding: 100px 0;
}

.section__head {
  text-align: center;
  color: var(--color-heading);
  margin-bottom: 60px;
}

.section__title {
  font-size: var(--fs-heading);
  font-weight: 600;
  margin-bottom: 12px;
}

.section__desc {
  max-width: 70%;
  margin: auto;
}

.section__foot {
  text-align: center;
  color: var(--color-heading);
  margin-top: 60px;
}

.section__foot .section__desc {
  max-width: 100%;
  margin: auto;
}

.theme__card {
  padding: 24px;
  border-radius: 12px;
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-border);
}

/* ========================================
   Header
   ======================================== */
/* Navbar styling */
.navbar {
  /* padding: 15px 30px; */
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 10px;
  text-transform: uppercase;
}
.navbar-toggler{
  color: var(--color-primary);
}
.navbar-toggler .close__icon {
  display: none;
}
.navbar-toggler {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--color-primary);
}
.navbar-toggler[aria-expanded="true"] .close__icon {
  display: block;
}
.navbar-toggler[aria-expanded="true"] .original__icon {
  display: none;
}

.navbar-nav .active .nav-link {
  font-weight: 800;
}

.search-toggle {
  cursor: pointer;
  font-size: 18px;
  color: var(--color-primary);
}

/* Fullscreen search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 11, 25, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: row;
  gap: 10px;
}

.search-overlay.active {
  display: flex;
}

.search-overlay form {
  border-bottom: 3px solid #fff;
  display: flex;
}
.search-overlay input {
  width: 60%;
  max-width: 600px;
  min-width: 300px;
  padding: 15px 20px 15px 0;
  font-size: 20px;
  background: transparent;
  outline: none;
  border: none;
  color: #fff;
}
.search-overlay .search__form_btn {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* ========================================
   Footer
   ======================================== */
footer {
  background: var(--bg-gradient);
  color: #fff;
  padding: 70px 0;
  font-size: 18px;
}

footer h6 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}

.footer-contact a {
  display: inline-block;
  margin-right: 15px;
  color: #ccc;
  font-size: 20px;
}

.footer-contact a:hover {
  color: #fff;
}

footer .social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #ccc;
  font-size: 20px;
}

footer .social-icons a:hover {
  color: #fff;
}

.footer__p {
  margin-bottom: 14px;
}

/* ========================================
   Home
   ======================================== */

/* ---- hero ---- */

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh - 87px);
}

.hero__data_wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}

.hero__heading {
  font-size: 50px;
  font-weight: 100;
  color: #fff;
}

.hero__heading span {
  display: block;
  font-weight: 700;
}

.hero__btn {
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 50px;
  box-shadow: 0 0 10px 0px #51d3ec;
  margin-top: 30px;
}

.hero__btn:hover {
  transform: translateY(-3px);
}

/* ---- Hot Products ---- */

.hot__products_title {
  max-width: 60%;
  margin: auto;
  font-size: 120px;
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -10px;
  margin-bottom: 60px;
}

.home__product {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 70px;
  background-color: #040c19;
}

.home__product_data {
  position: absolute;
  top: 120px;
  left: 80px;
  max-width: 35%;
}

.home__product_data .subheading {
  font-size: 30px;
  color: #fff;
  font-weight: 200;
  text-transform: capitalize;
  letter-spacing: -2px;
  margin-bottom: 5px;
}

.home__product_data .heading {
  color: #fff;
  font-weight: 300;
  font-size: 50px;
  letter-spacing: -2px;
}

/* ---- explore products ---- */

.explore__products_img {
  max-width: 70%;
  margin: auto;
  margin-bottom: 80px;
}

/* ========================================
   Product Detail Page
   ======================================== */

/* --- image side --- */

.product__gallery {
  background: #fff;
  border-radius: 50px;
  padding: 20px;
  margin: 0 auto 40px;
  height: 550px;
}

.product__gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product__gallery img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Optional: tidy up sizes */
.product-gallery {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.product-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-thumbs .swiper-slide {
  width: 90px;
  /* thumbnail width */
  height: 90px;
  /* thumbnail height */
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-primary);
  /* highlight active */
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: #fff;
}

/* Make thumbs swipe nicely on mobile */
@media (max-width: 576px) {
  .product-thumbs .swiper-slide {
    width: 72px;
    height: 72px;
  }
}

/* --- data side --- */

.product__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 60px;
  margin-top: 40px;
}

.product__label {
  font-weight: 600;
  margin: 15px 0;
  font-size: 20px;
}

.product__color_options {
  margin-bottom: 25px;
}

.product__color_options input[type="radio"] {
  display: none;
}

.product__color_options label {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  border: 2px solid #ccc;
}

.product__color_options input[type="radio"]:checked + label {
  border: 3px solid #000;
}

.product__storage_options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product__storage_options .storage-option {
  position: relative;
  cursor: pointer;
}

.product__storage_options input[type="radio"] {
  display: none;
  /* hide default radio */
}

.product__storage_options span {
  display: inline-block;
  border-radius: 15px;
  font-weight: 700;
  background: #fff;
  border: none;
  padding: 12px 25px;
  color: var(--color-primary);
  transition: all 0.25s ease;
}

.product__storage_options input[type="radio"]:checked + span {
  background: var(--liner-gradient);
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.product__data_wrapper .product__price {
  font-size: 40px;
  font-weight: 900;
  margin-top: 50px;
  color: var(--color-primary);
	display:none;
}

.buy__btn {
  display: inline-block;
  border-radius: 15px;
  font-weight: 700;
  background: var(--liner-gradient);
  border: none;
  padding: 12px 25px;
  color: #fff !important;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.product__description {
  margin: 60px 0 40px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product__description .desc__heading {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 30px;
  color: #0e2133;
}

.product__description .desc__label {
  font-weight: 900;
  font-size: 22px;
  margin-top: 20px;
}

.product__description p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Product Description - Specifications Styling (same as compare page) */
.product__description h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0e2133;
  margin: 30px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 3px solid #2b4a67;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product__description h2:first-child {
  margin-top: 0;
}

.product__description h3 {
  font-size: 17px;
  font-weight: 700;
  color: #2b4a67;
  margin: 20px 0 12px 0;
  padding-left: 14px;
  border-left: 4px solid #2b4a67;
  text-transform: capitalize;
}

.product__description ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.product__description ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  padding: 8px 0 8px 32px;
  position: relative;
  margin-bottom: 5px;
}

.product__description ul li::before {
  content: '•';
  position: absolute;
  left: 14px;
  color: #2b4a67;
  font-weight: 700;
  font-size: 20px;
}

/* Ensure clean spacing for nested content */
.product__description > *:last-child {
  margin-bottom: 0;
}

/* Responsive typography for product description */
@media (max-width: 768px) {
  .product__description {
    padding: 20px;
    margin: 40px 0 30px;
  }

  .product__description h2 {
    font-size: 20px;
  }

  .product__description h3 {
    font-size: 15px;
  }

  .product__description ul li {
    font-size: 14px;
    padding-left: 28px;
  }

  .product__description ul li::before {
    left: 12px;
    font-size: 18px;
  }

  .product__description .desc__heading {
    font-size: 24px;
  }

  .product__description p {
    font-size: 15px;
  }
}

/* ========================================
   Shop Page
   ======================================== */

.shop__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* --- filter toggle button --- */
.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 0;
  margin: 20px 0 10px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-toggle-btn:hover {
  color: var(--color-primary);
}

.filter-toggle-btn svg {
  transition: transform 0.3s ease;
  color: #333;
}

.filter-toggle-btn:hover svg {
  color: var(--color-primary);
}

.filter-toggle-btn.active svg {
  transform: rotate(180deg);
}

/* --- filter --- */
.shop__filters_wrapper {
  margin-bottom: 30px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.shop__filters_wrapper.show {
  max-height: 1000px;
}

.shop__filter_label {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 18px;
  text-wrap: nowrap;
  margin-bottom: 0;
}

/* --- Pills --- */
.btn-check {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 1rem;
  border-radius: 15px;
  background: #f4f5f7;
  border: 1px solid #e7e9ee;
  color: #111827;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
  user-select: none;
  cursor: pointer;
}

.btn-check:checked + .filter-pill {
  color: #fff;
  border-color: transparent;
  background-image: linear-gradient(135deg, #0e2133, #2b4a67);
  box-shadow: 0 6px 16px rgba(23, 42, 79, 0.2);
}

.filter-pill:active {
  transform: translateY(1px);
}

/* --- Horizontal track with chevrons --- */
.filter-track {
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  width: 96%;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overflow-y: hidden !important;
  overflow-x: auto;
  white-space: nowrap;
}

.filter-track > .filter-pill {
  scroll-snap-align: center;
  flex-shrink: 0;
}

/* Mobile: ensure only horizontal scroll */
@media (max-width: 768px) {
  .filter-track {
    touch-action: pan-x pan-y pinch-zoom;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #0e2133, #2b4a67);
  color: #fff;
  box-shadow: 0 6px 16px rgba(23, 42, 79, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  box-shadow: 0 8px 20px rgba(23, 42, 79, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-left {
  left: -6px;
}

.scroll-right {
  right: -6px;
}

@media (max-width: 576px) {
  .scroll-left {
    display: none !important;
  }

  /* keep only right chevron like your mock */
}

/* --- Range (dual handle) --- */
.range-wrap {
  --thumb: 10px;
  --track: 6px;
  --c: #2f566f;
  --bg: #e7eef3;
  position: relative;
  padding: 12px 0;
}

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  pointer-events: auto;
  position: relative;
  height: 10px;
  outline: none;
}

/* lower input shows the gradient track (selected span in darker color) */
.range-min {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--bg) 0% var(--minPct, 0%),
    var(--c) var(--minPct, 0%) var(--maxPct, 100%),
    var(--bg) var(--maxPct, 100%) 100%
  );
  border-radius: 999px;
  /* visual only; real track hidden by thumb styles */
}

.range-max {
  z-index: 3;
}

/* hide native track */
.range::-webkit-slider-runnable-track {
  height: var(--track);
  background: transparent;
}

.range::-moz-range-track {
  height: var(--track);
  background: transparent;
}

/* custom track line (clickable area) */
.range::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - var(--track) / 2);
  height: 20px;
  /* background: var(--color-primary); */
  border-radius: 999px;
}

/* thumbs */
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 4;
  transform: translateY(-7px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.range::-webkit-slider-thumb:hover {
  transform: translateY(-7px) scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.range::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: translateY(-7px) scale(1.05);
}

.range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transform: translateY(-7px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.range::-moz-range-thumb:hover {
  transform: translateY(-7px) scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.range::-moz-range-thumb:active {
  cursor: grabbing;
  transform: translateY(-7px) scale(1.05);
}

.shop__products_wrapper {
  margin-bottom: 50px;
}

/* --- card --- */

.shop__card {
  border-radius: 30px;
  background: #fff;
  padding: 30px 15px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop__card .image__wrapper {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
}

.shop__card .image__wrapper img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.product__color_options {
  margin-bottom: 12px;
}

.product__color_options .color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 6px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: border 0.2s ease;
}

.product__color_options .color-dot.active {
  border: 2.5px solid #000;
}

.shop__card .product__name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.shop__card .product__price {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  color: #333;
}

/* Product Condition Badges */
.product__condition {
  margin: 6px 0 0;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.condition-badge {
  display: inline-block;
  padding: 2px 0;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
  color: #333;
  text-align: center;
  width: 100%;
  font-weight: bold;
}

.condition-badge.condition-premium {
  background: transparent;
  color: #333;
}

.condition-badge.condition-good {
  background: transparent;
  color: #333;
}

.condition-badge.condition-okay {
  background: transparent;
  color: #333;
}

/* ========================================
   Compare Page
   ======================================== */
.compare__row {
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgb(186, 186, 186) transparent;
}
.compare__row::-webkit-scrollbar {
  height: 6px;
}
.compare__row::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

.compare__row::-webkit-scrollbar-track {
  background: transparent;
}

.compare__row::-webkit-scrollbar-button {
  display: none;
}

/* Compare Section */
.compare__section {
  text-align: center;
  padding-top: 0;
}

.compare__title {
  font-weight: 700;
  margin-bottom: 30px;
}

/* Product Selector Dropdown Style */
.product-selector-wrapper {
  margin-bottom: 40px;
}

.compare-selectors-form {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.compare-selector-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.dropdown-wrapper {
  position: relative;
}

.compare-select {
  width: 100%;
  padding: 14px 45px 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.compare-select:hover {
  border-color: #2b4a67;
  box-shadow: 0 4px 12px rgba(43, 74, 103, 0.15);
}

.compare-select:focus {
  outline: none;
  border-color: #0e2133;
  box-shadow: 0 4px 16px rgba(14, 33, 51, 0.2);
}

.dropdown-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
  transition: transform 0.3s ease;
}

.compare-select:focus + .dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
  color: #0e2133;
}

/* Desktop only class for 3rd selector and product */
.desktop-only {
  display: block;
}

.remove__compare_btn {
  border-radius: 500px;
  border: none !important;
  background: rgba(255,255,255,0.9);
  color: #333 !important;
  height: 40px;
  width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove__compare_btn:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.compare__item {
  position: relative;
  background: transparent;
  text-align: center;
  padding: 0 15px;
  transition: transform 0.3s ease;
}

.compare__item:hover {
  transform: translateY(-5px);
}

.placeholder-product {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.placeholder-product:hover {
  opacity: 0.8;
}

.product-rating {
  font-size: 0.9em;
}

.spec h4 {
  color: #333;
  font-size: 0.9em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.spec p {
  font-size: 0.85em;
  line-height: 1.4;
  margin-bottom: 1em;
  color: #666;
}

/* Custom Grid */
/* .compare-grid {
  display: grid;
  gap: 30px;
  align-items: start;
} */

/* Dynamic Columns */
.columns_per_row_2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns_per_row_3 {
  grid-template-columns: repeat(3, 1fr);
}
.columns_per_row_4 {
  grid-template-columns: repeat(4, 1fr);
}

.compare__item {
  background: transparent;
  text-align: center;
  padding: 0 15px;
  position: relative;
}

.compare__section .shop__card {
  background: #fff;
  border-radius: 30px;
  padding: 25px 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.compare__section .shop__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.compare__section .shop__card .image__wrapper {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 15px;
  overflow: hidden;
  position: relative;
}

.compare__section .shop__card .image__wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.compare__section .shop__card .image__wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.compare__section .shop__card .image__wrapper a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.compare__section .shop__card .product__name {
  font-size: 18px;
  font-weight: 700;
  color: #0e2133;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.compare__section .shop__card .product__name:hover {
  color: #2b4a67;
}

.compare__section .shop__card .product__price {
  font-size: 20px;
  font-weight: 800;
  color: #0e2133;
  margin-bottom: 0;
}

.compare-specs {
  margin-top: 25px;
  text-align: left;
}

.compare-specs .spec {
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.compare-specs .spec:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.compare-specs h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #0e2133;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 8px;
}

.compare-specs p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.compare-specs .spec .buy__btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 10px;
}

/* Placeholder styling for compare page */
.compare__section .placeholder-wrapper {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.compare__section .placeholder-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.compare__section .placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0.3;
}

.compare__section .placeholder-text {
  color: #999;
  font-style: italic;
}

/* Description Content Styling - Specifications */
.compare-specs .spec h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0e2133;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 3px solid #2b4a67;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compare-specs .spec h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2b4a67;
  margin: 18px 0 10px 0;
  padding-left: 12px;
  border-left: 4px solid #2b4a67;
  text-transform: capitalize;
}

.compare-specs .spec ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.compare-specs .spec ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  padding: 6px 0 6px 28px;
  position: relative;
  margin-bottom: 4px;
}

.compare-specs .spec ul li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #2b4a67;
  font-weight: 700;
  font-size: 18px;
}

.compare-specs .spec p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Ensure clean spacing for nested content */
.compare-specs .spec > *:last-child {
  margin-bottom: 0;
}

.compare-specs .spec h2:first-child {
  margin-top: 0;
}

/* Responsive typography for compare specs */
@media (max-width: 768px) {
  .compare-specs .spec h2 {
    font-size: 18px;
  }

  .compare-specs .spec h3 {
    font-size: 14px;
  }

  .compare-specs .spec ul li {
    font-size: 13px;
    padding-left: 24px;
  }

  .compare-specs .spec ul li::before {
    left: 10px;
    font-size: 16px;
  }
}









/* ========= brand menu ========== */


/* dropdown wrapper */
.brand-menu {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 55vw;
  transform: translateX(-50%);
}

/* grid for brand cards */
.brand-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* brand card button */
.brand-card {
  flex: 1 1 120px;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
/*   background: var(--bg-gradient); */
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease;
  color: #fff !important;
}

.brand-card img {
  max-height: 40px;
/*   filter: brightness(0) invert(1); white logos */
}

.brand-card:hover {
  transform: translateY(-5px);
}




/* =========== Home product swiper ============== */
/* Container behaves like a horizontal viewport */
.parallax-row {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Horizontal track we translate */
.parallax-track {
  display: flex;
  gap: 16px;                  /* spacing between cards */
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* Cards */
.parallax-slide {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 420px);  /* tune card width as needed */
}

/* Your existing card style */
.home__slider_card{
  background: #030202;
  border-radius: 50px;
  overflow: hidden;
  height: 450px;
}
.home__slider_card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius: 50px;
}

/* If Swiper CSS is still loaded, neutralize its layout on these rows */
.parallax-row .swiper-wrapper,
.parallax-row.swiper,
.parallax-row .swiper {
  all: unset;
  display: block;
}


/* ========================================
   Product variations (dropdowns + clear)
   ======================================== */

table.variations {
	display:none;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;       /* vertical spacing between rows */
  margin: 24px 0;
}

table.variations tr {}
table.variations th.label {
  width: 160px;
  padding-right: 16px;
  vertical-align: middle;
}
table.variations th.label label {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin: 0;
}

table.variations td.value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Pretty select (pill-like) */
table.variations td.value select {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  min-width: 220px;
  padding: 12px 44px 12px 16px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #e7e9ee;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
  outline: none;
  position: relative;
}

/* Custom arrow */
table.variations td.value select {
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 24 24' fill='%232b4a67' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

table.variations td.value select:hover {
  border-color: #cfd6e4;
}
table.variations td.value select:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 74, 103, 0.2);
  border-color: #2b4a67;
}

/* Disabled/unavailable state */
table.variations td.value select:disabled {
  color: #9aa3b2;
  background-color: #f5f7fb;
  cursor: not-allowed;
}

/* Reset/Clear button styled as a pill */
.reset_variations {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1rem;
  border-radius: 15px;
  background: #f4f5f7;
  border: 1px solid #e7e9ee;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
  transition: background .2s ease, border-color .2s ease, transform .02s;
}
.reset_variations::before {
  content: "×";
  font-size: 18px;
  line-height: 1;
}
.reset_variations:hover {
  background: #fff;
  border-color: #d1d5db;
}
.reset_variations:focus-visible {
  outline: 3px solid rgba(43, 74, 103, .25);
  outline-offset: 2px;
}
.reset_variations:active {
  transform: translateY(1px);
}

/* ========================================
   Variation price, qty, add to cart
   ======================================== */

/* Price inside the variation box */
.single_variation_wrap .woocommerce-variation-price .price {
  font-size: 40px;
  font-weight: 900;
  margin-top: 50px;
  color: var(--color-primary);
}

/* Quantity + Add to cart layout */
.variations_button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* Qty field */
.variations_button .quantity {
  display: inline-flex;
	display:none;
  align-items: center;
  border: 1px solid #e7e9ee;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
}
.variations_button .quantity .qty {
  width: 80px;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  color: var(--color-primary);
}
.variations_button .quantity .qty::-webkit-outer-spin-button,
.variations_button .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.variations_button .quantity .qty[type="number"] { -moz-appearance: textfield; }

/* Add to cart button (match your .buy__btn) */
.single_add_to_cart_button {
  display: inline-block;
  border-radius: 15px;
  font-weight: 700 !important;
  background: var(--liner-gradient) !important;
  border: none !important;
  padding: 12px 25px !important;
  color: #fff !important;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(23, 42, 79, 0.2);
  transition: transform .02s ease, filter .2s ease;
}
.single_add_to_cart_button:active { transform: translateY(1px); }
.single_add_to_cart_button:disabled,
.single_add_to_cart_button[aria-disabled="true"] {
  filter: grayscale(.3) brightness(.9);
  cursor: not-allowed;
}

/* Variation meta (desc/availability) */
.woocommerce-variation-description { margin-top: 8px; color: #444; }
.woocommerce-variation-availability { font-weight: 600; color: #2b4a67; margin-top: 4px; }

.parallax-mobile {
  display: none;
}

/* Hide desktop parallax on mobile */
@media (max-width: 768px) {
  .parallax-desktop {
    display: none;
  }
  .parallax-mobile {
    display: block;
  }
}


/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .product__condition {
    margin: 4px 0 0;
  }

  .condition-badge {
    padding: 2px 0;
    font-size: 11px;
  }

  .filter-toggle-btn {
    font-size: 12px;
    padding: 6px 0;
    margin: 15px 0 8px;
  }

  /* Reduce mobile spacing */
  .page__content {
    margin-top: 2rem !important;
    padding-top: 1rem !important;
  }

  .shop__title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .shop__filters_wrapper {
    margin-bottom: 20px;
  }

  .navbar {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .condition-badge {
    padding: 1px 0;
    font-size: 10px;
  }

  .filter-toggle-btn {
    font-size: 11px;
    padding: 5px 0;
    margin: 12px 0 6px;
  }
}

@media (max-width: 640px) {
  table.variations {
    border-spacing: 0 18px;
  }
  table.variations tr {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  table.variations th.label { width: auto; padding-right: 0; }
  table.variations td.value select { width: 100%; min-width: 0; }
}

/* ========================================
   Compare Page - Mobile
   ======================================== */
@media (max-width: 768px) {
  .compare-select {
    font-size: 13px;
    padding: 10px 35px 10px 12px;
  }

  .dropdown-icon {
    right: 10px;
  }

  .dropdown-icon svg {
    width: 14px;
    height: 14px;
  }

  .compare-column {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .compare__item {
    padding: 0;
  }

  .compare__section .shop__card {
    padding: 15px 10px;
  }

  .compare__section .shop__card .image__wrapper {
    height: 180px;
    margin-bottom: 10px;
  }

  .compare__section .product__name {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .compare__section .product__price {
    font-size: 14px;
  }

  .spec h4 {
    font-size: 12px;
  }

  .spec p {
    font-size: 11px;
  }

  .remove__compare_btn {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
}

/* ========================================
   Floating Cart & Mini Cart
   ======================================== */
.floating-cart-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.floating-cart-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0e2133, #2b4a67);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(14, 33, 51, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-cart-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(14, 33, 51, 0.4);
  color: #fff;
}

.floating-cart-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #fff;
}

.mini-cart-preview {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.floating-cart-wrapper:hover .mini-cart-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mini-cart-header {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-header h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0e2133;
}

.mini-cart-count {
  font-size: 13px;
  color: #666;
}

.mini-cart-items {
  padding: 15px;
  max-height: 250px;
  overflow-y: auto;
}

.mini-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.mini-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart-item-details {
  flex: 1;
}

.mini-cart-item-details h6 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.mini-cart-item-qty {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.mini-cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.mini-cart-item-remove:hover {
  color: #ff4444;
}

.mini-cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

.mini-cart-footer {
  padding: 15px 20px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0 0 16px 16px;
}

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.mini-cart-total strong {
  color: #0e2133;
  font-size: 18px;
}

.mini-cart-actions {
  display: flex;
  gap: 10px;
}

.mini-cart-actions .btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-cart {
  background: #fff;
  border: 2px solid #0e2133;
  color: #0e2133;
}

.btn-view-cart:hover {
  background: #0e2133;
  color: #fff;
}

.btn-checkout {
  background: linear-gradient(135deg, #0e2133, #2b4a67);
  border: none;
  color: #fff;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 33, 51, 0.3);
  color: #fff;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: -100px;
  right: 30px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
  top: 30px;
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.toast-content h6 {
  margin: 0 0 3px 0;
  font-size: 15px;
  font-weight: 700;
  color: #0e2133;
}

.toast-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-cart-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .floating-cart-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .mini-cart-preview {
    width: 300px;
    right: 0;
  }

  .toast-notification {
    right: 20px;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .mini-cart-preview {
    width: calc(100vw - 40px);
    right: -10px;
  }
}

/* ============================================
   WooCommerce Cart & Checkout Page Styling
   ============================================ */

/* Cart Page */
.woocommerce-cart .page__content,
.woocommerce-checkout .page__content {
  background: #fafbfc;
  padding: 40px 0;
}

/* Cart Table Styling */
.woocommerce-cart table.cart,
.woocommerce-cart table.shop_table_responsive {
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
  background: #fff !important;
  border: none !important;
}

.woocommerce-cart table.cart thead,
.woocommerce-cart table.shop_table_responsive thead {
  background: linear-gradient(135deg, #0e2133, #2b4a67) !important;
}

.woocommerce-cart table.cart thead th,
.woocommerce-cart table.shop_table_responsive thead th {
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 0.3px;
  padding: 15px 12px !important;
  border: none !important;
}

.woocommerce-cart table.cart tbody td {
  padding: 20px 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 14px;
}

.woocommerce-cart table.cart tbody tr:last-child td {
  border-bottom: none;
}

/* Product Thumbnail in Cart */
.woocommerce-cart table.cart .product-thumbnail img,
.woocommerce-cart table.shop_table_responsive .product-thumbnail img {
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  max-width: 45px !important;
  width: 45px !important;
  height: auto !important;
}

/* Product Name */
.woocommerce-cart table.cart .product-name a {
  font-weight: 600;
  color: #0e2133;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: #2b4a67;
}

/* Price */
.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
  font-weight: 600;
  color: #0e2133;
  font-size: 15px;
}

/* Quantity Input */
.woocommerce-cart table.cart .quantity input {
  width: 70px;
  padding: 8px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.woocommerce-cart table.cart .quantity input:focus {
  outline: none;
  border-color: #2b4a67;
}

/* Remove Button */
.woocommerce-cart table.cart .product-remove a {
  background: #ff4444;
  color: #fff !important;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.woocommerce-cart table.cart .product-remove a:hover {
  background: #cc0000;
  transform: scale(1.1);
}

/* Update Cart Button */
.woocommerce-cart .actions .button {
  background: linear-gradient(135deg, #0e2133, #2b4a67) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(14, 33, 51, 0.2);
}

.woocommerce-cart .actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 33, 51, 0.3);
}

/* Cart Totals */
.cart-collaterals .cart_totals {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.cart-collaterals .cart_totals h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0e2133;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #2b4a67;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-collaterals .cart_totals table {
  border: none;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 15px;
}

.cart-collaterals .cart_totals table th {
  font-weight: 600;
  color: #0e2133;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
  font-size: 18px;
  font-weight: 700;
  color: #0e2133;
  padding-top: 15px;
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout .checkout-button {
  background: linear-gradient(135deg, #0e2133, #2b4a67) !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 33, 51, 0.25);
}

.wc-proceed-to-checkout .checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 33, 51, 0.3);
}

/* Checkout Page */
.woocommerce-checkout .woocommerce {
  background: transparent;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Checkout Billing Fields */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0e2133;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2b4a67;
  text-transform: uppercase;
}

/* Form Fields */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: #2b4a67;
}

.woocommerce-checkout .form-row label {
  font-weight: 600;
  color: #0e2133;
  margin-bottom: 8px;
  display: block;
}

/* Order Review */
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout #order_review_heading {
  font-size: 22px;
  font-weight: 700;
  color: #0e2133;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2b4a67;
  text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
  background: linear-gradient(135deg, #0e2133, #2b4a67);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 15px;
  border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
  background: linear-gradient(135deg, #0e2133, #2b4a67) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 40px !important;
  border-radius: 15px !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 33, 51, 0.3);
}

.woocommerce-checkout #place_order:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 33, 51, 0.4);
}

/* Payment Methods */
.woocommerce-checkout .woocommerce-checkout-payment {
  background: #f9fafb;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.woocommerce-checkout .wc_payment_methods {
  list-style: none;
  padding: 0;
}

.woocommerce-checkout .wc_payment_method {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.woocommerce-checkout .wc_payment_method:hover {
  border-color: #2b4a67;
}

.woocommerce-checkout .wc_payment_method input[type="radio"]:checked + label {
  color: #2b4a67;
  font-weight: 600;
}

/* Hide Shipping Section */
.woocommerce-checkout .woocommerce-shipping-fields {
  display: none !important;
}

/* Responsive Design */
@media (min-width: 768px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 2fr 1fr;
  }

  .woocommerce-checkout #order_review,
  .woocommerce-checkout #order_review_heading {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .woocommerce-cart table.cart .product-thumbnail img,
  .woocommerce-cart table.shop_table_responsive .product-thumbnail img {
    max-width: 40px !important;
    width: 40px !important;
  }

  .woocommerce-cart table.cart thead,
  .woocommerce-cart table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce-cart table.cart tbody td {
    display: block;
    text-align: left;
    padding: 10px 12px;
    font-size: 13px;
  }

  .woocommerce-cart table.cart tbody td::before {
    content: attr(data-title) ": ";
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
  }

  .woocommerce-cart table.cart .product-name a {
    font-size: 14px;
  }

  .woocommerce-cart table.cart .quantity input {
    width: 60px;
    padding: 6px;
    font-size: 13px;
  }

  .cart-collaterals .cart_totals {
    padding: 20px;
  }

  .cart-collaterals .cart_totals h2 {
    font-size: 18px;
  }

  .cart-collaterals .cart_totals table th,
  .cart-collaterals .cart_totals table td {
    font-size: 14px;
  }

  .cart-collaterals .cart_totals .order-total th,
  .cart-collaterals .cart_totals .order-total td {
    font-size: 16px;
  }

  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review {
    padding: 20px;
  }
}

/* ============================================
   Product Gallery Pagination - Beautiful Dots
   ============================================ */

/* Product gallery pagination positioning */
.product__gallery .swiper-pagination {
  bottom: 20px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 0 20px;
}

/* Beautiful dot styling */
.product__gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(14, 33, 51, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
}

/* Hover effect on dots */
.product__gallery .swiper-pagination-bullet:hover {
  background: #ffffff;
  border-color: rgba(14, 33, 51, 0.6);
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Active dot styling with gradient */
.product__gallery .swiper-pagination-bullet-active {
  width: 40px;
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e2133 0%, #2b4a67 100%);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(14, 33, 51, 0.5), 0 0 0 4px rgba(14, 33, 51, 0.1);
  transform: scale(1);
}

/* Active dot glow effect */
.product__gallery .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 200%;
  background: linear-gradient(135deg, #0e2133, #2b4a67);
  border-radius: 15px;
  opacity: 0.25;
  z-index: -1;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.15;
  }
}

/* Dynamic bullets styling (for many images) */
.product__gallery .swiper-pagination-bullets-dynamic {
  overflow: visible;
}

.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(1);
}

.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.8);
  opacity: 0.8;
}

.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.product__gallery .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.6);
  opacity: 0.5;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .product__gallery .swiper-pagination {
    bottom: 15px !important;
    padding: 0 15px;
  }

  .product__gallery .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
  }

  .product__gallery .swiper-pagination-bullet-active {
    width: 32px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .product__gallery .swiper-pagination {
    bottom: 12px !important;
    padding: 0 10px;
  }

  .product__gallery .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
  }

  .product__gallery .swiper-pagination-bullet-active {
    width: 28px;
    height: 9px;
  }
}