@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --background-color: #f3f4f6;
  --default-color: #292a2b;
  --heading-color: #000000;
  --button-bg-color: rgb(0, 0, 0);
  --accent-color: #203592;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: black;
}

a:hover {
  color: black;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
}

p {
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header-section {
  background: #4c657e; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #3498db,
    #4c657e
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #3498db,
    #4c657e
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spark_logo {
  height: 50px;
  width: auto;
}

.spark_logo img {
  height: 100%;
}

.header-top {
  border-bottom: 1px solid #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-header {
  background-color: var(--button-bg-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-header:hover {
  background-color: #0d0d0e;
  color: white;
}

.header-main {
  padding-top: 5px;
  padding-bottom: 5px;
}

.category-button {
  background-color: var(--button-bg-color);
  color: white;
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
}

.category-button:hover {
  background-color: var(--button-bg-color);
  color: white;
}

.form-control-search {
  background-color: white;
  color: #333;
  border: none;
  border-radius: 0;
  padding-left: 1rem;
}

.form-control-search:focus {
  box-shadow: none;
}

.search-btn {
  background-color: var(--button-bg-color);
  border: none;
  color: white;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

.search-btn:hover {
  background-color: var(--button-bg-color);
  border: none;
  color: white;
}

.icon-btn {
  background-color: white;
  color: black;
  border: none;
  position: relative;
  padding: 8px;
  border-radius: 5px;
}

.icon-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link-list a {
  color: rgb(255, 255, 255);
  transition: color 0.2s;
  font-size: 14px;
  padding: 0.5rem 0.4rem; /* Reduced padding for tighter spacing */
}

.nav-link-list a:hover {
  color: rgb(253, 253, 253);
}

/* Sub-header hover effect */
.dropdown-item {
  color: black !important;
}
.dropdown-menu-custom {
  display: none;
  position: absolute;
  z-index: 1000;
  border-radius: 0;
}
.dropdown:hover > .dropdown-menu-custom {
  display: block;
}

/* Sub-sub-menu styles */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  display: none;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Offcanvas Styles */
.offcanvas-header {
  background-color: var(--heading-color);
}

.offcanvas-header .btn-close {
  background-color: white;
  opacity: 1;
}

.offcanvas.offcanvas-start {
  background-color: var(--heading-color);
}

.offcanvas-body .list-group-item {
  background-color: transparent;
  color: white;
  border: none;
  border-bottom: 1px solid #333;
  padding: 0.75rem 0;
}

.offcanvas-body .list-group-item a {
  color: inherit;
  text-decoration: none;
}

.offcanvas-body .list-group-item .collapsed .fa-chevron-down {
  transform: rotate(-90deg);
}

.offcanvas-body .list-group-item .fa-chevron-down {
  transition: transform 0.3s ease;
}

.offcanvas-body .input-group-lg .form-control {
  height: calc(1.5em + 1rem + 2px);
}

/* Offcanvas Cart Styles */
.offcanvas-cart {
  background-color: #f0f2f5;
  color: #333;
  width: 350px;
}

.offcanvas-cart .offcanvas-header {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #eee;
  position: relative;
}

.offcanvas-cart .offcanvas-title {
  font-weight: 600;
}

.offcanvas-cart .btn-close {
  background-color: #333;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 0.5rem;
}

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

.cart-item-details h6 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.cart-item-details p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.cart-item-price-qty {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-footer {
  background-color: #fff;
  padding: 1.5rem;
  border-top: 1px solid #eee;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Offcanvas Login Styles */
.offcanvas-login {
  background-color: #fff;
  color: #333;
  width: 350px;
}
.offcanvas-login .offcanvas-header {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #eee;
}
.offcanvas-login .offcanvas-title {
  font-weight: 600;
}

.login-form .form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.login-form .form-control {
  border-radius: 0.5rem;
}

.login-form .btn-primary {
  background-color: #1a1e27;
  border-color: #1a1e27;
  border-radius: 0.5rem;
  font-weight: 600;
}
.login-form .btn-primary:hover {
  background-color: #383e4a;
  border-color: #383e4a;
}

@media screen and (min-width: 1290px) and (max-width: 1450px) {
  .nav-link-list a {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1290px) {
  .nav-link-list a {
    font-size: 10px;
  }
}
/* Hide offcanvas on desktop */
@media (min-width: 992px) {
  .offcanvas-backdrop {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* --- Custom Footer Styles (spark_footer_) --- */
.spark_footer_main {
  background-color: #1a1e27; /* Dark background color */
  color: #ccc; /* Light text color */
  padding-top: 3rem;
  font-size: 0.9rem;
}

.spark_footer_title {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.spark_footer_link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spark_footer_link-list li {
  margin-bottom: 0.5rem;
}
.spark_footer_link-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.spark_footer_link-list a:hover {
  color: #0d6efd; /* Light blue on hover */
}

/* Contact Section */
.spark_footer_contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #ccc;
}
.spark_footer_contact-item i {
  font-size: 1rem;
  width: 1.5rem;
  color: #0d6efd; /* Blue icon color */
}

/* Social Icons */
.spark_footer_social-link {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  color: white;
  transition: opacity 0.2s;
  text-decoration: none;
}
.spark_footer_social-link:hover {
  opacity: 0.8;
}

.spark_footer_social-link.facebook {
  background-color: #3b5998;
}
.spark_footer_social-link.twitter {
  background-color: #00acee;
}
.spark_footer_social-link.youtube {
  background-color: #c4302b;
}
.spark_footer_social-link.instagram {
  background-color: #c13584;
}
.spark_footer_social-link.whatsapp {
  background-color: #25d366;
}

/* Location/Complaint Buttons */
.spark_footer_action-btn {
  background: black;
  color: orange;
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s;
  text-decoration: none;
  font-size: 0.85rem;
}
.spark_footer_action-btn:hover {
  background-color: #333;
  color: orange;
}
.spark_footer_action-btn i {
  margin-right: 0.5rem;
}

/* Affiliation Logos */
.spark_footer_affiliation-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.spark_footer_payment-logo {
  max-height: 25px;
  margin-left: 0.5rem;
  opacity: 0.8;
}

/* Bottom Bar */
.spark_footer_bottom-bar {
  border-top: 1px solid #333;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #888;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 40%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.spark_container {
  width: 90%;
  margin-left: 5%;
}

.section {
  padding: 60px 0;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
    padding: 30px 0;
  }
  .spark_container {
    width: 95%;
    margin-left: 2.5%;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h1 {
  font-size: 35px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.section-title p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

@media (max-width: 767px) {
  .section-title h1 {
    font-size: 25px;
  }

  .section-title p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.spark_home_banner-grid {
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

.spark_slider_section {
  height: 60vh;
}

#spark_home_heroSlider .slick-list,
#spark_home_heroSlider .slick-track,
#spark_home_heroSlider .slick-slide > div {
  height: 100%;
}

/* Prefixed Custom Image Styling */
.spark_home_banner-image {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.spark_home_banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* Prefixed Slick Slider Customizations */
#spark_home_heroSlider .slick-prev:before,
#spark_home_heroSlider .slick-next:before {
  color: #1a1e27 !important; /* Dark arrows */
  font-size: 25px;
}
#spark_home_heroSlider .slick-prev {
  left: 10px;
  z-index: 50;
}
#spark_home_heroSlider .slick-next {
  right: 10px;
  z-index: 50;
}

.spark_banner_section_container {
  height: 100%;
  width: 100%;
}

.spark_banner_section {
  height: 29vh;
  margin-bottom: 20px;
}

.spark_banner_section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .spark_slider_section {
    height: 30vh;
  }
  .spark_home_banner-image {
    height: 30vh;
  }
  .spark_banner_section {
    height: 20vh;
  }
}

/*--------------------------------------------------------------
# Home Category List
--------------------------------------------------------------*/

.spark_category_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.spark_category_item {
  flex: 0 0 12.33%;
  padding: 0 5px;
  margin-bottom: 20px;
  text-align: center;
}

.spark_category_inner {
  display: block;
  background: #fff;
  box-shadow: 3px 3px 10px 0px rgba(194, 194, 194, 0.75);
  -webkit-box-shadow: 3px 3px 10px 0px rgba(194, 194, 194, 0.75);
  -moz-box-shadow: 3px 3px 10px 0px rgba(194, 194, 194, 0.75);
  padding: 15px 0;
  color: black;
}
.spark_category_icon {
  display: inline-block;
  padding: 15px;
}
.spark_category_icon img {
  width: 55px;
  height: 55px;
}
.spark_category_item p {
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}
.spark_category_inner:hover {
  background-color: #183142;
  color: white;
}

@media (max-width: 1279px) {
  .spark_category_item p {
    font-size: 13px;
    font-weight: bold;
  }
  .spark_category_item {
    flex: 0 0 16.66%;
  }
}
@media (max-width: 767px) {
  .spark_category_item {
    flex: 0 0 32%;
    margin-bottom: 10px;
  }
  .spark_category_item .spark_category_inner {
    padding: 10px;
    width: 100%;
    height: 100%;
  }
  .spark_category_icon img {
    width: 50px;
    height: 50px;
  }
  .spark_category_item p {
    line-height: 12px;
    font-weight: normal;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Home Product List
--------------------------------------------------------------*/

/* Main Card Container */
.spark_product_box_card {
  width: 100%;
  border: 1px solid #dee2e6;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.spark_product_box_discount-banner {
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 10;
  width: fit-content;
  background-color: #6a1b9a;
  color: white;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  text-align: left;
}

.spark_product_box_img-container {
  padding: 15px;
  text-align: center;
  height: 250px;
}
.spark_product_box_product-img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.spark_product_box_details {
  padding: 15px;
}

.spark_product_box_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1a1e27;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spark_product_box_specs-list {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  color: #555;
  margin-bottom: 1.5rem;
}
.spark_product_box_specs-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.3rem;
}
.spark_product_box_specs-list li::before {
  content: "\2022";
  color: #1a1e27;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.spark_product_box_price {
  font-size: 20px;
  font-weight: 700;
  color: #ff0000; /* Red color for price */
  text-align: center;
  margin-bottom: 1rem;
}

.spark_product_box_buy-btn {
  background-color: #000000; /* Light grey background */
  border: 1px solid #000000;
  color: #ffffff; /* Bootstrap blue text */
  font-weight: 500;
  width: 100%;
  padding: 5px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spark_product_box_buy-btn:hover {
  background-color: #08335f;
}

.spark_product_box_compare-link {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #000000;
  text-decoration: none;
  padding: 8px;
  border: 0;
  width: 48%;
}
.spark_product_box_compare-link1 {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #000000;
  text-decoration: none;
  padding: 8px;
  border: 0;
  width: 48%;
}
@media (max-width: 767px) {
  .spark_product_box_title {
    font-size: 18px;
  }
  .spark_product_box_price {
    font-size: 22px;
  }
}

/* --- General Product Page Styles (spark_product_page_) --- */
.spark_product_page_main-content {
  padding: 1.5rem 0;
}

.page_breadcrumbs_text {
  background-color: white;
  padding: 20px;
}

/* Filter Section Styles */
.spark_product_page_filter-sidebar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.spark_product_page_filter-group {
  background-color: #ffffff;
  padding: 20px;
}

.spark_product_page_filter-title {
  padding: 0 0 5px 20px;
  cursor: pointer;
  color: #111;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

/* Fixed Height and Scroll for Filters (As requested) */
.spark_product_page_filter-scroll {
  max-height: 200px; /* Fixed height for scrolling */
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Range Slider Styling (to match design) */
.spark_product_page_range-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  margin: 1rem 0;
}
.spark_product_page_range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff0000; /* Red thumb color */
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.spark_product_page_sort-bar {
  background-color: rgb(250, 250, 250);
  padding: 15px 0;
}
.filter-button {
  background-color: black;
  border: 0;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Product Details Page
--------------------------------------------------------------*/

/* --- Custom Styles (spark_product_details_) --- */
.spark_product_details_container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Main Product Section */
.spark_product_details_main-card {
  background-color: white;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Top Save Badge */
.spark_product_details_save-badge {
  background-color: #0d6efd;
  color: white;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  font-size: 14px;
  position: absolute; /* Absolute positioning relative to the main card */
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

/* Product Info */
.spark_product_details_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.spark_product_details_info-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ccc;
  color: #555;
  margin-right: 0.5rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Image Gallery */
.spark_product_details_main-img-container {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.spark_product_details_main-img {
  max-width: 100%;
  height: 450px;
  object-fit: contain;
  display: block;
}
.spark_product_details_thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 2px solid #eee;
  padding: 5px;
  cursor: pointer;
  border-radius: 0.3rem;
  transition: border-color 0.2s;
}
.spark_product_details_thumb:hover,
.spark_product_details_thumb.active {
  border-color: #000000;
}

/* Features List */
.spark_product_details_feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}
.spark_product_details_feature-list li {
  margin-bottom: 0.3rem;
}

/* Price and Actions Containers */
.spark_product_details_price-box {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  background-color: #f8f8f8;
}
.spark_product_details_price-title {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.5rem;
}
.spark_product_details_current-price {
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
}
.spark_product_details_old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}
.spark_product_details_emi-price {
  font-size: 18px;
  font-weight: 700;
  color: #313131;
}
.spark_product_details_emi-text {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.5rem;
}
.spark_product_details_emi-link {
  font-size: 0.85rem;
  text-decoration: none;
}

/* Quantity and Action Buttons */
.spark_product_details_qty-input {
  width: 60px;
  border-radius: 0 !important;
}
.spark_product_details_cart-btn {
  background-color: #000000;
  color: white;
  font-weight: 600;
  border-radius: 0;
}
.spark_product_details_buy-btn {
  background-color: #11083b; /* Yellow/Orange */
  color: rgb(255, 255, 255);
  font-weight: 600;
  border-radius: 0;
}
.spark_product_details_heart-btn,
.spark_product_details_compare-btn {
  border: 1px solid #ccc;
  color: #dc3545;
  background-color: white;
  font-size: 1.1rem;
  border-radius: 0;
}
.spark_product_details_compare-btn {
  color: #0d6efd;
}

/* Bottom Links/Disclaimer */
.spark_product_details_bottom-link {
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 0.3rem;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
}
.spark_product_details_bottom-link:hover {
  background-color: #f0f0f0;
}

/* Tabbed Content */
.spark_product_details_tabs {
  margin-top: 2rem;
  border-radius: 0.5rem;
}
.spark_product_details_tabs .nav-link {
  color: #333;
  font-weight: 600;
  border-color: #d6d6d6;
  border-radius: 0;
}
.spark_product_details_tabs .nav-link.active {
  color: #000000;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-top-color: #d6d6d6;
  border-left-color: #d6d6d6;
  border-right-color: #d6d6d6;
}
.spark_product_details_tab-content {
  background-color: white;
  padding: 1.5rem;
  border: 1px solid #d6d6d6;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

/* Modal Customization */
#imageGalleryModal .modal-content {
  background-color: transparent;
  border: none;
}
#imageGalleryModal .modal-header {
  border-bottom: none;
}
#imageGalleryModal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#imageGalleryModal .carousel-item img {
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
}
.spark_product_details_carousel-control {
  width: 10%;
}
.spark_product_details_carousel-control i {
  font-size: 2rem;
  color: #000000;
}

.table_header_title {
  background-color: #d3cece !important;
  color: black;
}
.product_page_table tr td:first-child {
  width: 30%;
}
/* --- Custom Styles (spark_details_features_) --- */
.spark_details_features_card {
  border-radius: 0;
}
.spark_details_features_header {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0.5rem;
}

.spark_details_features_product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spark_details_features_product-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

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

.spark_details_features_product-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.spark_details_features_product-link:hover .spark_details_features_title {
  color: #0d6efd; /* Highlight title on hover */
}

.spark_details_features_img-container {
  width: 70px;
  height: 70px;
  flex-shrink: 0; /* Prevent image container from shrinking */
  margin-right: 0.75rem;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spark_details_features_img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.spark_details_features_details {
  flex-grow: 1;
}

.spark_details_features_title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: #333;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spark_details_features_price {
  font-size: 1rem;
  font-weight: 700;
  color: #ff0000;
}

.spark_details_features_old-price {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}

@media (max-width: 767px) {
  .featured_card_hidden {
    display: none;
  }
}

/*--------------------------------------------------------------
# Cart Page design
--------------------------------------------------------------*/

.spark_cart_page_container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.spark_cart_page_title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1.5rem;
}

/* --- Cart Table Styles --- */
.spark_cart_page_table {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden; /* Ensures rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.spark_cart_page_table th {
  font-weight: 600;
  color: #343a40; /* Darker text for header */
  background-color: #f8f9fa; /* Lighter background for header */
  border-bottom: 2px solid #dee2e6;
  vertical-align: middle;
  font-size: 0.85rem; /* Slightly smaller font for headers */
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
}

.spark_cart_page_table td {
  vertical-align: middle;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.95rem;
}

.spark_cart_page_product-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 0.25rem;
}

.spark_cart_page_product-name {
  font-weight: 500;
  color: #343a40;
}

/* Custom Quantity Input and Controls */
.spark_cart_page_qty-controls {
  display: flex;
  align-items: center;
}

.spark_cart_page_qty-controls .input-group {
  width: 80px;
  height: 30px;
  border: 1px solid #484849;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-right: 1rem;
}

.spark_cart_page_qty-controls .form-control {
  border: 1px solid #484849;
  padding: 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  height: 30px;
  min-width: 30px;
  border-radius: 0;
}

.spark_cart_page_remove-icon {
  color: #495057; /* Dark gray for the X icon */
  cursor: pointer;
  font-size: 0.9rem;
}

/* --- Price Summary Styles --- */
.spark_cart_page_summary-row {
  /* Use a column layout that aligns the summary box with the table end */
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-right: 0.5rem; /* Aligning with the table padding */
}

.spark_cart_page_summary-box {
  width: 300px;
}

.spark_cart_page_summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.spark_cart_page_summary-label {
  color: #343a40; /* Darker label */
  font-weight: 500;
}

.spark_cart_page_summary-value {
  font-weight: 600;
  color: #dc3545; /* Red for price values */
  text-align: right;
}

.spark_cart_page_summary-total {
  border-top: 1px solid #dee2e6; /* Lighter border */
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* --- Discount/Coupon Section --- */
.spark_cart_page_actions {
  background-color: white;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.spark_cart_page_actions-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}

/* Input Group styling for Coupon/Voucher */
.spark_cart_page_coupon-row .input-group-text {
  background-color: #f8f9fa; /* Light gray background */
  border: 1px solid #ced4da;
  font-weight: 400;
  color: #495057;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
}

.spark_cart_page_coupon-row .form-control {
  border-radius: 0 0.25rem 0.25rem 0 !important;
  border-left: none;
  box-shadow: none;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
}

/* Apply/Voucher Buttons (Styled as outline-primary) */
.spark_cart_page_apply-btn {
  background-color: transparent !important;
  border: 1px solid #0d6efd !important;
  color: #0d6efd !important;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 0.3rem !important;
  font-size: 0.9rem;
  width: 300px;
}

/* Action Buttons at the bottom */
.spark_cart_page_action-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.3rem;
  transition: background-color 0.2s;
  text-transform: capitalize; /* Ensure button text matches image */
}

.spark_cart_page_continue-btn {
  background-color: #000000;

  color: white;
}
.spark_cart_page_confirm-btn {
  background-color: #000000;
  color: white;
}

.spark_cart_page_continue-btn:hover,
.spark_cart_page_confirm-btn:hover {
  border: 1px solid black;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .spark_cart_page_summary-row {
    justify-content: center;
    padding-right: 0;
  }
  .spark_cart_page_summary-box {
    width: 100%;
    max-width: 350px;
  }
  .spark_cart_page_actions-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Checkout Page design
--------------------------------------------------------------*/

.spark_checkout_page_container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.spark_checkout_page_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.5rem;
}

.spark_checkout_page_alert {
  background-color: #e0f7fa; /* Light cyan background */
  border-left: 5px solid #00bcd4; /* Cyan border */
  color: #343a40;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-radius: 0.25rem;
}

/* --- Section Box Styles --- */
.spark_checkout_page_box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  height: 100%;
}

.spark_checkout_page_box-header {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
}

.spark_checkout_page_box-header span {
  color: #0d6efd; /* Blue number prefix */
  margin-right: 0.5rem;
}

/* --- Form Styles --- */
.spark_checkout_page_box label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.25rem;
}

.spark_checkout_page_box .form-control,
.spark_checkout_page_box .form-select {
  height: 40px;
  font-size: 0.9rem;
  border-color: #ced4da;
  box-shadow: none;
}

/* --- Payment & Delivery Radio Buttons --- */
.spark_checkout_page_radio-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #343a40;
  cursor: pointer;
  margin-left: 0.5rem;
  display: block; /* Make it clickable block */
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* Delivery method specific pricing */
.spark_checkout_page_delivery-price {
  font-weight: 600;
  color: #dc3545; /* Red color for price */
  margin-left: 0.5rem;
}

/* We Accept image styling */
.spark_checkout_page_accept-img {
  max-width: 100%;
  height: auto;
  margin-top: 0.75rem;
}

/* --- Coupon / Voucher Input Group Fixes --- */
.spark_checkout_page_coupon-group .form-control {
  border-right: 0; /* Remove border between input and button */
  border-radius: 0;
  padding: 0.375rem 0.75rem;
  height: 40px;
}
.spark_checkout_page_coupon-group .btn {
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  height: 40px;
  padding: 0.375rem 0.75rem;
}

/* --- Footer and Action Button --- */
.spark_checkout_page_footer {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spark_checkout_page_terms-check {
  font-size: 0.9rem;
}

.spark_checkout_page_confirm-btn {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.3rem;
}

.amount {
  color: rgb(6, 6, 66);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .spark_checkout_page_footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .spark_checkout_page_confirm-btn {
    width: 100%;
  }
}

/* user profile design */

.spotlight_user_profile_container {
    margin: 0 auto;
}

.spotlight_user_profile_breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #6c757d;
}

.spotlight_user_profile_main-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
    min-height: 70vh;
}

.spotlight_user_profile_sidebar {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.spotlight_user_profile_sidebar-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.spotlight_user_profile_user-avatar-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight_user_profile_user-avatar-container i {
    font-size: 2.5em;
    color: #adb5bd;
}

.spotlight_user_profile_user-info {
    margin-left: 15px;
}

.spotlight_user_profile_user-name {
    font-size: 1.1em;
    font-weight: 600;
}

.spotlight_user_profile_user-cash {
    font-size: 0.9em;
    color: #28a745;
}

.spotlight_user_profile_view-profile-link {
    font-size: 0.8em;
    color: #007bff;
    text-decoration: none;
}

.spotlight_user_profile_nav-list .list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.spotlight_user_profile_nav-list .list-group-item:hover,
.spotlight_user_profile_nav-list .list-group-item.active {
    background-color: #e9ecef;
    font-weight: 500;
}

.spotlight_user_profile_nav-list .list-group-item i {
    margin-right: 10px;
}

.spotlight_user_profile_nav-list .list-group-item.active {
    color: #000;
}

.spotlight_user_profile_profile-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.spotlight_user_profile_profile-header h4 {
    font-weight: 600;
}

.spotlight_user_profile_profile-picture-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.spotlight_user_profile_profile-picture {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight_user_profile_profile-picture i {
    font-size: 4em;
    color: #adb5bd;
}

.spotlight_user_profile_camera-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.spotlight_user_profile_camera-icon i {
    font-size: 1.2em;
    color: #fff;
}

.spotlight_user_profile_form-label {
    font-size: 0.9em;
    font-weight: 500;
    color: #333;
}

.spotlight_user_profile_form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.spotlight_user_profile_form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.spotlight_user_profile_input-group-text {
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
}

.spotlight_user_profile_update-btn {
    background-color: #008080;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: background-color 0.2s;
    width: 100%;
}

.spotlight_user_profile_update-btn:hover {
    background-color: #006666;
}

.spotlight_user_profile_main-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.spotlight_user_profile_main-header h4 {
    font-weight: 600;
}

.spotlight_user_profile_filter-tabs .btn {
    border-radius: 20px;
    padding: 8px 18px;
    margin-right: 10px;
    font-size: 0.9em;
    font-weight: 500;
}

.spotlight_user_profile_filter-tabs .btn.active {
    background-color: #000;
    color: #fff;
}

.spotlight_user_profile_order-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
}

.spotlight_user_profile_order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.spotlight_user_profile_order-id {
    font-weight: 600;
}

.spotlight_user_profile_order-delivery {
    font-size: 0.8em;
    color: #6c757d;
}

.spotlight_user_profile_order-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.spotlight_user_profile_order-info i {
    font-size: 1.5em;
    margin-right: 10px;
    color: #3498db;
}

.spotlight_user_profile_order-details {
    font-size: 0.9em;
}

.spotlight_user_profile_order-name {
    font-weight: 600;
}

.spotlight_user_profile_order-date {
    font-size: 0.8em;
    color: #6c757d;
    text-align: right;
}

.spotlight_user_profile_order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    margin-top: 15px;
}

.spotlight_user_profile_amount {
    font-weight: 700;
}

.spotlight_user_profile_status {
    font-size: 0.9em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.spotlight_user_profile_status.delivered {
    background-color: #d4edda;
    color: #155724;
}

.spotlight_user_profile_btn {
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9em;
}

.spotlight_user_profile_btn-primary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.spotlight_user_profile_btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}


/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    .spotlight_user_profile_sidebar {
        margin-bottom: 20px;
    }
    .spotlight_user_profile_filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .spotlight_user_profile_filter-tabs .btn {
        flex: 0 0 auto;
    }
}

.spotlight_user_profile_order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.spotlight_user_profile_order-details-header a {
    font-size: 0.9em;
    text-decoration: none;
}

.spotlight_user_profile_order-details-header a:hover {
    text-decoration: underline;
}

.spotlight_user_profile_timeline {
    position: relative;
}

.spotlight_user_profile_timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #ddd;
}

.spotlight_user_profile_timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 150px;
}

.spotlight_user_profile_timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
    font-size: 0.9em;
    color: #888;
}

.spotlight_user_profile_timeline-icon {
    position: absolute;
    left: 102px;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: #3498db;
    border: 2px solid #fff;
    border-radius: 50%;
}

.spotlight_user_profile_timeline-icon.active {
    background-color: #28a745;
}

.spotlight_user_profile_timeline-content h5 {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: black;
}

.spotlight_user_profile_timeline-content p {
    font-size: 0.9em;
    color: #555;
}

.spotlight_user_profile_section-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.spotlight_user_profile_product-list .list-group-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
}

.spotlight_user_profile_product-item {
    display: flex;
    align-items: center;
}

.spotlight_user_profile_product-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
}

.spotlight_user_profile_shipping-address {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.spotlight_user_profile_summary-table td,
.spotlight_user_profile_summary-table th {
    padding: 8px 0;
    border: none;
}

.spotlight_user_profile_summary-table .text-success {
    font-weight: 500;
}

.spotlight_user_profile_download-btn {
    background-color: #008080;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: background-color 0.2s;
    width: 100%;
}

.spotlight_user_profile_download-btn:hover {
    background-color: #006666;
}


/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    .spotlight_user_profile_sidebar {
        margin-bottom: 20px;
    }
    .spotlight_user_profile_timeline {
        padding-left: 20px;
    }
    .spotlight_user_profile_timeline::before {
        left: 10px;
    }
    .spotlight_user_profile_timeline-item {
        padding-left: 30px;
        margin-bottom: 20px;
    }
    .spotlight_user_profile_timeline-date {
        position: relative;
        left: 0;
        width: auto;
        text-align: left;
        margin-bottom: 5px;
    }
    .spotlight_user_profile_timeline-icon {
        left: 2px;
    }
    .spotlight_user_profile_order-details-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.spotlight_user_profile_wishlist-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.spotlight_user_profile_wishlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotlight_user_profile_product-info {
    display: flex;
    align-items: center;
}

.spotlight_user_profile_product-info img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    position: relative;
}

.spotlight_user_profile_product-details {
    display: flex;
    flex-direction: column;
}

.spotlight_user_profile_product-details p {
    margin: 0;
    font-weight: 500;
}

.spotlight_user_profile_product-details small {
    color: #777;
}

.spotlight_user_profile_product-price {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
}

.spotlight_user_profile_original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.8em;
    font-weight: 400;
    margin-left: 10px;
}

.spotlight_user_profile_add-to-cart-btn {
    background-color: #008080;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
}

.spotlight_user_profile_wishlist-actions .btn {
    margin-left: 10px;
}

.spotlight_user_profile_badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #008080;
    color: white;
    font-size: 0.7em;
    padding: 4px 8px;
    border-radius: 5px;
    z-index: 10;
}

.spotlight_user_profile_delivery-badge {
    background-color: #f0ad4e;
    color: white;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 5px;
}

.spotlight_user_profile_wishlist-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.spotlight_user_profile_wishlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotlight_user_profile_product-info {
    display: flex;
    align-items: center;
}

.spotlight_user_profile_product-info img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    position: relative;
}

.spotlight_user_profile_product-details {
    display: flex;
    flex-direction: column;
}

.spotlight_user_profile_product-details p {
    margin: 0;
    font-weight: 500;
}

.spotlight_user_profile_product-details small {
    color: #777;
}

.spotlight_user_profile_product-price {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
}

.spotlight_user_profile_original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.8em;
    font-weight: 400;
    margin-left: 10px;
}

.spotlight_user_profile_add-to-cart-btn {
    background-color: #008080;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
}

.spotlight_user_profile_wishlist-actions .btn {
    margin-left: 10px;
}

.spotlight_user_profile_badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #008080;
    color: white;
    font-size: 0.7em;
    padding: 4px 8px;
    border-radius: 5px;
    z-index: 10;
}

.spotlight_user_profile_delivery-badge {
    background-color: #f0ad4e;
    color: white;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 5px;
}

/*--------------------------------------------------------------
# Cart Page
--------------------------------------------------------------*/

.spotlight_cart_progress_header {
    background-color: #007bff;
    color: white;
    padding: 1rem 0;
}

.spotlight_cart_progress_item {
    display: flex;
    align-items: center;
}

.spotlight_cart_progress_item:not(:last-child)::after {
    content: "→";
    margin: 0 1rem;
    font-size: 1.25rem;
    opacity: 0.5;
}

.spotlight_cart_container {
    max-width: 1400px;
    margin-top: 2rem;
}

.spotlight_cart_summary_card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.spotlight_cart_item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.spotlight_cart_item_image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.spotlight_cart_item_details {
    flex-grow: 1;
}

.spotlight_cart_item_quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
}

.spotlight_cart_item_quantity button {
    background: #f8f9fa;
    border: none;
    padding: 0.25rem 0.75rem;
}

.spotlight_cart_total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.spotlight_cart_action_button {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
}

.spotlight_cart_interest_card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.spotlight_cart_accordion_item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}


/* Table specific styles for responsiveness */

.spotlight_cart_table {
    width: 100%;
    border-collapse: collapse;
}

.spotlight_cart_table th,
.spotlight_cart_table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.spotlight_cart_table th {
    text-align: center;
    font-weight: 600;
    color: #6c757d;
}

.spotlight_cart_table td {
    text-align: center;
}

.spotlight_cart_table_row:first-child .spotlight_cart_table_cell:first-child {
    width: 50%;
}

.spotlight_cart_nested_item td {
    padding: 0.5rem;
    border-top: none;
}

.spotlight_cart_nested_item_image {
    width: 50px;
    /* Smaller image size for nested items */
    height: 50px;
    object-fit: contain;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.spotlight_cart_nested_item .spotlight_cart_item_details {
    display: flex;
    align-items: center;
}

.spotlight_cart_nested_item .spotlight_cart_item_details h6 {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.cart_subtotal
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767.98px) {
    .spotlight_cart_table thead {
        display: none;
    }

    .main-cart-item
    {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--brdcolor-gray-300);
    }
    .spotlight_cart_table,
    .spotlight_cart_table tbody,
    .spotlight_cart_table tr,
    .spotlight_cart_table td {
        display: block;
        width: 100%;
    }
    .spotlight_cart_table tr {
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 1rem;
    }
    .spotlight_cart_table td {
        text-align: right;
        position: relative;
        padding-left: 40%;
        padding-top: 8px;
        padding-bottom: 8px;
        border: 0px;
        display:flex;
        align-items: center;
    }
    .spotlight_cart_table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        padding-right: 1rem;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
    }
    .main-cart-item td:is(.cart_product)::before {
        content: none;
    }
    .main-cart-item td:is(.cart_product) {
        padding-left: 0px;
    }
}


/* Checkout page */

.spotlight_checkout_container {
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.spotlight_checkout_coupon-link {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.spotlight_checkout_coupon-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.spotlight_checkout_coupon-link a:hover {
    text-decoration: underline;
}

.spotlight_checkout_section-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.spotlight_checkout_form-group {
    margin-bottom: 20px;
}

.spotlight_checkout_form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.spotlight_checkout_form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.spotlight_checkout_order-summary {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.spotlight_checkout_order-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spotlight_checkout_order-item img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin-right: 15px;
}

.spotlight_checkout_item-details {
    flex-grow: 1;
}

.spotlight_checkout_item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.spotlight_checkout_item-price,
.spotlight_checkout_subtotal,
.spotlight_checkout_shipping-price,
.spotlight_checkout_total-price {
    font-weight: 600;
    color: #333;
}

.spotlight_checkout_subtotal,
.spotlight_checkout_shipping,
.spotlight_checkout_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.spotlight_checkout_total {
    font-size: 1.25em;
    font-weight: 700;
    margin-top: 10px;
    border-top: 2px solid #333;
}

.spotlight_checkout_shipping-options {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.spotlight_checkout_shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.spotlight_checkout_radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.spotlight_checkout_radio-label input {
    margin-right: 5px;
}

.spotlight_checkout_cash-on-delivery {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.spotlight_checkout_cash-on-delivery h5 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: black;
}

.spotlight_checkout_cash-on-delivery ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.9em;
}

.spotlight_checkout_privacy-text {
    font-size: 0.8em;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

.spotlight_checkout_place-order-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.2s;
}

.spotlight_checkout_place-order-btn:hover {
    background-color: #333;
}

.spotlight_checkout_change-address {
    font-size: 0.8em;
    color: #3498db;
    text-decoration: none;
}

.spotlight_checkout_change-address:hover {
    text-decoration: underline;
}


/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    .spotlight_checkout_container {
        padding: 15px;
    }
    .spotlight_checkout_section-title {
        font-size: 1.2em;
    }
    .spotlight_checkout_order-summary {
        margin-top: 30px;
    }
}
