/* ===== 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 ===== */
.banner {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Full viewport height for desktop */
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Video Styling ===== */
.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Always fill container */
    object-position: center;
    transform: translate(-50%, -50%);
    filter: brightness(70%) contrast(110%);
    background-color: #000;
}

/* ===== Overlay Content ===== */
.banner-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

/* ===== Elegant Monochrome Button ===== */
.shop-now-btn {
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.shop-now-btn:hover {
    background: #fff;
    color: #000 !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* ===== Tablet View ===== */
@media (max-width: 1100px) {
    .banner {
        height: 90vh;
        /* Slightly reduced for tablets */
    }
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {


    .banner video {
        object-fit: cover;
        /* Keep full-screen look */
        width: 100%;
        height: 100%;
        filter: brightness(75%) contrast(110%);
    }

    .banner-overlay {
        bottom: 12%;
        /* Lifted slightly for better visibility */
        width: 90%;
    }

    .shop-now-btn {
        font-size: 1rem;
        padding: 12px 30px;
        border-width: 1.5px;
    }
}

/* ===== Section Header ===== */
.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.section-title::after {
    content: " 🚀";
}

/* ===== Product Grid (No gaps) ===== */
.row.no-gaps {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gaps>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

/* ===== Product Card ===== */
.product-card {
    position: relative;
    background: var(--main-color);
    border: 1px solid #000000;
    overflow: hidden;
    transition: none;
    height: 100%;
    /* make it stretch full height of the column */
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease-in-out;
}

.row.no-gaps .col-md-3:last-child .product-card {
    border-right: none;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-image img {
        height: 250px;
    }
}

/* ===== Badge ===== */
.badge-tag {
    position: absolute;
    bottom: 10px;
    /* was top: 10px */
    right: 10px;
    /* was left: 10px */
    background: #000;
    font-size: 11px;
    font-weight: 600;
    color: #FFF;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    /* ensure it stays above hover images */
}

/* ===== Product Info ===== */
.product-info {
    padding: 12px 10px 18px;
    text-align: left;
}

a {
    color: unset !important;
}

.product-title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    white-space: nowrap;
    /* Force single line */
    overflow: hidden;
    /* Hide overflow text */
    text-overflow: ellipsis;
    /* Add ... at the end */
    display: block;
}

.price-box {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.old-price {
    color: #b5b5b5;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
    margin-left: 5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.size-options span {
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 11px;
    padding: 2px 6px;
    cursor: pointer;
    transition: 0.2s;
}

.size-options span:hover {
    background-color: #000;
    color: #fff;
}

/* Hide hover image initially */
.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

/* Badge should always stay visible */
.product-image .badge-tag {
    position: absolute;
    bottom: 10px;
    /* changed from top:10px */
    right: 10px;
    /* changed from left:10px */
    background: #000;
    color: #FFF;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    z-index: 2;
    /* ✅ Above hover image */
}

/* On hover, show 2nd image and fade out 1st */
.product-card:hover .product-image .hover-img {
    opacity: 1;
}

.product-card:hover .product-image .primary-img {
    opacity: 0;
}

/* ===== 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 */


/* ===== 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;
    /* T-Sattai 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);
}

.mod-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.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: -5px;
}

.carousel-control-next {
    right: -5px;
}

/* ========= 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);
}


.s-btn {
    border: 1px solid #fff !important;
    color: #fff;
    border-radius: 0%;
}

.s-btn:hover {
    border: 1px solid black !important;
    background-color: #000 !important;
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

button.btn.m-2.s-btn.selected {
    border: 1px solid black !important;
    background-color: #000 !important;
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.chart-btn {
    background-color: #f6f6f6 !important;
}

.chart-btn:hover {
    background-color: #f6f6f6 !important;
    opacity: 0.8 !important;
}

/* ========= 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 CONTAINER ===== */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: none;
    /* background: #fff; */
    height: 150px;
    width: 150px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== IMAGE ===== */
.category-card img {
    width: 100%;
    height: 100%;
    /* Reduced desktop height */
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

/* ===== OVERLAY ===== */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

/* ===== CATEGORY TITLE ===== */
.category-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.category-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== LIGHT EFFECT ===== */
.category-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

/* ===== RESPONSIVE HEIGHTS ===== */
@media (max-width: 1199px) {
    .category-card img {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .category-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .category-card img {
        height: 190px;
    }

    .category-title {
        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;
}


/* -------  */

@media (min-width: 1500px) {
    .product-image img {
        width: 100%;
        height: 550px;
        display: block;
        object-fit: cover;
        transition: opacity 0.4s ease;
    }

    .custom-video {
        width: 100%;
        height: 500px !important;
        object-fit: cover !important;
        border-radius: 15px;
        display: block;
    }

    .category-card img {
        width: 100%;
        height: 100%;
        /* Reduced desktop height */
        object-fit: cover;
        border-radius: 4px;
        transition: transform 0.6s ease;
    }

    .category-card {
        position: relative;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: none;
        /* background: #fff; */
        height: 200px;
        width: 200px;
    }

    .category-title {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 1px;
    }
}

.banner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 120vh !important;
    pointer-events: none;
    border: none;
}

/* make sure parent for absolute fallback has a positioning context */
.sticky-sidebar-col {
    position: relative;
}

/* CSS sticky only on desktop */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: -webkit-sticky;
        /* Safari */
        position: sticky;
        top: 90px;
        /* adjust to your fixed navbar height */
        align-self: flex-start;
        /* useful inside flex row */
        padding-right: 30px;
    }
}

/* disable sticky for smaller screens */
@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: static !important;
        top: auto;
        width: 100% !important;
    }
}


.det-pro-img {
    width: 100%;
    height: 90vh;
}

.det-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.share-icon a img {
    object-fit: contain;
}

.share-icon a:hover {
    opacity: 0.7;
}

.card-item .dropdown-menu {
    position: absolute !important;
}

.custom-dropdown {
    background: #000;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 9px 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-radius: 6px; */
    cursor: pointer;
}

.custom-dropdown:focus {
    box-shadow: none;
}

.custom-menu {
    background: #000;
    border: 1px solid #fff;
    border-radius: 5px;
}

.custom-menu .dropdown-item {
    color: #fff !important;
}

.custom-menu .dropdown-item:hover {
    background: #222 !important;
}

.custom-arrow {
    font-size: 12px;
    color: #fff;
}

.quickadd-tag {
    display: none;
    position: absolute;
    padding: 8px;
    bottom: 0%;
    width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.568);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 2;
    transition: all 0.5s ease-in-out;
    /* border-radius: 20px; */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0); */
}

.product-card:hover .quickadd-tag {
    display: block;
    transition: all 0.5s ease-in-out;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh !important;
    overflow: hidden;
}

/* Background Image */
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Gradient + Content */
.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    color: white;
    text-align: center;
    background-image: linear-gradient(180deg, #0000003b 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem !important;
    font-weight: bold;
}

.hero-content h2 {
    width: 70%;
}

/* home page gallery - */
.gallery-abt {
    column-count: 3 !important;
    column-gap: 6px;
}

.gallery-abt img {
    width: 100%;
    /* border-radius: 8px; */
    margin-bottom: 7px;
    transition: transform 0.3s;
}

.gallery-abt img:hover {
    opacity: 0.4;
}

/* keep desktop behavior */
.shop-items {
    position: fixed;
    top: 17.5%;
    background-color: #232323;
    width: 100%;
    z-index: 30;
}

/* Backdrop */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

/* Prevent body scroll while modal open */
body.custom-modal-open {
    overflow: hidden;
}

/* ensure modal/backdrop are hidden before JS runs (prevents flash) */
.custom-modal-backdrop,
.custom-bottom-modal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* shown state */
.custom-modal-backdrop.active,
.custom-bottom-modal.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* z-index safety */
.custom-modal-backdrop {
    z-index: 1040;
}

.custom-bottom-modal {
    z-index: 1050;
}

/* Positioning for desktop/mobile remains your original styling */


/* Modal base */
.custom-bottom-modal {
    position: fixed;
    left: 0;
    width: 100%;
    background: #181818;
    z-index: 1050;
}

/* container acts like the hero / section — NOT fixed to viewport */
.video-background {
    position: relative;
    /* flows with page */
    width: 100%;
    height: 80vh;
    /* your desired visible height */
    overflow: hidden;
    z-index: 0;
    background: black;
    /* fallback while loading */
}



/* Slide/center animation */
.custom-bottom-modal.active {
    display: block;
    animation: slideUp 0.35s ease-out;
}

/* Desktop center */
@media (min-width: 769px) {
    .custom-bottom-modal {
        top: 50%;
        left: 50%;
        width: 50%;
        transform: translate(-50%, -50%);
        height: auto;
        border-radius: 10px;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translate(-50%, -60%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }
}



/* Size button selected state */
.modal-size-btn.selected {
    border: 2px solid #000;
    background: #f2f2f2;
}

.qa-modal-close {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 25;
    color: #fff;
    border: none;
    font-size: 32px;

    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cartBtn1 {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

.cartBtn1:hover {
    color: #000;
    background-color: #fff;
}

/* Ensure modal hidden on mobile (optional extra safety).
   This prevents modal being shown at all on narrow screens. */
@media (max-width: 768px) {
    .custom-bottom-modal {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}


.ls {
    letter-spacing: 1.5px;
    font-size: 15px;
}

@media (max-width: 992px) {
    .gallery-abt {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-abt {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-abt {
        column-count: 2;
    }
}


@media (max-width: 660px) {
    .banner iframe {
        width: 100vw;
        height: 120vh !important;
        border: none;
    }

    .border-end {
        border-right: unset !important;
        border-bottom: 1px solid white;
    }
}


/* Modal popup container - hidden by default */
.ad-pop-up {
    position: fixed;
    /* Fix on screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark semi-transparent background */
    z-index: 9999;
    /* On top of everything */

    /* HIDE popup initially */
    display: none;

    /* Flex container to center content */
    justify-content: center;
    align-items: center;
}

/* Show popup when active */
.ad-pop-up.active {
    display: flex;
}

/* Popup white box */
.pop-up-wrapper {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}

/* Close button styling */
.ad-pop-up-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    background-color: #0b0b0b;
    color: #FFF;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Layout inside popup */
.pop-up-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

/* Image section */
.pop-up-image {
    flex: 1;
    min-width: 300px;
}

.pop-up-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text section */
.pop-up-text {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.pop-up-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pop-up-text p {
    font-size: 1rem;
    color: #333;
}

/* Disable scrolling on body when modal open */
.no-scroll {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pop-up-row {
        flex-direction: column;
    }

    .pop-up-image {
        height: 200px;
    }

    .pop-up-text {
        padding: 20px;
        text-align: center;
    }
}

/* keep desktop behavior */
.shop-items {
    position: fixed;
    top: 17.5%;
    background-color: #232323;
    width: 100%;
    z-index: 30;
}


/* Mobile: horizontal scroll for categories */
@media (max-width: 830px) {
    .shop-items {
        top: auto;
        /* adjust as needed on mobile */
        /* optionally use sticky if you want it to stick to top */
        /* position: sticky; top: 0; */
    }

    /* keep desktop behavior */


    /* make the left item not grow, and the categories take remaining space */
    .shop-items .view-all {
        flex: 0 0 auto;
        /* don't grow or shrink */
        margin-right: 12px;
    }

    .shop-items .categories {
        flex: 1 1 auto;
        /* take remaining space */
        min-width: 0;
        /* important to allow overflow inside flex */
        overflow-x: auto;
        /* enable horizontal scrolling here */
        -webkit-overflow-scrolling: touch;
        /* smooth scrolling on iOS */
    }

    /* style the UL so items stay in one row */
    .shop-items .categories ul {
        display: flex;
        /* horizontal row */
        flex-wrap: nowrap;
        /* prevent wrapping */
        gap: 1rem;
        margin: 0;
        padding: 0;
        list-style: none;
        white-space: nowrap;
    }

    .shop-items .categories ul li {
        flex: 0 0 auto;
        /* each item keeps its width */
    }

    /* hide default scrollbar but keep scrolling available */
    .shop-items .categories::-webkit-scrollbar {
        height: 3px;
    }

    .shop-items .categories::-webkit-scrollbar-thumb {
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.12);
    }

    /* or hide completely: .shop-items .categories::-webkit-scrollbar { display:none; } */

    /* make anchors not take full width */
    .shop-items .categories a {
        display: inline-block;
        padding: 6px 8px;
        white-space: nowrap;
    }
}

.bor-top-bot {
    border-top: 1px solid #3f3e3e;
    border-bottom: 1px solid #3f3e3e;
}

.ls {
    letter-spacing: 1.5px;
    font-size: 15px;
}

@media (max-width: 992px) {
    .gallery-abt {
        column-count: 3;
    }
}

@media (min-width:1800px) and (max-width:2000px) {
    .shop-items {
        position: fixed;
        top: 11.6% !important;
    }
}

@media (min-width:1600px) and (max-width:1800px) {
    .shop-items {
        position: fixed;
        top: 13% !important;
    }
}

@media (min-width:1500px) and (max-width:1600px) {
    .shop-items {
        position: fixed;
        top: 14% !important;
    }
}


@media (min-width:1300px) and (max-width:1500px) {
    .shop-items {
        position: fixed;
        top: 15.6% !important;
    }
}


@media (min-width:770px) and (max-width:1030px) {
    .shop-items {
        position: fixed;
        top: 9% !important;
    }
}



@media (max-width: 768px) {
    /* fix Whatsapp */
    .fix-whatsapp {
        position: fixed;
        bottom: 80px;
        right: 18px;
        z-index: 100;
    }

    .gallery-abt {
        column-count: 2;
    }

    /* ===== Section Header ===== */
    .section-title {
        text-align: center;
        font-weight: 700;
        font-size: 19px;
        margin-top: 40px;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* make iframe behave like a cover background by enlarging & centering it */
    .video-background .bg-iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateY(var(--y-offset, 0%));
        /* make the iframe bigger than container so it can be cropped */
        min-width: 120%;
        min-height: 120%;
        width: auto !important;
        height: auto !important;
        border: 0 !important;
        pointer-events: none;
        /* prevent clicks */
        /* smooth scaling on resize */
        will-change: transform;
    }

    /* optional: reduce hints of chrome on mobile by hiding overflow on html/body */
    html, body {
        height: 100%;
        margin: 0;
    }

    /* utility helpers you can toggle from JS if needed */
    .video-background.hide-controls * {
        pointer-events: none;
    }

}

@media (max-width: 480px) {
    .gallery-abt {
        column-count: 2;
    }
}

@media (max-width: 380px) {
    .shop-items {
        position: fixed;
        top: 15.8% !important;
    }
}

@media (max-width: 365px) {
    .shop-items {
        position: fixed;
        top: 13.8% !important;
    }
}


@media (max-width: 660px) {
    .banner iframe {
        width: 100vw;
        height: 120vh;
        border: none;
    }

    .border-end {
        border-right: unset !important;
        border-bottom: 1px solid white;
    }

    .shop-items {
        position: fixed;
        top: 11.5%;
        background-color: #232323;
        width: 100%;
        z-index: 30;
        font-size: 12px !important;
    }
}

@media screen and (max-width:660px) {
    .custom-bottom-modal {
        bottom: 0;
        min-height: unset;
        height: unset;
    }
}