
/* Simple & Organized Modal Design */
.product-modal .modal-content {
    border: none;
    border-radius: 12px; /* clean soft corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-modal .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem 2rem;
}

.product-modal .modal-title {
    font-weight: 700;
    color: #333;
}

.product-modal .modal-body {
    padding: 2rem;
}

.product-image-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 250px;
}

.product-image-container img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #0d6efd; /* Bootstrap primary blue */
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Specs Grid - Simple 2x2 or 4x1 */
.specs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
}

.spec-box:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.spec-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    display: block;
}

.spec-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: block;
}

.spec-value {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754; /* Success green */
    font-weight: bold;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 1.5rem 2rem;
    background-color: #fcfcfc;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* --- Comparison Table Styling --- */
.comparison-section {
    background-color: #fff;
    padding: 60px 0;
}

.comparison-table {
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.comparison-table thead th {
    background-color: #212529;
    color: white;
    border: none;
    padding: 1.2rem;
    font-weight: 500;
    vertical-align: middle;
}

.comparison-table tbody td, 
.comparison-table tbody th {
    padding: 1rem;
    vertical-align: middle;
    border-color: #f0f0f0;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table .feature-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.comparison-table .check-yes {
    color: #198754;
}

.comparison-table .check-no {
    color: #dc3545;
    opacity: 0.5;
}

/* --- Accessories Card Styling --- */
.accessory-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #0d6efd;
}

.accessory-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.accessory-card:hover .accessory-icon-wrapper {
    background-color: #0d6efd;
    color: white;
}

.accessory-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.accessory-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
