/* صفحة المنتجات - تصميم عصري فاخر */

:root {
    --prod-primary: #ed8936;
    --prod-accent: #ed8936;
    --prod-accent-light: #f6ad55;
    --prod-bg: linear-gradient(135deg, #0b0f19 0%, #111827 50%, #0b0f19 100%);
    --prod-card-bg: linear-gradient(145deg, rgba(22, 28, 41, 0.95) 0%, rgba(32, 40, 57, 0.9) 100%);
    --prod-text: #ffffff;
    --prod-text-muted: rgba(255, 255, 255, 0.72);
    --prod-border: rgba(255, 255, 255, 0.08);
    --prod-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    --prod-shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(237, 137, 54, 0.15);
}

/* Page layout: sidebar + main */
.products-page-wrap {
    padding: 3rem 0 4rem;
    background: var(--prod-bg);
    min-height: calc(100vh - 80px);
    color: var(--prod-text);
}

.products-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar Glassmorphism */
.products-sidebar {
    position: sticky;
    top: 6rem;
    background: var(--prod-card-bg);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--prod-shadow);
    border: 1px solid var(--prod-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sidebar-header {
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.sidebar-desc {
    font-size: 0.85rem;
    color: var(--prod-text-muted);
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.sidebar-search:focus-within {
    border-color: var(--prod-accent);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.15);
}

.sidebar-search i {
    color: var(--prod-accent);
}

.sidebar-search input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Cairo', sans-serif;
}

.sidebar-search input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.sidebar-search input:focus {
    outline: none;
}

.sidebar-block {
    margin-bottom: 1.8rem;
}

.sidebar-block-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
    border-right: 3px solid var(--prod-accent);
    padding-right: 0.5rem;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-categories .pill {
    justify-content: flex-start;
    width: 100%;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    text-align: right;
}

.sidebar-select {
    width: 100%;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    background: #111827;
    color: #fff;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: border 0.3s;
}

.sidebar-select:focus {
    border-color: var(--prod-accent);
}

.sidebar-stats {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: var(--prod-text-muted);
    font-weight: 600;
}

/* Main */
.products-main {
    min-width: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.pill:hover,
.pill.active {
    border-color: var(--prod-accent);
    background: rgba(237, 137, 54, 0.15);
    color: #fff;
}

.products-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .products-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Catalog mode: loading state (AJAX) */
.products-catalog-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 4rem 1rem;
    color: var(--prod-text-muted);
    font-size: 1.05rem;
}
.products-catalog-loading i {
    font-size: 1.5rem;
    color: var(--prod-accent);
}

.product-card-modern {
    background: var(--prod-card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--prod-shadow);
    border: 1px solid var(--prod-border);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--prod-shadow-lg);
    border-color: rgba(237, 137, 54, 0.35);
}

.product-card-image {
    aspect-ratio: 4/3;
    background: #0b0f19;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.product-card-modern:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.3rem 0.75rem;
    background: rgba(237, 137, 54, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-card-actions-bar {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.2, 1);
    z-index: 10;
}

.product-card-modern:hover .product-card-actions-bar {
    opacity: 1;
    transform: translateY(0);
}

.product-card-actions-bar button {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.9);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-card-actions-bar button:hover {
    background: var(--prod-accent);
    border-color: var(--prod-accent);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em; /* Fallback for 2 lines: 1.4 * 2 = 2.8em */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-card-desc {
    font-size: 0.88rem;
    color: var(--prod-text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3.2em; /* Fallback for 2 lines: 1.6 * 2 = 3.2em */
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-card-footer {
    margin-top: auto; /* Push footer to bottom */
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
}

.product-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
}

.product-card-specs span {
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.product-card-cta {
    font-size: 0.85rem;
    color: var(--prod-accent);
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-end; /* Align to left in RTL */
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-card-cta {
    transform: translateX(-4px);
}

/* Load more */
.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    padding: 0.8rem 2.2rem;
    border: 2px solid var(--prod-accent);
    background: transparent;
    color: var(--prod-accent);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-load-more:hover {
    background: var(--prod-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.35);
}

.products-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--prod-text-muted);
}

.products-empty i {
    font-size: 4rem;
    margin-bottom: 1.25rem;
    opacity: 0.6;
    color: var(--prod-accent);
}

/* Premium Modal Sheet Redesign */
.product-modal-modern {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
}

.product-modal-modern.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.modal-box {
    position: relative;
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
    border-radius: 28px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1);
    color: #fff;
}

.product-modal-modern.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--prod-accent);
    border-color: rgba(237, 137, 54, 0.4);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
}

.modal-gallery {
    position: sticky;
    top: 0;
}

.modal-gallery img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-thumbs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.modal-thumbs img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.modal-thumbs img:hover,
.modal-thumbs img.active {
    border-color: var(--prod-accent);
}

.modal-info {
    padding-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-cat {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(237, 137, 54, 0.15);
    color: var(--prod-accent);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 10px;
    width: fit-content;
}

.modal-info h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    line-height: 1.35;
}

.modal-desc {
    color: var(--prod-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.modal-specs {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.modal-specs .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.modal-specs .spec-row .spec-label {
    color: var(--prod-text-muted);
}

.modal-specs .spec-row .spec-value {
    font-weight: 600;
    color: #fff;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-modal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-modal.btn-primary {
    background: linear-gradient(135deg, var(--prod-accent), var(--prod-accent-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.btn-modal.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.45);
}

.btn-modal.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.btn-modal.btn-outline:hover {
    border-color: var(--prod-accent);
    color: var(--prod-accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Share toast */
.share-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 0.8rem 1.6rem;
    background: #38a169;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.45);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
}

.share-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-sidebar {
        position: static;
        padding: 1.5rem;
    }
    
    .sidebar-categories {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .sidebar-categories .pill {
        width: auto;
    }
}

@media (max-width: 768px) {
    .products-masonry {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.8rem;
    }
    
    .modal-gallery {
        position: static;
    }
}

/* Modal: ratings & comments */
.modal-subtitle {
    font-size: 1.05rem;
    color: #fff;
    margin: 1.25rem 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}
.modal-ratings,
.modal-comments {
    margin-top: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.modal-ratings-summary {
    font-size: 0.92rem;
    color: var(--prod-text-muted);
    margin-bottom: 0.8rem;
}
.modal-ratings-form,
.modal-comments-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
}
.stars-input {
    display: inline-flex;
    gap: 4px;
}
.stars-input button {
    background: none;
    border: none;
    padding: 0.2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
}
.stars-input button:hover,
.stars-input[data-rating] button[data-r]:not([data-r="0"]) { color: var(--prod-accent); }
.stars-input button i.fas { color: var(--prod-accent); }

.modal-rating-author,
.modal-comment-author {
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    max-width: 150px;
    outline: none;
}
.modal-rating-author:focus,
.modal-comment-author:focus {
    border-color: var(--prod-accent);
}

.modal-comments-form textarea {
    width: 100%;
    min-width: 200px;
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Cairo', sans-serif;
}
.modal-comments-form textarea:focus {
    border-color: var(--prod-accent);
}

.modal-comments-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 0.8rem;
}
.modal-comment-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}
.modal-comment-item .comment-author { font-weight: 600; color: #fff; }
.modal-comment-item .comment-date { font-size: 0.78rem; color: var(--prod-text-muted); }
.modal-comment-item p { margin: 0.3rem 0 0; color: var(--prod-text-muted); }

.btn-modal.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; border-radius: 8px; }

/* Compare bar */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #111827, #0b0f19);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.9rem 1.25rem;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
}
.compare-bar .container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.compare-bar-label { font-weight: 700; color: var(--prod-accent); }
.compare-bar-items { flex: 1; font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); }
.btn-compare-go {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--prod-accent);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.35);
}
.btn-compare-go:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(237, 137, 54, 0.45); }
.compare-bar-clear {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.compare-bar-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #e53e3e;
}

/* Pagination */
.products-pagination-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.products-pagination {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.products-pagination a,
.products-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
}
.products-pagination a:hover {
    border-color: var(--prod-accent);
    color: var(--prod-accent);
    background: rgba(255, 255, 255, 0.1);
}
.products-pagination .page-current {
    background: var(--prod-accent);
    color: #fff;
    border-color: var(--prod-accent);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.35);
}
.products-pagination .page-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Product card: wishlist & compare icons */
.product-card-wishlist,
.product-card-compare {
    position: absolute;
    top: 0.6rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11, 15, 25, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    z-index: 11;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.product-card-wishlist { right: 0.6rem; }
.product-card-compare { right: 2.85rem; }
.product-card-wishlist:hover,
.product-card-compare:hover {
    color: var(--prod-accent);
    border-color: rgba(237, 137, 54, 0.4);
    background: rgba(11, 15, 25, 0.95);
    transform: scale(1.05);
}
.product-card-wishlist.in-wishlist { color: #e53e3e; }
.product-card-wishlist.in-wishlist i.fas { color: #e53e3e; }
.product-card-compare.in-compare { color: var(--prod-accent-light); }

/* Compare section */
.compare-section {
    margin-bottom: 2rem;
    padding: 1.8rem;
    background: var(--prod-card-bg);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--prod-shadow);
}
.compare-section-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.compare-col h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--prod-accent); font-weight: 700; }
.compare-col p { font-size: 0.88rem; color: var(--prod-text-muted); margin-bottom: 1rem; line-height: 1.6; }
.compare-specs .spec-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.compare-specs .spec-label { color: var(--prod-text-muted); }
.compare-specs .spec-value { font-weight: 600; color: #fff; }
@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
