/* Minified CSS for performance */
.phone-specs-container, 
.phone-specs-simple, 
.phone-specs-detailed, 
.phone-specs-detailed, 
.phone-album { max-width: 1200px; margin: 0 auto; padding: 20px; border-radius: 8px; margin-bottom: 30px; }

/* Improved Specs Table Styling */
.spec-section { margin-bottom: 2rem; }
.section-title { 
    display: flex; 
    align-items: center; 
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); 
    color: #fff; 
    padding: 12px 20px; 
    margin: 0 0 1rem; 
    border-radius: 8px 8px 0 0; 
    font-size: 1.2rem; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.section-title:hover { 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.section-icon { margin-left: 10px; font-size: 1.4rem; }
.specs-table-wrapper { 
    background: #fff; 
    border-radius: 0 0 8px 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}
.specs-table-wrapper:hover { 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.specs-table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0; 
    margin-bottom: 0;
}
.specs-table th, 
.specs-table td { 
    padding: 14px 18px; 
    text-align: right; 
    font-size: 1rem; 
    color: #333; 
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}
.specs-table th { 
    font-weight: 600; 
    color: #1e293b; 
    background-color: #f8fafc;
    width: 40%;
}
.specs-table td { 
    color: #4b5563;
    font-weight: 500;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}
.specs-table tbody tr:hover { 
    background-color: #f8fafc;
}
.specs-table tbody tr:nth-child(odd) { 
    background-color: #fafafa; 
}
.specs-table tbody tr:nth-child(odd):hover { 
    background-color: #f0f7ff; 
}

/* Responsive improvements for Table */
@media (max-width: 768px) { 
    .section-title { 
        padding: 10px 15px; 
        font-size: 1.1rem; 
    }
    .specs-table th, 
    .specs-table td { 
        padding: 10px 12px; 
        font-size: 0.9rem; 
    }
    .specs-table th { 
        width: 45%;
    }
}
@media (max-width: 480px) {
    .specs-table th, 
    .specs-table td { 
        padding: 8px 10px; 
        font-size: 0.85rem; 
    }
    .section-title { 
        font-size: 1rem; 
    }
    .section-icon { 
        font-size: 1.2rem; 
    }
}

/* === Combined & Refactored Specs Grid / Card Styles (Mobile First) === */

/* Base Styles (Mobile First - equivalent to 480px and below) */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    padding: 10px; 
    margin: 0 auto;
    max-width: 100%;
}

.spec-card {
    background: #fff;
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    padding: 12px; 
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px; 
    border: 1px solid #d1d5db;
}

.spec-card .spec-icon {
    font-size: 1.5rem; 
    color: #1a73e8; 
    margin-bottom: 8px; 
    transition: transform 0.3s ease, color 0.3s ease;
    height: auto; 
}

.spec-card .spec-label {
    font-weight: 600;
    margin-bottom: 6px; 
    color: #333; 
    font-size: 0.9rem; 
    line-height: 1.4;
}

.spec-card .spec-value {
    color: #666; 
    font-size: 0.85rem; 
    line-height: 1.4;
    font-weight: normal; 
}

.spec-card:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
}

/* Tablet Styles (min-width: 481px) */
@media (min-width: 481px) {
    .specs-grid {
        gap: 10px; 
        padding: 10px; 
    }
    .spec-card {
        padding: 10px; 
        min-height: 100px; 
    }
    .spec-card .spec-icon {
        font-size: 1.3rem; 
    }
    .spec-card .spec-label {
        font-size: 0.8rem; 
        margin-bottom: 4px; 
    }
    .spec-card .spec-value {
        font-size: 0.75rem; 
    }
}

/* Larger Tablet / Small Desktop (min-width: 769px) */
@media (min-width: 769px) {
    .specs-grid {
         gap: 15px; 
         padding: 15px; 
    }
     .spec-card {
        min-height: 140px; 
        padding: 15px; 
    }
     .spec-card .spec-icon {
        font-size: 1.75rem; 
        margin-bottom: 12px; 
    }
     .spec-card .spec-label {
        font-size: 1rem; 
        margin-bottom: 8px; 
    }
     .spec-card .spec-value {
        font-size: 0.95rem; 
    }
}


/* Medium Desktop (min-width: 993px) */
@media (min-width: 993px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px; 
        padding: 20px; 
        max-width: 960px; 
    }
    .spec-card {
         min-height: 170px; 
    }
    .spec-card .spec-icon {
        font-size: 2rem; 
        margin-bottom: 14px; 
    }
     .spec-card .spec-label {
        font-size: 1.15rem; 
    }
    .spec-card .spec-value {
        font-size: 1.05rem; 
    }
}

/* Large Desktop (min-width: 1201px) */
@media (min-width: 1201px) {
    .specs-grid {
        /* Uses 3 columns from 993px */
        max-width: 1200px; 
        gap: 20px; 
        padding: 25px; 
    }
    .spec-card {
         min-height: 180px; 
         padding: 20px; 
    }
    .spec-card .spec-icon {
        font-size: 2.25rem; 
    }
     .spec-card .spec-label {
        font-size: 1.2rem; 
    }
    .spec-card .spec-value {
        font-size: 1.1rem; 
    }
}


/* Extra Large Desktop (min-width: 1401px) */
@media (min-width: 1401px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr); 
        gap: 25px; 
        padding: 30px; 
        max-width: 1400px; 
    }
    .spec-card {
        border-radius: 16px; 
        box-shadow: 0 3px 12px rgba(0,0,0,0.08); 
        padding: 25px; 
        min-height: 200px; 
        transition: all 0.3s ease; 
    }
    .spec-card:hover {
        transform: translateY(-4px); 
        box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
    }
    .spec-card .spec-icon {
        font-size: 2.5rem; 
        color: #2563eb; 
        margin-bottom: 16px; 
        transition: transform 0.3s ease; 
        height: 50px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }
    .spec-card:hover .spec-icon {
        transform: scale(1.15); 
        color: #1d4ed8; 
    }
    .spec-card .spec-label {
        color: #1e293b; 
        font-size: 1.25rem; 
        margin-bottom: 10px; 
    }
    .spec-card .spec-value {
        color: #4b5563; 
        font-size: 1.15rem; 
        line-height: 1.5; 
        font-weight: 500; 
    }
}

/* === End Combined Grid/Card Styles === */

/* Separator Line Style */
.mps-section-divider {
    border: 0;
    height: 1px;
    background-color: #dee2e6; /* Slightly darker separator */
    margin: 2rem auto 2.5rem; /* Adjust spacing */
    max-width: 90%; 
}

/* Tabs Styling */
.mps-tabs { 
    margin-bottom: 30px; 
    position: relative; /* Needed for potential absolute positioning inside */
}

/* Navigation Tabs Container */
.nav-tabs {
    display: flex;
    gap: 1rem; 
    justify-content: center; 
    margin: 2.5rem 0 2rem; /* More space around tabs */
    padding-bottom: 1px; /* Prevent border collapse with HR */
    flex-wrap: wrap; 
    list-style: none; /* Remove list styles if it was a ul */
    padding-left: 0; /* Remove default padding */
}

/* Individual Tab Button */
.nav-btn {
    display: inline-flex; /* Align icon and text */
    align-items: center;
    gap: 0.6rem; 
    padding: 0.75rem 1.5rem; /* Adjust padding */
    border: 2px solid #e9ecef; /* Subtle border */
    border-radius: 50px; /* Pill shape */
    background: #ffffff; 
    color: #495057; /* Default text color */
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-size: 1rem; 
    font-weight: 500; /* Slightly bolder */
    text-decoration: none; 
    line-height: 1.2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-btn .nav-icon {
    width: 22px; /* Consistent icon size */
    height: 22px;
    transition: transform 0.3s ease;
    fill: #6c757d; /* Default icon color */
}

/* Hover State */
.nav-btn:hover {
    background-color: #f8f9fa; /* Light background on hover */
    border-color: #adb5bd; 
    color: #212529; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.nav-btn:hover .nav-icon {
    fill: #495057; /* Darker icon on hover */
}

/* Active State */
.nav-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%); /* Updated gradient */
    color: #ffffff !important; 
    border-color: transparent; /* Remove border when active */
    box-shadow: 0 5px 12px rgba(59, 130, 246, 0.4); /* Colored shadow */
    transform: translateY(-1px); /* Slight lift when active */
}

.nav-btn.active .nav-icon {
    fill: #ffffff; /* White icon when active */
}

/* Focus State (Accessibility) */
.nav-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* Remove aggressive mobile overrides if not needed */
@media (max-width: 768px) { 
    .nav-tabs {
        gap: 0.8rem; /* Slightly reduce gap on mobile */
    }
    .nav-btn {
        padding: 0.7rem 1.2rem; 
        font-size: 0.95rem; 
    }
    /* Re-evaluate if these are necessary or handled better by theme */
    /* .phone-specs-simple { flex-direction: column; } */
    /* .phone-specs-simple .spec-image { order: -1; margin-bottom: 15px; } */
    /* .spec-image img { width: 100%; height: auto; } */
    /* .phone-specs-container, .phone-specs-simple, .phone-specs-detailed { max-width: 100%; margin: 0; padding: 1px; box-shadow: none; border-radius: 0; background: transparent; } */
}

.content-section { display: none; animation: fadeIn 0.5s ease; }
.content-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.phone-album-grid { display: grid; gap: 10px; }
@media (min-width: 768px) { .phone-album-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .phone-album-grid { grid-template-columns: repeat(2, 1fr); } }
.phone-album-grid img { width: 100%; height: auto; cursor: pointer; transition: transform 0.3s ease; border-radius: 4px; }
.phone-album-grid img:hover { transform: scale(1.05); }
.album-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.album-lightbox .lb-image { max-width: 90%; max-height: 80%; }
.album-lightbox .lb-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; }
.album-lightbox .lb-prev, 
.album-lightbox .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 60px; color: #fff; cursor: pointer; user-select: none; }
.album-lightbox .lb-prev { left: 30px; }
.album-lightbox .lb-next { right: 30px; }
.specs-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.specs-list li {
    position: relative;
    padding-right: 1.5em;
    padding-left: 0;
    margin-bottom: 0.5em;
    line-height: 1.4;
    text-align: right;
}

.specs-list li:before {
    content: "•";
    position: absolute;
    right: 0.5em;
    color: #666;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

/* Simple Specs Image Styling */
.spec-image {
    text-align: center;
    margin-bottom: 30px;
}

.spec-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.spec-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .spec-image img {
        max-width: 100%;
        border-radius: 12px;
    }
} 

/* Simple specs heading */
.simple-specs-heading { 
    margin-bottom: 1rem;
}

/* === Styles moved from mps_add_custom_styles function === */

/* Minified CSS for performance */
/* Remove the duplicate @import below */
/* @import url('https://fonts.googleapis.com/icon?family=Material+Icons'); */
.phone-specs-container, 
.phone-specs-simple, 
.phone-specs-detailed, 
.phone-album { max-width: 1200px; margin: 0 auto; padding: 20px; border-radius: 8px; margin-bottom: 30px; }

/* Improved Specs Table Styling */
.spec-section { margin-bottom: 2rem; }
.section-title { 
    display: flex; 
    align-items: center; 
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); 
    color: #fff; 
    padding: 12px 20px; 
    margin: 0 0 1rem; 
    border-radius: 8px 8px 0 0; 
    font-size: 1.2rem; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.section-title:hover { 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.section-icon { margin-left: 10px; font-size: 1.4rem; }
.specs-table-wrapper { 
    background: #fff; 
    border-radius: 0 0 8px 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}
.specs-table-wrapper:hover { 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.specs-table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0; 
    margin-bottom: 0;
}
.specs-table th, 
.specs-table td { 
    padding: 14px 18px; 
    text-align: right; 
    font-size: 1rem; 
    color: #333; 
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}
.specs-table th { 
    font-weight: 600; 
    color: #1e293b; 
    background-color: #f8fafc;
    width: 40%;
}
.specs-table td { 
    color: #4b5563;
    font-weight: 500;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}
.specs-table tbody tr:hover { 
    background-color: #f8fafc;
}
.specs-table tbody tr:nth-child(odd) { 
    background-color: #fafafa; 
}
.specs-table tbody tr:nth-child(odd):hover { 
    background-color: #f0f7ff; 
}

/* Responsive improvements */
@media (max-width: 768px) { 
    .section-title { 
        padding: 10px 15px; 
        font-size: 1.1rem; 
    }
    .specs-table th, 
    .specs-table td { 
        padding: 10px 12px; 
        font-size: 0.9rem; 
    }
    .specs-table th { 
        width: 45%;
    }
}
@media (max-width: 480px) {
    .specs-table th, 
    .specs-table td { 
        padding: 8px 10px; 
        font-size: 0.85rem; 
    }
    .section-title { 
        font-size: 1rem; 
    }
    .section-icon { 
        font-size: 1.2rem; 
    }
}

/* Existing styles */
.single .entry-content > h2, 
.single .entry-content > h3 { background-color: #E2F0FA; padding: 10px; margin: 15px 0; border: 1px solid #C8E4F5; border-radius: 5px; }
.single .entry-content .specs-box h2, 
.single .entry-content .specs-box h3 { background-color: transparent !important; padding: 0 !important; margin: 0 !important; border: none !important; border-radius: 0 !important; }
.specs-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px; 
    padding: 15px; 
    margin: 0 auto; 
    max-width: 100%;
}
.spec-card { 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    padding: 12px; 
    text-align: center;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.spec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.spec-card .spec-icon { 
    font-size: 1.5rem; 
    color: #1a73e8; 
    margin-bottom: 8px;
}
.spec-card .spec-label { 
    font-weight: 600; 
    margin-bottom: 4px; 
    color: #333;
    font-size: 0.9rem;
}
.spec-card .spec-value { 
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    .spec-card {
        padding: 10px;
        min-height: 100px;
    }
    .spec-card .spec-icon {
        font-size: 1.3rem;
    }
    .spec-card .spec-label {
        font-size: 0.8rem;
    }
    .spec-card .spec-value {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
    }
    .spec-card {
        padding: 8px;
        min-height: 90px;
    }
}
.mps-tabs { margin-bottom: 30px; }
.nav-tabs { display: flex; gap: 1rem; justify-content: center; margin: 1.5rem 0; flex-wrap: wrap; }
.nav-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; border: none; border-radius: 30px; background: #fff; color: #1e293b; cursor: pointer; transition: all 0.4s ease; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); font-size: 1rem; position: relative; overflow: hidden; border: 2px solid transparent; text-decoration: none; }
.nav-btn::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); opacity: 0; transition: opacity 0.3s ease; z-index: 1; }
.nav-btn span { position: relative; z-index: 2; transition: transform 0.3s ease; }
.nav-btn .nav-icon { width: 24px; height: 24px; transition: transform 0.3s ease; z-index: 2; }
.nav-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); border-color: rgba(37, 99, 235, 0.3); }
.nav-btn:hover::after { opacity: 1; }
.nav-btn:hover span, 
.nav-btn:hover .nav-icon { color: #fff; transform: scale(1.05); }
.nav-btn.active { background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); color: #fff !important; padding: 0.8rem 1.5rem; box-shadow: 0 6px 12px rgb(29 53 106 / 97%); }
.nav-btn.active .nav-icon { filter: brightness(0) invert(1); }
.nav-btn:active { background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%) !important; color: #fff !important; transform: translateY(0) !important; }
@media (max-width: 768px) { 
    .nav-tabs { flex-direction: column; gap: 1rem; } 
    .nav-btn { padding: 0.8rem 1.2rem; font-size: 0.9rem; } 
    .phone-specs-simple { flex-direction: column; } 
    .phone-specs-simple .spec-image { order: -1; margin-bottom: 15px; } 
    .spec-image img { width: 100%; height: auto; } 
    .phone-specs-container, 
    .phone-specs-simple, 
    .phone-specs-detailed { max-width: 100%; margin: 0; padding: 1px; box-shadow: none; border-radius: 0; background: transparent; } 
}
.content-section { display: none; animation: fadeIn 0.5s ease; }
.content-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.phone-album-grid { display: grid; gap: 10px; }
@media (min-width: 768px) { .phone-album-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .phone-album-grid { grid-template-columns: repeat(2, 1fr); } }
.phone-album-grid img { width: 100%; height: auto; cursor: pointer; transition: transform 0.3s ease; border-radius: 4px; }
.phone-album-grid img:hover { transform: scale(1.05); }
.album-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.album-lightbox .lb-image { max-width: 90%; max-height: 80%; }
.album-lightbox .lb-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; }
.album-lightbox .lb-prev, 
.album-lightbox .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 60px; color: #fff; cursor: pointer; user-select: none; }
.album-lightbox .lb-prev { left: 30px; }
.album-lightbox .lb-next { right: 30px; }
.specs-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.specs-list li {
    position: relative;
    padding-right: 1.5em;
    padding-left: 0;
    margin-bottom: 0.5em;
    line-height: 1.4;
    text-align: right;
}

.specs-list li:before {
    content: "\2022";
    position: absolute;
    right: 0.5em;
    color: #666;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

/* Desktop-optimized Simple Specs Layout */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

.spec-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.spec-card .spec-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-card:hover .spec-icon {
    transform: scale(1.15);
    color: #1d4ed8;
}

.spec-card .spec-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 1.25rem;
    line-height: 1.4;
}

.spec-card .spec-value {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive Breakpoints for Simple Specs */
@media (max-width: 1400px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        gap: 20px;
        padding: 25px;
    }
    
    .spec-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .spec-card .spec-icon {
        font-size: 2.25rem;
    }
    
    .spec-card .spec-label {
        font-size: 1.2rem;
    }
    
    .spec-card .spec-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 960px;
        gap: 20px;
        padding: 20px;
    }
    
    .spec-card {
        min-height: 170px;
    }
    
    .spec-card .spec-icon {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    
    .spec-card .spec-label {
        font-size: 1.15rem;
    }
    
    .spec-card .spec-value {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .spec-card {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .spec-card {
        min-height: 140px;
        padding: 15px;
    }
    
    .spec-card .spec-icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .spec-card .spec-label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .spec-card .spec-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .spec-card {
        min-height: 120px;
        padding: 12px;
    }
    
    .spec-card .spec-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .spec-card .spec-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .spec-card .spec-value {
        font-size: 0.85rem;
    }
}

/* Simple Specs Image Styling */
.spec-image {
    text-align: center;
    margin-bottom: 30px;
}

.spec-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.spec-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .spec-image img {
        max-width: 100%;
        border-radius: 12px;
    }
}