body {
  
 
  background: linear-gradient(90deg, #450623, #130325);
}

.footer-links {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-left: 100px;
  padding-top: 6%;
  padding-right: 10px;
}

.small {
  display: flex;
  justify-content: center;
}

/* ---------- Categories mega dropdown ---------- */
.categories-dropdown {
  position: relative;
}

/* Position the dropdown centered under the trigger and make it overlap nicely */
.categories-dropdown .custom-dropdown {
  left: 50% !important;
  transform: translateX(-50%);
  position: absolute;
  top: calc(100% + 12px);   /* drop below the menu */
  z-index: 1100;
  padding: 10px;            /* space for the outer border */
  border-radius: 36px;
  background: transparent;  /* outer wrapper is transparent so border shows */
  min-width: 520px;         /* reduced width (was 760px) */
  max-width: calc(100vw - 60px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

/* Outer dark thick border */
.custom-dropdown-outer {
  border: 8px solid rgba(0,0,0,0.95);    /* thick dark border */
  border-radius: 30px;
  overflow: hidden;                      /* keep inner rounded */
}

/* Inner semi-transparent panel where content sits */
.custom-dropdown-inner {
  background: rgba(255,255,255,0.92);    /* semi-transparent white */
  padding: 20px 28px;                    /* reduced padding */
  border-radius: 22px;                   /* smaller radius inside the outer border */
  display: flex;
  gap: 20px;                             /* reduced gap */
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(3px);            /* subtle blur for nicer look */
}

/* Category item */
.cat-item {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cat-img {
  width: 100px;                          /* reduced image size (was 160px) */
  height: auto;
  object-fit: contain;
  transition: transform .28s ease;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

.cat-title {
  margin: 0;
  font-size: 14px;                       /* reduced text size (was 16px) */
  font-weight: 700;
  color: #111;
}

/* Hover */
.custom-dropdown-inner .cat-item:hover .cat-img {
  transform: translateY(-6px) scale(1.06);
}

/* Remove default bootstrap dropdown padding/arrow */
.categories-dropdown .dropdown-menu::before {
  display: none;
}

/* ensure dropdown doesn't get clipped by parent overflow */
.navbar .dropdown-menu {
  overflow: visible;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .custom-dropdown {
    min-width: 420px;   /* smaller breakpoint adjustment */
  }
  .cat-img {
    width: 80px;
  }
}

@media (max-width: 820px) {
  /* stack items vertically on small screens */
  .custom-dropdown {
    left: 50% !important;
    transform: translateX(-50%);
    min-width: calc(100vw - 40px);
  }
  .custom-dropdown-inner {
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }
  .cat-item {
    width: 100%;
    flex-direction: row;
    gap: 18px;
    align-items: center;
  }
  .cat-img {
    width: 70px;
  }
  .cat-title {
    font-size: 13px;
    text-align: left;
    color: #111;
  }
}

/* default heart color */
.wishlist-btn svg {
  transition: fill 0.3s ease;
  fill: currentColor;
  color: rgb(255, 255, 255); /* default grey */
}

/* on hover -> red */
.wishlist-btn:hover svg {
  color: red;
}

/* default cart color */
.cart-btn svg {
  transition: fill 0.3s ease;
  fill: currentColor;
  color: rgb(255, 255, 255); /* default grey */
}

/* on hover -> red */
.cart-btn:hover svg {
  color: rgb(40, 177, 172);
}

.dropdown-menu {
  
  background: linear-gradient(90deg, #450623, #130325);
}
.dropdown-item {
  color: white;
}

/*brand section*/
/* Brand strip styles */
.brand-strip {
  background: #000;
  border: 3px solid #4a0b12;
  border-radius: 6px;
  padding: 18px 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25) inset;
  max-width: 95%;      /* 👈 take almost full width */
  margin: 0 auto;      /* center it nicely */
}

/* Container for the logos */
.brands {
  gap: 28px;
}

/* Each link around logo */
.brand-link {
  display: inline-block;
  padding: 6px 10px;
  cursor: pointer;
  transition: transform 0.25s ease;
  text-align: center;
}

/* The logo images (use PNGs with transparent bg) */
.brand-logo {
  max-height: 72px;   /* adjust to taste */
  width: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: brightness(1);
}

/* Hover effect */
.brand-link:hover .brand-logo {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* Responsive: on small screens allow horizontal scroll */
@media (max-width: 575.98px) {
  .brands {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 6px;
    align-items: center;
    justify-content: flex-start;
  }
  .brand-strip { padding: 10px; }
  .brand-logo { max-height: 56px; }
  /* hide scrollbar in Webkit (optional) */
  .brands::-webkit-scrollbar { height: 8px; }
  .brands::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 8px; }
}

/* Deal Section */

.deal-section {
  background: linear-gradient(to bottom right, #3a002d, #1a001a);
  padding: 60px 40px;
  color: white;
}

/* Left side (static text) */
.deal-content {
  max-width: 45%;
}

.deal-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.deal-content p {
  color: #b5b5b5;
  line-height: 1.6;
  margin-bottom: 25px;
}

.buy-btn {
  background: black;
  color: white;
  padding: 12px 35px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #333;
}

.deal-subtitle {
  color: #b5b5b5;
  margin-bottom: 20px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.countdown div {
  background: white;
  color: black;
  padding: 15px 18px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  min-width: 70px;
}

/* Right side (carousel) */
.deal-carousel {
  max-width: 50%;
}

.deal-products {
  gap: 20px;
  justify-content: center;
}

.deal-products img {
  height: 250px;
  max-width: fit-content;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Dots */
.carousel-indicators {
  justify-content: center;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
}

.carousel-indicators .active {
  background-color: black;
}

/* New Arrivals Section */
.new-arrivals {
    background: linear-gradient(135deg, #140426 0%, #450623 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.new-arrivals .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: #B8B8B8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
  background: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active {
  background: #1A1A1A;  /* stays black when active */
  color: #FFFFFF;
}

.tab-btn:hover {
  background: #F0F0F0;   /* light gray hover */
  transform: translateY(-2px);
}

.tab-btn.active:hover {
  background: #2A2A2A;   /* darker black hover for active */
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Product Image */
.product-image {
    width: 100%;
    height: 200px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Product Info */
.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

/* Rating Stars */
.product-rating {
    margin-bottom: 8px;
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

.star.filled {
    color: #FFD700;
}

.star.half {
    background: linear-gradient(90deg, #FFD700 50%, #E0E0E0 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.customer-reviews {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 16px;
}

/* Price Info */
.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
}

.sale-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-arrivals {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .category-tabs {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .price-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .new-arrivals .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .product-card {
        padding: 16px;
    }
    
    .product-image {
        height: 160px;
    }
}

/* Featured Products Section */
/* Featured Product Section */
.featured-section {
  padding: 0;
  min-height: 400px;
  overflow: hidden;
}

.featured-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  height: 400px;
  position: relative;
}

/* Left side - Image container with gradient background */
.featured-left {
  flex: 1.2; /* Increased flex to give more space for image */
  background: linear-gradient(180deg, #2d1b69,#000000   100%);
  display: flex;
  align-items: center;
  justify-content: center; /* Changed to center for better positioning */
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Diagonal cut effect */
.featured-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 400px 80px 0 0; /* Adjusted diagonal width */
  border-color: transparent #f0f0f0 transparent transparent;
  z-index: 2;
}

.featured-image {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  
}

.featured-image img {
  max-width: 90%; /* Increased from 80% to 90% */
  max-height: 350px; /* Increased from 300px to 350px */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)); /* Added shadow for depth */
}

/* Right side - Content container with white background */
.featured-right {
  flex: 0.8; /* Reduced flex to give more space to image side */
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  padding: 0;
}

.featured-content {
  padding: 40px 40px 40px 60px; /* Added more left padding for diagonal spacing */
  width: 100%;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.2;
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #666666;
}

.featured-price {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 25px;
}

.featured-btn {
  background-color: #000000;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .featured-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 450px; /* Increased height for larger screens */
  }
  
  .featured-left::after {
    border-width: 450px 100px 0 0; /* Adjusted for new height */
  }
  
  .featured-image img {
    max-height: 400px; /* Increased for larger screens */
  }
  
  .featured-title {
    font-size: 3rem;
  }
  
  .featured-description {
    font-size: 1.2rem;
  }
  
  .featured-content {
    padding: 50px 50px 50px 80px; /* More left padding for larger screens */
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .featured-container {
    max-width: 100%;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .featured-container {
    height: auto;
    min-height: 350px;
  }
  
  .featured-left {
    flex: 1;
  }
  
  .featured-right {
    flex: 1;
  }
  
  .featured-left::after {
    border-width: 350px 60px 0 0;
  }
  
  .featured-title {
    font-size: 2.2rem;
  }
  
  .featured-image img {
    max-height: 280px;
    max-width: 85%;
  }
  
  .featured-content {
    padding: 30px 30px 30px 50px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .featured-container {
    flex-direction: column;
    height: auto;
  }
  
  /* Remove diagonal cut on mobile */
  .featured-left::after {
    display: none;
  }
  
  .featured-left {
    padding: 30px 20px;
    min-height: 280px; /* Increased for better image display */
    flex: none;
  }
  
  .featured-right {
    text-align: center;
    flex: none;
  }
  
  .featured-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .featured-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .featured-price {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .featured-image img {
    max-height: 220px; /* Increased from 200px */
    max-width: 90%;
  }
  
  .featured-content {
    padding: 30px 20px;
  }
}

/* Mobile Large (481px - 575px) */
@media (max-width: 575px) {
  .featured-left {
    padding: 20px 15px;
    min-height: 250px;
  }
  
  .featured-title {
    font-size: 1.8rem;
  }
  
  .featured-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .featured-price {
    font-size: 1.6rem;
  }
  
  .featured-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 200px;
  }
  
  .featured-image img {
    max-height: 200px;
    max-width: 95%;
  }
  
  .featured-content {
    padding: 25px 15px;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  .featured-left {
    min-height: 220px;
    padding: 15px 10px;
  }
  
  .featured-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .featured-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .featured-price {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .featured-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .featured-image img {
    max-height: 180px;
  }
  
  .featured-content {
    padding: 20px 10px;
  }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
  .featured-title {
    font-size: 1.3rem;
  }
  
  .featured-description {
    font-size: 0.85rem;
  }
  
  .featured-price {
    font-size: 1.2rem;
  }
  
  .featured-image img {
    max-height: 150px;
  }
}
/*product section*/

/* Grid layout for products */
.product-section {
  display: grid;
  gap: 20px;
  justify-content: center;
  padding: 20px;

  /* Mobile: 1 product per row */
  grid-template-columns: repeat(1, 1fr);
}

/* Tablet: 2 products per row */
@media (min-width: 600px) {
  .product-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 products per row */
@media (min-width: 992px) {
  .product-section {
    grid-template-columns: repeat(3, 1fr);
  }
}





/*warranty section*/

.features_band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background: #e5e5e5;
  min-height: 200px;
  padding: 20px;
  text-align: center;
}

.features_item {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.features_item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.features_title {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}

.features_text {
  font-size: 14px;
  color: #555;
}

