/*:root {*/
/*  --bl-primary: #0d3b66;*/
/*  --bl-primary-dark: #082745;*/
/*  --bl-accent: #ff7a00;*/
/*  --bl-accent-light: #ffb703;*/
/*  --bl-bg-light: #f4f7fb;*/
/*  --bl-text-muted: #6c757d;*/
/*  --bl-radius: 8px;*/
/*}*/

:root {
    --bl-primary: #0d3b66;
    --bl-primary-dark: #082745;

    --bl-accent: #E8D496;
    --bl-accent-light: #E8D496;

    --bl-bg-light: #f4f7fb;
    --bl-text-muted: #6c757d;

    --bl-radius: 8px;

    --bg-image-gradient: linear-gradient(
        to bottom,
        #c801c2 0%,
        #6003a8 100%
    );
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #1c1c1c;
  background-color: #ffffff;
}

a {
  color: inherit;
}

/* ============ HEADER ============ */
.site-header {
  /*background-color: var(--bl-primary);*/
  /*background-image: var(--bg-image-gradient);*/
  background: linear-gradient(45deg, #08132F, #163262);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  z-index: 1030;
}

.brand-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.brand-logo img{
    width: auto!importnat;
    height: 80px!important;
}

.brand-logo span {
  color: var(--bl-accent-light);
}

.search-bar .form-control {
  border: none;
  border-radius: var(--bl-radius) 0 0 var(--bl-radius);
  height: 42px;
}

.search-bar .btn-search {
  background-color: var(--bl-accent-light);
  color: var(--bl-primary-dark);
  border: none;
  border-radius: 0 var(--bl-radius) var(--bl-radius) 0;
  padding: 0 1rem;
}

.header-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  white-space: nowrap;
}

.header-link i {
  font-size: 14px;
  vertical-align: middle;
}

.header-link i.header-card-icon{
    font-size: 17px;
    padding-right: 20px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: 1px;
  font-size: 1rem;
}

/* ============ CATEGORY NAV ============ */
.category-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e9ee;
}

.category-list {
  padding: 0.6rem 0;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}

.category-list .nav-item {
  position: relative;
}

.category-list .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--bl-primary);
  font-size: 1.6rem;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.category-list .nav-link i {
  font-size: 1.6rem;
}

.category-list .nav-link:hover {
  color: var(--bl-accent);
}

/* Submenu (mega-list) under each category */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 0 0 var(--bl-radius) var(--bl-radius);
  box-shadow: 0 10px 24px rgba(13, 59, 102, 0.18);
  z-index: 1040;
}

.dropdown-hover:hover .submenu,
.dropdown-hover:focus-within .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 1.6rem;
  color: var(--bl-primary-dark);
  text-decoration: none;
  white-space: nowrap;
}

.submenu li a:hover {
  background-color: var(--bl-bg-light);
  color: var(--bl-accent);
}

@media (max-width: 767.98px) {
  .category-list {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .submenu {
    display: none !important;
  }
}

/* ============ HERO ============ */
.hero-slide {
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  max-height: 420px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(120deg, rgba(13, 59, 102, 0.88) 0%, rgba(10, 37, 64, 0.55) 100%);*/
}

.hero-slide .container {
  position: relative;
  z-index: 1;
}

.hero-slide-1 {
  background-image: url("https://loremflickr.com/1600/500/electronics,store?lock=201");
}

.hero-slide-2 {
  background-image: url("https://loremflickr.com/1600/500/television,livingroom?lock=202");
}

.hero-caption h1 {
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero-caption p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 5%;
}

/* ============ USP STRIP ============ */
.usp-strip {
  background-color: #fff;
  border-bottom: 1px solid #e6e9ee;
  padding: 1.25rem 0;
}

.usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.usp-item i {
  font-size: 1.8rem;
  color: var(--bl-accent);
}

.usp-item h6 {
  margin: 0;
  font-weight: 600;
}

.usp-item small {
  color: var(--bl-text-muted);
}

/* ============ SECTION GENERIC ============ */
.section-block {
  padding: 2.5rem 0;
}

.bg-light-section {
  background-color: var(--bl-bg-light);
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bl-primary-dark);
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--bl-accent);
}

.see-all-link {
  color: var(--bl-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.see-all-link:hover {
  color: var(--bl-accent);
}

/* ============ CATEGORY CARDS ============ */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: var(--bl-radius);
  padding: 1.25rem 0.5rem;
  text-decoration: none;
  color: var(--bl-primary-dark);
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(13, 59, 102, 0.15);
  color: var(--bl-accent);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bl-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bl-primary);
}

.category-card p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* ============ BRAND GRID ============ */
.brand-badge {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: var(--bl-radius);
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--bl-primary-dark);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.15s ease;
}

.brand-badge:hover {
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.15);
  color: var(--bl-accent);
}

/* ============ PRODUCT CARDS ============ */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: var(--bl-radius);
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.15);
  transform: translateY(-3px);
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--bl-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.product-thumb {
  height: 160px;
  background-color: var(--bl-bg-light);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-body {
  padding: 0.9rem;
}

.product-title {
  font-size: 0.85rem;
  height: 2.6rem;
  overflow: hidden;
  margin-bottom: 0.6rem;
  color: #1c1c1c;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bl-primary-dark);
}

.price-original {
  font-size: 0.8rem;
  color: var(--bl-text-muted);
  text-decoration: line-through;
}

/* ============ FOOTER ============ */
.site-footer {
  /*background-color: var(--bl-primary-dark);*/
  color: #cfd8e3;
  padding-top: 2.5rem;
  /*background-image: var(--bg-image-gradient);*/
      background: linear-gradient(45deg, #08132F, #163262);
}

.site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #fff;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--bl-accent-light);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.social-icons a:hover {
  background-color: var(--bl-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding: 1rem 0;
  color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 767.98px) {
  .hero-caption h1 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.15rem;
  }
}

.Products-area {
    padding-bottom: 60px;
}
.dropdown-item {
    font-size: 1.4rem;
}
.usp-item small {
    font-size: 1.4rem;
}
.usp-item h6 {
   font-size: 1.4rem; 
}
.product-title {
    font-size: 2.4rem;
    height: 3.2rem;
}
.price-current {
    font-size: 1.6rem;
}
.price-original {
    font-size: 1.2rem;
}
.site-footer h6 {
    font-size: 2rem;
}
.footer-links a {
    font-size: 1.6rem;
}
.footer-links li {
    font-size: 1.6rem;
}
.recent-item h4 {
    font-size: 20px;
}
.recent-item {
    transition: all .5s;
}
.recent-item:hover {
    box-shadow: 5px 5px 30px rgba(0,0,0, .3);
}
.see-all-link {
    font-size: 1.6rem;
}
.section-title {
    font-size: 2.4rem;
}
.primary-form .card-header  {
    /*background-image: var(--bg-image-gradient);*/
    background: linear-gradient(45deg, #08132F, #163262);
    padding: 20px;
}
.primary-form.card {
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}
.primary-form .card-header h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}
.primary-form .card-body {
    padding: 20px;
}
.primary-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.primary-form input ,
.primary-form  select,
.primary-form textarea{
    width: 100%;
    height: 46px;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}
.primary-form .btn-success {
    height: 46px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--bl-accent-light);
    border: none;
}
.social-icons a {
    font-size: 1.8rem;
}
.quantity-area h4 {
    font-size: 20px;
    font-weight: 600;
}
.quantity-area .quantity-wrap {
    display: flex;
    align-items: center;
}
.quantity-area .quantity-wrap input {
    width: 60px;
    height: 28px;
    border-radius: 6px;
    text-align: center;
}
.product-image {
    position: relative;
}
.product-image .remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
    background: red;
    border: none;
    font-size: 14px;
    padding: 0;
}

.bg-primary {
    background: linear-gradient(45deg, #08132F, #163262) !important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: #02132F;
    border-color: #02132F;
}