/* ============================================
   HEADER SECTION
   ============================================ */
.header-logo {
    height: 40px;
    width: auto;
}

.search-form-width {
    width: 40%;
}

.contact-small-text {
    font-size: 0.75rem;
}

.contact-phone-text {
    font-size: 0.9rem;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-cart-link:hover {
    color: #dc3545;
    background-color: #f8f9fa;
}

.header-cart-link i {
    font-size: 1.35rem;
    line-height: 1;
}

.header-cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    border-radius: 999px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.35);
    pointer-events: none;
}

.header-cart-badge.is-zero {
    display: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-link {
    position: relative;
    padding-bottom: 0.5rem;
}

#main-menu .nav-link{font-weight: bold;}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mega Menu */
.mega-menu {
    left: 0 !important;
    right: 0 !important;
    display: none;
    border-top: 2px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .mega-menu {
    display: block;
    animation: fadeUp 0.3s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu h6 {
    font-size: 0.9rem;
    color: #1a1a1a;
}

.mega-menu .dropdown-item {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.mega-menu .dropdown-item:hover::after {
    width: 100%;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, #0a4d5c 0%, #1a5f6e 50%, #2a7080 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 92, 0.85) 0%, rgba(26, 95, 110, 0.85) 50%, rgba(42, 112, 128, 0.85) 100%);
    z-index: 1;
}

.hero-banner .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero-offer {
    display: inline-block;
    border: 3px solid #ffc107;
    padding: 15px 40px;
    border-radius: 5px;
}

.offer-text {
    color: #ffc107;
    font-size: 2rem;
    font-weight: 600;
}

.offer-text strong {
    font-size: 2.5rem;
    font-weight: 900;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 400;
}

.hero-btn {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 87px;
}

.carousel-control-next {
    right: 87px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #ffffff;
}

.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.carousel-control-icon i {
    font-size: 1.5rem;
    color: #0a4d5c;
    font-weight: bold;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: #ffc107;
}

/* ============================================
   PRODUCT SLIDER
   ============================================ */
.product-slider-section {
    background-color: #f8f9fa;
}

.product-slider-container {
    position: relative;
    padding: 0 60px;
}

.product-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.product-slider-track {
    display: flex;
    gap: 24px;
    transition: all 0.5s ease;
}

.product-slide-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

/* Section Title */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    margin: 0 auto;
    border-radius: 2px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card a{text-decoration: none;color: #000;}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #ffffff;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 15px;
}

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

/* Product Actions */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* opacity: 0; */
    /* transform: translateX(10px); */
    transition: all 0.3s ease;
    z-index: 2;
}

/* .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
} */

.btn-action {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-cart {
    background: #dc3545;
    color: #ffffff;
}

.btn-cart:hover {
    background: #c82333;
    transform: rotate(90deg);
}

.btn-wishlist {
    background: #ffffff;
    color: #dc3545;
}

.btn-wishlist:hover {
    background: #dc3545;
    color: #ffffff;
    transform: scale(1.1);
}

.btn-wishlist:hover i {
    animation: heartBeat 0.6s ease;
}

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

.product-title {
    font-size: 14px;
}

.product-brand {
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 0.75rem;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 13px;
    color: #ac0236;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.discount-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.original-price {
    font-size: 0.85rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin: 0;
}

/* Product Carousel Indicators */
.product-indicators {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.product-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dfe6e9;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.product-indicators button.active {
    width: 32px;
    border-radius: 5px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

/* Product Controls */
.product-control-prev,
.product-control-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-control-prev:hover,
.product-control-next:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.product-control-prev:hover .control-icon i,
.product-control-next:hover .control-icon i {
    color: #ffffff;
}

.product-control-prev {
    left: -25px;
}

.product-control-next {
    right: -25px;
}

.control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.control-icon i {
    font-size: 1.5rem;
    color: #2d3436;
    transition: all 0.3s ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.25); }
}

/* ============================================
   CATEGORY BANNER
   ============================================ */
.category-banner-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}/* ============================================
   BRAND SLIDER
   ============================================ */
.brand-slider-section {
    background-color: #f8f9fa;
}

.brand-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-slider-container {
    overflow: hidden;
    position: relative;
}

.brand-slider-track {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.brand-slide-item {
    flex: 0 0 calc(20% - 19.2px);
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: #f8f9fa;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-description strong {
    color: #dc3545;
}

.about-image {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    border-top: 1px solid #e0e0e0;
}

.feature-box {
    padding: 1rem;
}

.feature-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #dc3545;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-icon-box i {
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background-color: #e8e9ea;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #dc3545;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #e8e9ea;
    border-top: 1px solid #d0d0d0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon.facebook {
    background-color: #1877f2;
    color: #ffffff;
}

.social-icon.whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (Desktop) */
@media (max-width: 1200px) {
    .product-control-prev { left: 10px; }
    .product-control-next { right: 10px; }
    .product-slider-container { padding: 0 50px; }
    .brand-slide-item { flex: 0 0 calc(25% - 18px); }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .section-title { font-size: 2rem; }
    .product-card { margin-bottom: 1rem; }
    .product-slide-item { flex: 0 0 calc(50% - 12px); }
    .category-card { margin-bottom: 1rem; }
    .brand-slide-item { flex: 0 0 calc(33.333% - 16px); }
}

/* Small Devices (Mobile Landscape) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 2.5rem; }
    .offer-text { font-size: 1.3rem; }
    .offer-text strong { font-size: 1.8rem; }
    .hero-description { font-size: 1rem; }
    .hero-btn {
        font-size: 1rem;
        padding: 12px 30px !important;
    }
    
    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .carousel-control-prev { left: 10px; }
    .carousel-control-next { right: 10px; }
    
    /* Product Section */
    .section-title { font-size: 1.75rem; }
    .product-control-prev,
    .product-control-next {
        width: 40px;
        height: 40px;
    }
    .control-icon i { font-size: 1.2rem; }
    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Footer */
    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-links { justify-content: center; }
    .footer-heading { margin-top: 1rem; }
}

/* Small Mobile Devices */
@media (max-width: 767px) {
    .about-title { font-size: 1.8rem; }
    .category-card { margin-bottom: 1rem; }
    .brand-slide-item { flex: 0 0 calc(50% - 12px); }
    .brand-slider-track { gap: 16px; }
}

/* Extra Small Devices (Mobile Portrait) */
@media (max-width: 575px) {
    .product-slide-item { flex: 0 0 100%; }
    .product-slider-container { padding: 0 50px; }
    .product-slider-track { gap: 16px; }
    .brand-slide-item { flex: 0 0 100%; }
}

/* ============================================
   PRODUCT DETAILS PAGE
   ============================================ */

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card-link:hover {
    transform: translateY(-5px);
}

.product-card-link:hover .product-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product Detail Section */
.product-detail-section {
    background-color: #f8f9fa;
}

/* Sticky Left Side */
.product-images-sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* Product Images Container */
.product-images-container {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

/* Scrollable Right Side */
.product-details-scrollable {
    max-height: none;
    overflow-y: visible;
}

.wishlist-btn-detail {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wishlist-btn-detail:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn-detail.active {
    background: #dc3545;
    color: white;
}

.wishlist-btn-detail i {
    font-size: 20px;
}

.main-product-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    position: relative;
    cursor: crosshair;
}

.main-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.main-product-image:hover img {
    opacity: 0.7;
}

/* Zoom Viewer */
.zoom-viewer {
    position: fixed;
    width: 545px;
    height: 450px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid #dc3545;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-repeat: no-repeat;
    z-index: 9999;
    pointer-events: none;
}

.main-product-image:hover .zoom-viewer {
    opacity: 1;
    visibility: visible;
}

/* Zoom Lens Overlay */
.zoom-lens {
    position: absolute;
    border: 3px solid rgba(220, 53, 69, 0.9);
    background: rgba(220, 53, 69, 0.15);
    width: 150px;
    height: 150px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
    z-index: 5;
}

.main-product-image:hover .zoom-lens {
    opacity: 1;
    visibility: visible;
}

/* Thumbnails */
.thumbnail-track {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.thumbnails-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px;
    scrollbar-width: none;
}

.thumbnails-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: #333;
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.thumbnail-nav {
    width: 35px;
    height: 35px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-nav:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

/* Product Details Container */
.product-details-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-detail-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-brand-detail {
    font-size: 16px;
}

.brand-link-detail {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.brand-link-detail:hover {
    color: #bb2d3b;
    text-decoration: underline;
}

.product-sku-detail {
    font-size: 14px;
    color: #6c757d;
}

.sku-code {
    font-weight: 500;
    color: #333;
}

/* Price Section */
.product-price-detail-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.current-price-detail {
    font-size: 17px;
    font-weight: 500;
    color: #dc3545;
}

.tax-note {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Action Buttons */
.product-actions-detail {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-add-cart-detail {
    flex: 1;
    min-width: 200px;
    padding: 15px 30px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart-detail:hover {
    background: #bb2d3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-place-bid-detail {
    flex: 1;
    min-width: 200px;
    padding: 15px 30px;
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-place-bid-detail:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Shipping Section */
.shipping-section-detail {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.shipping-link,
.info-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.shipping-link:hover,
.info-link:hover {
    color: #004c99;
    text-decoration: underline;
}

/* EMI Options */
.emi-options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.emi-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.emi-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.emi-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.emi-icon i {
    font-size: 20px;
}

.emi-details {
    flex: 1;
}

.emi-details strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.view-plans-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.view-plans-link:hover {
    color: #004c99;
    text-decoration: underline;
}

.razorpay-note {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

/* Delivery Info Box */
.delivery-info-box {
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.delivery-header i {
    font-size: 20px;
}

.delivery-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.delivery-input:focus {
    border-color: #dc3545;
}

.btn-change {
    padding: 10px 20px;
    background: white;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change:hover {
    background: #0066cc;
    color: white;
}

.delivery-details {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.delivery-date {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.delivery-note {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Product Info Alert */
.product-info-alert {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #eee;
    border-left: 4px solid #b7b7b7;
    border-radius: 6px;
}

.product-info-alert i {
    font-size: 20px;
    color: #7a92aa;
    flex-shrink: 0;
}

.product-info-alert p {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

/* ============================================
   KNOW MORE & ADDITIONAL SECTIONS
   ============================================ */

/* Section Heading */
.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Know More Section */
.know-more-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Custom Accordion Styling */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    padding: 18px 20px;
    background: white;
    border: none;
    box-shadow: none !important;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #dc3545;
}

.accordion-button::after {
    margin-left: auto;
    flex-shrink: 0;
}

.accordion-icon {
    font-size: 22px;
    color: #dc3545;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .accordion-icon {
    color: #dc3545;
}

.accordion-body {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.product-features-list,
.usage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li,
.usage-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    color: #333;
}

.product-features-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.usage-list li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    color: #dc3545;
    font-size: 20px;
}

.review-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.rating-stars i {
    font-size: 16px;
}

.view-more-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    color: #004c99;
    gap: 8px;
}

/* Specifications Section */
.specifications-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.specifications-table .table {
    margin: 0;
    background: white;
}

.specifications-table .table td {
    padding: 15px;
    vertical-align: middle;
}

.spec-label {
    font-weight: 600;
    color: #333;
    width: 40%;
    background: #f8f9fa;
}

.spec-value {
    color: #666;
}

.specifications-table .table-bordered {
    border: 1px solid #e0e0e0;
}

.specifications-table .table-bordered td {
    border: 1px solid #e0e0e0;
}

/* ============================================
   ADDITIONAL PRODUCT SECTIONS
   ============================================ */

/* Specification Top Section */
.spec-top-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spec-top-table .table {
    margin: 0;
    background: white;
}

.spec-top-table .table td {
    padding: 15px;
    vertical-align: middle;
}

.spec-top-table .spec-label {
    font-weight: 400;
    color: #333;
    width: 40%;
    background: #f8f9fa;
    text-transform: lowercase;
}

.spec-top-table .spec-value {
    color: #333;
    font-weight: 500;
}

.spec-top-table .table-bordered {
    border: 1px solid #e0e0e0;
}

.spec-top-table .table-bordered td {
    border: 1px solid #e0e0e0;
}

/* Description Section */
.description-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.description-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.description-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    transition: max-height 0.35s ease;
}

.description-content.is-collapsed .description-text {
    max-height: 240px;
    overflow: hidden;
    position: relative;
}

.description-content.is-collapsed .description-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), #f8f9fa);
    pointer-events: none;
}

.description-content p,
.description-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.description-content p:last-of-type,
.description-text p:last-of-type {
    margin-bottom: 15px;
}

.description-content strong,
.description-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.description-additional {
    margin-top: 15px;
}

.description-content .view-more-link {
    margin-top: 10px;
}

/* Highlights Section */
.highlights-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.highlights-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.highlights-list {
    list-style: none;
    counter-reset: highlight-counter;
    padding: 0;
    margin: 0 0 15px 0;
}

.highlights-list li {
    counter-increment: highlight-counter;
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li::before {
    content: counter(highlight-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

/* Products In The Box Section */
.products-inbox-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.products-inbox-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.products-inbox-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.products-inbox-list li {
    position: relative;
    padding: 12px 0 12px 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.products-inbox-list li:last-child {
    border-bottom: none;
}

.products-inbox-list li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
}

/* View More Links */
.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    color: #004c99;
    gap: 8px;
}

.view-more-link i {
    transition: transform 0.3s ease;
}

.view-more-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   PRODUCT LISTING PAGE
   ============================================ */

/* Category Title */
.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Filter Dropdowns */
.filter-dropdown {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    transition: all 0.3s ease;
}

.filter-dropdown:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* View Options */
.view-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-btn {
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #495057;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Sort Options */
.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Product Cashback */
.product-cashback {
    font-size: 12px;
    color: #28a745;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-cashback i {
    font-size: 14px;
}

.preview-btn,
.add-cart-btn {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 7px;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 0;
    white-space: nowrap;
}

.preview-btn {
    background: #fff;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.preview-btn:hover {
    background: #dc3545;
    color: #fff;
}

.add-cart-btn {
    background: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
}

.add-cart-btn:hover {
    background: #c82333;
    border-color: #bd2130;
}

.product-actions-buttons {
    display: flex;
    gap: 8px;
    /* opacity: 0;
    transition: opacity 0.3s ease; */
    opacity: 1;
}
.product-card:hover .product-actions-buttons {
    
}

/* Product Preview Modal - Second Design */
#productModal.modal {
    background: rgba(0, 0, 0, 0.75);
}

#productModal .modal-dialog {
    max-width: 1000px;
}

#productModal .modal-content {
    border-radius: 8px;
    overflow: hidden;
}

#productModal .btn-close {
    position: absolute;
    right: 0px;
    top: -5px;
    z-index: 100;
    opacity: 0.8;
    padding: 10px;
    width: 35px;
    height: 35px;
}

#productModal .btn-close:hover {
    opacity: 1;
}

/* Image Section */
#productModal .modal-image-section {
    background: white;
    padding: 40px 30px 20px;
    position: relative;
    height: 100%;
}

#productModal .modal-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    margin-bottom: 20px;
}

#productModal .modal-main-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

/* Thumbnail Gallery */
#productModal .modal-thumbnail-gallery {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
}

#productModal .thumbnail-list {
    display: flex;
    gap: 10px;
    overflow: hidden;
    flex: 1;
}

#productModal .thumbnail-item {
    width: 60px;
    height: 60px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

#productModal .thumbnail-item.active {
    border-color: #333;
}

#productModal .thumbnail-item:hover {
    border-color: #666;
}

#productModal .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#productModal .thumb-nav {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

#productModal .thumb-nav:hover {
    background: #f5f5f5;
}

/* Details Section */
#productModal .modal-details-section {
    padding: 40px 35px;
    background: white;
}

#productModal .modal-title-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

#productModal .price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

#productModal .modal-tax-text {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Offers Block */
#productModal .modal-offers-block {
    margin-bottom: 20px;
}

#productModal .modal-offers-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

#productModal .modal-offer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

#productModal .modal-offer-row .bi-coin {
    font-size: 16px;
}

#productModal .modal-offer-label {
    color: #555;
    flex: 1;
}

#productModal .modal-cashback-text {
    color: #666;
    font-size: 12px;
}

/* Payment Block */
#productModal .modal-payment-block {
    margin-bottom: 25px;
}

#productModal .payment-box-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

#productModal .payment-box {
    flex: 1;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    gap: 10px;
}

#productModal .payment-box i {
    font-size: 20px;
    flex-shrink: 0;
}

#productModal .payment-info {
    flex: 1;
}

#productModal .payment-method {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}

#productModal .payment-extra {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

#productModal .payment-extra i {
    font-size: 12px;
}

#productModal .payment-count {
    font-size: 11px;
    color: #666;
}

#productModal .payment-view-link {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

#productModal .payment-view-link:hover {
    text-decoration: underline;
}

#productModal .secured-text {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 8px;
}

/* Action Buttons */
#productModal .modal-action-buttons {
    display: flex;
    gap: 12px;
}
.det-img-product-benefit-icon{
    width: 50px;
}
.det-text-product-benefit-label {
  font-size: 12px;
  font-weight: 500;
  color: #262e2e;
}
.det-default-product-benefit-block {
  display: flex;
  align-items: center;
  gap: 5px;
}