
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
}

/* Card */
.product-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Image */
.product-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.product-detail-img:hover {
    transform: scale(1.03);
}

/* Title */
.product-title-lg {
    font-size: 30px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

/* Price */
.product-price-lg {
    font-size: 26px;
    font-weight: 600;
    color: #28a745;
}

/* Description */
.product-desc-lg {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.8;
    text-align: justify;
    color: #000; /* duplicate fix */
}

/* Divider */
.divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

/* Button */
.add-cart-btn {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 12px 25px;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

    .product-detail-card {
        padding: 15px;
    }

    .product-detail-img {
        height: 250px;
        border-radius: 12px;
    }

    .product-title-lg {
        font-size: 20px;
        line-height: 1.4;
        margin-top: 10px;
    }

    .product-price-lg {
        font-size: 20px;
    }

    .product-desc-lg {
        font-size: 14px;
        line-height: 1.6;
    }

    .add-cart-btn {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}

/* Scroll */
.related-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.related-scroll::-webkit-scrollbar {
    display: none;
}

/* Item */
.related-item {
    min-width: 220px;
    flex: 0 0 auto;
}

/* Card */
.modern-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Image */
.product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* Body */
.product-body {
    padding: 10px;
}

/* Title */
.product-title-link {
    text-decoration: none !important;
    color: #000 !important;
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.product-title-link:hover {
    color: #000;
}

/* Description */
.product-desc {
    font-size: 12px;
    color: #777;
}

/* Price */
.price {
    font-weight: 600;
    color: green;
}

/* Arrows */
.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 100;
}

/* Position */
.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Mobile Fix */
@media (max-width: 768px) {

    .scroll-btn {
        display: none;
    }

    .related-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
.suggest-card {
    position: relative;
    transition: 0.3s;
}

.suggest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.suggest-card .badge {
    font-size: 11px;
    border-radius: 20px;
}