*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #000;
}
.body-main {
    width: 80%;
    display: flex;
    margin: 33px auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
}

img {
    width: 100%;
    display: block;
}




/* ======================================== HEADER ============================================ */










header{
    width:100%;
    background:#fff;
}

.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 33px 0 66px;
}

.logo{
    display: flex;
    width: 100%;
    text-decoration: none;
}

.logo img {
    width: 120px !important;
}

.right-tools{
    display:flex;
    align-items:center;
    gap:22px;
}




.icons{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:24px;
    cursor:pointer;
}

nav{
    width:100%;
    background:#fff;
    margin-bottom: 5px;
}

nav ul{
    display:flex;
    justify-content:center;
    gap:65px;
    list-style:none;
    padding:10px 20px 20px;
    flex-wrap:wrap;
}

nav ul li{
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

nav ul li a:hover{
    color:#b88a44;
    border-bottom: 2px solid #b88a44;
}




.back-btn{
    position: absolute;
    top: 140px;
    left: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    overflow: hidden;
}

/* hover effect */
.back-btn:hover{
    background: #000;
}

.back-btn:hover::before{
    left:100%;
}

.back-btn i{
    font-size: 16px;
}








/* ===================================== FOOTER ========================================== */








/* NEWSLETTER  */

.newsletter{
    width:100%;
    padding:90px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.newsletter h2{
    font-size:45px;
    line-height:1.1;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.news-box{
    flex:1;
    display:flex;
    gap:15px;
}

.news-box input{
    flex:1;
    height:60px;
    padding:0 20px;
    border:1px solid #bbb;
    outline:none;
}

.news-box button{
    width:190px;
    background:#111;
    color:#fff;
    border:none;
    font-size:16px;
    cursor:pointer;
}




.float-icons{
    position:fixed;
    bottom:33px;
    right:25px;
    width:50px;
    height:50px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s ease;
}

.float-cart {
    position:fixed;
    bottom:92px;
}

.float-icons i{
    font-size:20px;
}

.float-icons:hover{
    transform:translateY(-3px) scale(1.08);
    background:#000;
}

.float-icons:active{
    transform:scale(0.95);
}

@media(max-width:600px){
    .float-icons{
        width:45px;
        height:45px;
    }

    .float-icons i{
        font-size:18px;
    }
}

.search-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.search-box{
    width:100%;
    max-width:420px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    position:relative;
    text-align:center;
}

.search-box input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    outline:none;
    margin-bottom:15px;
}

.search-box button{
    width:100%;
    padding:12px;
    background:#111;
    color:#fff;
    border:none;
    cursor:pointer;
}

.close-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:-18px;
    right:-12px;
    font-size:28px;
    cursor:pointer;
    background: #444;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.852);
}

/* RESULT TEXT */
#searchResult{
    margin-top:15px;
    font-size:14px;
    color:#333;
}

/* MOBILE */
@media(max-width:500px){
    .search-box{
        margin:20px;
        padding:20px;
    }
}




footer{
    background:#f1f1f1;
    padding:70px 5% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:22px;
    font-size:24px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#111;
    line-height:1.6;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-family:Arial, Helvetica, sans-serif;
}

.footer-col ul li a:hover {
    border-bottom: 2px solid #111;
}


.socials{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.socials i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.payments{
    width: 100%;
    display:flex;
    gap:10px;
    margin-top:25px;
    flex-wrap:wrap;
}

.pay{
    width:100%;
    height:42px;
    background:#fff;
    border:1px solid #ddd;
}

.copy{
    text-align:center;
    padding-top:50px;
    font-weight:600;
}










/* =======================================  Index  ===========================================/ */










.container{
    width:100%;
    max-width:100%;
    height: 100%;
    position:relative;
    padding: 5px;
}

.container img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.section {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.box {
    position: absolute;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    justify-content: center;
    align-items:center;
    top: 22%;
    width: 100%;
    max-width: 420px;
    padding: 20px 75px 40px;
    margin: 20px 40px 20px 0;
    border-radius: 20px;
    font-size: 14px;
    border: 4px solid #d4d3cf;
    color: #fff;
    text-shadow: 0 0 4px rgba(0,0,0,1);
}
.box img {
    width: 150px;
}

.box p {
    width: 100%;
    margin-top: 35px;
    margin-bottom: 10px;
    text-align: left;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.53);
}

.dropdown{
    position:relative;
    width:260px;
}

.dropdown-btn{
    width:100%;
    background:#fff;
    color:#444;
    padding:15px 18px;
    border-radius:12px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    border:none;
    transition:.3s;
    text-shadow: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.dropdown-btn:hover{
    border-color:#00bfff;
}

.dropdown ul{
    position:absolute;
    top:110%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    list-style:none;
    display:none;
    border:1px solid #333;
}

.dropdown ul li{
    padding:14px 18px;
    color:#444;
    cursor:pointer;
    transition:.3s;
    text-shadow: none;
}

.dropdown ul li:hover{
    background:#00bfff;
    color: #fff;
}

.dropdown.active ul{
    display:block;
}

.btn-in {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-in a {
    padding: 16px;
    background: #111;
    border-radius: 10px;
    color: #ffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 25px;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: 0.3s all;
    text-decoration: none;
    text-align: center;
}

.btn-in a:hover {
    opacity: 0.9;
}








/* =============================================== Dashboard ============================================ */










/* HERO  */

.hero{
    width:100%;
    position:relative;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    cursor:pointer;
    z-index:10;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

/* TITLE  */

.title{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin:8% 0  4% 0;
}

.title .line{
    width:300px;
    height:1px;
    background:#999;
}

.title h2{
    font-size:36px;
    font-weight:700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CATEGORY */

.category-grid{
    width:95%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.category-card{
    text-decoration:none;
    width:100%;
    color:#111;
}

/* IMAGE BOX */

.category-image{
    width:100%;
    height:430px;
    overflow:hidden;
    border-radius:10px;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
    display:block;
}

/* IMAGE ZOOM */

.category-card:hover .category-image img{
    transform:scale(1.08);
}

/* TEXT */

.category-card h3{
    margin-top:16px;
    text-align:center;
    font-size:24px;
    font-weight:600;
    position:relative;
    display:inline-block;
    left:50%;
    transform:translateX(-50%);
    padding-bottom:8px;
}

/* ANIMATED BORDER */

.category-card h3::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#111;
    transition:0.4s ease;
    transform:translateX(-50%);
}

.category-card:hover h3::after{
    width:100%;
}

/* TRENDING */

/* ====== TABS ====== */

.tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.tabs button{
    background:none;
    border:none;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    padding:10px 18px;
    transition:0.3s ease;
}

.tabs button.active{
    background:#fff;
    border:1px solid #ddd;
}

/* ====== TAB CONTENT ====== */

.tab-content{
    display:none;
}

.tab-content.active{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ====== PRODUCT GRID ====== */

.product-grid {
    width:100%;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* ====== PRODUCT CARD ====== */

.product-card{
    background:#fff;
    padding-bottom:18px;
    position:relative;
    overflow:hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-img{
    width:100%;
    height:420px;
    overflow:hidden;
    position:relative;
}

.product-img img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

/* MAIN IMAGE */

.main-img{
    opacity:1;
    z-index:1;
}

/* HOVER IMAGE */

.hover-img{
    opacity:0;
    z-index:2;
}

/* HOVER EFFECT */

.product-card:hover .main-img{
    opacity:0;
    transform:scale(1.05);
}

.product-card:hover .hover-img{
    opacity:1;
    transform:scale(1.05);
}

/* QUICK ADD */

.quick{
    position:absolute;
    bottom:-60px;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.75);
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:14px;
    transition:0.4s ease;
    z-index:5;
    text-decoration:none;
}

.product-card:hover .quick{
    bottom:0;
}


/* QUICK ADD */

.quick0{
    position:absolute;
    bottom:-60px;
    left:0;
    width:100%;
    background:rgba(0, 0, 0, 0.064);
    color:#fff;
    text-align:center;
    padding: 18px 14px;
    font-size:14px;
    transition:0.4s ease;
    z-index:1000;
    text-decoration:none;
}

.product-card:hover .quick0{
    bottom:0;
}


/* SOLD TAG */

.sold{
    position:absolute;
    top:12px;
    left:12px;
    background:#c7c7c7;
    color:#fff;
    padding:5px 12px;
    font-size:12px;
    z-index:10;
}

/* PRODUCT INFO */

.product-info{
    padding:16px 10px 0;
}

.product-info h4{
    font-size:16px !important;
    font-weight:500;
    margin-bottom:10px;
    color:#111;
}

.price{
    font-size:23px !important;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-img{
        height:500px;
    }

}

.sold{
    position:absolute;
    top:10px;
    left:10px;
    background:#c5c5c5;
    color:#fff;
    padding:4px 10px;
    font-size:12px;
}

.quick{
    position:absolute;
    bottom:-60px;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.7);
    color:#fff;
    text-align:center;
    padding:14px;
    transition:.4s;
}

.product-card:hover .quick{
    bottom:0;
}

.product-info{
    padding:15px;
}

.product-info h4{
    font-size:18px;
    line-height:1.5;
    font-weight:500;
}

.price{
    margin-top:12px;
    font-size:28px;
    font-weight:bold;
}
















/* ================================================ SALE ================================================= */












.shop-wrapper{
    width:100%;
    display:flex;
    gap:40px;
    padding:30px;
}

.sidebar{
    width:280px;
    flex-shrink:0;
}

.filter-box{
    margin-bottom:35px;
    border-bottom:1px solid #ddd;
    padding-bottom:25px;
}

.filter-box h3{
    font-size:18px;
    margin-bottom:20px;
}

.filter-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-height:250px;
    overflow-y:auto;
    padding-right:10px;
}

.filter-list label{
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.filter-list input{
    width:20px;
    height:20px;
}

/* RANGE */

.range-box input{
    width:100%;
}

.range-box p{
    margin-top:15px;
    font-size:16px;
}

.products-section{
    flex:1;
}

/* TOP BAR */

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    gap:20px;
    flex-wrap:wrap;
}

.view-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.view-buttons span{
    font-size:18px;
}

.grid-btn{
    width:45px;
    height:35px !important;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    font-size:18px;
}

.grid-btn.active{
    background:#111;
    color:#fff;
}

.sort-box select{
    border:none;
    background:none;
    font-size:20px;
    outline:none;
}


.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


.product-card{
    background:#fff;
}

.product-img{
    position:relative;
    overflow:hidden;
}

.product-img img{
    width:100%;
    display:block;
    transition:0.5s;
    z-index:1;
}

/* HOVER IMAGE */

.hover-img{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    z-index:2;
}

.product-card:hover .hover-img{
    opacity:1;
    transform:scale(1.03);
}

.product-card:hover .main-img{
    opacity:0;
    transform:scale(1.03);
}

/* SALE */

.sale{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff4d00;
    color:#fff;
    padding:8px 14px;
    font-size:18px;
    z-index:5;
}

/* OVERLAY */

.product-overlay{
    position:absolute;
    bottom:-70px;
    left:0;
    width:100%;
    display:flex;
    transition:0.4s;
    z-index:10;
}
.product-card:hover .product-overlay{
    bottom:0;
}

.select-btn{
    flex:1;
    border:none;
    background:#111;
    color:#fff;
    padding:10px 18px;
    font-size:16px;
    cursor:pointer;
}

.view-btn{
    width:70px;
    border:none;
    background:#f5f5f5;
    font-size:16px;
    cursor:pointer;
}


.view-btn0{
    width:70px;
    border:none;
    background:#f5f5f5;
    font-size:16px;
    cursor:pointer;
    position: relative;
    z-index: 10000;
}


/* PRODUCT INFO */

.product-info{
    padding:18px 5px;
    text-align:center;
}

.product-info h4{
    font-size:18px;
    line-height:1.5;
    margin-bottom:15px;
    font-weight:500;
}

.price-box{
    display:flex;
    justify-content:center;
    gap:12px;
    font-size:20px;
}

.old-price{
    color:#999;
    text-decoration:line-through;
}

.new-price{
    color:#ff4d00;
}




@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:900px){

    .shop-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

}

@media(max-width:600px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .top-bar{
        flex-direction:column;
        align-items:flex-start;
    }

}















/* ===================================================== BRIDAL ======================================= */












/* TOP BAR */

.bridal-topbar {
    width: 100%;
    background: #ece8e5;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    letter-spacing: 2px;
}

/* HEADER */

.main-header {
    width: 100%;
    background: #f5f3f1;
    z-index: 999;
}

.header-top {
    height: 90px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.bridal-logo {
    text-align: center;
}

.bridal-logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #bf8d35;
    letter-spacing: 2px;
}

.bridal-logo span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #111;
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 18px;
}

.header-icons a {
    color: #111;
    transition: .3s;
}

.header-icons a:hover {
    color: #bf8d35;
}

/* HERO */

.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    height: 650px;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    right: 20px;
    bottom: 18px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0,0,0,.3);
}

.dot.active {
    background: #333;
}

/* CATEGORY */

.category-sections {
    width:100%;
    padding: 55px 12px;
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.category-grids{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

/* CATEGORY CARD */

.category-cards{
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 14px;
}

/* LINK */

.category-grids a{
    width: 100%;
    display: block;
}

/* IMAGE */

.category-cards img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

/* OVERLAY */

.category-cards::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.55);
    opacity: 0;
    transition: .4s ease;
    z-index: 1;
}

/* TEXT */

.category-cards span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    z-index: 2;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;

    opacity: 0;
    transition: .4s ease;
    text-align: center;
    width: 100%;
}

/* HOVER */

.category-cards:hover::before{
    opacity: 1;
}

.category-cards:hover img{
    transform: scale(1.08);
}

.category-cards:hover span{
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* DESIGNER */

.designer-section {
    padding: 50px 15px;
    position: relative;
}

.designer-image img {
    height: 820px;
    object-fit: cover;
}

.designer-content {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.9);
    padding: 24px;
}

.designer-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.designer-content a {
    color: #111;
    border-bottom: 1px solid #111;
}

/* EVENT */

.event-section {
    text-align: center;
    padding: 70px 20px;
}

.event-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    margin-bottom: 18px;
}

.event-section p {
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
    font-size: 14px;
}

/* WEDDING */

.wedding-section {
    padding: 40px 20px 90px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.wedding-content {
    width: 30%;
}

.wedding-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    margin-bottom: 15px;
}

.wedding-content a {
    color: #111;
    border-bottom: 1px solid #111;
}

.wedding-image {
    width: 70%;
}

.wedding-image img {
    height: 500px;
    object-fit: cover;
}

/* STORE */

.store-section {
    padding: 70px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-btn {
    border: none;
    background: none;
    font-size: 34px;
    cursor: pointer;
}

.store-content {
    text-align: center;
}

.store-logo h3 {
    color: #bf8d35;
    margin-bottom: 18px;
}

.store-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    margin-bottom: 10px;
}

.store-content h4 {
    font-size: 20px;
    margin-bottom: 18px;
}

.store-content p {
    line-height: 1.9;
}

.tower-image img {
    width: 220px;
}

/* MAP */

.map-section {
    padding: 50px 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.map-info {
    width: 30%;
}

.map-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin-bottom: 25px;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-image {
    width: 70%;
}

.map-image img {
    height: 420px;
    object-fit: cover;
}

/* FOOTER */

.bridal-footer {
    padding: 60px 20px 30px;
    background: #f1eeeb;
}

.bridal-footergrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.bridal-footercol h3,
.bridal-footercol h4 {
    margin-bottom: 20px;
}

.bridal-footercol a {
    display: block;
    margin-bottom: 12px;
    color: #111;
    transition: .3s;
}

.bridal-footercol a:hover {
    color: #bf8d35;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    height: 46px;
    border: 1px solid #ccc;
    padding: 0 15px;
    outline: none;
}

.subscribe-form button {
    width: 70px;
    border: none;
    background: #111;
    color: white;
    cursor: pointer;
}

/* MOBILE */

@media(max-width:768px) {

    .slide img {
        height: 430px;
    }

    .category-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .designer-image img {
        height: 500px;
    }

    .designer-content {
        right: 15px;
        padding: 15px;
    }

    .wedding-section,
    .map-section,
    .store-section {
        flex-direction: column;
    }

    .wedding-content,
    .wedding-image,
    .map-info,
    .map-image {
        width: 100%;
    }

    .bridal-footergrid {
        grid-template-columns: 1fr;
    }

    .store-content h2 {
        font-size: 42px;
    }

}












/* ========================================== FESTIVE FORMATS ===================================== */












.box-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top: 33px;
}

/* Box CARD */

.box-card{
    background:#fff;
}

.box-img{
    position:relative;
    overflow:hidden;
}

.box-img img{
    width:100%;
    display:block;
    transition:0.5s;
    z-index:1;
}

/* HOVER IMAGE */

.hover-img{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    z-index:2;
}

.box-card:hover .hover-img{
    opacity:1;
    transform:scale(1.03);
}

.box-card:hover .main-img{
    opacity:0;
    transform:scale(1.03);
}

.box-info{
    padding:18px 5px;
    text-align:center;
}

.box-info h4{
    font-size:18px;
    line-height:1.5;
    margin-bottom:15px;
    font-weight:500;
}

.box-price{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:12px;
    font-size:20px;
    color: #333;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.box-name {
    font-size: 24px;
    font-weight: 600;
}










/* ========================================= Profile =========================================== */









.profile-wrapper{
    width:55%;
    max-width:1100px;
    margin:40px auto;
    padding:20px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:25px;
}

/* SIDEBAR  */

.profile-card{
    display: flex;
    justify-content: center;
    background:#fff;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.profile-card img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.profile-card h3{
    margin-top:10px;
    font-size:20px;
}

.profile-card p{
    font-size:14px;
    color:#666;
    margin-top:5px;
}

/* INFO BOX  */

.profile-wrapper .profile-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-box{
    width: 100%;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    margin-bottom:20px;
}

.info-box h2{
    font-size:18px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* INPUTS */

.info-box input, .info-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

/* ====== STATS ====== */

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.stat{
    background:#111;
    color:#fff;
    padding:20px;
    border-radius:12px;
    text-align:center;
}

.stat h3{
    font-size:22px;
}

.stat p{
    font-size:13px;
    opacity:0.8;
}

/* ====== ORDERS ====== */

.order-box{
    background:#fff;
    padding:15px;
    border-radius:12px;
    margin-bottom:12px;
    border-left:5px solid #111;
}

.order-box.pending{
    border-left-color:orange;
}

.order-box.delivered{
    border-left-color:green;
}

/* ====== BUTTON ====== */

.btn{
    width:100%;
    padding:12px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

/* ====== RESPONSIVE ====== */

@media(max-width:900px){

    .stats{
        grid-template-columns:repeat(3,1fr);
    }
}



















/*====================================================CART POPUP================================== */




.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #111;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: linear-gradient(135deg, #00c853, #64dd17);
}

.toast.error {
    background: linear-gradient(135deg, #ff3d00, #ff1744);
}



















/* ==========================================CART============================================= */












.cart-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.cart-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 90px;
    height: 6px;
    border-radius: 30px;
    background: linear-gradient(90deg,#111,#666);
}

/* ====== GRID ====== */
.cart-grid {
    display: grid;
    grid-template-columns:2.2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* ====== ITEMS ====== */

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ====== CARD ====== */

.cart-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 34px;
    padding: 22px;
    display: flex;
    gap: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow:0 15px 40px rgba(0, 0, 0, 0.06);
    transition: .45s;
}

.cart-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(120deg,transparent,rgba(255, 255, 255, 0.55),transparent);
    transform: translateX(-100%);
    transition: .8s;
}


.cart-card:hover {
    box-shadow:0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ====== IMAGE ====== */

.cart-image {

    width: 150px;
    min-width: 150px;

    position: relative;
}

.cart-image img {

    width: 100%;
    height: 180px;

    object-fit: cover;

    border-radius: 28px;

    transition: .5s;
}

/* ====== CONTENT ====== */

.cart-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.store {

    display: inline-flex;

    width: fit-content;

    padding:
        8px 14px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #111,
            #2d2d2d);

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.product-title {

    font-size: 25px;

    font-weight: 600;

    line-height: 1.2;

    margin-bottom: 18px;
}

.price {
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
}

/* ====== QTY FLEX ====== */

.qty-flex {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.qty-box {

    display: flex;

    align-items: center;

    gap: 12px;
}

.qty-box input {

    width: 70px;
    height: 44px;

    border-radius: 7px;

    border: none;

    background: #f0f0f0;

    text-align: center;

    font-size: 18px;

    font-weight: 700;

    outline: none;
}

.update-btn {

    height: 44px;

    padding:
        0 10px;

    border: none;

    border-radius: 5px;

    background:
        linear-gradient(135deg,
            #111,
            #333);

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;
}

.update-btn:hover {

    transform: translateY(-2px);

    background:
        linear-gradient(135deg,
            #000,
            #555);
}

.remove-btn {

    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        0 10px;

    border-radius: 5px;

    text-decoration: none;

    background:
        linear-gradient(135deg,
            #ff3c3c,
            #d40000);

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    transition: .35s;
}

.remove-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   MODERN CHECKOUT SUMMARY
========================= */

.summary-card{
    position:sticky;
    top:20px;

    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(18px);

    border-radius:30px;

    padding:28px;

    color:#111;

    overflow:hidden;

    border:1px solid rgba(0,0,0,0.06);

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* SOFT GLOW SHAPE */
.summary-card::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;

    background:radial-gradient(
        circle,
        rgba(212,175,55,0.18),
        transparent 70%
    );

    top:-120px;
    right:-120px;

    border-radius:50%;
}

/* TITLE */
.summary-card h2{
    font-size:28px;
    font-weight:900;

    margin-bottom:22px;

    letter-spacing:-0.5px;

    position:relative;
}

/* SMALL GOLD LINE */
.summary-card h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:60px;
    height:4px;

    background:linear-gradient(90deg,#d4af37,#f5d76e);
    border-radius:10px;
}

/* PAYMENT BOX */
.payment-option{
    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 18px;

    border-radius:18px;

    margin-bottom:12px;

    background:rgba(0,0,0,0.03);

    border:1px solid rgba(0,0,0,0.05);

    cursor:pointer;

    transition:.35s;

    position:relative;
    overflow:hidden;
}


/* RADIO */
.payment-option input{
    width:18px;
    height:18px;

    accent-color:#d4af37;
}

/* ICON */
.payment-option i{
    font-size:26px;
    color:#111;
}

/* TEXT */
.payment-option span{
    font-size:16px;
    font-weight:700;
    color:#222;
}

/* TOTAL BOX */
.summary-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin:28px 0;

    padding:18px 0;

    border-top:1px dashed rgba(0,0,0,0.15);

    font-size:22px;
    font-weight:900;
    color:#111;
}

/* CHECKOUT BUTTON */
.checkout-btn{
    width:100%;
    height:58px;

    border:none;
    border-radius:60px;

    background:linear-gradient(135deg,#111,#2b2b2b);

    color:#fff;

    font-size:18px;
    font-weight:800;

    cursor:pointer;

    transition:.35s;

    position:relative;
    overflow:hidden;
}

/* GOLD SHINE */
.checkout-btn::before{
    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:120%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(20, 18, 11, 0.35),
        transparent
    );

    transition:.6s;
}

.checkout-btn:hover::before{
    left:120%;
}

.checkout-btn:hover{
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ====== EMPTY ====== */

.empty-cart {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-cart i {
    font-size: 90px;
    margin-bottom: 28px;
    color: #111;
}

.empty-cart h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.empty-cart p {
    font-size: 20px;
    color: #666;
}

.shop-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    padding: 0 32px;
    border-radius: 60px;
    background:
        linear-gradient(135deg,
            #111,
            #333);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: .35s;
}

.shop-btn:hover {

    transform:
        translateY(-3px);
}

/* ====== RESPONSIVE ====== */

@media(max-width:1100px) {

    .cart-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: relative;
    }
}

@media(max-width:768px) {

    .cart-title {
        font-size: 42px;
    }

    .cart-card {
        flex-direction: column;
        padding: 18px;
    }

    .cart-image {
        width: 100%;
    }

    .cart-image img {
        width: 100%;
        height: 320px;
    }

    .product-title {
        font-size: 28px;
    }

    .price {
        font-size: 34px;
    }

    .summary-card h2 {
        font-size: 30px;
    }

    .summary-flex {
        font-size: 24px;
    }
}

@media(max-width:500px) {

    .container {
        padding: 0;
    }

    .cart-title {
        font-size: 34px;
    }

    .cart-image img {
        height: 260px;
    }

    .product-title {
        font-size: 24px;
    }

    .price {
        font-size: 26px;
    }

    .qty-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .update-btn,
    .remove-btn {
        width: 100%;
    }

    .summary-card {
        padding: 24px;
        border-radius: 28px;
    }

    .payment-option {
        padding: 15px;
    }

    .checkout-btn {
        height: 62px;
        font-size: 18px;
    }
}



































/* =========================================== MOBILE ========================================== */
















@media(max-width:1200px){

    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}




/* ===================== Dashboard ============== */


@media(max-width:768px){

    .hero img{
        height:400px;
    }

    .slider-btn{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .title{
        gap:10px;
        margin:45px 0 25px;
    }

    .title .line{
        width:70px;
    }

    .title h2{
        font-size:22px;
    }

    .tabs{
        gap:10px;
    }

    .tabs button{
        padding:9px 14px;
        font-size:12px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .category-image{
        height:240px;
    }

    .category-card h3{
        font-size:17px;
        margin-top:12px;
    }

    .product-grid{
        grid-template-columns:repeat(3,1fr) !important;
        gap:12px;
    }

    .product-img{
        height:240px;
    }

    .product-info{
        padding:12px 8px 0;
    }

    .product-info h4{
        font-size:14px;
    }

    .price{
        font-size:16px;
    }

    .quick{
        padding:12px;
        font-size:12px;
    }

}

/* ============== MOBILE ================= */

@media(max-width:480px){

    .hero img{
        height:300px;
    }

    .prev{
        left:8px;
    }

    .next{
        right:8px;
    }

    .slider-btn{
        width:32px;
        height:32px;
    }

    .title{
        margin:35px 0 20px;
    }

    .title .line{
        width:40px;
    }

    .title h2{
        font-size:18px;
    }

    .category-grid{
        gap:10px;
    }

    .category-image{
        height:190px;
        border-radius:8px;
    }

    .category-card h3{
        font-size:15px;
    }

    .product-grid{
        grid-template-columns: repeat(2,1fr) !important;
        gap:10px;
    }

    .product-img{
        height:190px;
    }

    .product-info h4{
        font-size:12px;
    }

    .price{
        font-size:14px;
    }

    .sold{
        font-size:10px;
        padding:4px 8px;
    }

}





@media (max-width: 991px){

    .category-grids{
        grid-template-columns: repeat(3,1fr);
        gap: 18px;
    }

    .category-cards img{
        height: 290px;
    }

}

@media (max-width: 768px){

    .category-grids{
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .category-cards img{
        height: 240px;
    }

}

@media (max-width: 480px){

    .category-grids{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .category-cards img{
        height: 180px;
    }

}


@media (max-width: 360px){

    .category-grids{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .category-cards img{
        height: 180px;
    }

}

@media (max-width: 400px){

    .category-grid{
        grid-template-columns: repeat(1,1fr);
        gap: 12px;
    }
}



/* =============== HEADER FOOTER =============== */




@media(max-width:1200px){

    nav ul{
        gap:40px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:991px){

    .topbar{
        padding:20px;
        gap:20px;
    }

    .logo{
        justify-content:center;
    }

    .logo img{
        width:110px !important;
    }

    .right-tools{
        width:100%;
        display: flex;
        justify-content: right;
        gap:18px;
    }

    nav ul{
        gap:25px;
        padding:10px 15px 18px;
    }

    nav ul li{
        font-size:15px;
    }

    .newsletter{
        padding:70px 5%;
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter h2{
        font-size:36px;
    }

    .news-box{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

}


@media(max-width:768px){

    .topbar{
        padding:15px;
    }

    .logo{
        justify-content:center;
    }

    .logo img{
        width:99px !important;
    }


    .icons{
        justify-content:center;
        gap:25px;
        font-size:18px;
    }

    nav ul{
        gap:18px;
        padding:10px;
        justify-content:center;
    }

    nav ul li{
        font-size:14px;
    }

    .newsletter{
        padding:60px 5%;
        gap:25px;
    }

    .newsletter h2{
        font-size:28px;
    }

    .news-box{
        flex-direction:column;
    }

    .news-box input{
        width:100%;
        height:52px;
    }

    .news-box button{
        width:100%;
        height:52px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-col h3{
        font-size:20px;
    }

    .copy{
        padding-top:35px;
        font-size:14px;
    }

}

/* =================  */

@media(max-width:480px){

    .topbar{
        padding:12px;
    }

    .logo img{
        width:88px !important;
    }

    .icons{
        gap:18px;
    }

    nav ul{
        gap:14px;
    }

    nav ul li{
        font-size:12px;
    }

    .newsletter{
        padding:50px 5%;
    }

    .newsletter h2{
        font-size:22px;
    }

    .news-box input{
        height:48px;
        font-size:13px;
    }

    .news-box button{
        height:48px;
        font-size:14px;
    }

    .footer-col h3{
        font-size:18px;
    }

    .footer-col ul li{
        font-size:14px;
    }

    .socials i{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .copy{
        font-size:13px;
    }

}





/* ===============  SALE  ================ */