.product-card{
    background:white;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    padding: 25px;
}

.product-image{
    width:100%;
    border-radius:15px;
    object-fit:cover;
    max-height:420px;
}

.price{
    font-size:32px;
    font-weight:700;
    color:#c55902 !important;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-btn{
    width:40px;
    height:40px;
    border:none;
    background:linear-gradient(135deg, #c55902 0%, #fda257 100%);
    color:white;
    font-size:20px;
    border-radius:10px;
    transition:0.2s;
}

.qty-btn:hover{
    transform:scale(1.1);
    background: linear-gradient(135deg, #f3760f 0%, #fda257 100%);
}

.qty-input{
    width:70px;
    text-align:center;
    font-weight:600;
    font-size:18px;
    border-radius:10px;
}

.order-card{
    background:#f8fafc;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.btn-order{
    height:55px;
    font-size:18px;
    font-weight:600;
    border-radius:12px;
}


.home-shop{
    padding:70px 20px 40px;
    background:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* TITRES */
.home-shop h2{
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
}

/* ===== CATEGORIES ===== */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
    gap:18px;
    margin-top:20px;
}

.category-card{
    background:white;
    border-radius:18px;
    padding:22px 10px;
    text-align:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.25s;
    position:relative;
    overflow:hidden;
}

.category-card:hover{
    transform:translateY(-6px);
}

.cat-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--cat-color),#ffffff22);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:12px;
    font-size:28px;
    color:white;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.category-card span{
    font-weight:600;
    color:#333;
    font-size:15px;
}

/* ===== PRODUITS ===== */

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.see-all{
    color:#c55902;
    font-weight:600;
    text-decoration:none;
    font-size: 20px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.product-card-items{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transition:0.25s;
}

.product-card-items:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.product-card-items img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-card-items .product-info{
    padding:16px;
    text-align:center;
}

.product-card-items .product-info h3{
    font-size:16px;
    min-height:42px;
}
.product-card-items .product-info h3 a {
    text-decoration: none;
    color: black;
}

.product-card-items .price{
    margin:10px 0;
    font-size:18px;
    font-weight:800;
    color:#c55902;
}

.product-card-items .add-cart, .btn-add-pack{
    background:linear-gradient(135deg, #c55902 0%, #fda257 100%);
    border:none;
    color:white;
    padding:12px 18px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    width:100%;
    transition:0.2s;
}

.product-card-items .add-cart:hover, .btn-add-pack:hover{
    transform:scale(1.05);
}

.product-card-items .choose-option{
    display:block;
    text-align:center;
    background: linear-gradient(135deg,#0e4a66,#1f7ea8);
    color:white;
    padding:12px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.cart-img{
    height:90px;
    object-fit:cover;
}

.quantity-box input{
    width:70px;
    border-radius:10px;
}

.quantity-box button{
    border-radius:10px;
    width:36px;
    height:36px;
    padding:0;
    font-size:18px;
}

.card{
    border-radius:18px;
}

.card-summary{
    position:sticky;
    top:110px;
}
.remove-item-btn{
    background:#fff;
    border:1px solid #f1f1f1;
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#dc3545;
    transition:all .25s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.remove-item-btn:hover{
    background:#dc3545;
    color:#fff;
    transform:scale(1.08);
    box-shadow:0 8px 20px rgba(220,53,69,0.25);
}

.remove-item-btn i{
    font-size:18px;
    pointer-events:none;
}

@media(max-width:768px){

    .cart-img{
        height:75px;
    }

    .item-total{
        font-size:18px !important;
    }
}


/* CARD checkout */
.checkout-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* HEADER PREMIUM */
.checkout-header{
    background: linear-gradient(135deg, #c55902 0%, #fda257 100%);
    color:#fff;
    padding:22px;
    display:flex;
    align-items:center;
    gap:15px;
}

.checkout-header i{
    font-size:28px;
    background:rgba(255,255,255,0.2);
    padding:14px;
    border-radius:14px;
}

.checkout-header h3{
    margin:0;
    font-weight:700;
}

.checkout-header span{
    font-size:13px;
    opacity:.9;
}

/* FORM */
.checkout-form{
    padding:25px;
}

/* INPUT PREMIUM */
.input-group-premium{
    position:relative;
    margin-bottom:18px;
}

.input-group-premium i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#c55902;
    font-size:16px;
}

.input-group-premium.textarea i{
    top:18px;
    transform:none;
}

/* INPUT STYLE */
.form-control-premium{
    width:100%;
    padding:14px 14px 14px 45px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    font-size:15px;
    transition:.25s;
    background:#fafafa;
}

.form-control-premium:focus{
    border-color:#fda257;
    background:#fff;
    box-shadow:0 0 0 3px rgba(253,162,87,0.15);
    outline:none;
}

/* BUTTON */
.btn-confirm-order{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#c55902,#fda257);
    transition:.25s;
}

.btn-confirm-order:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(197,89,2,0.35);
}

/* SUMMARY BODY */
.summary-body{
    padding:20px;
}

/* ITEM */
.summary-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.summary-item img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #eee;
}

/* INFO */
.summary-info{
    flex:1;
}

.summary-info strong{
    display:block;
    font-size:15px;
}

.summary-info .variant{
    font-size:13px;
    color:#c55902;
    font-weight:600;
}

.summary-info .qty{
    font-size:13px;
    color:#6b7280;
}

/* PRICE */
.summary-price{
    font-weight:700;
    color:#111827;
}

/* DIVIDER */
.summary-divider{
    margin:18px 0;
    border:none;
    border-top:1px dashed #ddd;
}

/* ROW */
.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:15px;
}

.delivery{
    color:#22c55e;
}

/* TOTAL */
.summary-total{
    margin-top:10px;
    background:linear-gradient(135deg,#fff7ed,#ffe4cc);
    padding:18px;
    border-radius:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:700;
    border:1px solid #ffd1a6;
}

.summary-total strong{
    color:#c55902;
    font-size:22px;
}

/* HEADER VARIANT */
.summary-header{
    background: linear-gradient(135deg,#0e4a66,#1f7ea8);
}


.success-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C7E);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:42px;
    color:white;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.order-box{
    background:white;
    border-radius:16px;
    padding:25px;
    display:inline-block;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.order-number{
    font-size:22px;
    font-weight:bold;
    letter-spacing:2px;
    color:#c55902;
    margin-top:10px;
}

.btn-whatsapp{
    background:#25D366;
    color:white;
    border:none;
    padding:14px 26px;
    border-radius:12px;
    font-weight:bold;
    transition:.2s;
}

.btn-whatsapp:hover{
    background:#1ebe5d;
    color:white;
}


.shop-header{
    background:#fff;
    padding:25px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    margin-bottom:30px;
}


.search-box{
    flex:1;
    position:relative;
}

.search-box i{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
}

.search-box input{
    width:100%;
    padding:12px 12px 12px 38px;
    border-radius:12px;
    border:1px solid #eee;
}

.filter-category select{
    padding:12px;
    border-radius:12px;
    border:1px solid #eee;
}

.btn-filter{
    background:linear-gradient(135deg,#c55902,#fda257);
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}

/* GRID */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:22px;
}

.product-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.25s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-img img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.product-body{
    padding:15px;
}
.product-body h3 {
    font-size: 16px;
    min-height: 42px;
    height: 45px;
}
.product-body h3 a {
    text-decoration: none;
    color: black;
}
.product-price{
    margin:8px 0 12px;
    font-size:18px;
}

.product-price .from{
    font-size:13px;
    color:#777;
}

.btn-options{
    display:block;
    text-align:center;
    padding:10px;
    border-radius:12px;
    background: linear-gradient(135deg,#0e4a66,#1f7ea8);
    color:white;
    text-decoration: none;
}

.btn-add-cart, .btn-add-pack {
    width:100%;
    border:none;
    padding:11px;
    border-radius:12px;
    background:linear-gradient(135deg,#c55902,#fda257);
    color:white;
    font-weight:600;
}

.btn-add-cart.added, .add-cart.added, .btn-add-pack.added{
    background:#28a745;
}
.shop-products {
    margin-bottom: 100px;
}

.cart-badge{
    position:absolute;
    top:-6px;
    right:-10px;
    background:#e53935;
    color:#fff;
    font-size:11px;
    padding:3px 7px;
    border-radius:50px;
    font-weight:600;
}

@keyframes pulse{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.3); }
    100%{ transform:scale(1); }
}

.pulse{
    animation:pulse .3s ease;
}
.price-old {
    text-decoration: line-through;
}
.pack-list {
    list-style: none;
}
.pack-list li {
    margin-bottom: 4px;
}
.pack-list li a {
    text-decoration: none;
    color: black;
}
.ml-2 {
    margin-left: 4px;
}
.small-img {
    height: 60px;
    object-fit: cover;
    width: 60px;
}

.divider-icon{
  display:flex;
  align-items:center;
  text-align:center;
  margin:30px 0;
}

.divider-icon::before,
.divider-icon::after{
  content:'';
  flex:1;
  border-bottom:1px solid #c55902;
}

.divider-icon span{
  padding:0 15px;
  font-size:20px;
  color:#c55902;
}