.shop-hero {
    padding: 80px 20px 20px;
}
@media (max-width: 768px) {
    .shop-hero {
        padding: 50px 15px 5px; /* 🔥 top reduce */
    }
}
/* HEADING */
.shop-title {
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* GOLD HIGHLIGHT */
.shop-title span {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.shop-subtitle {
    color: #aaa;
    font-size: clamp(14px, 3.5vw, 17px);
    max-width: 500px;
    margin: 10px auto 0;
    line-height: 1.6;
}
.product-detail-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    color: #fff;
}

/* NAME */
.product-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* PRICE */
.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.new-price {
    color: #f7e27a;
    font-size: 22px;
    font-weight: bold;
}

.save-badge {
    background: #f7e27a;
    color: #000;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* STOCK */
.stock {
    font-size: 14px;
    font-weight: 500;
}

.in-stock {
    color: #2ecc71;
}

.out-stock {
    color: #e74c3c;
}

/* DESCRIPTION */
.product-desc {
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
}

/* BUTTON */
.premium-cart-btn {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.premium-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247,226,122,0.4);
}

/* TITLE */
.trust-title {
    font-size: 22px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */
.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ITEM */
.trust-item {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.trust-item:hover {
    background: rgba(247,226,122,0.15);
    transform: translateY(-2px);
}

.product-detail-wrapper > [class*="col-"] {
    padding: 10px;
}

/* TRUST CARD */
.trust-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    color: #fff;
    height: 100%;
}

/* TITLE */
.trust-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    color: #f7e27a;
}

/* GRID INSIDE CARD */
.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* ITEM */
.trust-item {
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}
@media (max-width: 768px) {
    .product-detail-wrapper {
        flex-direction: column;
    }

    .trust-points {
        grid-template-columns: 1fr 1fr;
    }
}
/* STICKY BAR */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b0f2a;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    z-index: 9999;
    display: none; /* default hidden */
}

/* INNER */
.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* PRICE */
.sticky-price .price {
    color: #f7e27a;
    font-size: 18px;
    font-weight: bold;
}

/* BUTTONS */
.sticky-actions {
    display: flex;
    gap: 8px;
}

/* ADD TO CART */
.btn-buy {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    border: none;
    color: #000;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
    .sticky-buy-bar {
        display: block;
    }

    body {
        padding-bottom: 70px; /* space for sticky */
    }
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px; /* sticky bar ke upar shift */
    }
}