

/* =======================================================
   UI/UX POLISH & RESPONSIVENESS OVERRIDES
   ======================================================= */

body { overflow-x: hidden; }

/* --- Fix Container Width that was hardcoded to 1439px --- */
.container { 
    max-width: 100% !important; 
    width: 100% !important;
    padding-left: 15px !important; 
    padding-right: 15px !important; 
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 576px) { .container { max-width: 540px !important; padding-left: 0; padding-right: 0; } }
@media (min-width: 768px) { .container { max-width: 720px !important; } }
@media (min-width: 992px) { .container { max-width: 960px !important; } }
@media (min-width: 1200px) { .container { max-width: 1140px !important; } }
@media (min-width: 1400px) { .container { max-width: 1320px !important; } }

/* --- Spacing & Padding Standardizations --- */
.banner { padding: 120px 0 !important; }
.banner_details { position: relative !important; top: 0 !important; margin: 0 auto; text-align: center; }
.action { padding: 80px 0 !important; }
.artist, .cheif, .view, .blogs, .blog { padding: 80px 0 !important; }

/* Ensure grids wrap correctly on mobile */
.row {
    flex-wrap: wrap;
}

/* --- Buttons Polish (Consistent rounded, smooth hover) --- */
.bttn, .btnn, .add, .shop {
    border-radius: 8px !important; 
    transition: all 0.3s ease-in-out !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.bttn:hover, .btnn:hover, .add:hover, .shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* --- Card & Image UI Polish --- */
.most_box {
    border-radius: 16px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    overflow: hidden;
}
.most_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.img_view img {
    border-radius: 12px;
}
.blog_box {
    margin-bottom: 30px;
    cursor: pointer;
}
.blog_box img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.blog_box:hover img {
    transform: scale(1.02);
}

.cheif_details {
    padding: 20px;
}

.footer_box .col-lg-3 {
    margin-bottom: 25px;
}
footer .lists ul li {
    padding: 6px 0;
}
footer .lists ul li a {
    transition: color 0.3s ease;
}
footer .lists ul li a:hover {
    color: #ffd700 !important;
}

/* Make images fluid */
.imgs img, .artss img {
    max-width: 100%;
    height: auto;
}

/* Fix text breaking on mobile */
@media (max-width: 768px) {
    .banner_details .main_heading { font-size: 32px !important; line-height: 40px !important; }
    .banner_details p { width: 100% !important; padding: 0 15px; }
}

html {
        scroll-snap-type: y mandatory;
    }

    /* section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
} */

    body {
        background-color: #FBF7ED !important;
        color: #111111 !important;
    }


    body.dark-mode {
        background-color: #282828 !important;
        color: white !important;
    }

    .dark-bg-black {
        background-color: #111111 !important;
    }

    .dark-text-white {
        color: white !important;
    }

    .dark-bg-white {
        background-color: #FBF7ED !important;
    }

    .dark-text-black {
        color: #111111 !important;
    }


    .dark-btn-black {
        background-color: black !important;
        color: white !important;
        border: 2px solid white !important;
    }

    .dark-btn-white {
        background-color: white !important;
        color: black !important;
        border: 2px solid black !important;
    }



    .dark-icon {
        filter: invert(1);
    }

    .dark-hamburger {
        background-color: #FBF7ED !important;
        color: black !important;
        width: 34%;
    }



    .cards img {
        width: 100%;
        height: 20vh;
    }

    .cards h4 {
        text-align: start;
    }

    .cards p {
        text-align: start;
        line-height: 7px;
    }

    /* Main Switch Button */
    .theme-switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 30px;
    }

    /* Hide Default Checkbox */
    .theme-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* Slider (Switch Background) */
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ddd;
        transition: 0.4s;
        border-radius: 30px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 3px;
    }

    /* Moving Circle */
    .slider::before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
        left: 3px;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    /* Icons Inside the Switch */
    .slider i {
        font-size: 14px;
        position: absolute;
        transition: opacity 0.4s ease-in-out;
    }

    .slider .bi-sun {
        left: 8px;
        color: #000;
        opacity: 1;
        top: 5px;
    }

    .slider .bi-moon {

        color: #000;
        left: 40px;
        opacity: 0;
    }

    /* Dark Mode Active */
    input:checked+.slider {
        background-color: #222;
    }

    /* Move Circle to Right */
    input:checked+.slider::before {
        transform: translateY(-50%) translateX(30px);
    }

    /* Hide Sun & Show Moon in Dark Mode */
    input:checked+.slider .bi-sun {
        opacity: 0;
    }

    input:checked+.slider .bi-moon {
        opacity: 1;
    }













    /* [data-theme="light"]  .navbar1{
    background-color: #111111;
  }


  [data-theme="light"]  .heading{
    color: #ffffff;
  }  
[data-theme="light"] .navbar {
  background-color: #ffffff;
  
}

[data-theme="dark"] .navbar {
  background-color: #111111;

}

[data-theme="light"] .navbar .menu-icon {
    color: #000;
}


[data-theme="light"] .light_bg {
  background-color: #111111;
 
}


[data-theme="light"] .light_text {
  color: #ffffff;

}
[data-theme="light"] .ecommerce-icons .bttn {
    margin-left: 25px;
    background-color: #111111;
    font-family: 'myfont' !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    padding: 8px 22px;
}


[data-theme="light"] .ecommerce-icons i{
  color: #000;
} */

    @media (min-width: 600px) and (max-width: 1024px) {
        .menu-icon {
            font-size: 3.5rem;
            cursor: pointer;
        }


        .banner2 {
            z-index: 99;
            display: block;
            padding: 30px 0;
            height: 35vh;
            width: 100%;
            background-color: #000000;
            position: relative;
            background-image: url('../images/homebn.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
        }

        .banner_details {
            position: absolute;
            top: 112px;
            left: 84px;
        }

        .banner_details .main_heading {
            font-size: 50px;
        }

        .banner_details .main_heading .small {
            font-size: 19px;
            margin-right: 15px;
            padding-left: 150px;
        }

        .banner {
            display: none;
        }

        .navbar1 {
            display: none;
        }

        .ecommerce-icons {
            display: none;
        }

        li span {
            background-color: transparent !important;
            font-size: 21px;
            padding: 8px 0px;
        }

        .action {
            padding: 50px 0;
        }

        .cheif {
            padding: 50px 0px;
        }

        .cheif .cheif_details h2 {
            font-size: 30px;
            padding-top: 69px;
        }

        .most .col-lg-4 {
            padding-bottom: 30px;
        }

        .came {
            height: 40vh;

        }

        .banner_heading {
            font-size: 30px;
            line-height: 54px;
        }

        .view {
            background-color: #FBF7ED;
            padding: 50px 0px;
        }

        .main_head {
            font-size: 20px;

        }

        .blogs .blog_box>h2 {
            margin-top: 14px;
        }






    }




    @media (max-width: 600px) {
        .banner_heading {
            font-family: 'myfont' !important;
            text-transform: uppercase;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            line-height: 37px;
        }

        .banner_pera {
            color: #fff;
            font-size: 10px;

            line-height: 22px;
        }

        .came {

            width: 100%;
            height: 30vh !important;

        }


        .blogs {
            padding: 30px 0px;
            background-color: #FBF7ED;
        }

        .blogs .blog_box>img {
            width: 100%;
            height: 50vh;
        }

        .blogs .blog_box>h2 {
            margin-top: 25px;
            font-family: 'myfont' !important;
            color: #000000;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 25px;
        }

        .fliter {
            padding-bottom: 30px;

        }


        .fliter .filter_btnn .filter_col ul li {
            display: inline-block;
            padding: 10px 0px;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .fliter .filter_btnn .filter_col a {
            padding: 6px 16px;
            font-size: 10px;

        }

        .photo-gallery {
            padding: 31px 0px !important;
        }

        .photo-gallery .gallery-item {
            height: 17vh;
        }

        .photo-gallery .gallery-item img {
            margin-top: 10px;
        }

        .catergory>img {
            width: 100%;
            height: 100%;
        }

        .boxes .art .catergory h3 {
            padding-top: 26px;

        }

        .profile .blog_box>h2 {
            margin-top: 11px;
            font-size: 12px;


        }

        .news {
            padding: 30px 0px;

        }

        .news .editor h3 {
            font-size: 12px;

        }



        .hide {
            display: none !important;
        }

        .news .editor img {
            width: 100%;
            height: 100%;
        }

        .news .editor .detials h2 {
            font-size: 14px;

            line-height: 27px;

        }

        .news .editor .detials {
            background-color: #E4E1D8;
            padding: 20px;
            height: auto;
        }

        .pagination-lg .page-link {
            /* padding: 10px 10px; */
            font-size: 17px;
            padding-left: 34px;
        }

        .markets {
            margin-top: 20px;
        }

        .market,
        .market2,
        .market3 {
            padding: 25px 20px 20px 20px;
            margin-top: 25px;
            margin-bottom: 30px;

        }

        footer .h5 {
            margin-top: 10px;
            font-size: 8px;
        }

        .detial .editor .detialss h2 {

            font-size: 14px;

        }

        .detial .editor .detialss {
            padding: 20px;
            height: auto;
        }

        .detial .editor .detialss .pricess .purchase {
            padding: 6px;

        }

        .detial .editor .detialss h3 {

            font-size: 12px;

        }

        .detial .editor .detialss p {

            font-size: 9px;

        }

        .detial .editor .detialss .price {

            margin-top: 25px;

        }

        .detial .editor .detialss .pricess .offer {
            padding: 6px;

        }

        .subscribe .subscrbes {
            width: 100%;
        }

        .subscribe p {
            font-size: 10px;
        }

        .subscribe .cardz {
            padding: 20px 10px;

            height: auto;

        }

        .subscribe .cardz p {
            font-size: 10px;

        }

        .subscribe .cardz ul {}

        .subscribe .cardz ul li {
            padding: 6px 0px;
            font-size: 10px;


        }

        .subscribe .cardz a {
            padding: 8px 20px;


        }

        .get {
            margin-top: 30px;
        }

    }

.notif-wrap {
        position: relative;
        top: 6px;
    }

    .notif-wrap .notif-btn {
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0;
        padding: 0;
        border-radius: 10px;
        transition: background .15s, transform .06s;
    }

    .notif-wrap .notif-btn:focus {
        outline: 2px solid rgba(37, 99, 235, .18);
        outline-offset: 2px
    }

    .notif-wrap .notif-btn:hover {
        background: rgba(255, 255, 255, .02)
    }


    .notif-wrap .bell {
        width: 24px;
        height: 24px;
        display: inline-block
    }


    .notif-wrap .badge {
        background: #ef4444;
        color: white;
        border-radius: 999px;
        min-width: 15px;
        font-size: 5px;
        position: absolute;
        height: 19px;
        padding: 3px 6px;
        font-size: 7px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        top: -10px;
        right: -8px;
    }

    .notif-wrap .dropdown {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        width: 350px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(2, 6, 23, .6);
        overflow: hidden;
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px) scale(.995);
        transition: all .18s cubic-bezier(.2, .9, .25, 1);
        background: white;
        z-index: 1;
    }

    .notif-wrap .dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1)
    }


    .notif-wrap .dropdown .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .03)
    }

    .notif-wrap .dropdown h4 {
        margin: 0;
        font-size: 12px;
    }

    .notif-wrap .dropdown .actions {
        display: flex;
        gap: 8px;
        align-items: center
    }

    .notif-wrap .small-btn {
        background: transparent;
        border: 0;
        color: #9aa6b2;
        font-size: 8px;
        cursor: pointer;
        padding: 0px;
        border-radius: 8px;
    }

    .notif-wrap .small-btn:hover {
        color: #2563eb;
        background: rgba(37, 99, 235, .04)
    }


    .notif-wrap .items {
        max-height: 360px;
        overflow: auto
    }

    .notif-wrap .item {
        display: flex;
        gap: 12px;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .02)
    }

    .notif-wrap .item:last-child {
        border-bottom: 0
    }

    .notif-wrap .avatar {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        flex: 0 0 44px;
        background: linear-gradient(135deg, #0ea5a2, #7c3aed);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700
    }

    .notif-wrap .meta {
        flex: 1
    }

    .notif-wrap .meta p {
        margin: 0;
        font-size: 10px;
        color: #000
    }

    .notif-wrap .meta .time {
        font-size: 10px;
        color: #9aa6b2;
        margin-top: 6px
    }

    .notif-wrap .unread {
        background: linear-gradient(90deg, rgba(37, 99, 235, .06), rgba(34, 197, 94, .03));
        border-radius: 8px
    }


    .notif-wrap .footer {
        padding: 10px 14px;
        border-top: 1px solid rgba(255, 255, 255, .03);
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .notif-wrap .view-all {
        background: transparent;
        border: 0;
        color: #2563eb;
        font-weight: 600;
        cursor: pointer;
        font-size: 10px;
    }


    .notif-wrap .count-hidden {
        display: none
    }

    .header-search {
        padding: 120px 0 50px;
    }

    .header-search #searchResults {
        height: 350px;
        overflow-y: auto;
    }


    @media (max-width:420px) {
        .dropdown {
            right: -8px;
            left: -8px;
            width: auto;
        }
    }

    .header-search .search-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        transition: background 0.2s;
        text-align: left;
        cursor: pointer;
    }

    .header-search .search-item:hover {
        background: #f8f9fa;
    }

    .header-search .search-item img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
    }

    .header-search .search-info h6,
    .header-search .search-info p {
        color: white;
    }

    .header-search .search-item:hover .search-info h6,
    .header-search .search-item:hover .search-info p {
        color: #000;
    }

    .header-search .form-control {
        height: 50px;
        border: 0;
        border-bottom: 1px solid;
        border-radius: 0;
    }

    .header-search .form-control:focus {
        color: var(--bs-body-color);
        background-color: var(--bs-body-bg);
        border-color: white;
        outline: white;
        box-shadow: none;
    }

#countdown {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }




    #countdown li span {
        color: #000;
    }

    .action .shop {
        margin: auto;
        background-color: #000;
        font-family: 'myfont' !important;
        color: #FFF;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        padding: 10px 22pX;

    }

    .action ul {
        padding: 0 !important;
    }

    li {
        display: inline-block;
        font-size: 13px;
        list-style-type: none;
        padding: 0px 8px;

        font-family: 'myfont' !important;

        text-align: center;
        text-transform: uppercase;
    }

    li span {
        background-color: #EBE8E1;
        border: 1px solid #000;
        margin-bottom: 5px;
        border-radius: 8px;
        padding: 0px 8px;
        display: block;
        font-size: 20px;

        font-family: 'myfont' !important;

        color: 000;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }

    .dylan {
    overflow: hidden;
    position: relative;
    perspective: 1000px;
    }

    .dylan:hover img {
        transform: scale(1.5) rotateY(10deg) rotateX(10deg);
    }


    .artss>img {
        width: 100%;
        transition: transform 2s ease-out;
        transform-origin: center;
        will-change: transform;
    }

    .artss {
        overflow: hidden;
        position: relative;
        /* perspective: 1000px; */
    }

    .artss:hover img {
        transform: scale(1.5) rotateY(10deg) rotateX(10deg);
    }

    .banner .images .contain {
        /* perspective: 1000px; */
        transform-style: preserve-3d;
        transition: transform 0.9s ease-out;
    }

    .banner .images .contain img {
        display: block;
        transition: transform 0.9s ease-out;
    }

    .banner .images .contain:hover img {
        transform: scale(1.1);
    }


    .disc {
        transform: rotateY(0deg);
        animation: rotateAnimation 6s linear infinite;
    }

    @keyframes rotateAnimation {
        0% {
            transform: rotateY(0deg) rotateZ(0deg);
        }

        50% {
            transform: rotateY(180deg) rotateZ(5deg);
        }

        100% {
            transform: rotateY(360deg) rotateZ(0deg);
        }
    }

.lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(0, 0, 0, 0.9);
                display: none;
                justify-content: center;
                align-items: center;
                z-index: 9999;
            }

            .lightbox img {
                max-width: 90vw;
                max-height: 90vh;
                object-fit: contain;
            }

            .lightbox .close {
                position: absolute;
                top: 10px;
                right: 20px;
                font-size: 40px;
                color: white;
                cursor: pointer;
                background: rgba(0, 0, 0, 0.6);
                padding: 5px 10px;
                border-radius: 5px;
            }

.lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(0, 0, 0, 0.9);
                display: none;
                justify-content: center;
                align-items: center;
                z-index: 9999;
            }

            .lightbox img {
                max-width: 90vw;
                max-height: 90vh;
                object-fit: contain;
            }

            .lightbox .close {
                position: absolute;
                top: 10px;
                right: 20px;
                font-size: 40px;
                color: white;
                cursor: pointer;
                background: rgba(0, 0, 0, 0.6);
                padding: 5px 10px;
                border-radius: 5px;
            }

            .countdown-wrapper {
    text-align: center;
    display: block;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 20px 0;
}

.countdown li {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown span {
    display: block;
    font-size: 18px;
    width: fit-content;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 5px 8px;
}

.countdown p {
    margin-top: 0px;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}
