/*: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: #ff7a00;
    --bl-accent-light: #ffb703;

    --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);
  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: 0.95rem;
  white-space: nowrap;
}

.header-link i {
  font-size: 1.15rem;
  vertical-align: -2px;
}

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

/* ============ 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: 0.8rem;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

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

.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: 0.85rem;
  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);
}

.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;
  }
}
