/*
Theme Name: Custom Bootstrap Builder
Author: Abhikash
Description: A custom theme with Bootstrap 5 and per-page CSS logic.
Version: 1.0
*/
/* =========================
   PREMIUM HEADER
========================= */
.main-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:0;

    list-style:none;
}

.main-menu li{
    list-style:none;
    position:relative;
}

.main-menu li a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:0.3s ease;
    display:block;
}

.main-menu li a:hover{
    color:#000;
}


.main-menu li{
    list-style:none;
    position:relative;
}

.main-menu li a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:400;
    transition:.3s;
}

.main-menu li a:hover{
    color:#000;
}
.main-menu ul{
display: contents;}
/* =========================
   GLOSSY WHITE FOOTER
========================= */

.footer-main{
    position:relative;
    background:#fff;
    color:#111;
    padding:80px 0 0;
    margin-top:80px;
    border-top:1px solid #eee;
    overflow:hidden;
}

/* Glossy Background */
.footer-main::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,123,255,.08);
    filter:blur(90px);
}

.footer-main::after{
    content:'';
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,0,150,.06);
    filter:blur(90px);
}

.footer-main .container{
    position:relative;
    z-index:2;
}

/* LOGO */
.footer-logo img,
.footer-logo .custom-logo{
    max-height:55px;
    width:auto;
}

/* ABOUT */
.footer-text{
    color:#666;
    line-height:1.8;
    font-size:14px;
    max-width:320px;
}

/* TITLE */
.footer-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
    color:#111;
}

.footer-title::after{
    content:'';
    width:45px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,#111,#999);
    position:absolute;
    left:0;
    bottom:-10px;
}

/* MENU */
.footer-menu{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-menu li{
    margin-bottom:12px;
}

.footer-menu li a{
    color:#666;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
}

.footer-menu li a:hover{
    color:#000;
    padding-left:8px;
}

/* CONTACT */
.footer-contact{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-contact li{
    color:#666;
    margin-bottom:15px;
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
}

.footer-contact li i{
    color:#111;
    margin-top:4px;
}

/* SOCIAL */
.footer-social a{
    width:46px;
    height:46px;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    text-decoration:none;

    background:rgba(255,255,255,.8);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,1);

    transition:.35s ease;
}

.footer-social a:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* PAYMENT */
.payment-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.payment-icons i{
    width:55px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#111;

    background:#fff;
    border-radius:12px;

    border:1px solid #eee;

    box-shadow:
        0 8px 20px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* COPYRIGHT */
.footer-bottom{
    margin-top:70px;
    padding:22px 0;
    border-top:1px solid #eee;

    background:rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
}

.footer-bottom p,
.footer-bottom span{
    color:#666;
    font-size:14px;
}

.footer-bottom span{
    font-weight:600;
}

/* Mobile */
@media(max-width:767px){

    .footer-main{
        text-align:center;
    }

    .footer-text{
        max-width:100%;
        margin:auto;
    }

    .footer-contact li{
        justify-content:center;
    }

    .footer-social,
    .payment-icons{
        justify-content:center;
    }

    .footer-title::after{
        left:50%;
        transform:translateX(-50%);
    }
}
/* MOBILE */
@media(max-width:767px){

    .footer-main{
        padding:50px 0 0;
    }

    .footer-title{
        margin-top:15px;
    }

}
/* SHOP PAGE */
.arrival-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.3s ease;
    border:1px solid #ececec;
    box-shadow:0 5px 18px rgba(0,0,0,0.06);
    height:100%;
}

.arrival-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

.arrival-image{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
    padding:15px;
}

.arrival-image img{
    width:100%;
    height:180px;
    object-fit:contain;
}

.arrival-content{
    padding:14px;
}

.arrival-content h3{
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.arrival-content h3 a{
    text-decoration:none;
    color:#111;
}

.arrival-price-wrap{
    margin-bottom:14px;
    font-size:16px;
    font-weight:700;
}

.arrival-price-wrap del{
    color:#999;
    margin-right:8px;
    font-size:13px;
}

.arrival-price-wrap ins{
    text-decoration:none;
    color:#000;
}

.arrival-cart-btn{
    width:100%;
    height:44px;
    border-radius:12px;
    background:#000;
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    font-weight:600;
}

.arrival-sale-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#000;
    color:#fff;
    font-size:10px;
    padding:5px 10px;
    border-radius:30px;
    z-index:2;
}

.arrival-action-icons{
    position:absolute;
    top:12px;
    right:12px;
    display:flex;
    flex-direction:column;
    gap:8px;
    z-index:2;
}

.arrival-action-icons a{
    width:34px;
    height:34px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    border:1px solid #eee;
}
/* SHOP LAYOUT */

.shop-page{
    background:#f5f5f5;
}

.shop-sidebar{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:100px;
}

/* PRODUCT GRID */
.woocommerce ul.products{
    display:flex;
    flex-wrap:wrap;
    margin:0 -10px;
    padding:0;
}



/* TOPBAR */
.shop-topbar{
    background:#fff;
    padding:15px 20px;
    border-radius:14px;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

/* MOBILE */
@media(max-width:991px){

    .shop-sidebar{
        margin-bottom:25px;
        position:relative;
        top:0;
    }

}


/* =========================
   XCITE SHOP PAGE
========================= */

.x-shop-page{
    background:#f5f5f5;
    padding:40px 20px;
}

/* SIDEBAR */
.x-shop-sidebar{
    background:#fff;
    padding:25px;
    border-radius:0;
    border-right:1px solid #e5e5e5;
    height:100%;
    min-height:100vh;
}

.filter-head{
    margin-bottom:30px;
}

.filter-head a{
    color:#0d4d8b;
    font-size:14px;
    text-decoration:underline;
}

/* TOOLBAR */
.x-shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.x-shop-toolbar h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:5px;
}

.x-shop-toolbar span{
    color:#666;
}

.x-shop-toolbar select{
    height:48px;
    min-width:220px;
    border:1px solid #ddd;
    padding:0 15px;
    background:#fff;
}

/* PRODUCT GRID */
.woocommerce ul.products{
    display:flex;
    flex-wrap:wrap;
    margin:0 -12px !important;
    padding:0 !important;
}



/* CARD */
.arrival-card{
    background:#fff;
    position:relative;
    transition:.3s;
    height:100%;
    padding-bottom:20px;
}

.arrival-card:hover{
    transform:translateY(-3px);
}

/* IMAGE */
.arrival-image{
    height:320px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.arrival-image img{
    width:100%;
    height:280px;
    object-fit:contain;
}

/* CONTENT */
.arrival-content{
    padding:15px;
}

.arrival-content h3{
    font-size:18px;
    line-height:1.5;
    font-weight:500;
    margin-bottom:12px;
}

.arrival-content h3 a{
    color:#111;
    text-decoration:none;
}

/* PRICE */
.arrival-price-wrap{
    margin-bottom:15px;
}

.arrival-price-wrap ins{
    text-decoration:none;
    font-size:24px;
    font-weight:700;
    color:#111;
}

.arrival-price-wrap del{
    color:#888;
    margin-right:8px;
}



/* BADGE */
.arrival-sale-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#000;
    color:#fff;
    padding:5px 10px;
    font-size:11px;
    z-index:2;
}

/* ACTION ICONS */
.arrival-action-icons{
    position:absolute;
    right:15px;
    bottom:140px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.arrival-action-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    text-decoration:none;
}

/* MOBILE */
@media(max-width:991px){

    .x-shop-sidebar{
        min-height:auto;
        margin-bottom:30px;
    }

}

@media(max-width:576px){
    .x-shop-toolbar{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .x-shop-toolbar h2{
        font-size:28px;
    }

}

/* oldstyle */
  /* Shop by Brand Styles */
.brand-banner {
    background: linear-gradient(90deg, #1e5799 0%, #ffffff 50%, #feb47b 100%);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    margin-bottom: -40px; /* Overlap effect for cards */
    overflow: hidden;
}

.brand-banner h2 {
    color: #1a4a8e;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #fff;
}

.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-card img {
    max-width: 80%;
    max-height: 40px;
    filter: grayscale(20%); /* Modern look */
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.brand-scroll-wrapper {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}

.cat-slider-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.cat-slider-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.cat-item-wrap {
    display: inline-block;
    width: 130px;
    margin-right: -15px; /* Overlap effect like image_bf8a13.png */
    text-align: center;
    vertical-align: top;
}

.circle-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #f6a619; /* Theme Orange */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cat-item-wrap:hover .circle-ring {
    border-color: #1a1a1a;
    transform: scale(1.05);
}

.cat-label-text {
    font-size: 11px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    white-space: normal; /* Labels can wrap to 2 lines */
    display: block;
    padding: 0 5px;
}

    
    
/* =========================
   MOBILE ACCESSORIES SECTION
========================= */

.mobile-accessories-section{
    width:100%;
    background:#050505;
    padding:60px 20px;
    overflow:hidden;
    position:relative;
}

/* glossy bg */
.mobile-accessories-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,0.03);
    border-radius:50%;
    top:-180px;
    left:-180px;
    filter:blur(120px);
}

.mobile-accessories-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,0.02);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
    filter:blur(120px);
}

/* heading */
.section-heading{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.section-heading h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:0;
    letter-spacing:1px;
    position:relative;
    display:inline-block;
}

.section-heading h2::after{
    content:'';
    width:110px;
    height:4px;
    background:linear-gradient(to right,transparent,#fff,transparent);
    position:absolute;
    left:50%;
    bottom:-14px;
    transform:translateX(-50%);
    border-radius:10px;
}

/* cards wrapper */
.mobile-category-wrapper{
    display:flex;
    gap:18px;
    overflow-x:auto;
    padding-bottom:10px;
    position:relative;
    z-index:2;
    scrollbar-width:none;
}

.mobile-category-wrapper::-webkit-scrollbar{
    display:none;
}

/* card */
.mobile-category-card{
    min-width:160px;
    background:linear-gradient(145deg,#1a1a1a,#0d0d0d);
    border-radius:24px;
    padding:18px 12px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    flex-shrink:0;

    box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.06),
    0 12px 28px rgba(0,0,0,0.6);
}

/* glossy hover */
.mobile-category-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transition:0.8s;
}

.mobile-category-card:hover::before{
    left:100%;
}

.mobile-category-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,0.15);
}

/* image box */
.mobile-category-image{
    width:95px;
    height:95px;
    margin:auto;
    border-radius:20px;
    background:linear-gradient(145deg,#262626,#151515);
    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.05),
    0 10px 20px rgba(0,0,0,0.5);
}

/* image */
.mobile-category-image img{
    width:60px;
    height:60px;
    object-fit:contain;
    transition:0.4s ease;
}

.mobile-category-card:hover img{
    transform:scale(1.08) rotate(-4deg);
}

/* title */
.mobile-category-card h3{
    color:#fff;
    font-size:13px;
    font-weight:700;
    margin-top:16px;
    line-height:1.3;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

/* mobile */
@media(max-width:768px){

    .mobile-accessories-section{
        padding:45px 12px;
    }

    .section-heading{
        margin-bottom:30px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading h2::after{
        width:80px;
        height:3px;
    }

    .mobile-category-wrapper{
        gap:14px;
    }

    .mobile-category-card{
        min-width:125px;
        padding:14px 10px;
        border-radius:20px;
    }

    .mobile-category-image{
        width:75px;
        height:75px;
        border-radius:16px;
    }

    .mobile-category-image img{
        width:48px;
        height:48px;
    }

    .mobile-category-card h3{
        font-size:11px;
        margin-top:12px;
    }

}

/* mobile */
@media(max-width:767px){

    .arrival-product-section{
        padding:40px 8px;
    }

    .arrival-heading h2{
        font-size:26px;
    }

    .arrival-heading p{
        font-size:11px;
    }

    .arrival-card{
        border-radius:14px;
    }

    .arrival-image{
        height:130px;
    }

    .arrival-image img{
        width:75px;
        height:75px;
    }

    .arrival-content{
        padding:10px;
    }

    .arrival-content h3{
        font-size:12px;
        margin-bottom:8px;
    }

    .arrival-old-price{
        font-size:9px;
    }

    .arrival-new-price{
        font-size:14px;
    }

    .arrival-cart-btn{
        height:34px;
        font-size:10px;
    }

}

/* Mobile */
@media(max-width:767px){

    .promo-banner{
        margin-bottom:15px;
    }

    .promo-banner img{
        height:190px;
    }

}

.mobile-accessories{
    background:#f7f7f7;
    overflow:hidden;
}

.section-heading h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.section-heading p{
    color:#777;
    margin:0;
}

/* LEFT SIDE */
.side-product-card{
    background:#fff;
    padding:12px;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.side-product-card:hover{
    transform:translateY(-4px);
}

.side-product-card img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    margin-right:15px;
}

.product-info h6{
    font-size:15px;
    margin-bottom:5px;
    font-weight:600;
}

.product-info span{
    color:#ff6600;
    font-weight:700;
}

/* CENTER PRODUCT */
.center-product{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    position:relative;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.sale-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#ff3d00;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.main-product-img{
    max-height:350px;
    object-fit:contain;
}

.center-product h3{
    font-size:32px;
    font-weight:700;
}

.center-product p{
    color:#666;
    max-width:500px;
    margin:auto;
}

.price-wrap{
    margin-top:15px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-right:10px;
    font-size:18px;
}

.new-price{
    color:#ff6600;
    font-size:28px;
    font-weight:700;
}

.buy-btn{
    background:#000;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.buy-btn:hover{
    background:#ff6600;
    color:#fff;
}

/* RIGHT GRID */
.grid-product{
    background:#fff;
    padding:15px;
    border-radius:18px;
    text-align:center;
    height:100%;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.grid-product:hover{
    transform:translateY(-5px);
}

.grid-product img{
    width:100%;
    height:120px;
    object-fit:contain;
    margin-bottom:10px;
}

.grid-product h6{
    font-size:14px;
    margin-bottom:5px;
    font-weight:600;
}

.grid-product span{
    color:#ff6600;
    font-weight:700;
}

/* MOBILE */
@media(max-width:991px){

    .center-product{
        margin:20px 0;
    }

    .section-heading h2{
        font-size:28px;
    }

}