/* SharmanCar Frontend Styles */

:root {
    --brand-gold: #E31E24;
    --brand-gold-hover: #C41E3A;
    --brand-black: #0A0A0A;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --bg-light: #F9FAFB;
}

/* Single Car Page */
.sharmancar-single-car {
    background: var(--bg-light);
    padding: 40px 0;
}

.sharmancar-single-car .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back Button */
.back-button {
    margin-bottom: 24px;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-button a:hover {
    color: var(--brand-gold);
}

/* Main Layout */
.car-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

/* Car Image */
.car-image-container {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.car-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.car-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--brand-gold);
    color: white;
    transform: scale(1.1);
}

/* Car Header */
.car-header {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.car-category {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.car-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.car-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-gold);
}

/* Specifications */
.car-specifications,
.car-features,
.car-description {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.spec-item svg {
    flex-shrink: 0;
    color: #E31E24;
    margin-top: 2px;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.feature-item svg {
    flex-shrink: 0;
}

/* Description */
.description-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Sidebar */
.car-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.interested-card,
.contact-info-card,
.why-choose-card,
.quick-info-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
}

.interested-card h3,
.contact-info-card h3,
.why-choose-card h3,
.quick-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

/* Contact Buttons */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: var(--brand-gold);
    color: white;
}

.call-btn:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Contact Info */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item svg {
    color: var(--brand-gold);
    flex-shrink: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-weight: 700;
}

/* Quick Info */
.quick-info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.quick-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-info-item .label {
    font-size: 14px;
    color: var(--text-secondary);
}

.quick-info-item .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .car-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .car-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .specs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .car-title {
        font-size: 24px;
    }
    
    .car-price {
        font-size: 28px;
    }
}

/* Car Grid (Archive) */
.sharmancar-grid {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.sharmancar-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sharmancar-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sharmancar-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .sharmancar-grid.columns-3,
    .sharmancar-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sharmancar-grid {
        grid-template-columns: 1fr;
    }
}

/* Car Card */
.car-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.car-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.car-card:hover .car-card-image img {
    transform: scale(1.1);
}

.car-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--brand-gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.car-card-content {
    padding: 24px;
}

.car-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.car-card-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 16px;
}

.car-card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.car-card-spec {
    font-size: 13px;
    color: var(--text-secondary);
}

.car-card-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--brand-gold);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.car-card-button:hover {
    background: var(--brand-gold-hover);
}


/* Single Car Page - Contact Section */
.car-sidebar {
    position: sticky;
    top: 100px;
}

.interested-card,
.contact-info-card,
.why-choose-card,
.quick-info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.interested-card h3,
.contact-info-card h3,
.why-choose-card h3,
.quick-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
}

/* Contact Buttons */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: #E31E24;
    color: #FFFFFF;
}

.call-btn:hover {
    background: #C41E3A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Information */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid #F3F4F6;
}

.info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #6B7280;
}

.info-item span {
    flex: 1;
}

/* Why Choose Section */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #6B7280;
    font-size: 15px;
}

.benefits-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #E31E24;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Quick Information */
.quick-info-grid {
    display: grid;
    gap: 12px;
}

.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
}

.quick-info-item:last-child {
    border-bottom: none;
}

.quick-info-item .label {
    color: #6B7280;
    font-size: 14px;
}

.quick-info-item .value {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .car-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .interested-card h3,
    .contact-info-card h3,
    .why-choose-card h3,
    .quick-info-card h3 {
        font-size: 20px;
    }
    
    .contact-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}


/* Cars Archive Page */
.sharmancar-cars-archive {
    background: #0A0A0A;
    min-height: 100vh;
}

/* Hero Section */
.cars-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 100px 20px 60px;
    text-align: center;
}

.cars-hero .container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
}

.hero-title .highlight {
    color: #E31E24;
}

.hero-subtitle {
    font-size: 20px;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filters Section */
.cars-filters {
    background: #1A1A1A;
    padding: 40px 20px;
    border-bottom: 1px solid #2A2A2A;
}

.cars-filters .container {
    max-width: 1400px;
    margin: 0 auto;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-item label {
    display: block;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.filter-item input,
.filter-item select {
    width: 100%;
    padding: 12px 16px;
    background: #0A0A0A;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.filter-item input:focus,
.filter-item select:focus {
    outline: none;
    border-color: #E31E24;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.filter-item select option {
    background: #1A1A1A;
    color: white;
}

.filter-actions {
    display: flex;
    gap: 12px;
}

.btn-filter,
.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-filter {
    background: #E31E24;
    color: #FFFFFF;
}

.btn-filter:hover {
    background: #C41E3A;
    transform: translateY(-2px);
}

.btn-reset {
    background: #2A2A2A;
    color: white;
}

.btn-reset:hover {
    background: #3A3A3A;
}

/* Cars Grid Section */
.cars-grid-section {
    padding: 60px 20px;
}

.cars-grid-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2A2A2A;
}

.results-count {
    color: #9CA3AF;
    font-size: 15px;
    margin: 0;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #9CA3AF;
}

.view-btn:hover,
.view-btn.active {
    background: #E31E24;
    border-color: #E31E24;
    color: #FFFFFF;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.car-card {
    background: #1A1A1A;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Badge */
.car-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.car-badge.new-arrival {
    background: #3B82F6;
}

.car-badge.best-seller {
    background: #10B981;
}

/* Wishlist */
.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #E31E24;
    color: white;
    transform: scale(1.1);
}

/* Car Image */
.car-image {
    display: block;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #2A2A2A;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
}

/* Car Info */
.car-info {
    padding: 24px;
}

.car-category {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.car-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.car-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.car-title a:hover {
    color: #E31E24;
}

.car-dealer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E31E24;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Specs */
.car-specs {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9CA3AF;
    font-size: 13px;
}

/* Footer */
.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: #3B82F6;
}

.price-old {
    font-size: 16px;
    color: #6B7280;
    text-decoration: line-through;
}

.price-contact {
    font-size: 16px;
    color: #9CA3AF;
    font-style: italic;
}

.btn-view {
    background: #E31E24;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #C41E3A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: #E31E24;
    border-color: #E31E24;
    color: #FFFFFF;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results svg {
    color: #4B5563;
    margin-bottom: 24px;
}

.no-results h2 {
    font-size: 32px;
    color: white;
    margin: 0 0 12px;
}

.no-results p {
    font-size: 18px;
    color: #9CA3AF;
    margin: 0 0 32px;
}

.btn-reset-large {
    display: inline-block;
    background: #E31E24;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reset-large:hover {
    background: #C41E3A;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .btn-filter,
    .btn-reset {
        width: 100%;
        justify-content: center;
    }
    
    .results-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .car-specs {
        flex-wrap: wrap;
    }
}


/* ========================================
   INVENTORY SHORTCODE - FULL WIDTH
   ======================================== */

/* Force full width for inventory shortcode */
.sharmancar-inventory-section {
    width: 100vw;
    max-width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #F9FAFB;
    padding: 80px 0;
}

/* Override any parent container constraints */
body .sharmancar-inventory-section {
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Container for content */
.sharmancar-inventory-section .sharmancar-inventory-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.sharmancar-inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.sharmancar-inventory-heading {
    flex: 1;
    min-width: 300px;
}

.sharmancar-inventory-eyebrow {
    display: block;
    color: #E31E24;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sharmancar-inventory-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.sharmancar-inventory-title-primary {
    display: block;
    color: #111827;
}

.sharmancar-inventory-title-secondary {
    display: block;
    color: #E31E24;
}

/* Actions Section */
.sharmancar-inventory-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.sharmancar-inventory-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sharmancar-filter-button {
    padding: 12px 24px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sharmancar-filter-button:hover,
.sharmancar-filter-active {
    background: #E31E24;
    border-color: #E31E24;
    color: white;
}

.sharmancar-inventory-view-all {
    color: #E31E24;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sharmancar-inventory-view-all:hover {
    color: #C41E3A;
    transform: translateX(4px);
}

/* Inventory Grid */
.sharmancar-inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Car Card in Inventory */
.sharmancar-inventory-grid .car-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sharmancar-inventory-grid .car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .sharmancar-inventory-title {
        font-size: 36px;
    }
    
    .sharmancar-inventory-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sharmancar-inventory-actions {
        width: 100%;
        align-items: flex-start;
    }
    
    .sharmancar-inventory-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .sharmancar-inventory-section {
        padding: 60px 0;
    }
    
    .sharmancar-inventory-section .sharmancar-inventory-container {
        padding: 0 20px;
    }
    
    .sharmancar-inventory-title {
        font-size: 32px;
    }
    
    .sharmancar-inventory-filters {
        width: 100%;
    }
    
    .sharmancar-filter-button {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .sharmancar-inventory-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
