.header.header-transparent.dark-text{
    background:#ffffff !important;
    position:relative !important;
    z-index:999;
}

/* =========================
   HOME SLIDER FIX
========================= */
.home-slider{
    margin:0 !important;
    padding:0 !important;
}

.home-slider .item{
    width:100%;
    height:420px !important;
    min-height:420px !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    position:relative;
}

/* content vertically center */
.home-slider-container{
    height:420px !important;
    display:flex;
    align-items:center;
}

/* text style */
.home-slider-desc{
    max-width:600px;
}

.home-slider-title h1{
    font-size:48px;
    line-height:58px;
    margin-bottom:10px;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width:768px){

    .home-slider .item{
        height:420px !important;
        min-height:420px !important;
        background-size:cover !important;
        background-position:center center !important;
    }

    .home-slider-container{
        height:420px !important;
        padding:0 15px;
        align-items:center;
    }

    .home-slider-title h1{
        font-size:28px !important;
        line-height:36px !important;
    }

    .home-slider-title h5{
        font-size:14px;
    }

    .trending{
        font-size:14px;
    }
}

.custom-toast{
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 280px;
    max-width: 350px;
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
}

.toast-success{
    background: #28a745;
}

.toast-error{
    background: #dc3545;
}

@media(max-width:768px){
    .custom-toast{
        left: 15px;
        right: 15px;
        top: 15px;
        min-width: auto;
        max-width: 100%;
        font-size: 14px;
        padding: 12px 15px;
    }
}

@media (max-width: 991px){

    .nav-header{
        display: flex !important;
        align-items: center;
        width: 100%;
        position: relative;
    }

    /* Logo left */
    .nav-brand{
        order: 1;
        margin-right: auto;
    }

    /* Icons center/right */
    .mobile_nav{
        order: 2;
        display: block !important;
        margin-left: auto;
        margin-right: 10px;
    }

    .mobile_nav ul{
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
    }

    /* Menu button sabse last */
    .nav-toggle{
        order: 3;
        display: block !important;
        margin-left: 0;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        float: none !important;
    }

}

.category-banner{
    height:220px;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    margin:0;
    padding:0;
    position:relative;
}

/* overlay optional */
.category-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.05);
}

/* text perfectly center */
.banner-content{
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    z-index:2;
    margin:0;
    padding:0;
}

.banner-content h1{
    margin:0 !important;
    padding:0 !important;
    font-size:52px;
    font-weight:700;
    line-height:1.1;
    color:#111;
}

/* remove theme extra spacing */
.category-banner .container,
.category-banner .row{
    height:100%;
    margin:0;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width:991px){

    .category-banner{
        height:190px;
    }

    .banner-content{
        min-height:190px;
    }

    .banner-content h1{
        font-size:40px;
    }
}

@media (max-width:768px){

    .category-banner{
        height:160px;
    }

    .banner-content{
        min-height:160px;
        padding:0 12px;
    }

    .banner-content h1{
        font-size:30px;
    }
}

@media (max-width:480px){

    .category-banner{
        height:140px;
    }

    .banner-content{
        min-height:140px;
    }

    .banner-content h1{
        font-size:24px;
    }
}

.user-sidebar{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    margin-bottom:25px;
}

.sidebar-top{
    text-align:center;
    padding-bottom:22px;
    border-bottom:1px solid #eee;
    margin-bottom:20px;
}

.sidebar-profile-img{
    width:95px;
    height:95px;
    margin:auto;
    position:relative;
}

.sidebar-profile-img img{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #f2f2f2;
}

.profile-img-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    position:absolute;
    bottom:0;
    right:0;
}

.profile-img-file{
    display:none;
}

.sidebar-top h5{
    margin-top:15px;
    font-weight:700;
    margin-bottom:6px;
}

.sidebar-top p{
    font-size:14px;
    color:#777;
    margin:0;
    word-break:break-word;
}

.sidebar-list{
    padding:0;
    margin:0;
    list-style:none;
}

.sidebar-list li{
    margin-bottom:10px;
}

.sidebar-list li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    border-radius:12px;
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:.3s;
}

.sidebar-list li a i{
    width:20px;
}

.sidebar-list li a:hover,
.sidebar-list li a.active{
    background:#111;
    color:#fff;
}

@media(max-width:991px){
.user-sidebar{
    margin-bottom:30px;
}
}

.header.header-transparent.dark-text{
    background: #fff !important;
    position: relative !important;
    z-index: 999;
}

.category-banner{
height:170px;
}
.banner-content{
height:170px;
display:flex;
align-items:center;
justify-content:center;
}
.banner-content h1{
font-size:42px;
font-weight:700;
margin:0;
}


/* Main layout */
.product-detail-wrap{
padding:60px 0;
}

.product-main-row{
display:flex;
align-items:stretch;
}

.product-main-row > div{
display:flex;
}


/* Left Box */
.product-gallery{
background:#fff;
padding:28px;
border-radius:22px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
width:100%;
display:flex;
flex-direction:column;
justify-content:center;
}

.main-image{
max-width:460px;
margin:auto;
width:100%;
}

.main-image img{
width:100%;
height:500px;
object-fit:contain;
background:#f8f8f8;
border-radius:16px;
padding:12px;
}

.thumbs{
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
margin-top:18px;
}

.thumb-img{
width:82px;
height:82px;
object-fit:cover;
border-radius:12px;
border:2px solid #eee;
cursor:pointer;
transition:.3s;
background:#fff;
}

.thumb-img:hover{
border-color:#111;
transform:translateY(-3px);
}


/* Right Box */
.product-detail-box{
background:#fff;
padding:35px;
border-radius:22px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
width:100%;
display:flex;
flex-direction:column;
justify-content:center;
}

.product-detail-box h2{
font-size:30px;
font-weight:800;
line-height:1.2;
margin-bottom:15px;
}

.new-price{
font-size:38px;
font-weight:800;
color:#111;
display:block;
margin-bottom:14px;
}

.short-desc{
font-size:16px;
line-height:1.7;
color:#666;
margin-bottom:22px;
}

.product-detail-box label{
font-weight:600;
margin-bottom:8px;
display:block;
}

.product-detail-box select,
.product-detail-box .form-control{
height:52px;
border-radius:12px;
padding:0 16px;
border:1px solid #ddd;
box-shadow:none;
}

.cart-btn{
height:56px;
min-width:190px;
border-radius:14px;
font-size:18px;
font-weight:700;
}

.wish-btn{
width:56px;
height:56px;
border-radius:14px;
font-size:20px;
}


/* Description */
.desc-box{
background:#fff;
padding:28px;
border-radius:22px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}


/* Related */
.product-card{
background:#fff;
padding:18px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
text-align:center;
height:100%;
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
}

.product-card a{
text-decoration:none;
color:#111;
}


/* Tablet */
@media(max-width:991px){

.product-main-row{
display:block;
}

.product-gallery{
margin-bottom:25px;
}

.product-detail-box h2{
font-size:34px;
}

.main-image img{
height:420px;
}

}


/* Mobile */
@media(max-width:768px){

.category-banner{
height:130px;
}

.banner-content{
height:130px;
}

.banner-content h1{
font-size:28px;
}

.product-detail-wrap{
padding:35px 0;
}

.product-gallery,
.product-detail-box,
.desc-box{
padding:18px;
border-radius:16px;
}

.main-image img{
height:320px;
padding:8px;
}

.thumb-img{
width:65px;
height:65px;
}

.product-detail-box h2{
font-size:26px;
margin-bottom:10px;
}

.new-price{
font-size:28px;
}

.short-desc{
font-size:14px;
margin-bottom:16px;
}

.product-detail-box select,
.product-detail-box .form-control{
height:48px;
font-size:14px;
border-radius:10px;
}

.cart-btn{
width:100%;
min-width:100%;
height:50px;
font-size:16px;
}

.wish-btn{
width:50px;
height:50px;
}

.mobile-gap{
gap:10px !important;
}

.product-card img{
height:180px;
}

}


/* Small mobile */
@media(max-width:480px){

.product-detail-box h2{
font-size:22px;
}

.main-image img{
height:280px;
}

.thumb-img{
width:58px;
height:58px;
}

}

 .category-banner{
   height:260px;
   background-size:cover !important;
   background-position:center !important;
   }
   .banner-content{
   height:260px;
   display:flex;
   align-items:center;
   justify-content:center;
   }
   /* Cart Design */
   .cart-box{
   background:#fff;
   border-radius:14px;
   box-shadow:0 10px 25px rgba(0,0,0,.06);
   padding:20px;
   }
   .cart-item{
   border-bottom:1px solid #eee;
   padding:18px 0;
   }
   .cart-item:last-child{
   border-bottom:none;
   }
   .cart-img img{
   width:90px;
   height:90px;
   object-fit:cover;
   border-radius:12px;
   }
   .cart-title{
   font-size:17px;
   font-weight:700;
   margin-bottom:6px;
   }
   .cart-price{
   font-size:18px;
   font-weight:700;
   color:#111;
   }
   .qty-box{
   display:flex;
   align-items:center;
   gap:8px;
   }
   .qty-box button{
   width:34px;
   height:34px;
   border:none;
   border-radius:8px;
   background:#111;
   color:#fff;
   }
   .qty-box input{
   width:50px;
   height:34px;
   text-align:center;
   border:1px solid #ddd;
   border-radius:8px;
   }
   .remove-btn {
    color: #ffffff;
    font-size: 18px;
    background: #111111;
    border: 1px solid black;
}
   .summary-box{
   background:#fff;
   border-radius:14px;
   box-shadow:0 10px 25px rgba(0,0,0,.06);
   padding:25px;
   }
   .summary-box h4{
   font-weight:700;
   margin-bottom:20px;
   }
   .summary-row{
   display:flex;
   justify-content:space-between;
   padding:10px 0;
   border-bottom:1px solid #eee;
   }
   .checkout-btn{
   width:100%;
   background:#111;
   color:#fff;
   padding:14px;
   border-radius:10px;
   border:none;
   margin-top:20px;
   }
   @media(max-width:768px){
   .category-banner,
   .banner-content{
   height:180px;
   }
   .cart-img img{
   width:70px;
   height:70px;
   }
   .cart-title{
   font-size:15px;
   }
   .cart-price{
   font-size:16px;
   }
   }

   .size-select{
    width:120px;
    height:40px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 10px;
    font-size:14px;
    font-weight:600;
}

/* ===== CARD ===== */
.user-card{
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    margin-bottom:25px;
    transition:.3s;
}

.user-card:hover{
    transform:translateY(-3px);
}

/* ===== TITLE ===== */
.user-card-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

/* ===== FORM GROUP ===== */
.form-group{
    margin-bottom:18px;
}

/* ===== LABEL ===== */
.form-group label{
    font-size:14px;
    font-weight:600;
    color:#444;
    margin-bottom:6px;
    display:block;
}

/* ===== INPUT ===== */
.form-control{
    width:100%;
    height:48px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:0 14px;
    font-size:14px;
    transition:.3s;
    background:#fafafa;
}

/* focus effect */
.form-control:focus{
    border-color:#111;
    background:#fff;
    box-shadow:0 0 0 2px rgba(0,0,0,0.05);
}

/* ===== BUTTON ===== */
.theme-btn{
    background:#111;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.theme-btn:hover{
    background:#333;
    transform:translateY(-1px);
}

/* ===== ERROR ===== */
.text-danger{
    font-size:13px;
    margin-top:4px;
}

/* ===== ROW SPACING ===== */
.user-form .row > div{
    padding-left:10px;
    padding-right:10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .user-card{
        padding:18px;
    }

    .user-card-title{
        font-size:18px;
    }

    .form-control{
        height:44px;
        font-size:13px;
    }

    .theme-btn{
        width:100%;
        text-align:center;
    }

}

/* ===== SMALL MOBILE ===== */
@media(max-width:480px){

    .form-group label{
        font-size:13px;
    }

    .form-control{
        height:42px;
    }

}

.checkout-section {
    background: #f7f7f7;
}

.checkout-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.checkout-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-box label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.checkout-box .form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
}

.summary-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.summary-box h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 15px;
    font-size: 16px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.checkout-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #333;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .checkout-box, .summary-box {
        padding: 15px;
    }

    .checkout-title {
        font-size: 18px;
    }

    .summary-total {
        font-size: 15px;
    }
}

.payment-option {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
}

.payment-option:hover {
    background: #f9f9f9;
}

.service-strip {
    background: #f5f5f5;
    padding: 20px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    min-height: 100px;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    font-size: 34px;
    color: #e53935;
}

.service-content h5 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.service-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content h5 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 13px;
    }

    .service-icon i {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .service-strip {
        padding: 15px 0;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        padding: 12px;
        gap: 10px;
        border-radius: 10px;
        min-height: auto;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-content h5 {
        font-size: 13px;
    }

    .service-content p {
        font-size: 11px;
        line-height: 1.3;
    }
}


.only-banner{
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.full-banner-img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* Mobile fix */
@media (max-width: 576px){
    .only-banner{
        padding: 0 !important;
        margin: 0 !important;
    }

    .full-banner-img{
        width: 100%;
        height: auto !important;
        max-height: none;
        min-height: auto;
        object-fit: contain;
        border-radius: 0;
    }
}

/* FOOTER RESPONSIVE FIX */
.blue-footer {
    background: #13233f;
}

.footer-middle {
    padding: 60px 0 30px;
}

.footer_widget {
    height: 100%;
}

.footer_widget .img-footer {
    max-width: 160px;
    height: auto !important;
}

.footer_widget .widget_title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer_widget p,
.footer_widget .address,
.footer_widget .footer-menu li a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a:hover {
    color: #fff;
}

.footer_widget .list-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer_widget .list-inline-item a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.foot-news-last .input-group {
    overflow: hidden;
    border-radius: 10px;
}

.foot-news-last .form-control {
    height: 50px;
    border: none;
    box-shadow: none;
}

.foot-news-last .input-group-text {
    background: #e53935;
    color: #fff;
    border: none;
    padding: 0 18px;
}

.scr_payment img {
    max-width: 220px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* TABLET */
@media (max-width: 991px) {
    .footer-middle {
        padding: 45px 0 20px;
    }

    .footer_widget {
        margin-bottom: 35px;
    }

    .footer_widget .widget_title {
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .footer-middle {
        padding: 35px 0 0px;
    }

    .footer-middle .row {
        row-gap: 30px;
    }

    .footer_widget {
        text-align: center;
        margin-bottom: 0;
    }

    .footer_widget .img-footer {
        max-width: 130px;
        margin: 0 auto 15px;
        display: block;
    }

    .footer_widget .widget_title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer_widget p,
    .footer_widget .address,
    .footer_widget .footer-menu li a {
        font-size: 14px;
    }

    .footer_widget .list-inline {
        justify-content: center;
        gap: 10px;
    }

    .footer_widget .list-inline-item a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .foot-news-last {
        max-width: 100%;
    }

    .scr_payment img {
        max-width: 180px;
        margin: auto;
        display: block;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    .footer_widget .img-footer {
        display: block;
        margin: 0 auto !important;
        text-align: center;
    }

    .footer_widget:first-child {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-brand {
        display: block;
        padding: 8px 0;
    }

    .nav-brand .logo {
        height: 50px !important; /* optional thoda balanced size */
    }
}
.description_info {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f1f1;
}

.description_info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.description_info h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #111;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
}

.description_info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

.description_info p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.description_info strong {
    color: #111;
    font-weight: 600;
}

.description_info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.description_info ul li {
    background: #f8f9fb;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: #444;
    border: 1px solid #ececec;
    transition: 0.3s ease;
}

.description_info ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.description_info ul li strong {
    color: #111;
}

.description_info p:last-child {
    background: #f8f8f8;
    padding: 15px 18px;
    border-left: 4px solid #111;
    border-radius: 10px;
    font-size: 16px;
}

/* Tablet */
@media (max-width: 991px) {
    .description_info {
        padding: 25px;
    }

    .description_info ul {
        grid-template-columns: 1fr;
    }

    .description_info h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .description_info {
        padding: 18px;
        border-radius: 12px;
    }

    .description_info h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .description_info h3 {
        font-size: 18px;
        margin-top: 22px;
    }

    .description_info p {
        font-size: 14px;
        line-height: 1.7;
    }

    .description_info ul li {
        padding: 12px;
        font-size: 14px;
    }

    .description_info p:last-child {
        font-size: 14px;
        padding: 12px;
    }
}

.policy-section {
    padding: 60px 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.policy-card {
    background: #fff;
    padding: 18px 10px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    transition: 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.policy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #111, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon i {
    font-size: 32px;
    color: #fff;
}

.policy-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .policy-section {
        padding: 35px 0;
    }

    .policy-grid {
        gap: 12px;
    }

    .policy-card {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .policy-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .policy-icon i {
        font-size: 22px;
    }

    .policy-card h4 {
        font-size: 13px;
    }
}