﻿/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 2rem 1rem;
    background-color: #1c1c1c;
    color: #fff;
}

.section-title {
    font-size: 1.8rem;
    color: #00bcd4;
}

/* Card styling */
.product-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card-header {
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
}

.product-card .card-body {
    padding: 1rem;
    font-size: 0.95rem;
    color: #ddd;
}

.product-card .card-body p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-card .card-body i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    font-size: 1rem;
}

.product-card .card-footer {
    padding: 0.75rem;
    background-color: #1a1a1a;
}

.product-card .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

/* Responsive spacing */
@media (min-width: 768px) {
    .products-section {
        padding-top: 140px;
    }
}

/* ===== PRODUCT DETAILS SECTION ===== */
.product-details-section {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
}

.product-title {
    font-size: 2rem;
    color: #007bff;
}

.product-description {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.carousel-item img {
    max-height: 400px;
    object-fit: contain;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
}

.product-features {
    padding: 1rem 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
}

.feature-list li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.product-video-section {
    padding: 2rem 1rem;
    background-color: #f0f0f0;
    color: #333;
}

.product-video-section h3 {
    font-size: 1.5rem;
    color: #007bff;
}

.product-video-section iframe {
    border-radius: 8px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    color: #ddd;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: gold;
    font-size: 1rem;
    line-height: 1;
}
