/* Amazon Section */
.amazon-section {
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

/* Make it align perfectly inside .container */
.amazon-section .amazon-scroll {
    max-width: 100%;
}

/* Title */
.amazon-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Horizontal Scroll Container */
.amazon-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 15px;
}

/* Scrollbar */
.amazon-scroll::-webkit-scrollbar {
    height: 6px;
}

.amazon-scroll::-webkit-scrollbar-thumb {
    background: #ff9900;
    border-radius: 10px;
}

/* Product Card */
.product-card {
    min-width: 240px;
    max-width: 240px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s;
    flex-shrink: 0;
    text-align: center;
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-6px);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 12px;
}

/* Product Text */
.product-card h3 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 13px;
    color: #dddddd;
    margin-bottom: 12px;
}

/* Buy Button */
.buy-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #e68a00;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .product-card {
        min-width: 200px;
        max-width: 200px;
    }

    .amazon-title {
        font-size: 20px;
    }
}



/* =========================
   CARD DESIGN
========================= */
.dsc-cards {
    background: #1d1313;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dsc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.dsc-card h3 {
    font-size: 15px;
    color: #2563eb;
    margin-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 6px;
}
