@import url('variables.css');

/* solar.css - Solar Energy Products Styles */
:root {
    --solar-primary: #f39c12;      /* Sun Yellow */
    --solar-secondary: #e67e22;    /* Orange */
    --solar-accent: #d35400;       /* Dark Orange */
    --solar-light: #fff3cd;        /* Light Yellow */
    --solar-dark: #2c3e50;         /* Dark Blue (for contrast) */
    --solar-warning: #f1c40f;      /* Warning Yellow */
    --solar-success: #27ae60;      /* Green for stock */
    --solar-danger: #e74c3c;       /* Red for out of stock */
    --solar-info: #3498db;         /* Blue for info */
    --solar-gray: #7f8c8d;         /* Gray for text */
}

/* Solar Header */
.shop-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.solar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.solar-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.solar-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.back-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
}

.back-link:hover {
    color: white;
    background: rgba(255,255,255,0.2);
    transform: translateX(-5px);
}

/* Category Navigation */
.category-nav {
    background: linear-gradient(135deg, white 0%, var(--solar-light) 100%);
    padding: 1.2rem 0;
    border-bottom: 3px solid var(--solar-primary);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-nav.scrolled {
    top: 60px;
    padding: 1rem 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.category-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--solar-primary) var(--solar-light);
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-track {
    background: var(--solar-light);
    border-radius: 3px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 3px;
}

.category-item {
    white-space: nowrap;
    padding: 0.9rem 2rem;
    background: white;
    border-radius: 30px;
    text-decoration: none;
    color: var(--solar-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.category-item:hover {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    border-color: var(--solar-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.category-item.active {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    border-color: var(--solar-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
}

/* Solar Section */
.solar-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef9e7 100%);
    min-height: 60vh;
}

.section-title {
    text-align: center;
    color: var(--solar-dark);
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--solar-primary), var(--solar-secondary));
    border-radius: 2.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--solar-gray);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--solar-light);
}

.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
    min-width: 280px;
}

.search-box input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    border: 2px solid var(--solar-light);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--solar-light);
    color: var(--solar-dark);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.search-box input:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
    outline: none;
    background: white;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--solar-primary);
    font-size: 1.3rem;
}

.category-filter {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--solar-light);
    border-radius: 15px;
    background: white;
    font-size: 1.1rem;
    min-width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--solar-dark);
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f39c12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.category-filter:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
    outline: none;
}

.product-count {
    text-align: center;
    margin: 2rem 0;
    color: var(--solar-gray);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid var(--solar-light);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--solar-light);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--solar-primary);
}

.product-card.featured {
    border: 3px solid var(--solar-secondary);
    position: relative;
}

.product-card.featured::before {
    content: '☀️ Featured';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--solar-secondary), var(--solar-accent));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--solar-light), white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stock-badge.stock-in {
    background: linear-gradient(135deg, var(--solar-success), #2ecc71);
}

.stock-badge.stock-low {
    background: linear-gradient(135deg, var(--solar-warning), #f1c40f);
}

.stock-badge.stock-out {
    background: linear-gradient(135deg, var(--solar-danger), #c0392b);
}

.product-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Solar Tags */
.solar-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.solar-tag.mono {
    background: linear-gradient(135deg, var(--solar-info), #2980b9);
}

.solar-tag.poly {
    background: linear-gradient(135deg, var(--solar-success), #27ae60);
}

.solar-tag.lithium {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.solar-tag.gel {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.solar-tag.pure-sine {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.solar-tag.modified-sine {
    background: linear-gradient(135deg, #d35400, #a35200);
}

.solar-tag.hybrid {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.solar-tag.mppt {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.solar-tag.pwm {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.warranty-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--solar-secondary), var(--solar-accent));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.8rem;
    box-shadow: 0 3px 10px rgba(231, 126, 34, 0.2);
}

.product-title {
    font-size: 1.4rem;
    color: var(--solar-dark);
    margin: 1rem 0 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--solar-primary);
}

.product-description {
    color: var(--solar-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--solar-accent);
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--solar-accent), transparent);
    border-radius: 2px;
}

/* Price Range */
.price-range {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0;
}

.price-option {
    text-align: center;
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--solar-light);
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-option:hover {
    border-color: var(--solar-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.1);
}

.price-option.active {
    background: linear-gradient(135deg, var(--solar-light), white);
    border-color: var(--solar-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
}

.price-option .solar-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--solar-accent);
    margin-bottom: 0.5rem;
}

.price-option p {
    font-size: 0.9rem;
    color: var(--solar-gray);
    margin: 0;
    font-weight: 500;
}

.product-details {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--solar-dark);
    background: rgba(243, 156, 18, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--solar-primary);
}

.product-details p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details p .spec-label {
    font-weight: 600;
    color: var(--solar-dark);
}

.product-details p .spec-value {
    color: var(--solar-gray);
    text-align: right;
    max-width: 60%;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--solar-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--solar-secondary) 0%, var(--solar-accent) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.btn-primary:disabled {
    background: var(--solar-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

#load-more {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

#load-more:hover {
    background: linear-gradient(135deg, var(--solar-secondary) 0%, var(--solar-accent) 100%);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 120px;
    right: 20px;
    background: linear-gradient(135deg, var(--solar-success) 0%, #2ecc71 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    z-index: 10000;
    animation: slideInRight 0.4s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.3);
}

.cart-notification::before {
    content: '☀️';
    font-size: 1.8rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .solar-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .solar-header {
        padding: 3rem 0;
    }
    
    .solar-header h1 {
        font-size: 2rem;
    }
    
    .solar-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .category-nav {
        top: 70px;
    }
    
    .category-scroll {
        gap: 0.6rem;
    }
    
    .category-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem;
    }
    
    .search-box,
    .category-filter {
        min-width: 100%;
        max-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .price-range {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .solar-header h1 {
        font-size: 1.8rem;
    }
    
    .solar-header p {
        font-size: 1rem;
    }
    
    .category-nav {
        padding: 1rem 0;
    }
    
    .category-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        padding: 1.2rem 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .cart-notification {
        top: 90px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 1.2rem 1.5rem;
    }
    
    .solar-tag,
    .warranty-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .solar-section {
        padding: 3rem 0;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .product-details p .spec-value {
        max-width: 100%;
        text-align: left;
    }
}

/* Animation for product cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.product-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--solar-primary), var(--solar-secondary));
    z-index: 1000;
    transition: width 0.2s ease;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 3rem auto;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--solar-light);
}

.empty-state h3 {
    color: var(--solar-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.empty-state p {
    color: var(--solar-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Loading skeleton */
.skeleton-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 550px;
    position: relative;
}

.skeleton-image {
    height: 220px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-content {
    padding: 2rem;
}

.skeleton-line {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.medium {
    width: 70%;
}

.skeleton-line.long {
    width: 100%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* System Package Styles */
.system-package {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
    border: 2px solid rgba(255,255,255,0.1);
}

.system-package h4 {
    margin-top: 0;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-features {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    font-weight: bold;
    font-size: 1.2rem;
}

/* Quick Order Section */
.quick-order-section {
    background: linear-gradient(135deg, var(--solar-dark) 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
}

.quick-order-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.quick-order-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options .contact-btn {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-options .contact-btn:hover {
    background: linear-gradient(135deg, var(--solar-secondary) 0%, var(--solar-accent) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-options .contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-options .contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}