/* Shop Styles for TintHQ */

/* CSS Variables */
:root {
    --primary-color: #c700d1;
    --primary-color-dark: #a6009f;
    --secondary-color: #fff;
    --text-color: #333;
    --text-color-light: #666;
    --border-color: #ddd;
}

/* Subpage Hero Styles */
.subpage-hero {
    height: 40vh;
    min-height: 300px;
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('tint-shop-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.subpage-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subpage-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Shop Container */
#precut-shop {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#precut-shop h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #111;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    min-height: calc(100vh - 200px);
}

/* Sidebar */
.shop-sidebar {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.search-box {
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.search-box button {
    padding: 0.8rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background: var(--primary-color-dark);
}

.categories h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.categories ul {
    list-style: none;
    padding: 0;
}

.categories li {
    margin-bottom: 0.5rem;
}

.categories a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.03);
}

.categories a i {
    font-size: 1.1rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.categories a span {
    font-weight: 500;
}

.categories a:hover, .categories a.active {
    background: #f0f0f0;
    color: var(--primary-color);
}

.categories a:hover i, .categories a.active i {
    color: var(--primary-color);
}

.price-range {
    margin-top: 1rem;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 1rem;
}

.price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

/* Products Grid */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-header h2 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.sort-options select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin: 0;
}

.product-card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
    padding: 0.7rem;
    font-size: 0.97rem;
}
.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.product-image {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}
.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-info {
    padding: 0;
}
.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.product-info .price {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.product-info .description {
    color: #888;
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}
.features {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.features li {
    margin-bottom: 0.2rem;
}
.product-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.3rem;
}
.add-to-cart {
    flex: 1;
    padding: 0.4rem 0.5rem;
    font-size: 0.95rem;
    border-radius: 4px;
}
.secondary-actions button {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-image {
        height: 90px;
    }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.cart-open .cart-sidebar {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cart-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cart-items {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-color-light);
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-summary {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background: var(--primary-color-dark);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.cart-open .cart-overlay {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 200px 1fr;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .products-header {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Multi-step Form Styles */
.precut-form-container .steps-container {
    padding: 0;
    gap: 2.5rem;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step-label {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #c700d1;
    color: white;
}

.progress-step.active .step-label {
    color: #c700d1;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #5cb85c;
    color: white;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.5s;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

/* Vehicle Type Selection */
.vehicle-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vehicle-type {
    width: 180px;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vehicle-type:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
}

.vehicle-type.selected {
    border-color: #c700d1;
    background: rgba(199, 0, 209, 0.05);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.vehicle-type.selected .vehicle-icon {
    border-color: #c700d1;
}

.vehicle-icon i {
    font-size: 2.5rem;
    color: #333;
    transition: all 0.3s ease;
}

.vehicle-type.selected .vehicle-icon i {
    color: #c700d1;
}

.vehicle-type h4 {
    font-size: 1.2rem;
    color: #333;
}

/* Window Selection Step */
.window-selector {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.vehicle-diagram {
    flex: 1;
    min-height: 300px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.window-options {
    flex: 1;
}

.window-option {
    margin-bottom: 1.5rem;
}

.window-option label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
}

.window-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #c700d1;
}

/* Tint Options Step */
.tint-configurator {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.window-configs {
    flex: 1;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
    min-height: 300px;
}

.tint-message {
    color: #666;
    text-align: center;
    padding: 2rem 0;
}

.tint-options {
    flex: 1;
}

.tint-option-group {
    margin-bottom: 2rem;
}

.tint-option-group h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.tint-material-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.material-option {
    display: flex;
    align-items: flex-start;
}

.material-option input[type="radio"] {
    margin-top: 5px;
    margin-right: 10px;
    accent-color: #c700d1;
}

.material-option label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.material-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.material-price {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.material-features {
    font-size: 0.9rem;
    color: #888;
}

.tint-shade-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade-option {
    width: 70px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0.5rem;
}

.shade-option:hover {
    background: #f0f0f0;
}

.shade-option.selected {
    border-color: #c700d1;
    background: rgba(199, 0, 209, 0.05);
}

.shade-swatch {
    width: 50px;
    height: 30px;
    display: block;
    margin: 0 auto 5px;
    border-radius: 4px;
}

.shade-label {
    font-weight: 600;
    color: #333;
    display: block;
    font-size: 0.9rem;
}

.shade-name {
    color: #666;
    font-size: 0.8rem;
}

/* Vehicle Details Step */
.vehicle-details-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c700d1;
}

.helper-text {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.or-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: #777;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.vehicle-manual-entry {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
}

/* Order Summary */
.order-summary {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
}

.order-summary h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
}

.summary-content {
    margin-bottom: 1.5rem;
}

.summary-price {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.subtotal,
.shipping,
.total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #333;
}

.total {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

/* Step Buttons */
.precut-form-container .step-buttons {
    margin-top: 2.5rem;
    gap: 1rem;
    display: flex;
    justify-content: flex-end;
}

/* Center single button in .step-buttons */
.precut-form-container .step-buttons:only-child,
.precut-form-container .step-buttons.single,
.precut-form-container .step-buttons:has(.btn:only-child) {
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.next-step {
    background: #c700d1;
    color: white;
}

.next-step:hover:not(:disabled) {
    background: #a6009f;
}

.prev-step {
    background: #eee;
    color: #333;
}

.prev-step:hover {
    background: #ddd;
}

.add-to-cart {
    background: #c700d1;
    color: white;
    padding: 15px 30px;
}

.add-to-cart:hover {
    background: #a6009f;
}

/* Installation Options Section */
#install-options {
    padding: 5rem 0;
    background: #fff;
}

#install-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111;
}

.install-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.install-option {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.install-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.install-option.featured {
    border-color: #c700d1;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c700d1;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #eee;
}

.option-icon i {
    font-size: 2.5rem;
    color: #c700d1;
}

.install-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.install-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

.option-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.option-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c700d1;
}

.find-installer-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c700d1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.find-installer-btn:hover {
    background: #a6009f;
}

/* FAQ Section */
#precut-faq {
    padding: 5rem 0;
    background: #f8f8f8;
}

#precut-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(199, 0, 209, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-icon {
    color: #c700d1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .window-selector,
    .tint-configurator {
        flex-direction: column;
    }
    
    .vehicle-diagram {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .subpage-hero h1 {
        font-size: 2.2rem;
    }
    
    .progress-steps {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .progress-step {
        min-width: 100px;
    }
    
    .vehicle-types {
        gap: 1rem;
    }
    
    .vehicle-type {
        width: 130px;
        padding: 1.5rem 0.5rem;
    }
    
    .vehicle-icon {
        width: 60px;
        height: 60px;
    }
    
    .install-options-grid {
        grid-template-columns: 1fr;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subpage-hero {
        min-height: 250px;
    }
    
    .subpage-hero h1 {
        font-size: 1.8rem;
    }
    
    .steps-container {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}

/* Aftercare Page Styles */
/* Aftercare Intro */
#aftercare-intro {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

/* Timeline Active Color Updates */
.timeline-point.active .point-number {
    background: var(--primary-color);
    color: white;
}

.timeline-point.active .point-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Don't/Do Lists Color Updates */
.dont-do h4 {
    color: #e74c3c;
}

.do-do h4 {
    color: var(--primary-color);
}

.dont-do h4 i {
    color: #e74c3c;
}

.do-do h4 i {
    color: var(--primary-color);
}

/* FAQ Icon Color */
.faq-icon {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(199, 0, 209, 0.05);
}

/* Product Link Styling */
.product-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.product-link:hover {
    background: var(--primary-color-dark);
}

/* Cleaning Guide Text Visibility */
#cleaning-guide .step-content p {
    color: #666 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

#cleaning-guide {
    display: block;
}

.cleaning-steps {
    display: block;
}

/* Desktop cleaning step styles */
@media (min-width: 769px) {
    .cleaning-step {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem;
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
        align-items: flex-start;
    }
    
    .cleaning-step .step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 50%;
        background: #c700d1;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .cleaning-step .step-content {
        flex: 1;
        display: block;
    }
    
    .cleaning-step h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: #333;
    }
    
    .cleaning-step p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* Video Responsive Styling */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Enhanced Mobile Styling for Aftercare */
@media (max-width: 768px) {
    /* Aftercare intro mobile */
    #aftercare-intro {
        padding: 3rem 0;
    }
    
    /* Drying time section mobile */
    #drying-time {
        padding: 3rem 0 !important;
        background: #f8f8f8 !important;
    }
    
    #drying-time h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #333 !important;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        background: rgba(255,255,255,0.9);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        width: auto;
    }
    
    #drying-time h2 {
        text-align: center;
    }
    
    #drying-time .timeline {
        text-align: left !important;
    }
    
    .timeline-container {
        position: relative;
    }
    
    .aftercare-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .aftercare-image,
    .aftercare-text {
        min-width: auto;
    }
    
    /* Timeline mobile - True horizontal timeline */
    .timeline {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        margin-bottom: 2rem !important;
        padding: 2rem 1rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: row !important;
        gap: 0 !important;
    }
    
    .timeline::before {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        left: 5% !important;
        right: 5% !important;
        height: 3px !important;
        background: #eee !important;
        transform: translateY(-50%) !important;
        z-index: 1 !important;
    }
    
    .timeline-point {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex: 1 !important;
        cursor: pointer !important;
        min-width: 80px !important;
    }
    
    .timeline-point:hover .point-number {
        transform: scale(1.05) !important;
    }
    
    .timeline-point.active .point-number {
        background: #c700d1 !important;
        color: white !important;
    }
    
    .timeline-point.active .point-label {
        color: #c700d1 !important;
        font-weight: 600 !important;
    }
    
    .point-number {
        width: 45px !important;
        height: 45px !important;
        border-radius: 50% !important;
        background: #eee !important;
        color: #666 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
        font-size: 1.1rem !important;
        transition: all 0.3s ease !important;
        border: 3px solid white !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .point-label {
        color: #666 !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
    }
    
    /* Cleaning Guide section mobile */
    #cleaning-guide h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: #333 !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
        background: rgba(255,255,255,0.9) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
    }
    
    #cleaning-guide {
        text-align: center !important;
        background-color: #f8f8f8 !important;
    }
    
    /* Cleaning steps mobile - better layout */
    .cleaning-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        background: white !important;
        padding: 2rem 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        margin-bottom: 2rem !important;
        gap: 1.5rem !important;
    }
    
    .cleaning-step .step-number {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        border-radius: 50% !important;
        background: #c700d1 !important;
        color: white !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: bold !important;
        font-size: 1.5rem !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .cleaning-step .step-content {
        flex: 1 !important;
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
    }
    
    .cleaning-step h3 {
        color: #333 !important;
        font-size: 1.3rem !important;
        margin: 0 0 1rem 0 !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
    }
    
    .cleaning-step p {
        color: #666 !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Cleaning tips mobile */
    .cleaning-tips {
        margin-top: 2rem !important;
        background: white !important;
        padding: 2rem 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        text-align: center !important;
    }
    
    .cleaning-tips h3 {
        color: #333 !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    
    .cleaning-tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .tip-box {
        background: #f8f9fa !important;
        padding: 1.5rem !important;
        border-radius: 10px !important;
        text-align: left !important;
    }
    
    .tip-box h4 {
        color: #c700d1 !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .tip-box p,
    .tip-box li {
        color: #666 !important;
        line-height: 1.6 !important;
    }
    
    /* Product recommendation mobile */
    .product-recommendation {
        background: white !important;
        padding: 2rem 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        text-align: center !important;
        margin-top: 2rem !important;
    }
    
    .product-recommendation h3 {
        color: #333 !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
    }
    
    .product-recommendation p {
        color: #666 !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
    }
    
    .products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    .product {
        max-width: 280px !important;
        background: #f8f9fa !important;
        border-radius: 10px !important;
        padding: 1.5rem !important;
        text-align: center !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    
    /* Video mobile */
    #aftercare-video {
        padding: 3rem 0 !important;
        background: #f8f8f8 !important;
        text-align: center !important;
    }
    
    #aftercare-video h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: #333 !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
        background: rgba(255,255,255,0.9) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
    }
    
    .video-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        position: relative !important;
        padding-bottom: 56.25% !important;
        height: 0 !important;
        background: #000 !important;
    }
    
    .video-wrapper iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border: none !important;
    }
    
    .video-description {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        text-align: center !important;
        background: white !important;
        padding: 2rem 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    .video-description h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        color: #333 !important;
        font-weight: 600 !important;
    }
    
    .video-description p {
        color: #666 !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        font-size: 0.95rem !important;
    }
    
    /* FAQ mobile */
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Timeline content mobile */
    .timeline-content {
        margin-top: 2rem !important;
        background: white !important;
        border-radius: 12px !important;
        padding: 2rem !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        border-left: 4px solid var(--primary-color) !important;
    }
    
    .timeline-panel h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
        text-align: left;
    }
    
    /* Do/Don't lists mobile */
    .do-dont-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .dont-do, .do-do {
        width: 100%;
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 4px solid;
    }
    
    .dont-do {
        background: rgba(255, 235, 238, 0.9);
        border-left-color: #e74c3c;
    }
    
    .do-do {
        background: rgba(232, 245, 233, 0.9);
        border-left-color: var(--primary-color);
    }
    
    /* Fix text visibility in do/don't lists */
    .dont-do h4,
    .do-do h4 {
        color: #333 !important;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .dont-do h4 i {
        color: #e74c3c !important;
    }
    
    .do-do h4 i {
        color: var(--primary-color) !important;
    }
    
    .dont-do ul,
    .do-do ul {
        color: #333 !important;
        padding-left: 1.5rem;
        margin: 0;
    }
    
    .dont-do li,
    .do-do li {
        color: #333 !important;
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    
    .timeline-note {
        background: #f8f9fa;
        border-left: 4px solid #17a2b8;
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1.5rem;
    }
    
    .timeline-note p {
        color: #666 !important;
        font-style: italic;
        margin: 0;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    /* Ensure all timeline panel text is visible */
    .timeline-panel p,
    .timeline-panel li {
        color: #333 !important;
        line-height: 1.6;
    }
    
    .timeline-panel ul {
        padding-left: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .timeline-panel li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
}

.aftercare-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.aftercare-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aftercare-image img {
    width: 100%;
    height: auto;
    display: block;
}

.aftercare-text {
    flex: 1;
    min-width: 300px;
}

.aftercare-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.aftercare-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.important-notice {
    background: rgba(255, 249, 219, 0.7);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.important-notice i {
    font-size: 1.5rem;
    color: #ffc107;
}

.important-notice h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Drying Time Timeline */
#drying-time {
    padding: 5rem 0;
}

.timeline-container {
    max-width: 100%;
    margin: 0 auto;
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: #eee;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: pointer;
}

.point-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.point-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-point.active .point-number {
    background: #c700d1;
    color: white;
}

.timeline-point.active .point-label {
    color: #c700d1;
    font-weight: 600;
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-panel {
    display: none;
    animation: fadeIn 0.5s;
}

.timeline-panel.active {
    display: block;
}

.timeline-panel h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #333;
}

.do-dont-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.dont-do, .do-do {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
    border-radius: 8px;
}

.dont-do {
    background: rgba(255, 235, 238, 0.6);
}

.do-do {
    background: rgba(232, 245, 233, 0.6);
}

.do-dont-list h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dont-do h4 {
    color: #e53935;
}

.do-do h4 {
    color: #43a047;
}

.do-dont-list i {
    font-size: 1.2rem;
}

.do-dont-list ul {
    padding-left: 1.5rem;
}

.do-dont-list li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.timeline-note {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-note p {
    font-style: italic;
    color: #666;
}

/* Cleaning Guide */
#cleaning-guide {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.cleaning-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cleaning-step {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #c700d1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.step-content p, .step-content ul, .step-content ol {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-content ul, .step-content ol {
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

.product-recommendation {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.product-recommendation h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
}

.product-recommendation > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.product {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.product h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.product p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #c700d1;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: #a700b1;
    transform: translateY(-2px);
}

/* Video Section */
#aftercare-video {
    padding: 5rem 0;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.video-wrapper {
    flex: 1;
    min-width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    flex: 1;
    min-width: 300px;
}

.video-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.video-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .aftercare-content {
        gap: 2rem;
    }
    
    .timeline::before {
        left: 10%;
        right: 10%;
    }
    
    .do-dont-list {
        flex-direction: column;
    }
}

/* Ensure desktop timeline styles are preserved */
@media (min-width: 769px) {
    .timeline {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        position: relative;
        padding: 0;
        overflow: visible;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        height: 4px;
        background: #eee;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .point-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 10px;
        border: none;
    }
    
    .point-label {
        font-size: 1rem;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    /* Force horizontal timeline on mobile */
    .timeline {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        margin-bottom: 2rem !important;
        padding: 2rem 0.5rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin-left: 0 !important;
        gap: 0 !important;
    }
    
    .timeline::before {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        left: 5% !important;
        right: 5% !important;
        height: 3px !important;
        background: #eee !important;
        transform: translateY(-50%) !important;
        z-index: 1 !important;
        width: auto !important;
        bottom: auto !important;
    }
    
    .timeline-point {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        flex: 1 !important;
        cursor: pointer !important;
        min-width: 70px !important;
        width: auto !important;
        gap: 0 !important;
    }
    
    .point-label {
        text-align: left !important;
        margin-top: 0 !important;
    }
    
    .cleaning-step {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .aftercare-text h2,
    #drying-time h2,
    #cleaning-guide h2,
    #faq h2,
    #aftercare-video h2 {
        font-size: 2rem;
    }
    
    .timeline-panel h3,
    .product-recommendation h3,
    .video-description h3 {
        font-size: 1.5rem;
    }
}

/* Additional Cleaning Guide Styles */
.cleaning-tips {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.cleaning-tips h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #333;
}

.cleaning-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-box {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.tip-box h4 {
    color: #c700d1;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-box h4 i {
    margin-right: 10px;
}

.tip-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tip-box ul {
    color: #666;
    padding-left: 1.5rem;
}

.tip-box li {
    margin-bottom: 0.5rem;
}

.pro-tip {
    background: rgba(255, 249, 219, 0.7);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.pro-tip h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.pro-tip h4 i {
    color: #ffc107;
    margin-right: 10px;
}

.pro-tip p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cleaning-tips {
        padding: 1.5rem;
    }
    
    .cleaning-tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 0;
    background-color: white;
}

#testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #111;
}

.testimonial-slider {
    position: relative;
    margin: 3rem 0;
}

.testimonial-slide {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-image {
    flex: 1;
    min-width: 300px;
    background-size: cover;
    background-position: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2rem;
}

.testimonial-author p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.review-summary {
    display: flex;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating-average {
    flex: 1;
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.large-rating {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #777;
    font-size: 0.9rem;
}

.rating-breakdown {
    flex: 2;
    padding-left: 2rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
    font-size: 0.9rem;
    color: #666;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 15px;
}

.progress {
    height: 100%;
    background: #f39c12;
    border-radius: 4px;
}

.rating-percent {
    width: 40px;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-image {
        min-height: 250px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .review-summary {
        flex-direction: column;
    }
    
    .rating-average {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-breakdown {
        padding-left: 0;
    }
}

/* Product Showcase Section */
#product-showcase {
    padding: 5rem 0;
    background-color: #f0f0f0;
}

#product-showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #111;
}

.kit-contents {
    display: flex;
    margin: 3rem 0;
    gap: 3rem;
}

.kit-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-kit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    padding: 2rem;
}

.placeholder-kit i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #c700d1;
}

.placeholder-kit span {
    font-size: 1.2rem;
    font-weight: 500;
}

.kit-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kit-item {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.kit-item:hover {
    transform: translateY(-5px);
}

.item-icon {
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(199, 0, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c700d1;
    font-size: 1.5rem;
}

.item-content {
    flex: 1;
}

.item-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.item-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.product-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: #c700d1;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(199, 0, 209, 0.3);
}

.cta-button:hover {
    background: #a6009f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(199, 0, 209, 0.4);
}

@media (max-width: 992px) {
    .kit-contents {
        flex-direction: column;
    }

    .kit-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .kit-item {
        flex-direction: column;
    }
    
    .item-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .item-content {
        text-align: center;
    }
}

/* Installer Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.4s;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.8rem;
    text-align: center;
}

.installer-search {
    text-align: center;
    margin-bottom: 2rem;
}

.installer-search p {
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.location-input {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.location-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-btn {
    background: #c700d1;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #a6009f;
}

.installer {
    display: flex;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f9f9f9;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.installer:hover {
    background: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.installer-info {
    flex: 1;
}

.installer-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.installer-address {
    color: #666;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.installer-distance {
    color: #c700d1;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.installer-rating {
    color: #f39c12;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.installer-rating span {
    color: #666;
    margin-left: 5px;
}

.installer-specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
}

.installer-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    margin-left: 1.5rem;
}

.call-btn, .book-btn {
    padding: 0.7rem 1rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.call-btn {
    background: #eee;
    color: #333;
}

.call-btn:hover {
    background: #ddd;
}

.book-btn {
    background: #c700d1;
    color: white;
}

.book-btn:hover {
    background: #a6009f;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .installer {
        flex-direction: column;
    }
    
    .installer-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .location-input {
        flex-direction: column;
    }
    
    .location-input input {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .search-btn {
        border-radius: 5px;
        padding: 0.8rem;
    }
}

/* VIN Lookup Styles */
.vin-lookup-btn {
    position: absolute;
    right: 10px;
    top: 40px;
    background-color: #eee;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #333;
    transition: all 0.3s ease;
}

.vin-lookup-btn:hover {
    background-color: #ddd;
}

.loading-text {
    display: inline-block;
    margin-left: 10px;
    color: #666;
    font-size: 0.9rem;
}

.vin-success, .vin-error {
    padding: 8px 12px;
    margin-top: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

.vin-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-left: 3px solid #4CAF50;
}

.vin-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border-left: 3px solid #F44336;
}

input.loading {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" fill="none" stroke="%23c700d1" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform></circle></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

/* Precut Form Container (for precut.html) */
.precut-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* Featured Products Section */
#featured-products {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

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

.featured-product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.featured-product:hover {
    transform: translateY(-5px);
}

.featured-product .product-image {
    height: 250px;
    position: relative;
}

.featured-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-product .product-info {
    padding: 1.5rem;
}

.featured-product .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.featured-product .product-info .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.featured-product .product-info .description {
    color: var(--text-color-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-rating i {
    color: #ffd700;
    margin-right: 0.2rem;
}

.product-rating span {
    color: var(--text-color-light);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-product .product-image {
        height: 200px;
    }
}

/* Quick View Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    border-radius: 10px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-details {
    padding: 1rem 0;
}

.quick-view-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.quick-view-details .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
}

.quick-view-details .description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
}

.quantity-selector .quantity-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.quantity-selector .quantity-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.quick-view-actions .add-to-cart {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.quick-view-actions .add-to-cart:hover {
    background: var(--primary-color-dark);
}

@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr;
    }

    .quick-view-image {
        height: 300px;
    }

    .quick-view-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
    }

    .quick-view-actions .add-to-cart {
        width: 100%;
    }
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-view-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.secondary-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.compare-btn,
.wishlist-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compare-btn:hover,
.wishlist-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.wishlist-btn i.fas {
    color: var(--primary-color);
}

/* Comparison Modal */
.comparison-content {
    max-width: 1200px;
    padding: 2rem;
}

.comparison-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.comparison-table th {
    background: var(--secondary-color);
    font-weight: 600;
}

.product-header {
    position: relative;
    text-align: center;
}

.product-header img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.remove-compare {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color-light);
    cursor: pointer;
    padding: 0.5rem;
}

.remove-compare:hover {
    color: var(--primary-color);
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 2rem;
}

.wishlist-open .wishlist-sidebar {
    right: 0;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.wishlist-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

#close-wishlist {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}

.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.wishlist-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.wishlist-item-info .price {
    color: var(--primary-color);
    font-weight: 600;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wishlist-item-actions button {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-item-actions .add-to-cart {
    background: var(--primary-color);
    color: white;
}

.wishlist-item-actions .add-to-cart:hover {
    background: var(--primary-color-dark);
}

.wishlist-item-actions .remove-wishlist {
    background: none;
    color: var(--text-color-light);
}

.wishlist-item-actions .remove-wishlist:hover {
    color: var(--primary-color);
}

.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wishlist-open .wishlist-overlay {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }

    .wishlist-item {
        grid-template-columns: 60px 1fr;
    }

    .wishlist-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Product Reviews Section */
.product-reviews {
    padding: 4rem 0;
    background: var(--background-light);
}

.product-reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.overall-rating {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid var(--border-color);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.total-reviews {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.rating-bar span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.reviews-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.review-date {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.review-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.load-more-reviews {
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.load-more-reviews:hover {
    background: var(--primary-color-dark);
}

/* Related Products Section */
.related-products {
    padding: 4rem 0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .overall-rating {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
    }

    .rating-bar {
        grid-template-columns: 60px 1fr 40px;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-date {
        align-self: flex-start;
    }
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: var(--background-light);
}

.categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

/* Search and Filter Section */
.search-filter {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-bar button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: var(--primary-color-dark);
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    color: var(--text-color);
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .search-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar input {
        border-right: 1px solid var(--border-color);
        border-radius: 4px;
    }

    .search-bar button {
        border-radius: 4px;
    }

    .filter-options {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        width: 100%;
    }
}

/* Text Visibility Fixes */
.precut-form-container * {
    color: inherit;
}

.precut-form-container p,
.precut-form-container span,
.precut-form-container div:not(.btn):not(.progress-step):not(.vehicle-icon) {
    color: #333;
}

.precut-form-container .summary-content {
    color: #333;
}

.window-configs p {
    color: #666;
}

/* Enhanced Mobile Optimization for PreCut Page */
@media (max-width: 768px) {
    /* Form container mobile adjustments */
    .precut-form-container {
        padding: 0 10px;
    }
    
    /* Ensure text visibility on mobile */
    .precut-form-container h3,
    .precut-form-container h4,
    .precut-form-container p,
    .precut-form-container label,
    .precut-form-container span {
        color: #333 !important;
    }
    
    .precut-form-container .helper-text {
        color: #777 !important;
    }
    
    /* Progress steps mobile */
    .progress-steps {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 2rem;
    }
    
    .progress-step {
        min-width: calc(50% - 5px);
        margin-bottom: 10px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    /* Vehicle type cards mobile */
    .vehicle-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .vehicle-type {
        padding: 1rem;
    }
    
    .vehicle-icon {
        width: 50px;
        height: 50px;
    }
    
    .vehicle-icon i {
        font-size: 1.5rem;
    }
    
    /* Tint options mobile */
    .tint-material-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .material-option {
        width: 100%;
    }
    
    .tint-shade-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .shade-option {
        padding: 0.5rem;
    }
    
    /* Order summary mobile */
    .order-summary {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    /* Installation options mobile */
    .install-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .install-option {
        padding: 1.5rem;
    }
    
    /* Kit contents mobile */
    .kit-contents {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-icon {
        align-self: center;
    }
    
    /* Testimonials mobile */
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-image {
        order: -1;
        height: 200px;
    }
    
    /* Review summary mobile */
    .review-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .rating-breakdown {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* FAQ mobile */
    #faq {
        padding: 3rem 0 !important;
        background: #f8f8f8 !important;
        text-align: center !important;
    }
    
    #faq h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: #333 !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
        background: rgba(255,255,255,0.9) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
    }
    
    .faq-container {
        margin: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .faq-item {
        background: white !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 1.5rem !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        border: none !important;
    }
    
    .faq-question {
        padding: 1.5rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        background: white !important;
    }
    
    .faq-question:hover {
        background: rgba(199, 0, 209, 0.05) !important;
    }
    
    .faq-question h3 {
        margin: 0 !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        flex: 1 !important;
        padding-right: 1rem !important;
    }
    
    .faq-icon {
        color: #c700d1 !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    .faq-item.active .faq-icon {
        transform: rotate(180deg) !important;
    }
    
    .faq-answer {
        padding: 0 1.5rem !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        background: white !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem !important;
        max-height: 500px !important;
    }
    
    .faq-answer p {
        color: #666 !important;
        line-height: 1.6 !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
    
    /* Modal mobile adjustments */
    .modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .installer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .installer-actions {
        justify-content: center;
    }
    
    /* Button improvements mobile */
    .call-btn, .book-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .subpage-hero h1 {
        font-size: 1.5rem;
    }
    
    /* Timeline extra small screens */
    .timeline {
        padding: 1.5rem 0.5rem;
    }
    
    .timeline::before {
        left: 8%;
        right: 8%;
        height: 2px;
    }
    
    .timeline-point {
        min-width: 60px;
        align-items: flex-start !important;
    }
    
    .point-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 8px;
        border-width: 2px;
    }
    
    .point-label {
        font-size: 0.8rem;
        line-height: 1.1;
        text-align: left !important;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .timeline-panel h3 {
        font-size: 1.3rem;
    }
    
    /* Drying time heading mobile extra small */
    #drying-time h2 {
        font-size: 1.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .do-dont-list {
        gap: 1rem;
    }
    
    .dont-do, .do-do {
        padding: 1.2rem;
    }
    
    /* Cleaning guide mobile extra small */
    #cleaning-guide h2 {
        font-size: 1.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .cleaning-step {
        background: white !important;
        padding: 1.5rem 1rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        margin-bottom: 2rem !important;
    }
    
    .cleaning-step-header {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cleaning-step .step-number {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        border-radius: 50% !important;
        background: #c700d1 !important;
        color: white !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: bold !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }
    
    .cleaning-step h3 {
        color: #333 !important;
        font-size: 1.1rem !important;
        margin: 0 !important;
        font-weight: 600 !important;
        flex: 1 !important;
    }
    
    .cleaning-step .step-content {
        margin-left: 65px !important;
        text-align: left !important;
    }
    
    .cleaning-step p {
        font-size: 0.95rem !important;
        text-align: left !important;
    }
    
    .cleaning-tips,
    .product-recommendation {
        padding: 1.5rem 1rem !important;
    }
    
    .vehicle-types {
        grid-template-columns: 1fr;
    }
    
    .progress-step {
        min-width: 100%;
    }
    
    .tint-shade-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .installer-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .call-btn, .book-btn {
        width: 100%;
    }
    
    /* FAQ extra small mobile */
    #faq h2 {
        font-size: 1.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .faq-container {
        margin: 0 0.5rem !important;
    }
    
    .faq-item {
        margin-bottom: 1rem !important;
    }
    
    .faq-question {
        padding: 1.2rem !important;
    }
    
    .faq-question h3 {
        font-size: 1rem !important;
        padding-right: 0.8rem !important;
    }
    
    .faq-answer {
        padding: 0 1.2rem !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem !important;
    }
    
    .faq-answer p {
        font-size: 0.9rem !important;
    }
    
    /* Video extra small mobile */
    #aftercare-video h2 {
        font-size: 1.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .video-container {
        padding: 0 0.5rem !important;
        gap: 1.5rem !important;
    }
    
    .video-description {
        padding: 1.5rem 1rem !important;
    }
    
    .video-description h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .video-description p {
        font-size: 0.9rem !important;
    }
} 