:root {
    --section-gap: 60px;
    --title-gap: 30px;
    --product-gap: 20px;
    --brand-primary: #f89421;
    --brand-secondary: #0a0a0a;
    --heading-dark: #1a1a2e; /* Sophisticated Dark Navy */
}

@media (max-width: 768px) {
    :root {
        --section-gap: 40px;
        --title-gap: 20px;
        --product-gap: 15px;
    }
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Center content */
.preloader-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Smooth single animation for logo */
.preloader-logo {
    width: 130px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeZoomIn 2s ease-in-out forwards;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Keyframes for one-time animation */
@keyframes fadeZoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    60% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Optional: smaller logo for mobile */
@media (max-width: 576px) {
    .preloader-logo {
        width: 100px;
    }
}

/* Banner Section */

/* Carousel Container */
.carousel {
    margin-top: 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slides */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

/* ===== Section Header ===== */
.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-top: 60px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #c2272d;
    position: relative;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) skew(-20deg);
    width: 60px;
    height: 4px;
    background: #c2272d54;
    box-shadow: 0 2px 10px rgba(248, 148, 33, 0.4);
}

/* ===== Product Grid (No gaps) ===== */
.row.no-gaps {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gaps > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* ============================================
   BANNER & HERO TYPOGRAPHY
============================================ */
.banner-overlay-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 10;
    max-width: 650px;
    pointer-events: none;
}

.banner-caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    color: #f8931f;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.banner-title-xl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 5px 25px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #f8931f;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border-radius: 4px;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
}

.banner-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ============================================
   PRODUCT CARD
============================================ */
.product-card {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    /* Premium shadow */
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    /* Smooth animation */
    /* transition: transform 0.35s ease, box-shadow 0.35s ease; */
    padding: 7px;
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Image container */
.product-image {
    position: relative;
    overflow: hidden;
}

/* Image styling */
.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image zoom on hover */
.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Responsive image */
@media (max-width: 768px) {
    .product-image img {
        height: 200px;
    }
}

/* ============================================
   BADGE STYLE
============================================ */
.badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 15;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.badge-bestseller {
    background: #f89421;
    color: #fff !important;
}

.badge-featured {
    background: #000;
    color: #fff !important;
}

.badge-tag i {
    font-size: 11px;
}

/* ============================================
   PRODUCT INFO
============================================ */
.product-col {
    padding: calc(var(--product-gap) / 2);
}

.product-info {
    padding: 14px 5px 0px;
}

/* Title */
.product-title {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-bottom: 6px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price */
.price-box {
    font-size: 15px;
    font-weight: 700;
    color: #ff6200;
    display: flex;
    align-items: center;
    gap: 6px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
}

/* ============================================
   PRODUCT BUTTON
============================================ */
.product-btn-box {
    margin-top: 10px;
    text-align: center;
}

.product-btn {
    text-decoration: none;
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 10px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.3s ease;
}

/* Hover: yellow background + slight lift */
.product-btn:hover {
    background: #f8931f;
    color: #000;
    transform: translateY(-3px);
}

/* Wishlist icon container */
.product-image .wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f89421;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none !important;
}

.product-image .wishlist-icon i {
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-bottom: none !important;
    text-decoration: none !important;
}

/* Default hover effect */
.product-image .wishlist-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
    background: #fff;
    color: #f89421;
    text-decoration: none !important;
}

.product-image .wishlist-icon:hover i {
    transform: scale(1.1);
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Filled heart styling */
.product-image .wishlist-icon .filled {
    color: #f89421;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .product-image .wishlist-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .product-image .wishlist-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn img {
    width: 28px;
    height: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Show 2 per row on mobile instead of 1 */
@media (max-width: 575px) {
    .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.story-content {
    background-color: #000;
    color: #fff;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e5e5e5;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .our-story-section {
        flex-direction: column;
    }

    .story-content {
        padding: 40px 25px;
    }

    .story-content h2 {
        font-size: 28px;
    }
}

/* ===== Common Policy Page Styles ===== */

.policy-container {
    line-height: 1.8;
    color: #333;
    background: #fff;
}

.policy-title {
    font-size: 2rem;
    color: #000;
    text-transform: uppercase;
}

.policy-intro {
    font-size: 1rem;
    color: #444;
}

.policy-section h5 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-section ul {
    padding-left: 1.2rem;
}

.policy-section ul li {
    margin-bottom: 0.4rem;
}

.policy-section p {
    color: #444;
}

.policy-container a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: #ff6600;
    /* JS Auto Lighting accent color */
}

@media (max-width: 576px) {
    .policy-container {
        padding: 1.5rem;
    }

    .policy-title {
        font-size: 1.6rem;
    }
}

/* fix Whatsapp */
.fix-whatsapp {
    position: fixed;
    bottom: 75px;
    right: 25px;
    z-index: 100;
}

.in-fix-whatsapp {
    text-decoration: unset;
    width: 44px;
    /* updated */
    height: 44px;
    /* updated */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    /* WhatsApp green */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    color: white;
    font-size: 20px;
    /* adjusted for 44px button */
}

.in-fix-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Video Slider */
/* ========= CURSOR INTERACTION ========= */
.cursor-pointer {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cursor-pointer:hover {
    transform: scale(1.05);
}

/* ========= MODAL BUTTONS INSIDE BODY ========= */
.modal-body button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    transition:
        background 0.3s ease,
        transform 0.2s ease;
}

.modal-body button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-dialog-centered {
    justify-content: center !important;
}

/* ========= MODAL BODY ========= */
.modal-body {
    padding: 0 !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0 !important;
    background: transparent;
}

/* ========= MODAL CONTENT ========= */
.modal-content {
    background-color: transparent;
    max-width: 500px !important;
    border: none;
    box-shadow: none;
}

/* ========= MODAL VIDEO ========= */
.modal-video {
    width: 80%;
    max-width: 340px;
    height: 500px !important;
    aspect-ratio: 9/16;
    border-radius: 15px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background: #ccc;
    padding: auto;
}

.modal-video:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

/* ========= CAROUSEL CONTROLS ========= */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%) scale(1.1);
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #000000;
    transform: translateY(-50%) scale(1.15);
}

/* ========= ICON STYLING INSIDE CAROUSEL ========= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Custom visible arrow icons */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11 1L3 8l8 7'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E");
}

/* Hover state: white arrow on black background */
.carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11 1L3 8l8 7'/%3E%3C/svg%3E");
}

.carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E");
}

/* ========= CAROUSEL ARROW POSITION ========= */
.carousel-control-prev {
    left: -35px;
}

.carousel-control-next {
    right: -35px;
}

/* ========= RESPONSIVE CAROUSEL POSITION ========= */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }
}

/* ========= CUSTOM CLOSE BUTTON ========= */
.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 65px;
    z-index: 25;
    background-color: rgba(255, 255, 255, 0.85);
    color: #111;
    border: none;
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.custom-close-btn:hover {
    background-color: #111;
    color: #fff;
    transform: rotate(90deg) scale(1.05);
}

/* ========= MODAL BODY HOVER FOR ARROWS ========= */
.modal-body:hover .custom-prev-btn,
.modal-body:hover .custom-next-btn {
    opacity: 1;
}

/* ========= VIDEO CARD DISPLAY STYLE ========= */
.custom-video {
    width: 100%;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 15px;
    display: block;
}

/* ========= CUSTOM NEXT/PREV BUTTONS ========= */
.custom-prev-btn,
.custom-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    color: #111;
    border: 2px solid rgba(0, 0, 0, 0.05);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Left and Right Placement */
.custom-prev-btn {
    left: 24px;
}

.custom-next-btn {
    right: 24px;
}

/* Hover Effect */
.custom-prev-btn:hover,
.custom-next-btn:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Active Click Effect */
.custom-prev-btn:active,
.custom-next-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* ========= CLOSE BUTTON INSIDE HEADER ========= */
.modal-header .btn-close {
    filter: invert(1);
}

/* ========= RESPONSIVE MEDIA QUERIES ========= */
@media (max-width: 992px) {
    .modal-video {
        width: 90%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .custom-prev-btn,
    .custom-next-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .custom-prev-btn {
        left: -25px;
    }

    .custom-next-btn {
        right: -25px;
    }

    .custom-close-btn {
        top: 20px;
        right: -3%;
    }
}

@media (max-width: 576px) {
    .modal-video {
        width: 95%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .custom-prev-btn,
    .custom-next-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .custom-video {
        height: 280px !important;
    }
}

/* ========= VIDEO SIZE FOR MID SCREENS ========= */
@media (max-width: 992px) {
    .custom-video {
        height: 280px;
    }
}

/* =============================
   CATEGORY CARD
============================= */
.auto-light-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    transition: all 0.5s ease;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.auto-light-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 30 0 12px 30px rgba(0, 0, 0, 0.5),
        px rgba(255, 40, 0, 0.45);
}

/* =============================
   IMAGE STYLING
============================= */
.auto-light-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.6s ease;
    border-radius: 20px;
    filter: brightness(0.85);
}

.auto-light-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* =============================
   LIGHT OVERLAY
============================= */
.auto-light-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.auto-light-card:hover::after {
    opacity: 1;
}

/* =============================
   CATEGORY TITLE
============================= */
.auto-light-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 4px rgba(248, 148, 33, 0.2));
}

/* Overlay container */
.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

/* =============================
   NEON EDGE LIGHT
============================= */
.auto-light-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(
        circle,
        rgba(255, 70, 0, 0.25),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.auto-light-card:hover::before {
    opacity: 1;
}

/* =============================
   RESPONSIVE HEIGHTS
============================= */
@media (max-width: 1199px) {
    .auto-light-card img {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .auto-light-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .auto-light-card img {
        height: 185px;
    }

    .auto-light-text {
        font-size: 1rem;
    }
}

/* ===== GRID FIX FOR 5-COL LAYOUT ===== */
@media (min-width: 1200px) {
    .col-xl-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* ==================== SMOOTH MARQUEE ==================== */
.scroll_div_marquee_box {
    overflow: hidden;
    background: #000;
    border: 1px solid #181818;
    padding: 10px 0;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.marquee-group {
    display: flex;
}

.marquee-group span {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 0 25px;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.marquee-group strong {
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
    /* accent red */
}

/* ✅ Smooth infinite scroll effect */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ✅ Pause on hover */
.scroll_div_marquee_box:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive tuning */
@media (max-width: 768px) {
    .marquee-group span {
        font-size: 13px;
        padding: 0 18px;
    }
}

/* form contl */
.form-control:focus {
    box-shadow: unset !important;
}

.features-bar {
    background: #f8f5f3;
    border-top: 1px solid #f8f5f3;
    border-bottom: 1px solid #f8f5f3;
}

.feature-icon {
    font-size: 30px;
    color: #d4a736; /* gold */
    margin-bottom: 10px;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #333;
}

.feature-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.help-section {
    background: var(--brand-secondary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(248, 148, 33, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(248, 148, 33, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.help-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.help-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: var(--brand-primary);
}

.help-icon {
    font-size: 60px;
    color: var(--brand-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(248, 148, 33, 0.3));
}
.help-section h1.fw-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.help-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.help-link a {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Default — Show Desktop Image / Hide Mobile */
.desktop-img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-img {
    display: none;
    width: 100%;
    height: auto;
}

/* Mobile Screen */
@media only screen and (max-width: 768px) {
    .desktop-img {
        display: none;
    }
    .mobile-img {
        display: block;
    }
}

/* ---------- Global Breadcrumb ---------- */
.breadcrumb {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.breadcrumb-item a {
    color: #888 !important;
    text-decoration: none !important;
}

.breadcrumb-item.active {
    color: #000 !important;
    font-weight: 900 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    color: #ccc !important;
    padding: 0 10px !important;
    font-weight: 300;
}

.breadcrumb-item a:hover {
    color: #f89421 !important;
    font-weight: 800;
}

@media (max-width: 992px) {
    .breadcrumb {
        font-size: 10px !important;
        letter-spacing: 0.8px !important;
        flex-wrap: wrap !important;
    }

    .breadcrumb-item {
        white-space: normal !important;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }
}

/* ---------- Shop Filters ---------- */
.shop-controls {
    padding-bottom: 0px;
    margin-bottom: 40px;
}

.sort-select {
    width: auto;
    min-width: 200px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ddd;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: #000;
}

.sort-select:focus {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    border-color: #000;
    outline: none;
}

@media (max-width: 768px) {
    .shop-controls {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-bottom: 30px;
    }

    .sort-box {
        flex: 1;
    }

    .sort-select {
        min-width: 100%;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 900;
        padding: 10px 5px;
        text-align: left;
    }
}

/* Product Performance & Specs Title */
.performance-specs-title {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #f89421 !important; /* Orange text */
    background-color: #000; /* Black background */
    display: table;
    margin: 40px 0 25px;
    padding: 10px 40px 10px 20px;
    text-align: left;
    text-transform: uppercase;
    border-left: 4px solid #f89421; /* Adding an orange left border for extra detail */
}



@media (max-width: 768px) {
    .performance-specs-title {
        font-size: 14px !important;
        padding: 8px 30px 8px 15px;
    }
}


