
   :root {
        /* Theme Primary Color (Standardized for all buttons) */
        --theme-primary: #ec6404; 
        /* Darker shade for hover states */
        --theme-primary-dark: #b84c03; 

        /* Keeping these for reference, though not used by buttons anymore */
        --theme-accent: #fb641b; 
        --fk-light: #f7f7f7;
        --fk-gray-text: #878787;
    }
    body{
      font-family: inter_regular, fallback-inter_regular, Arial, sans-serif;
      background:#f5f7fb;
    }


    /* Topbar */
    .topbar{background:var(--primary); color:#fff}
    .topbar a{color:inherit; text-decoration:none}
    .logo{font-weight:800; letter-spacing:0.2px}
    .logo .accent{background:var(--accent); color:#111; padding:3px 6px; border-radius:3px; margin-left:6px; font-weight:700}

    /* Search */
    .search-wrap{box-shadow:0 2px 6px rgba(34,50,84,0.08)}
    .search-input{border:0; outline:0; box-shadow:none}

    /* Category drawer */
    .category-card{background:#fff; border-radius:8px; transition:transform .12s ease}
    .category-card:hover{transform:translateY(-6px)}

.main-wrap{
	padding: 0 180px;
}
/* Mobile adjustment */
@media (max-width: 1500px) {
  	.main-wrap {
  
  padding: 12px 10px;
}

}

    /* Hero */
    .hero{border-radius:8px; overflow:hidden}

    /* Product card */
    .product-card{background:#fff; border-radius:15px; padding:12px; border:1px solid rgba(0,0,0,0.04)}
    .product-card .price{color:#111; font-weight:700}
    .product-card .old-price{color:var(--muted); text-decoration:line-through; font-weight:600}

    /* Deal badge */
    .deal-badge{background:var(--primary); color:#fff; font-weight:700; padding:6px 10px; border-radius:6px}

    /* Footer */
    footer{background:#0f1724; color:rgba(255,255,255,0.8)}

    @media (max-width: 991px){
      .search-input{font-size:.9rem}
    }
	  
.navbar {
  min-height: 56px;
}
	  .navbar > .container {
  position: relative;
}
.navbar a,
.navbar button {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Best Offer button style */
.best-offer-btn {
  background: #ec6404;
  color: #fff !important;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
}


.best-offer-btn:focus {
  outline: none;
  box-shadow: none;
}

/* Make the collapsible menu overlay on mobile so it doesn't push the Best Offer down */
@media (max-width: 991px) {
  /* position the collapse as absolute overlay under the navbar */
  .navbar .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1055;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0,0,0,.08);
	  margin-top: 11px;
	  box-shadow: 0px 1px 1px #aaaaaa; 
  }
.navbar-collapse {
    transition: none !important;
  }
	
	
  /* restore normal stacking inside the collapse */
  .navbar .collapse.navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 0.25rem;
  }

  /* keep best-offer compact on small screens */
  .best-offer-btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  /* make sure the left section (toggler + brand) doesn't wrap */
  .navbar .d-flex.align-items-center.flex-grow-1 {
    gap: 0.5rem;
  }
}
	  /* Force vertical alignment of hamburger + offer */
.navbar-toggler,
.best-offer-btn {
  align-self: center;
}

/* Remove all focus/active effects */
.navbar-toggler:focus,
.navbar-toggler:active,
.best-offer-btn:focus,
.best-offer-btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Fine-tune vertical centering for all sizes */
.navbar .container > .d-flex,
.navbar .container > .d-flex > .d-flex {
  align-items: center;
}

/* optional: remove underline hover for nav links */
.navbar .nav-link { text-decoration: none; }
.navbar .nav-link:focus, .navbar .nav-link:active { outline: none; box-shadow: none; }

.dropdown-menu i {
  color: #ec6404;
}
	  .dropdown-menu .dropdown-item:hover i {
  color: #ec6404!important;
}
	  .text-danger{
		  color: #ec6404!important;
	  }
	  
	  /* Full width hero */

.hero-wrapper {
  background: #f1f3f6;
  padding: 12px 0 12px 0 ;
}

.hero-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.hero-box img {
  height: 260px;
  object-fit: cover;
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .hero-box img {
    height: 260px;
  }

}


/* carousel arrows */
.hero-box .carousel-control-prev,
.hero-box .carousel-control-next {
  width: auto;
  opacity: 1;
}

.hero-box .carousel-control-prev-icon,
.hero-box .carousel-control-next-icon {
  background-image: none; /* remove default Bootstrap icon */
}

/* Custom button */
.hero-box .carousel-control-prev span,
.hero-box .carousel-control-next span {
  width: 30px;
  height: 44px;
  background: #fff;
  border-radius: 0 ;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* Arrow symbol */
.hero-box .carousel-control-prev span::after {
  content: "‹";
  font-size: 28px;
  font-weight: 600;
}

.hero-box .carousel-control-next span::after {
  content: "›";
  font-size: 28px;
  font-weight: 600;
}

/* Remove hover effects */
.hero-box .carousel-control-prev:hover span,
.hero-box .carousel-control-next:hover span {
  background: #fff;
}

.product-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card h6 {
  font-size: 14px;
  margin: 8px 0 4px;
}

.product-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.product-card del {
  color: #999;
}

.offer {
  color: #1a9c3c;
  font-weight: 600;
}

.badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ed6404;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
}

.banner {
  padding: 0px!important;
  border-radius: 15px;
	margin: 0!important;
	
}
	  
	  
	  
 .banner img{
		  border-radius: 15px;
	 
	  }

.pink { background:#ffecec }
.blue { background:#e7f7fb }
.beige { background:#fff1e4 }

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #bbb;
}

/* Custom styles for the Logo Carousel */
.logo-carousel .carousel-item {
  text-align: center;
}

.logo-carousel .carousel-item .col {
  /* Ensures logos within the column are centered */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-carousel .brand-logo img {
  /* Standardizes the look for all logos */
  max-height: 70px; /* Increased slightly for prominence */
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%); /* Optional: makes them look uniform */
  transition: opacity 0.2s, filter 0.2s;
}

.logo-carousel .brand-logo img:hover {
  opacity: 1;
  filter: grayscale(0%); /* Optional: color on hover */
}	  
	  
footer {
    /* Set the background for the main content area */
    background-color: #1c2024; 
}

/* Style for footer links and lists */
.footer-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-list a:hover {
    color: #fff !important; /* Brighter white on hover */
}

/* Ensure the utility bar links have appropriate hover state */
.text-white-50:hover {
    color: #fff !important; 
}

	  /* Styling for the Promo Box */
.promo-box {
  background: #ed6404; /* Requested background color */
  color: #fff;
  border-radius: 0 0 8px 8px; /* Rounds only the bottom corners */
  padding: 15px 10px;
  box-shadow: 0 4px 10px rgba(237, 100, 4, 0.4);
  text-align: center;
  margin-top: -1px !important; /* Pulls it up slightly to blend with the list */
  transition: transform 0.3s ease;
}

.promo-box:hover {
  transform: scale(1.03); /* Subtle hover effect */
}

.promo-box h6 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.promo-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-box .btn-light {
  background-color: #fff;
  color: #ed6404;
  font-weight: 600;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Category Header Styling */
.category-header {
  background: #ed6404;
  color: #fff;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px 8px 0 0; /* Rounds only the top corners */
}
	  
	  .list-group-item{
  cursor:pointer;
}
.list-group-item:hover{
  background:#f8f9fa;
}
	 /* Product section tabs (New Arrival, Best Sellers...) */
/* Product section tabs – no underline */
.product-tabs a {
  text-decoration: none !important;
  font-weight: 500;
  color: #666;
  transition: color 0.2s ease-in-out;
}

.product-tabs a:hover {
  color: #ec6404;
}

/* Active tab */
.product-tabs a.active {
  color: #ec6404;
  font-weight: 600;
}

/* Prevent browser focus outline / underline */
.product-tabs a:focus,
.product-tabs a:active {
  outline: none;
  text-decoration: none;
}

 /* Main navbar category links */
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Hover state */
.navbar-nav .nav-link:hover {
  color: #ec6404;
}

/* Active state (optional – if you add .active later) */
.navbar-nav .nav-link.active {
  color: #ec6404;
  font-weight: 600;
}

/* Remove underline, focus border, shadow */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
	  .navbar-nav .nav-link:hover {
  color: #ec6404;
  background-color: rgba(236, 100, 4, 0.05);
  border-radius: 4px;
}

.offcanvas-header{
	background-color: #ec6404;
	color: white;
}
.btn-close-white{
	background-color: white!important;
	color: #ec6404;
	filter:none;
}


   .horizontal-scroll-row {
    display: flex;
    flex-direction: row;
    overflow-x: scroll; 
    overflow-y: hidden;
    white-space: nowrap; 
    /* --- CRITICAL CHANGE HERE: Reduce the vertical space below the row --- */
    padding-bottom: 5px; /* Reduced from 15px */
    /* --------------------------------------------------------------------- */
    padding-left: 20px !important; 
    padding-right: 20px !important;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
    .horizontal-scroll-row::-webkit-scrollbar {
        display: none;
    }
    
    /* 2. Product Item Sizing and Spacing */
    /* Set ample margin between items globally */
    .product-scroll-item {
        flex: 0 0 auto; 
        max-width: 200px; 
        white-space: normal; 
        min-width: 150px; 
        margin-right: 30px; /* Ample space between items (30px) */
    }
    
    /* Responsive Width Calculation (Width = (Total available space - Total margin used) / Number of items) */
    
    /* Mobile Override: Show 4 items */
    @media (max-width: 767px) {
        .product-scroll-item {
            /* 4 items * 30px margin = 120px total margin needed to subtract */
            width: calc((100% - 120px) / 4); 
        }
    }
    
    /* Desktop Override: Show EXACTLY 6 items */
    @media (min-width: 1200px) {
        .product-scroll-item {
            /* 6 items * 30px margin = 180px total margin needed to subtract */
            width: calc((100% - 180px) / 6); 
        }
    }

    /* 3. FIX FOR UNCROPPED IMAGES (Essential for no cropping) */
    .image-container {
        position: relative; 
        padding-top: 100%; /* Creates a square container */
        width: 100%;
    }
    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensures the whole image is visible (uncropped) */
        margin: auto; 
        display: block;
    }
    
    /* 4. Scroll Control Button Style (Matching reference image: Large white pill with shadow) */
    .scroll-control-icon {
        background-color: #fff; /* White background */
        border-radius: 5px; /* Subtle pill shape */
        box-shadow: 0 3px 6px rgba(0,0,0,0.16); /* Subtle shadow */
        width: 35px;
        height: 70px; /* Tall pill shape */
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1; /* Fully opaque */
    }
    .scroll-control-icon svg {
        fill: #333; /* Dark arrow icon */
    }

.image-container-small {
    /* Slightly smaller container than the main carousel for a compact look */
    position: relative; 
    padding-top: 75%; /* Sets height to 75% of its width */
    width: 100%;
    margin-bottom: 5px; /* Space between image and text */
}
.image-container-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Essential: Prevents cropping */
    margin: auto; 
    display: block;
}

/*product page*/

.fp-filter-box {
        background-color: #ffffff;
        border-radius: 2px;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
        padding: 15px;
    }
    .fp-product-container {
        padding-left: 0; /* Remove padding between sidebar and product list */
    }
    .fp-sort-bar {
        background-color: #ffffff;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
        padding: 10px 15px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .fp-product-card {
        background-color: #ffffff;
        height: 100%;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
        transition: box-shadow 0.2s;
        text-align: center;
        padding: 15px;
    }
    .fp-product-card:hover {
        box-shadow: 0 4px 8px 0 rgba(0,0,0,.2);
    }
    .fp-product-image {
        height: 200px; /* Fixed height for image area */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    .fp-product-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    .fp-brand-name {
        color: #212121;
        font-weight: 500;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
    }
    .fp-short-detail {
        color: #878787;
        font-size: 14px;
        margin-bottom: 4px;
    }
    .fp-rating {
        display: inline-block;
        background-color: #388e3c;
        color: white;
        padding: 0 5px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 600;
    }
    .fp-price-final {
        font-size: 20px;
        font-weight: 500;
        color: #212121;
        margin-right: 8px;
    }
    .fp-price-mrp {
        color: #878787;
        text-decoration: line-through;
        font-size: 14px;
        margin-right: 8px;
    }
    .fp-discount {
        color: #388e3c;
        font-size: 14px;
        font-weight: 500;
    }
    .fp-assured-icon {
        height: 14px;
        width: auto;
        margin-left: 5px;
        vertical-align: text-bottom;
    }
    /* Filter Sidebar Styles */
    .fp-filter-group h6 {
    /* Use text-uppercase for consistency with Flipkart style */
    text-transform: uppercase;
    font-size: 14px; /* Slightly smaller for h6 filters */
    font-weight: 500;
    color: #212121;
}

/* Style the collapsible anchor link and its border */
.fp-filter-group > a {
    /* Make the entire link clickable and span the width */
    display: flex; 
    /* This border separates the filter sections */
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Ensure categories section is distinct */
.fp-filter-group:nth-child(2) h6 {
    border-bottom: none; /* Remove border from CATEGORIES header as the section itself is bordered */
}

/* Style for the closeable tags (matching Flipkart's button/tag style) */
.fp-filter-box button.btn-light {
    background-color: #f0f5ff !important;
    border-color: #c7c6c6 !important;
    color: #212121 !important;
}

/* Ensure the category drill-down links are blue */
.fp-filter-group .text-primary p {
    color: #878787 !important; /* Default link color for sub-categories */
}
.fp-filter-group .text-primary p:hover {
    color: #2874f0 !important; /* Blue on hover */
}

fp-filter-box a, 
.fp-filter-box button.btn-link, 
.fp-product-card a {
    text-decoration: none !important;
}

/* Ensure filter group headers don't get an unwanted underline */
.fp-filter-group > a {
    text-decoration: none !important;
}

/* Style for category drill-down links to maintain the grey/blue hover effect */
.fp-category-link {
    color: #878787 !important; /* Grey color for non-active sub-categories */
}
.fp-category-link:hover {
    color: #2874f0 !important; /* Blue on hover */
}

/* --- FILTER TAG STYLING --- */
.fp-filter-tag {
    /* Use a very light background for applied filters */
    background-color: #f0f5ff !important;
    border-color: #c7c6c6 !important;
    color: #212121 !important;
}

.fp-filter-box .btn-link {
    color: #ec6404 !important; /* Applying theme color to link buttons */
}

.fp-category-link {
    color: #878787 !important; /* Neutral grey for non-active sub-categories */
}
.fp-category-link:hover {
    color: #ec6404 !important; /* Theme color on hover */
}

/* 3. Price Range Slider (Input element) */
.form-range {
    /* Set the color for the filled-in part of the track */
    --bs-range-progress-bg: #ec6404; 
}
/* For older/non-standard browsers */
.form-range::-webkit-slider-thumb {
    background-color: #ec6404;
}
.form-range::-moz-range-thumb {
    background-color: #ec6404;
}
.form-range::-ms-thumb {
    background-color: #ec6404;
}

/* 4. Filter Tags (Keeping the tags light blue/grey for contrast) */
.fp-filter-tag {
    background-color: #f0f5ff !important;
    border-color: #c7c6c6 !important;
    color: #212121 !important;
}

/* --- Ensure link underline remains removed globally --- */
.fp-filter-box {
    background-color: #ffffff;
    /* Reduced Box Shadow for a lighter feel */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    border-radius: 8px; /* Slightly rounded corners */
    padding: 20px 15px; /* Increased internal padding */
}

/* --- THEME COLORS --- */
.fp-primary-theme-color, .fp-filter-box .btn-link {
    color: #ec6404 !important; /* Accent Color */
}
.form-range {
    --bs-range-progress-bg: #ec6404; 
}
.form-check-input {
    accent-color: #ec6404; 
}
.fp-filter-tag {
    /* Slightly less intense tag color */
    background-color: #fdf6ee !important; 
    border-color: #f1dbc4 !important;
    color: #212121 !important;
    font-weight: 500;
}

/* --- FILTER GROUP HEADER (H6 & Anchor) --- */
.fp-filter-group h6 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700; /* Bolder header for distinction */
    color: #333333; 
}
.fp-filter-group > a {
    text-decoration: none !important;
    display: flex;
    /* Thicker, lighter divider line */
    border-bottom: 2px solid #eeeeee; 
    padding-bottom: 12px; /* Increased padding */
    margin-bottom: 15px; /* Increased margin for separation */
    padding-top: 5px;
    transition: background-color 0.1s;
}
.fp-filter-group > a:hover {
    background-color: #f9f9f9; /* Subtle hover effect on header */
}

/* --- CATEGORY LIST STYLING (Drill-Down) --- */
.fp-filter-box .list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; 
}
.fp-category-link {
    font-size: 14px;
    color: #555555 !important; /* Muted default link color */
    padding: 3px 0; /* Add slight vertical spacing */
}
.fp-category-link:hover {
    color: #ec6404 !important; /* Theme color on hover */
    font-weight: 500;
}

/* --- COLLAPSIBLE ICON ROTATION --- */
.fp-filter-group > a[aria-expanded="false"] .fa-chevron-up {
    transform: rotate(180deg);
}

/*--- PRODUCT CONTAINER STYLES --- */

/* Ensure sort links don't have underlines, except when specified */
.fp-sort-link {
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
}
.fp-sort-link:hover {
    color: #ec6404 !important; /* Highlight on hover */
}

/* Set the theme color for the currently active sort link */
.fp-sort-bar a.fp-primary-theme-color {
    border-bottom: 2px solid #ec6404; /* Distinct underline for active sort */
    padding-bottom: 3px;
}

/* Product Card Styling Enhancements */
.fp-product-card {
    /* Subtle transition for hover effect */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%; /* Ensure all cards are same height in the row */
    position: relative;
}

.fp-product-card:hover {
    transform: translateY(-2px); /* Lift card slightly on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Clearer shadow on hover */
}

/* Ensure the main container links (e.g., product title) use the standard dark text */
.fp-product-card a {
    color: #333 !important;
}

/* Ensure ratings are visually consistent (Green background maintained as it's standard) */
.fp-rating {
    background-color: #388e3c; 
    color: #fff; 
    font-size: 12px;
}

/*Product detail page*/

/* Theme Color Variable for consistency */
.fp-primary-theme-color, .fp-filter-box .btn-link {
    color: #ec6404 !important; /* Theme Accent Color */
}

/* Standard E-commerce Link Blue (used in PDP) */
.text-link {
    color: #2874f0; 
    text-decoration: none;
    font-weight: 500;
}
.text-link:hover {
    text-decoration: underline;
}

/* Checkbox/Radio Tick Icon Color (PLP Filter) */
.form-check-input {
    accent-color: #ec6404; 
}
.form-range {
    --bs-range-progress-bg: #ec6404; 
}


/* --- 2. CONTAINER & CARD BASE STYLES (Used for Filters, Sort Bar, and PDP Cards) --- */
.fp-filter-box, 
.fp-product-card, 
.fp-sort-bar,
.pdp-card {
    background-color: #ffffff;
    /* Consistent subtle box shadow for a clean lift */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
    border-radius: 8px; 
	box-sizing: border-box;
}
.fp-filter-box {
    padding: 20px 15px; 
}
.pdp-card {
    padding: 15px; 
}


/* --- 3. PLP FILTER SIDEBAR STYLES (Col 3) --- */

/* Applied Tags - uses Theme Color for background */
.fp-filter-tag {
    background-color: #fdf6ee !important; 
    border-color: #f1dbc4 !important;
    color: #212121 !important;
    font-weight: 500;
}

/* Filter Group Header (H6 & Collapse Toggle) */
.fp-filter-group h6 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700; 
    color: #333333; 
}
.fp-filter-group > a {
    text-decoration: none !important;
    display: flex;
    /* Thicker, lighter divider line */
    border-bottom: 2px solid #eeeeee; 
    padding-bottom: 12px; 
    margin-bottom: 15px; 
    padding-top: 5px;
    transition: background-color 0.1s;
}
.fp-filter-group > a:hover {
    background-color: #f9f9f9; 
}

/* Category Links (Drill-Down) */
.fp-filter-box .list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; 
}
.fp-category-link {
    font-size: 14px;
    color: #555555 !important; 
    padding: 3px 0; 
    text-decoration: none !important;
    display: block;
}
.fp-category-link:hover {
    color: #ec6404 !important; 
    font-weight: 500;
}

/* Collapsible Icon Rotation */
.fp-filter-group > a[aria-expanded="false"] .fa-chevron-up {
    transform: rotate(180deg);
}


/* --- 4. PLP PRODUCT RESULTS STYLES (Col 9) --- */

/* Sort Bar */
.fp-sort-bar {
    padding: 15px 20px;
    margin-bottom: 20px;
}
.fp-sort-link {
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.fp-sort-bar a.fp-primary-theme-color {
    border-bottom: 2px solid #ec6404; /* Active sort underline */
    padding-bottom: 3px;
    font-weight: bold;
}
.fp-sort-link:hover {
    color: #ec6404 !important;
}

/* Product Card */
.fp-product-card {
    padding: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.fp-product-card:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}
.fp-rating {
    background-color: #388e3c; 
    color: #fff; 
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}
.fp-discount {
    color: #ec6404; /* Highlight Discount in Theme Color */
    font-weight: 600;
}


/* --- 5. PDP PRODUCT DETAIL PAGE STYLES --- */

/* Main PDP Elements */
.pdp-title {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
}
.pdp-price-final {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
}
.pdp-price-mrp {
    font-size: 16px;
    color: #878787;
    text-decoration: line-through;
    margin-left: 10px;
}
.pdp-discount {
    color: #388e3c; /* Green for product discount (Standard e-commerce convention) */
    font-weight: 600;
}

/* Action Buttons */
.btn-wishlist {
    background-color: #ff9f00; /* Orange for Add to Cart */
    color: #fff;
}
.btn-buy {
    background-color: #fb641b; /* Reddish-Orange for Buy Now */
    color: #fff;
}

/* Product Options (Color/Storage) */
.pdp-option-box {
    border: 1px solid #e0e0e0;
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
}
.pdp-option-box.active {
    border-color: #2874f0; /* Use Blue for active selection border */
    color: #2874f0;
    box-shadow: 0 0 5px rgba(40, 116, 240, 0.2);
}

/* Specifications Table */
.pdp-table .spec-key {
    color: #878787;
    width: 40%;
}
.pdp-table td {
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

/* --- Custom Outlined Button using Theme Color (#ec6404) --- */
.fp-theme-outline-btn {
    color: #ec6404; /* Sets the text color to the theme color */
    border: 1px solid #e0e0e0; /* Maintains the light border (like the original) */
    background-color: transparent;
    text-decoration: none !important; /* Ensures no underline */
}

.fp-theme-outline-btn:hover {
    color: #ec6404; /* Keeps text color on hover */
    background-color: #fdf6ee; /* Subtle theme background on hover */
    border-color: #ec6404; /* Theme color border on hover */
}

/* --- Image Gallery & Thumbnails --- */
/* REMOVE OR UPDATE THESE OLD VERTICAL STYLES */
.pdp-image-gallery {
    /* Remove 'position: sticky' and 'max-height' if you don't want the left block to stick */
    position: relative; /* Set to relative if you don't want stickiness */
    top: auto;
    /* max-height: calc(100vh - 40px); *//* Remove or adjust as needed */
}
/* REMOVE OR UPDATE: Old vertical thumbnail list styles */
.pdp-thumbnail-list {
    /* If you still use this class, change these properties */
    max-height: none; /* No vertical height limit */
    overflow-y: visible;
    width: auto; 
    /* The new structure uses .pdp-thumbnail-list-horizontal */
}


/* --- NEW HORIZONTAL THUMBNAIL LIST STYLES --- */
.pdp-thumbnail-list-horizontal {
    /* Allow scrolling and hide the default scrollbar for a cleaner look */
    overflow-x: auto;
    padding-bottom: 5px; /* Space for the (hidden) scrollbar */
    max-width: 100%;
}
.pdp-thumbnail {
    /* Keep existing thumbnail size and styling */
    min-width: 60px; /* Ensure they don't shrink too small */
    height: 70px;
    margin-bottom: 0; /* Remove vertical margin */
    /* Use me-2 in HTML for horizontal spacing */
}
.pdp-thumbnail img {
    /* Ensure image fits inside the larger thumbnail box */
    max-width: 100%;
    max-height: 100%;
}

.box-sizing{
	box-sizing: border-box}

/* --- Desktop-Only Sticky Gallery (Starts at Bootstrap's 'lg' breakpoint: 1200px) --- */
@media (min-width: 1200px) {
    .pdp-image-gallery {
        /* Set position to sticky for large screens */
        position: sticky;
        
        /* Define where the element should stick (20px from the top) */
        top: 20px;
        
        /* Ensure the sticky area doesn't get too tall */
        max-height: calc(100vh - 40px); 
        
        /* Overflow hidden to prevent internal scrollbars from interfering with stickiness */
        overflow: hidden;
    }
}

/* Ensure non-desktop views default back to normal flow (position: static) */
/* This is usually unnecessary as static is default, but added for clarity: */
@media (max-width: 1199.98px) {
    .pdp-image-gallery {
        position: static !important;
        top: auto !important;
        max-height: none !important;
    }
}

/*login_page*/


        .fk-logo {
            font-style: italic;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }
        .fk-logo-sub {
            font-size: 10px;
            color: #fff;
            display: block;
            margin-top: -3px;
        }
        .fk-logo-sub img {
            width: 10px;
            height: 10px;
            margin-right: 2px;
            filter: grayscale(1) brightness(2); /* Makes the plus icon white */
        }
        
        /* --- 3. MAIN CONTAINER & LAYOUT --- */
        .auth-container {
            max-width: 900px;
            margin: 50px auto;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 1px 10px rgba(0,0,0,.1);
            background-color: #fff;
        }
        
        /* --- 4. LEFT PROMOTIONAL SIDEBAR --- */
        .auth-sidebar {
            background-color: #ec6404; /* Uses your theme color */
            color: #fff;
            padding: 40px 35px;
            min-height: 500px;
        }
        .sidebar-heading {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .sidebar-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }
        .sidebar-image {
            margin-top: 50px;
            width: 100%;
            max-width: 250px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- 5. RIGHT FORM AREA --- */
        .auth-form-area {
        padding: 40px 35px;
        position: relative; 
        /* Added flex to push the switch link to the bottom, 
           ensuring the form takes up the whole column height on desktop */
        display: flex; 
        flex-direction: column;
        justify-content: space-between; /* Pushes content and switch-link apart */
    }
    
    .auth-form {
        /* This ensures the form itself fills the space available */
        flex-grow: 1; 
        display: none;
    }
    .auth-form.active {
        display: block;
    }

    /* Input Styling */
    .form-control-fk {
        /* ... (Existing input styles) ... */
        margin-bottom: 25px; 
    }
    
    

    /* Terms and Privacy Text */
    .form-terms {
        font-size: 12px;
        color: var(--fk-gray-text);
        margin-top: 15px; /* Reduced margin */
        line-height: 1.4;
    }

    /* Switch Link at the Bottom */
    .switch-link {
        /* Removed position: absolute and related properties. 
           This is now naturally positioned at the bottom by flexbox on .auth-form-area */
        text-align: center;
        margin-top: 30px; /* Add some space above the link */
    }
    .switch-link button {
        /* ... (Existing button styles) ... */
    }

.btn-fk-primary {
        background-color: #ec6404;; /* Use Theme Primary Color */
        color: #fff; 
        font-size: 15px;
        font-weight: 500;
        padding: 12px 0;
        width: 100%;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
        border: none;
        border-radius: 2px;
        transition: background-color 0.2s;
    }
    .btn-fk-primary:hover {
        background-color: #AA4600; /* Use Darker Theme Primary on hover */
        color: #fff;
    }

    /* Request OTP Button - SECONDARY ACTION (Standardized to Theme Primary) */
    .btn-fk-secondary {
        background-color: #ec6404; /* Use Theme Primary Color */
        color: #fff;
        font-weight: 500;
        border: none;
        padding: 10px 0; 
        width: 100%; 
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
        border-radius: 2px;
        transition: background-color 0.2s;
    }
    .btn-fk-secondary:hover {
        background-color: #AA4600; /* Use Darker Theme Primary on hover */
        color: #fff;
    }

/* --- New Switch Button Style --- */
.btn-fk-switch {
    background: none;
    border: 1px solid var(--theme-primary); /* Border using theme color */
    color: var(--theme-primary); /* Text using theme color */
    font-weight: 500;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.2s;
}
.btn-fk-switch:hover {
    background-color: var(--theme-primary); /* Solid fill on hover */
    color: #fff;
    border-color: var(--theme-primary);
}

/* Ensure the switch container is properly positioned if you kept the flex layout */
.switch-link-container {
    text-align: center;
    margin-top: auto; /* Pushes to bottom if parent is flex column */
    padding-top: 10px;
}

/*Stickyheader*/
.py-1.bg-white.border-bottom.px-2 {
    /* Critical property to enable fixed scrolling behavior */
    position: sticky; 
    
    /* Stick to the very top of the viewport */
    top: 0;           
    
    /* Ensure the header is always on top of other scrolling content */
    z-index: 1030;    
}
