/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ===== Portello India - Frontend Styles ===== */
:root {
    --primary: #1a3a5c;
    --primary-dark: #122a44;
    --accent: #e8a020;
    --accent-dark: #c8881a;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border: #dee2e6;
}

body { font-family: 'Poppins', sans-serif; color: var(--text-dark); }
/* body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 400;
} */
/* Navbar */
.navbar-brand img { height: 80px; }
.navbar { 
    background:#fff !important;
    /* background: var(--primary) !important;  */
}
.navbar .nav-link { color: #000 !important; font-weight: 500; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent) !important; }
.cart-badge { background: var(--accent); color: #fff; border-radius: 50%; padding: 2px 6px; font-size: 11px; font-weight: 700; }
.currency-badge { background: rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; color: #fff; font-size: 13px; cursor: pointer; }

/* Hero Slider */
.hero-slider { position: relative; }
.hero-slider .carousel-item { height: 520px; }
.hero-slider .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider .carousel-caption { background: rgba(26,58,92,0.7); border-radius: 12px; padding: 30px; bottom: 60px; }
.hero-slider .carousel-caption h2 { font-size: 2.2rem; font-weight: 700; color: #fff; }
.hero-slider .carousel-caption p { font-size: 1.1rem; color: rgba(255,255,255,0.9); }

/* Buttons */
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }

/* Section Headings */
.section-title { font-size: 1.8rem; font-weight: 700; color: var(--primary); position: relative; padding-bottom: 12px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }


.section-title1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: auto;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

/* Product Card */
.product-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.3s ease; background: #fff; }
.product-card:hover { box-shadow: 0 8px 25px rgba(26,58,92,0.15); transform: translateY(-4px); }
.product-card .product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-card .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-card .badge-sale { position: absolute; top: 10px; left: 10px; background: #dc3545; color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.product-card .badge-featured { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.product-card .card-body { padding: 16px; }
.product-card .product-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 6px; }
.product-card .price-wrap .price { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.product-card .price-wrap .price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }

/* Category Card */
.category-card { border-radius: 10px; overflow: hidden; position: relative; height: 180px; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.08); }
.category-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,92,0.85), transparent); display: flex; align-items: flex-end; padding: 16px; }
.category-card .overlay h5 { color: #fff; font-weight: 700; margin: 0; font-size: 1.05rem; }

/* Cart */
.cart-table th { background: var(--primary); color: #fff; font-weight: 600; }
.cart-summary { background: var(--bg-light); border-radius: 10px; padding: 24px; }
.cart-summary .total-row { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* Checkout */
.checkout-step { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 28px; }
.order-summary-box { background: var(--bg-light); border-radius: 10px; padding: 20px; }

/* Product Detail */
.product-detail-img { border-radius: 10px; overflow: hidden; }
.product-detail-img img { width: 100%; object-fit: cover; border-radius: 10px; }
.thumb-gallery img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; cursor: pointer; }
.thumb-gallery img.active, .thumb-gallery img:hover { border-color: var(--accent); }
.product-price-box { background: var(--bg-light); border-radius: 10px; padding: 20px; }
.gst-badge { background: rgba(26,58,92,0.08); color: var(--primary); font-size: 13px; border-radius: 20px; padding: 4px 12px; }

/* Breadcrumb */
.breadcrumb-section { background: var(--primary); padding: 12px 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Footer */
footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 50px 0 20px; }
footer h6 { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 30px; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; margin-right: 8px; transition: background 0.3s; }
.social-links a:hover { background: var(--accent); }

/* Account */
.account-sidebar { background: var(--primary); border-radius: 10px; padding: 20px; }
.account-sidebar .nav-link { color: rgba(255,255,255,0.75); border-radius: 8px; margin-bottom: 4px; }
.account-sidebar .nav-link:hover, .account-sidebar .nav-link.active { background: rgba(255,255,255,0.15); color: #fff; }

/* Country Selector */
.country-modal-btn { position: fixed; bottom: 20px; right: 20px; z-index: 999; }

/* Toast / Alert */
.alert { border-radius: 8px; }

/* Misc */
.badge-inr { background: #198754; color: #fff; }
.badge-usd { background: #0d6efd; color: #fff; }
.no-image { background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #aaa; }

@media (max-width: 768px) {
    .hero-slider .carousel-item { height: 300px; }
    .hero-slider .carousel-caption h2 { font-size: 1.4rem; }
    .section-title { font-size: 1.4rem; }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
       
        justify-content: end;
    }
}
.navbar-nav a{
    color: #000;
}
.navbar-nav li{
        padding: 0 10px;
}
/* Header Right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Search Form */
.header-actions form {
    display: flex;
    align-items: center;
    position: relative;
}

.header-actions .form-control {
    width: 220px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    color: #fff;
    border-radius: 30px;
    padding: 0 45px 0 18px;
    box-shadow: none;
}

.header-actions .form-control::placeholder {
    color: rgba(255,255,255,.75);
}

.header-actions .form-control:focus {
    border-color: #fff;
    background: rgba(255,255,255,.15);
    color: #fff;
    box-shadow: none;
}

.header-actions button {
    position: absolute;
    right: 6px;
    width: 34px;
    height: 34px;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-actions button:hover {
    background: #f5f5f5;
}

/* Currency */
.currency-badge {
    background: rgb(228 112 46);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Cart */
.header-actions .bi-cart3 {
    font-size: 24px;
}

.header-actions a.text-white {
    color: #fff !important;
    transition: .3s;
}

.header-actions a.text-white:hover {
    color: #ffc107 !important;
}

/* Cart Badge */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: #ff3b30;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Button */
.header-actions .btn-outline-light {
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 500;
    transition: .3s;
}

.header-actions .btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width:991px) {
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-actions .form-control {
        width: 180px;
    }

    .currency-badge {
        display: none;
    }
}

@media (max-width:576px) {
    .header-actions {
        width: 100%;
    }

    .header-actions form {
        width: 100%;
    }

    .header-actions .form-control {
        width: 100%;
    }
}
.bg-ll {
    color: #fff;
    background: #1e5199;
    font-size: 16px;
    padding: 6px 18px;
    /* background: rgb(228 112 46); */
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
/* Premium Search Bar */
.header-search {
    position: relative;
    width: 320px;
}

.header-search input {
    width: 100%;
    height: 52px;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    background: #fff;
    padding: 0 60px 0 22px;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.header-search input::placeholder {
    color: #9a9a9a;
}

.header-search input:focus {
    border-color: #111;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #111, #444);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .35s ease;
}

.header-search button i {
    font-size: 16px;
}

.header-search button:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.header-search:hover input {
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Responsive */
@media (max-width:991px) {
    .header-search {
        width: 260px;
    }

    .header-search input {
        height: 48px;
        font-size: 14px;
    }

    .header-search button {
        width: 38px;
        height: 38px;
    }
}

@media (max-width:576px) {
    .header-search {
        width: 100%;
    }
}
.hero-slider{
    overflow:hidden;
}

.hero-slider .carousel-item{
    height:720px;
}

.hero-bg{
    height:720px;
    position:relative;
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.15) 100%);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    /* max-width:620px; */
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    color:#fff;
    margin-bottom:25px;
    letter-spacing:2px;
    font-size:13px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:64px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    color:#e5e5e5;
    margin-bottom:35px;
    line-height:1.8;
}

.hero-btn{
       background: #255096;
    color: #fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    margin-right:15px;
}

.hero-btn:hover{
    background:#fff;
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#000;
}

.hero-image{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero-image img{
    max-height:520px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* Fade animation */

.carousel-item.active .hero-content>*{
    animation:fadeUp .8s ease forwards;
}

.carousel-item .hero-content>*{
    opacity:0;
}

.carousel-item.active .hero-tag{
    animation-delay:.2s;
}

.carousel-item.active h1{
    animation-delay:.4s;
}

.carousel-item.active p{
    animation-delay:.6s;
}

.carousel-item.active .hero-btns{
    animation-delay:.8s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Arrows */

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
}

.carousel-control-prev{
    left:30px;
}

.carousel-control-next{
    right:30px;
}

/* Indicators */

.carousel-indicators button{
    width:12px!important;
    height:12px!important;
    border-radius:50%;
    margin:0 8px!important;
}

.carousel-indicators .active{
    width:38px!important;
    border-radius:30px;
    background:#ffb400;
}

@media(max-width:991px){

.hero-slider .carousel-item,
.hero-bg{
    height:600px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:17px;
}

}

@media(max-width:576px){

.hero-slider .carousel-item,
.hero-bg{
    height:520px;
}

.hero-content h1{
    font-size:32px;
}

.hero-btn,
.hero-btn-outline{
   display: block;
        /* width: 100%; */
        margin-bottom: 15px;
        text-align: center;
        font-size: 12px;
        padding: 10px 20px;
}

}.hero-features{
    margin-top:-80px;
    position:relative;
    z-index:20;
    padding-bottom:80px;
}

.feature-box{

    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.4s;
    height:100%;
    border:1px solid #edf1f5;

}

.feature-box:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;
    height:80px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    margin-bottom:25px;

}

.feature-icon svg{

    width:38px;
    height:38px;

}

.blue{

    background:#edf6ff;
    color:#1e6de8;    border: 1px dashed;

}

.green{

    background:#eefcf3;
    color:#00a651;    border: 1px dashed;

}

.orange{

    background:#fff5e8;
    color:#f59d16;    border: 1px dashed;

}

.red{

    background:#fff0f0;
    color:#e84a5f;    border: 1px dashed;

}

.feature-box .head-f{

    font-weight:600;
    margin-bottom:15px;
font-size: 1.25rem;
}

.feature-box p{

    color:#000;
    line-height:1.7;
    margin:0;

}

@media(max-width:991px){

.hero-features{

    margin-top:40px;

}

}/* Right Side Vertical Indicators */
.hero-slider .carousel-indicators {
    position: absolute;
    right: 30px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 12px;

    width: auto;
}

/* Default Indicator */
.hero-slider .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: 2px solid #fff;
    margin: 0 !important;
    opacity: 1;
    transition: .35s;
}

/* Active Indicator */
.hero-slider .carousel-indicators .active {
    width: 14px !important;
    height: 40px !important;
    border-radius: 20px;
    background: #16316c;
    border-color: #f5b400;
}

/* Hover */
.hero-slider .carousel-indicators button:hover {
    background: #fff;
}@media (max-width: 991px) {

    .hero-slider .carousel-indicators {
        right: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(50%);
        flex-direction: row;
    }

    .hero-slider .carousel-indicators .active {
        width: 40px !important;
        height: 12px !important;
        border-radius: 20px;
    }

}.py-100{
    padding:100px 0;
}

/* Heading */

.section-heading{

    max-width:700px;
    margin:auto;

}

.sub-title{

    display:inline-block;
    padding:8px 22px;
    background:#eef5ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;

}

.section-heading h2{

    font-size:48px;
    font-weight:800;
    margin:20px 0;

}

.section-heading p{

    color:#000;
    line-height:1.8;

}

/* Card */

.category-item{

    display:block;
    overflow:hidden;
    border-radius:24px;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.category-image{

    height:280px;
    overflow:hidden;

}

.category-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.category-item::before{

    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.1));

    z-index:1;

}

.category-content{

    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;
    color:#fff;

}

.category-content h4{

    font-size:28px;
    font-weight:700;
    margin-bottom:15px;

}

.category-content span{

    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;

}

.category-item:hover img{

    transform:scale(1.12);

}

.category-item:hover{

    transform:translateY(-10px);
    transition:.4s;
}.featured-products{
    background:#f7f8fc;
}

.section-header{
    border-bottom:1px solid #e6e6e6;
    padding-bottom:25px;
}

.section-subtitle{

    display:inline-block;
    padding:8px 18px;

    background:#eef5ff;

    color:#0d4b8f;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;
margin-bottom: 10px;
}

.section-title{

    font-size:42px;

    font-weight:600;

    color:#0f2945;

    margin-bottom:10px;

}

.section-description{

    color: #000;
    max-width: 520px;
 
    line-height: 1.8;
}

.view-all-btn{

    border:2px solid #143b63;

    color:#143b63;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.view-all-btn:hover{

    background:#143b63;

    color:#fff;

}

.premium-product{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.35s;

    height:100%;

}

.premium-product:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.13);

}

.product-image{

    position:relative;

    background:#fff !important;

    height:280px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    overflow:hidden;

}

.product-image img{

    max-width:100%;

    max-height:220px;

    transition:.5s;

}

.premium-product:hover img{

    transform:scale(1.08);

}

.sale-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#ef4444;

    color:#fff;

    padding:7px 15px;

    border-radius:30px;

    font-size:11px;

    font-weight:600;

    z-index:2;

}

.featured-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:#ffb400;

    color:#fff;

    padding:7px 15px;

    border-radius:30px;

    font-size:11px;

    font-weight:600;

    z-index:2;

}

.product-hover{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(20,59,99,.45);

    opacity:0;

    transition:.35s;

}

.premium-product:hover .product-hover{

    opacity:1;

}

.quick-view{

    background:#fff;

    color:#143b63;

    text-decoration:none;

    padding:12px 26px;

    border-radius:40px;

    font-weight:700;

}

.product-content{

    padding:25px;

}

.product-title{

    min-height:40px;

    font-size:18px;

    font-weight:500;

}

.product-title a{

    color:#222;

    text-decoration:none;
        font-size: 16px;

}

.product-title a:hover{

    color:#143b63;

}

.product-price{

    margin:18px 0;

}

.new-price{

    font-size:24px;

    font-weight:600;

    color:#143b63;

}

.old-price{

    color:#999;

    margin-left:8px;

    text-decoration:line-through;

}

.cart-btn{

    width:100%;

    background:#143b63;

    color:#fff;

    border:none;

    border-radius:50px;

    padding:14px;

    font-weight:600;

    transition:.3s;

}

.cart-btn:hover{

    background:#f17f33;

}

@media(max-width:991px){

.section-title{

    font-size:34px;

}

.view-all-btn{

    margin-top:20px;

}

}

@media(max-width:767px){

.product-image{

    height:220px;

}

.product-image img{

    max-height:170px;

}

.product-title{

    font-size:15px;

    min-height:48px;

}

.new-price{

    font-size:22px;

}

}
.new-arrivals{
    background:#fff;
}

.arrival-badge{
    position:absolute;
    top:18px;
    left:18px;
    /* background:linear-gradient(135deg,#0ea5e9,#2563eb); */
    color:#fff;
    padding:7px 16px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    z-index:2;
}

.new-arrivals .premium-product{
    border:1px solid #edf1f5;
}

.new-arrivals .premium-product:hover{
    border-color:#143b63;
}

.new-arrivals .product-image{
    background:linear-gradient(180deg,#f8f9fb,#eef3f9);
}

/* .premium-cta{
    padding:100px 0;
    background:#f7f9fc;
} */

.cta-box{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#0f2945,#1f5f96);

    border-radius:30px;

    padding:70px;

    color:#fff;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.cta-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.cta-box h2{

    font-size:48px;

    font-weight:600;

    line-height:1.2;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    color:rgba(255,255,255,.85);

    line-height:1.8;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-shop{

    background:#e07237;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-shop:hover{

    background:#fff;

    color:#0f2945;

}

.btn-contact{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-contact:hover{

    background:#fff;

    color:#0f2945;

}

.cta-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:30px;

    text-align:center;

}

.stat-box h3{

    font-size:34px;

    font-weight:800;

    color:#ffc107;

    margin-bottom:8px;

}

.stat-box span{

    color:#fff;

    opacity:.9;

}

.shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.shape1{

    width:220px;

    height:220px;

    top:-80px;

    right:-80px;

}

.shape2{

    width:140px;

    height:140px;

    bottom:-40px;

    left:-40px;

}

@media(max-width:991px){
    .hero-btns{
        display: flex;
    }

.cta-box{

    padding:40px 30px;

}

.cta-box h2{

    font-size:34px;

}

.cta-stats{

    margin-top:40px;

}

}

@media(max-width:576px){

.cta-stats{

    grid-template-columns:1fr;

}

.cta-buttons{

    flex-direction:column;

}

.btn-shop,
.btn-contact{

    width:100%;

    text-align:center;

}

}
/*==========================
        PREMIUM FOOTER
===========================*/

footer{
    position:relative;
    background:linear-gradient(135deg,#0f2945 0%,#163b68 100%);
    color:#fff;
    padding:50px 0 0;
    overflow:hidden;
}

footer::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

footer::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
}

footer .container{
    position:relative;
    z-index:2;
}

/* Logo */

footer img{
    height:120px !important;
    margin-bottom:20px;
}

/* Headings */

footer .head-l{
  
    color: #f5eae4;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0;
}

/* Paragraph */

footer p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    font-size:15px;
    margin-bottom:12px;
}

/* Contact */

footer p i{
    color:#ffb32d;
    margin-right:10px;
    font-size:16px;
}

/* Links */

footer ul{
    padding:0;
    margin:0;
}

footer ul li{
    list-style:none;
    margin-bottom:14px;
}

footer ul li a{
    color:rgba(255,255,255,.80);
    text-decoration:none;
    transition:.35s;
    position:relative;
    padding-left:18px;
}

footer ul li a::before{

      content: "\f285"; /* chevron-right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffb32d;
    font-size: 12px;
    transition: all .3s ease;
}

footer ul li a:hover{

    color:#fff;

    padding-left:25px;

}

/* Social */

.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-links a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:18px;

    text-decoration:none;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.social-links a:hover{

    background:#ffb32d;

    color:#163b68;

    transform:translateY(-5px);

}

/* Payment Badges */

.badge{

    border-radius:30px;

    padding:8px 16px;

    font-weight:600;

    font-size:12px;

    margin-bottom:8px;

}

/* Footer Bottom */

.footer-bottom{

    margin-top:10px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    color:rgba(255,255,255,.75);

    font-size:14px;

}

/* Newsletter */

.footer-newsletter{

    margin-top:20px;

    position:relative;

}

.footer-newsletter input{

    width:100%;

    height:56px;

    border:none;

    outline:none;

    border-radius:50px;

    padding:0 150px 0 22px;

    background:#fff;

    color:#333;

}

.footer-newsletter button{

    position:absolute;

    right:6px;

    top:6px;

    height:44px;

    border:none;

    background:#ffb32d;

    color:#163b68;

    font-weight:700;

    padding:0 25px;

    border-radius:50px;

    transition:.3s;

}

.footer-newsletter button:hover{

    background:#163b68;

    color:#fff;

}

/* Payment Icons */

.payment-icons{

    display:flex;

    gap:12px;

    margin-top:20px;

    flex-wrap:wrap;

}

.payment-icons img{

    height:34px !important;

    background:#fff;

    padding:5px 10px;

    border-radius:8px;

}

/* Small Text */

footer small{

    color:rgba(255,255,255,.65);

}

/* Hover Animation */

footer ul li{

    transition:.3s;

}

footer ul li:hover{

    transform:translateX(5px);

}

/* Mobile */

@media(max-width:991px){

footer{

    padding-top:60px;

}

footer .head-l{

    margin-top:30px;

}

.footer-bottom{

    text-align:center;

    justify-content:center;

    gap:10px;

}

}

@media(max-width:576px){

.social-links{

    justify-content:center;

}

footer{

    text-align:center;

}

footer ul li a{

    padding-left:0;

}

footer ul li a::before{

    display:none;

}

}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}/*==========================
      Premium Breadcrumb
===========================*/

.premium-breadcrumb{

    background:#f8f9fc;

    padding:35px 0;

}

.breadcrumb-box{

    background:#fff;

    border-radius:18px;

    padding:25px 35px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    border:1px solid #edf1f5;

}

.page-title{

    font-size:34px;

    font-weight:800;

    color:#17375e;

    margin:0;

}

.breadcrumb{

    background:none;

    padding:0;

}

.breadcrumb-item{

    font-size:15px;

    font-weight:600;

}

.breadcrumb-item a{

    color:#6c757d;

    text-decoration:none;

    transition:.3s;

}

.breadcrumb-item a:hover{

    color:#17375e;

}

.breadcrumb-item.active{

    color:#f5a623;

    font-weight:700;

}

.breadcrumb-item+.breadcrumb-item::before{

    content:"\F285";

    font-family:"bootstrap-icons";

    color:#b5b5b5;

    padding:0 12px;

}

.breadcrumb-item i{

    margin-right:6px;

    color:#17375e;

}

@media(max-width:991px){

.page-title{

    font-size:28px;

    margin-bottom:15px;

}

.breadcrumb{

    justify-content:flex-start !important;

}

}

@media(max-width:576px){

.breadcrumb-box{

    padding:20px;

}

.page-title{

    font-size:24px;

}

.breadcrumb-item{

    font-size:13px;

}

}
/*==========================
    SHOP PAGE
==========================*/

.shop-page{
    background:#f7f9fc;
    padding:60px 0;
}

/* Sidebar */

.shop-sidebar{
    position:sticky;
    top:100px;
}

.filter-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #edf1f5;
}

.filter-title{
    background:linear-gradient(135deg,#163b68,#295d91);
    color:#fff;
    padding:18px 22px;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.filter-title i{
    font-size:20px;
}

/* Accordion */

.accordion-item{
    border:none;
    border-bottom:1px solid #edf1f5;
}

.accordion-button{
    background:#fff;
    font-weight:600;
    color:#17375e;
    box-shadow:none!important;
    padding:18px 20px;
}

.accordion-button:not(.collapsed){
    background:#fff;
    color:#17375e;
}

.accordion-button::after{
    transform:scale(.9);
}

/* Category */

.category-list{
    margin:0;
    padding:0;
    list-style:none;
}

.category-list li{
    border-bottom:1px solid #f2f2f2;
}

.category-list li:last-child{
    border:none;
}

.category-list li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 22px;
    color:#555;
    text-decoration:none;
    transition:.35s;
    font-weight:500;
}

.category-list li a:hover{
    background:#f5f8fc;
    color:#163b68;
    padding-left:30px;
}

.category-list li a.active{
    background:#163b68;
    color:#fff;
}

/* Form */

.form-check{
    margin-bottom:15px;
}

.form-check-input{
    width:18px;
    height:18px;
    cursor:pointer;
}

.form-check-label{
    cursor:pointer;
    color:#555;
    margin-left:6px;
}

/* Toolbar */

.shop-toolbar{
    background:#fff;
    border-radius:18px;
    padding:20px 25px;
    margin-bottom:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.shop-toolbar h2{
    margin:0;
    font-size:30px;
    font-weight:800;
    color:#163b68;
}

.shop-toolbar span{
    color:#777;
    font-size:14px;
}

.shop-toolbar select{
    min-width:220px;
    height:48px;
    border-radius:50px;
    border:1px solid #ddd;
    font-weight:600;
    padding:0 18px;
    box-shadow:none;
}

.shop-toolbar select:focus{
    border-color:#163b68;
}

/* Offcanvas */

.offcanvas-header{
    background:#163b68;
    color:#fff;
}

.offcanvas-title{
    color:#fff;
}

.offcanvas-body{
    padding:0;
}

/* Product Grid */

.shop-page .row.g-4{
    --bs-gutter-y:1.8rem;
}

/* Empty */

.empty-products{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:70px 30px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.empty-products i{
    font-size:70px;
    color:#c7c7c7;
}

.empty-products h4{
    margin-top:20px;
    color:#17375e;
    font-weight:700;
}

/* Pagination */

.pagination{
    margin-top:50px;
}

.page-item{
    margin:0 5px;
}

.page-link{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%!important;
    border:none;
    color:#163b68;
    font-weight:700;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.page-item.active .page-link{
    background:#163b68;
    border-color:#163b68;
}

.page-link:hover{
    background:#163b68;
    color:#fff;
}

/* Product Cards */

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid #edf1f5;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.product-img-wrap{
    position:relative;
    background:#fff;
    overflow:hidden;
}

.product-img-wrap img{
    width:100%;
    height:260px;
    object-fit:contain;
    transition:.45s;
    padding:25px;
}

.product-card:hover img{
    transform:scale(1.08);
}

.badge-sale{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff4d4f;
    color:#fff;
    padding:7px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.badge-featured{
    position:absolute;
    top:15px;
    right:15px;
    width:38px;
    height:38px;
    background:#f4b400;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-name{
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.product-name a{
    color:#17375e;
    text-decoration:none;
}

.price{
    color:#163b68;
    font-size:24px;
    font-weight:800;
}

.price-old{
    color:#999;
    text-decoration:line-through;
}

.btn-primary{
    border-radius:50px;
    font-weight:600;
    padding:10px 18px;
}

.btn-outline-primary{
    border-radius:50px;
}

/* Scrollbar */

.category-list::-webkit-scrollbar{
    width:6px;
}

.category-list::-webkit-scrollbar-thumb{
    background:#163b68;
    border-radius:20px;
}

/* Responsive */

@media(max-width:991px){

.shop-sidebar{
    position:relative;
    top:0;
}

.shop-toolbar{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.shop-toolbar select{
    width:100%;
}

.product-img-wrap img{
    height:220px;
}

}

@media(max-width:576px){

.shop-page{
    padding:35px 0;
}

.shop-toolbar{
    padding:18px;
}

.shop-toolbar h2{
    font-size:22px;
}

.product-img-wrap img{
    height:180px;
}

.price{
    font-size:20px;
}

.product-name{
    font-size:15px;
}

.page-link{
    width:40px;
    height:40px;
}

}.shop-sidebar{
    position:sticky;
    top:110px;
}

.sidebar-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    border:1px solid #edf2f7;
}

.sidebar-title{
    background:linear-gradient(135deg,#17375f,#295387);
    color:#fff;
    padding:18px 22px;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.sidebar-title i{
    color:#ffb324;
}

.accordion-item{
    border:none;
}

.accordion-button {
    background: #fff;
    font-weight: 600;
    color: #17375f;
    box-shadow: none;
    padding: 18px 22px;
    border-bottom: 1px solid;
}
.accordion-button:last-child {
 
    border-bottom: 0px solid;
}
.accordion-collapse{
    background: #dce3eb;
}
.accordion-button:not(.collapsed){
    background:#fff;
    color:#17375f;
}

.accordion-button:focus{
    box-shadow:none;
}

.category-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.category-menu li{
    margin-bottom:12px;
}

.category-menu li:last-child{
    margin-bottom:0;
}

.category-menu a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    background:#fff;
    color:#17375f;
    border:1px solid #edf2f7;
    border-radius:14px;
    padding:15px 18px;
    font-weight:600;
    transition:.35s;
}

.category-menu a span{
    display:flex;
    align-items:center;
    gap:10px;
}

.category-menu a i:first-child{
    width:18px;
    color:#ffb324;
}

.category-menu a i:last-child{
    font-size:18px;
    transition:.35s;
}

.category-menu a:hover{
    background:#17375f;
    color:#fff;
    transform:translateX(6px);
    box-shadow:0 10px 25px rgba(23,55,95,.15);
}

.category-menu a:hover i{
    color:#fff;
}

.category-menu a:hover i:last-child{
    transform:translateX(5px);
}

.category-menu a.active{
    background:linear-gradient(135deg,#17375f,#295387);
    color:#fff;
    border-color:#17375f;
    box-shadow:0 10px 25px rgba(23,55,95,.18);
}

.category-menu a.active i{
    color:#ffb324;
}

.form-check{
    margin-bottom:15px;
}

.form-check-label{
    font-weight:500;
    color:#555;
}

.form-check-input:checked{
    background:#17375f;
    border-color:#17375f;
}/* Mobile Filter */
.offcanvas{
    width:320px !important;
}

.offcanvas-header{
    background:#173a67;
    color:#fff;
    padding:18px 20px;
}

.offcanvas-title{
    font-size:20px;
    font-weight:700;
}

.offcanvas-body{
    padding:20px;
    padding-bottom:95px;
    background:#f8f9fb;
}

.filter-footer{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    gap:12px;
    padding:15px 20px;
    background:#fff;
    border-top:1px solid #ececec;
    box-shadow:0 -10px 30px rgba(0,0,0,.08);
}

.btn-clear{
    flex:1;
    height:52px;
    border:2px solid #173a67;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#173a67;
    font-weight:600;
    transition:.3s;
}

.btn-clear:hover{
    background:#173a67;
    color:#fff;
}

.btn-apply{
    flex:2;
    height:52px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#173a67,#0d5ea8);
    color:#fff;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.btn-apply:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(23,58,103,.35);
}.mobile-filter-btn{
    position:fixed;
    left:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#17375f,#2b5f95);
    color:#fff;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(23,55,95,.35);
    z-index:9999;
    transition:.3s;
}

.mobile-filter-btn:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 15px 35px rgba(23,55,95,.45);
}

.mobile-filter-btn:focus{
    outline:none;
    box-shadow:0 15px 35px rgba(23,55,95,.45);
}

@media (min-width:992px){
    .mobile-filter-btn{
        display:none;
    }
}
/*======================================
    PREMIUM PRODUCT DETAILS
======================================*/

body{
    background:#f8f9fb;
}

/* Product Image */
.product-detail-img{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:25px;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.product-detail-img:hover{
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.product-detail-img img{
    width:100%;
    transition:.5s;
}

.product-detail-img:hover img{
    transform:scale(1.04);
}

/* Thumbnail Gallery */

.thumb-gallery{
    margin-top:18px;
}

.thumb-gallery img{
    width:82px;
    height:82px;
    object-fit:cover;
    background:#fff;
    border:2px solid #ececec;
    border-radius:14px;
    cursor:pointer;
    transition:.35s;
    padding:5px;
}

.thumb-gallery img:hover{
    border-color:#ffb32d;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.thumb-gallery img.active{
    border-color:#ffb32d;
    box-shadow:0 0 0 3px rgba(255,179,45,.15);
}

/* Category */

.text-uppercase{
    letter-spacing:2px;
    color:#ffb32d!important;
}

/* Product Title */

h1.h2{
    font-size:38px;
    font-weight:700;
    color:#222;
    line-height:1.3;
}

/* SKU */

.small strong{
    color:#111;
}

/* Price Box */

.product-price-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    border:1px solid #ededed;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.product-price-box .fs-2{
    color:#ff7a00!important;
    font-size:40px!important;
}

.product-price-box .text-decoration-line-through{
    font-size:24px!important;
    opacity:.55;
}

/* GST Badge */

.gst-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:#eef7ff;
    color:#0077ff;
    font-weight:600;
    font-size:14px;
}

/* Stock Badge */

.badge{
    padding:5px 10px;
    font-size:14px;
    border-radius:30px;
}

/* Description */

.text-muted{
    line-height:1.9;
}

/* Quantity */

.qty-wrap{
    overflow:hidden;
    background:#fff;
    border-radius:20px!important;
    border:2px solid #ececec!important;
}

.qty-btn{
    background:#fff!important;
    font-size:24px;
    font-weight:700;
    transition:.3s;
        border-radius: 15px;
}

.qty-btn:hover{
    background:#ffb32d!important;
    color:#fff;
}

.qty-input{
    font-weight:700;
    font-size:18px;
    box-shadow:none!important;
}

/* Add Cart */

.btn-accent{
    background:linear-gradient(135deg, #18458a, #0c2b62);
    color:#fff;
    border:none;
    border-radius:60px;
    padding:15px 35px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.35s;
    /* box-shadow:0 12px 25px rgba(255,122,0,.35); */
}

.btn-accent:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 18px 40px rgba(255,122,0,.45);
}

/* Meta */

.border-top{
    border-color:#ececec!important;
}

.border-top p{
    margin-bottom:10px;
    font-size:15px;
}

/* Tabs */

.nav-tabs{
    border:none;
    gap:10px;
}
.text-black{
    color: #000 !important;
}
.nav-tabs .nav-link{
    border:none;
    background:#d3dced;
    border-radius:20px 20px 0 0;
    padding:12px 28px;
    font-weight:600;
    color:#444;
}

.nav-tabs .nav-link.active{
    background:#132f68;
    color:#fff;
}

.tab-content{
    border:none!important;
    background:#fff;
    border-radius:0 0 20px 20px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    line-height:1.9;
}

/* Related */

.section-title{
    position:relative;
    font-size:30px;
    /* font-weight:700; */
    margin-bottom:15px;
}

.section-title:after{
    content:'';
    width:80px;
    height:4px;
    background:#ffb32d;
    display:block;
    margin-top:12px;
    border-radius:20px;
}

/* Product Card */

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-img-wrap{
    background:#fafafa;
    overflow:hidden;
}

.product-img-wrap img{
    width:100%;
    height:250px;
    object-fit:contain;
    transition:.45s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card .card-body{
    padding:20px;
}

.product-name{
    min-height:52px;
    font-weight:600;
    line-height:1.5;
}

.product-name a{
    color:#222;
}

.product-name a:hover{
    color:#ff7a00;
}

.price{
    color:#ff7a00;
    font-size:22px;
    font-weight:700;
}

/* Mobile */

@media(max-width:991px){

.product-detail-img{
    margin-bottom:25px;
}

h1.h2{
    font-size:28px;
}

.product-price-box .fs-2{
    font-size:30px!important;
}

.thumb-gallery img{
    width:65px;
    height:65px;
}

.btn-accent{
    width:100%;
}

}.product-meta-box{
    /* margin-top:35px; */
    background:#fff;
    /* border:1px solid #ededed; */
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.meta-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 24px;
    transition:.35s;
}

.meta-item:not(:last-child){
    border-bottom:1px solid #f2f2f2;
}

.meta-item:hover{
    background:#fff8ef;
}

.meta-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.meta-content{
    display:flex;
    flex-direction:column;
}

.meta-content span{
    color:#888;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:4px;
}

.meta-content strong{
    font-size:17px;
    color:#222;
    font-weight:700;
}.product-meta-box{
    display:flex;
    gap:20px;
    /* margin-top:30px; */
}

.meta-item{
    flex:1;
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}
/* 
.meta-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    border-color:#ffb32d;
} */

.meta-icon{
    width:55px;
    height:55px;
    border-radius:12px;
    background:linear-gradient(135deg, #ffb32d, #1b4a92);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.meta-content span{
    display:block;
    font-size:12px;
    color:#888;
    text-transform:uppercase;
    letter-spacing:1px;
}

.meta-content strong{
    display:block;
    font-size:17px;
    color:#222;
    font-weight:700;
}

@media (max-width:768px){
    .product-meta-box{
        flex-direction:column;
    }
}/* Premium Product Description */

#desc{
    background:#fff;
    padding:15px;
    border-radius:18px;
    line-height:1.9;
    color:#000;
    font-size:16px;
}

/* Headings */

#desc h1,
#desc h2,
#desc h3,
#desc h4,
#desc h5{
    color:#222;
    font-weight:700;
    margin:30px 0 15px;
    position:relative;
    padding-left:18px;
}

#desc h1::before,
#desc h2::before,
#desc h3::before,
#desc h4::before,
#desc h5::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:5px;
    height:24px;
    background:#ffb32d;
    border-radius:20px;
}

/* Paragraph */

#desc p{
    margin-bottom:18px;
    color:#666;
}

/* List */

#desc ul,
#desc ol{
    padding-left:0;
    margin:20px 0;
    list-style:none;
}

#desc ul li,
#desc ol li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    color:#555;
}

#desc ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:20px;
    height:20px;
    background:#ffb32d;
    color:#fff;
    border-radius:50%;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* Strong */

#desc strong{
    color:#222;
}

/* Table */

#desc table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

#desc table th{
    background:#ffb32d;
    color:#fff;
    padding:14px;
}

#desc table td{
    padding:14px;
    border:1px solid #eee;
}

#desc table tr:nth-child(even){
    background:#fafafa;
}

/* Images */

#desc img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:20px 0;
}

/* Links */

#desc a{
    color:#ff7a00;
    text-decoration:none;
    font-weight:600;
}

#desc a:hover{
    text-decoration:underline;
}

/* Mobile */

@media(max-width:768px){

#desc{
    padding:20px;
    font-size:15px;
}

}
/*=================================
   PREMIUM CART PAGE
=================================*/
.form-control-sm {
 
    padding: .25rem 1.2rem !important;
    
}
.cart-table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    /* box-shadow:0 12px 40px rgba(0,0,0,.06); */
    border-collapse:separate;
    border-spacing:0;
}

.cart-table thead th{
       background: #16306b;
    color: #fff;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.8px;
    padding:18px;
    border:none;
}

.cart-table tbody td{
    padding:20px 18px;
    vertical-align:middle;
    border-bottom:1px solid #eee;
}

.cart-table tbody tr{
    transition:.3s;
}

.cart-table tbody tr:hover{
    background:#fffaf2;
}


/* Product image */

.cart-table img{
    width:75px!important;
    height:75px!important;
    border-radius:14px!important;
    object-fit:cover;
    border:1px solid #eee;
    padding:4px;
    background:#fff;
}


/* Product name */

.cart-table td a{
    color:#222;
    font-size:16px;
    transition:.3s;
}

.cart-table td a:hover{
    color:#ff9800;
}


/* Quantity */

.cart-table input{
    border-radius:30px;
    border:1px solid #ddd;
    height:42px;
    font-weight:600;
}

.cart-table input:focus{
    border-color:#ffb32d;
    box-shadow:0 0 0 .2rem rgba(255,179,45,.15);
}


/* Remove button */

.cart-table .btn-outline-danger{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.cart-table .btn-outline-danger:hover{
    background:#dc3545;
    color:#fff;
}


/* Update buttons */

.btn-outline-primary,
.btn-outline-secondary{
    border-radius:40px;
    padding:10px 22px;
    font-weight:600;
}


/* Coupon box */

.card{
    border-radius:20px!important;
    box-shadow:0 12px 35px rgba(0,0,0,.07)!important;
}

.card-body{
    padding:25px;
}

.card input{
    border-radius:30px;
    height:45px;
}

.card button{
    border-radius:30px;
    padding:0 25px;
}


/* Order summary */

.cart-summary{
    background:#fff;
    padding:28px;
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}


.cart-summary h3{
    font-size:22px;
    position:relative;
    padding-bottom:15px;
}

.cart-summary h3:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:60px;
    height:4px;
    background:#ffb32d;
    border-radius:20px;
}


.cart-summary table td{
    padding:14px 0;
    color:#666;
    font-size:15px;
}


.cart-summary .total-row td{
    font-size:22px;
    font-weight:700;
    color:#222;
}


/* Checkout button */

.cart-summary .btn-accent{
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    border:none;
    border-radius:50px;
    padding:16px;
    font-weight:700;
    color:#fff;
    box-shadow:0 12px 30px rgba(255,122,0,.35);
    transition:.35s;
}

.cart-summary .btn-accent:hover{
    transform:translateY(-3px);
}


/* Empty cart */

.bi-cart-x{
    color:#ffb32d!important;
}


@media(max-width:991px){

.cart-summary{
    position:static;
    margin-top:20px;
}

.cart-table{
    min-width:700px;
}

}
/* Cart Bottom Action Buttons */

.cart-action-buttons{
    margin-top:25px;
}


.cart-action-buttons .btn{
    height:46px;
    padding:0 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    transition:.35s ease;
}


/* Update Cart */

.cart-action-buttons .btn-outline-primary{
    color:#ff9800;
    border:2px solid #ffb32d;
    background:#fff;
}


.cart-action-buttons .btn-outline-primary:hover{
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    border-color:#ffb32d;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,122,0,.3);
}


/* Continue Shopping */

.cart-action-buttons .btn-outline-secondary{
    color:#555;
    border:2px solid #ddd;
    background:#fff;
}


.cart-action-buttons .btn-outline-secondary:hover{
    background:#222;
    border-color:#222;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


.cart-action-buttons i{
    font-size:16px;
}

.checkout-step{
    background:#fff;
    padding:30px;
    border-radius:22px;
    border:1px solid #eee;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
}


/* Section Heading */

.checkout-step h5{
    font-size:20px;
    color:#222;
    padding-bottom:15px;
    border-bottom:1px solid #eee;
}

.checkout-step h5 i{
    color:#ffb32d;
}


/* Labels */

.form-label{
    font-size:14px;
    font-weight:600;
    color:#444;
    margin-bottom:8px;
}


/* Inputs */

.checkout-step .form-control{
    height:50px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
}

.checkout-step textarea.form-control{
    height:auto;
    padding:15px;
}


.checkout-step .form-control:focus{
    border-color:#ffb32d;
    box-shadow:0 0 0 .25rem rgba(255,179,45,.15);
}


/* Payment Options */

.form-check{
    background:#fff;
    border:1px solid #e5e5e5!important;
    border-radius:15px!important;
    padding:18px 20px!important;
    transition:.3s;
}


.form-check:hover{
    border-color:#ffb32d!important;
    background:#fffaf2;
}


.form-check-input{
    margin-top:.3rem;
}


.form-check-input:checked{
    background-color:#ffb32d;
    border-color:#ffb32d;
}


/* Place Order Button */

.btn-accent{
    height:58px;
    border-radius:50px;
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    color:#fff;
    border:none;
    font-weight:700;
    font-size:17px;
    box-shadow:0 15px 35px rgba(255,122,0,.35);
    transition:.35s;
}


.btn-accent:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 20px 45px rgba(255,122,0,.45);
}


/* Order Summary */

.order-summary-box{
    background:#fff;
    padding:30px;
    border-radius:22px;
    border:1px solid #eee;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}


.order-summary-box h5{
    font-size:22px;
    position:relative;
    padding-bottom:15px;
}


.order-summary-box h5:after{
    content:"";
    width:65px;
    height:4px;
    background:#ffb32d;
    border-radius:20px;
    position:absolute;
    left:0;
    bottom:0;
}


/* Product Image */

.order-summary-box img{
    border-radius:12px!important;
    border:1px solid #eee;
    padding:3px;
}


/* Quantity Badge */

.order-summary-box .badge{
    background:#ffb32d!important;
    color:#fff;
}


/* Summary Table */

.order-summary-box table td{
    padding:12px 0;
    color:#666;
}


.order-summary-box table tr:last-child td{
    font-size:20px;
    color:#222;
    font-weight:700;
}


/* Alerts */

.order-summary-box .alert{
    border-radius:14px;
    border:none;
    line-height:1.6;
}


/* Mobile */

@media(max-width:991px){

.order-summary-box{
    position:static;
    margin-top:20px;
}

.checkout-step{
    padding:20px;
}

}
.prof-d{
        background: rgb(228 112 46);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
/* Premium Account Dropdown */
.dropdown-menu {
    min-width: 230px;
    /* padding: 12px; */
    border: 0;
    top:110% !important;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: dropdownFade .3s ease;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 25px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 2px;
}

/* Dropdown item */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}

.dropdown-item i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #ffb32d;
    font-size: 16px;
    transition: .3s;
}

.dropdown-item:hover {
    background: linear-gradient(135deg,#ffb32d,#ff8c00);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: rgba(255,255,255,.2);
    color: #fff;
}

/* Divider */
.dropdown-divider {
    margin: 10px 5px;
    border-color: #eee;
}

/* Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*=================================
 PREMIUM ACCOUNT PAGE
=================================*/

.account-sidebar{
    /* background:linear-gradient(145deg,#222,#444); */
    padding:30px 25px;
    border-radius:25px;
    min-height:350px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
    position:sticky;
    top:100px;
}


/* User Profile */

.account-sidebar .bi-person-circle{
    display:inline-flex;
    width:75px;
    height:75px;
    align-items:center;
    justify-content:center;
    background:#ffb32d;
    color:#fff;
    border-radius:50%;
    font-size:40px!important;
    margin-bottom:15px;
}


.account-sidebar strong{
    font-size:20px;
}


.account-sidebar small{
    font-size:13px;
}


/* Menu */

.account-sidebar .nav{
    margin-top:25px;
    gap:8px;
}


.account-sidebar .nav-link{
    color:#ddd;
    padding:13px 18px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}


.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active{
   background: #ffffff3b;
    color: #fff;
}


.account-sidebar .nav-link.text-danger{
    color:#fff !important;
}


.account-sidebar .nav-link.text-danger:hover{
    background:#fff;
    color:#000 !important;
}


/* Content Cards */

.card{
    border-radius:22px!important;
    background:#fff;
    border:1px solid #eee!important;
    box-shadow:0 12px 40px rgba(0,0,0,.06)!important;
}


.card h2{
    font-size:22px;
    font-weight:600;
    position:relative;
    padding-bottom:15px;
}


.card h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:65px;
    height:4px;
    background:#ffb32d;
    border-radius:20px;
}


/* Labels */

.form-label{
    font-size:14px;
    font-weight:600;
    color:#444;
}


/* Inputs */

.form-control{
    height:50px;
    border-radius:12px;
    border:1px solid #ddd;
    /* padding:0 18px; */
    transition:.3s;
}


.form-control:focus{
    border-color:#ffb32d;
    box-shadow:0 0 0 .25rem rgba(255,179,45,.15);
}


.form-control[readonly]{
    background:#f8f8f8;
    color:#777;
}


/* Buttons */

.card .btn{
    /* height:48px; */
    padding:0 30px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}


/* Update Profile */

.card .btn-primary{
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    border:none;
    box-shadow:0 10px 25px rgba(255,122,0,.3);
        height: 50px;
}


.card .btn-primary:hover{
    transform:translateY(-3px);
}


/* Change Password */

.card .btn-outline-primary{
    border:2px solid #ffb32d;
    color:#ff9800;
}


.card .btn-outline-primary:hover{
    background:#ffb32d;
    color:#fff;
}


/* Mobile */

@media(max-width:991px){

.account-sidebar{
    position:static;
    min-height:auto;
}

.account-sidebar .nav{
    flex-direction:row!important;
    flex-wrap:wrap;
}

.account-sidebar .nav-link{
    flex:1;
    text-align:center;
}

}
.col-lg-9 .card{
    border-radius:24px!important;
    overflow:hidden;
    border:1px solid #eee!important;
    box-shadow:0 15px 45px rgba(0,0,0,.08)!important;
}


/* Header */

.card-header{
    background:#fff!important;
    padding:25px!important;
    border-bottom:1px solid #eee!important;
}


.card-header h5{
    font-size:22px;
    position:relative;
    padding-bottom:12px;
}


.card-header h5:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:60px;
    height:4px;
    border-radius:20px;
    background:#ffb32d;
}


/* Table */

.table{
    margin:0;
}


.table thead th{
    background: #efeae8;
    color: #4a4545;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.6px;
    padding:18px 20px;
    border:none;
}


.table tbody td{
    padding:20px;
    vertical-align:middle;
    border-bottom:1px solid #eee;
    color:#555;
}


.table tbody tr{
    transition:.3s;
}


.table tbody tr:hover{
    background:#fffaf2;
}


/* Order Number */

.table td:first-child{
    color:#222;
}


/* Status Badge */

.table .badge{
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}


/* View Button */

.table .btn-outline-primary{
    border:2px solid #ffb32d;
    color:#ff9800;
    border-radius:50px;
    padding:8px 22px;
    font-weight:600;
    transition:.35s;
}


.table .btn-outline-primary:hover{
    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    border-color:#ffb32d;
    color:#fff;
    transform:translateY(-2px);
}


/* Empty Orders */

.bi-bag-x{
    color:#ffb32d!important;
    font-size:60px!important;
}


/* Mobile */

@media(max-width:991px){

.table{
    min-width:700px;
}

.card-body{
    overflow-x:auto;
}

}
/* =========================
   ORDER DETAIL SECTION
========================= */

.order-detail-section .card{
    border-radius:22px!important;
    overflow:hidden;
    border:1px solid #eee!important;
    box-shadow:0 15px 45px rgba(0,0,0,.08)!important;
}


/* Header */

.order-detail-section .card-header{
     background: #16316c !important;
    padding: 22px 25px;
    border-bottom: 1px solid #eee;
    color: #fff;
}


.order-detail-section .card-header h3{
    font-size:19px;
    position:relative;
    padding-bottom:0px;
}


/* .order-detail-section .card-header h3:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:4px;
    background:#ffb32d;
    border-radius:20px;
} */


/* Back Button */

.order-detail-section .btn-outline-secondary{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}


.order-detail-section .btn-outline-secondary:hover{
    background:#ffb32d;
    border-color:#ffb32d;
    color:#fff;
}


/* Table */

.order-detail-section .table thead th{
    /* background:#fafafa; */
    padding:16px;
    font-size:13px;
    text-transform:uppercase;
}


.order-detail-section .table tbody td{
    padding:18px;
    border-bottom:1px solid #eee;
}


.order-detail-section .table tbody tr:hover{
    background:#fffaf2;
}


/* Summary */

.order-detail-section .table-sm td{
    padding:12px 0;
}


.order-detail-section .table-sm tr:last-child td{
    font-size:20px;
    font-weight:700;
    color:#222;
}


/* Info */

.order-detail-section .card-body p{
      padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    color: #555;
    display: flex;
    justify-content: space-between;
}


.order-detail-section .card-body p:last-child{
    border-bottom:0;
}


/* Badge */

.order-detail-section .badge{
      border-radius: 30px;
    padding: 8px 15px;
    background: #e07237 !important;
}
.login-premium-section{
    min-height:80vh;
    display:flex;
    align-items:center;
    padding:40px 0;

    /* background:
    radial-gradient(circle at top left, rgba(255,179,45,.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,0,0,.08), transparent 35%),
    #f8f8f8; */
}

.login-premium-section .card{
       border: 0 !important;
    border-radius: 28px !important;
    padding: 45px !important;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12) !important;
    position: relative;
    overflow: hidden;
}


/* Logo */

.login-premium-section img{
    height:65px!important;
    width:auto;
    margin-bottom:15px;
}


/* Heading */

.login-premium-section h4{
    font-size:32px;
    font-weight:800;
    color:#111;
    letter-spacing:-.5px;
}


.login-premium-section .text-muted{
    font-size:15px;
}


/* Inputs */

.login-premium-section .form-label{
    font-size:14px;
    font-weight:600;
    color:#222;
}


.login-premium-section .form-control{
       height: 50px;
    border-radius: 50px;
    border:1px solid #e1e1e1;
    background:#fafafa;
    padding:0 20px;
    font-size:15px;
    transition:.3s;
}


.login-premium-section .form-control:focus{
    background:#fff;
    border-color:#c89b3c;
    box-shadow:0 0 0 4px rgba(200,155,60,.12);
}


/* Button */

.login-premium-section .btn-primary{
    height: 55px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffb32d, #ff7a00);
    border: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(255, 122, 0, .35);
    transition: .35s;
}
.login-premium-section .card:before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(255, 179, 45, .12);
    border-radius: 50%;
}

.login-premium-section .btn-primary:hover{

    /* background:#c89b3c; */
    transform:translateY(-2px);

}


/* Register */

.login-premium-section p a{

    color:#c89b3c;
    font-weight:700;
    text-decoration:none;

}


/* Alert */

.login-premium-section .alert{

    border-radius:14px;
    border:0;

}



/* Mobile */

@media(max-width:576px){

.login-premium-section{
    padding:40px 15px;
}

.login-premium-section .card{
    padding:30px 20px!important;
}

.login-premium-section h4{
    font-size:26px;
}

}.register-premium-section{
    min-height:90vh;
    display:flex;
    align-items:center;
    padding:40px 0;
    /* background:
    radial-gradient(circle at top left,rgba(255,179,45,.18),transparent 35%),
    radial-gradient(circle at bottom right,rgba(0,0,0,.08),transparent 35%),
    #f8f8f8; */
}


/* Card */

.register-premium-section .card{
    border:0!important;
    border-radius:28px!important;
    padding:45px!important;
    background:#fff;
    box-shadow:0 25px 70px rgba(0,0,0,.12)!important;
    position:relative;
    overflow:hidden;
}


.register-premium-section .card:before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:rgba(255,179,45,.12);
    border-radius:50%;
}


/* Logo */

.register-premium-section img{
    height:60px!important;
    width:auto;
    object-fit:contain;
}


/* Heading */

.register-premium-section h4{
    font-size:30px;
    font-weight:800;
    color:#222;
}


.register-premium-section .text-muted{
    color:#777!important;
}


/* Labels */

.register-premium-section .form-label{
    font-size:14px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}


/* Inputs */

.register-premium-section .form-control,
.register-premium-section .form-select{

       height: 50px;
    border-radius: 50px;
    border:1px solid #ddd;
    background:#fafafa;
    padding:0 18px;
    transition:.3s;

}


.register-premium-section .form-control:focus,
.register-premium-section .form-select:focus{

    background:#fff;
    border-color:#ffb32d;

    box-shadow:
    0 0 0 4px rgba(255,179,45,.15);

}


/* Create Account Button */

.register-premium-section .btn-primary{

    height:55px;
    border-radius:50px;

    background:linear-gradient(135deg,#ffb32d,#ff7a00);
    border:none;

    font-size:16px;
    font-weight:700;

    box-shadow:
    0 15px 35px rgba(255,122,0,.35);

    transition:.35s;
}


.register-premium-section .btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 20px 45px rgba(255,122,0,.45);

}


/* Error */

.register-premium-section .alert{
    border-radius:15px;
    border:none;
}


/* Login Link */

.register-premium-section p a{

    color:#ff9800;
    font-weight:700;
    text-decoration:none;

}


.register-premium-section p a:hover{
    text-decoration:underline;
}


/* Mobile */

@media(max-width:576px){

.register-premium-section{
    padding:40px 15px;
}

.register-premium-section .card{
    padding:30px 20px!important;
}

.register-premium-section h4{
    font-size:25px;
}

}
.order-success:after{
    display: none !important;
}