/* Cookie Policy Block Styles */
.cookie-policy-block {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 -2px 18px rgba(0,0,0,0.08);
    padding: 22px 0 18px 0;
    font-size: 1rem;
    transition: transform 0.3s;
}
.cookie-policy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
}
.cookie-policy-text {
    flex: 1 1 250px;
    color: #1e293b;
}
.cookie-policy-actions {
    display: flex;
    gap: 12px;
}
.cookie-policy-block .btn {
    min-width: 120px;
    font-size: 1rem;
    padding: 8px 0;
}
@media (max-width: 600px) {
    .cookie-policy-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 8px;
    }
    .cookie-policy-block {
        font-size: 0.97rem;
        padding: 16px 0 12px 0;
    }
    .cookie-policy-block .btn {
        min-width: 100px;
        font-size: 0.97rem;
    }
}
/* Partnership Form Styles */
#partnership-form {
    background: var(--light-gray, #f8fafc);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    padding: 40px 0 30px 0;
    margin-bottom: 40px;
}
#partnership-form .contact-form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    padding: 35px 30px 25px 30px;
}
#partnership-form .form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
#partnership-form .form-group {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}
#partnership-form label {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary-color, #1e293b);
}
#partnership-form input,
#partnership-form select,
#partnership-form textarea {
    border: 1px solid #d1d5db;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 1rem;
    background: #f9fafb;
    transition: border-color 0.2s;
}
#partnership-form input:focus,
#partnership-form select:focus,
#partnership-form textarea:focus {
    border-color: var(--primary-color, #1e293b);
    outline: none;
}
#partnership-form textarea {
    min-height: 80px;
    resize: vertical;
}
#partnership-form .btn-primary {
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
}
#partnership-form .form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
#partnership-form .form-group label[style*="display: flex"] {
    font-weight: 400;
    color: #475569;
    font-size: 0.98rem;
}
#partnership-form .form-group a {
    color: var(--primary-color, #1e293b);
    text-decoration: underline;
    margin-left: 4px;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #64748b;
    --text-dark: #1e293b;
    --max-width: 1200px;
    --header-height: 80px;
}

/* Layout Containers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--light-gray);
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding:20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Main Content */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/car-accessories-flatlay-6155.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-text {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-text {
    color: var(--secondary-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 30px;
    text-align: center;
    color: #cbd5e1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0px;
        gap:0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .card-content {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Grid Specific */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent-color);
}

.rating-text {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Top Categories Section */
.top-categories {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.category-card ul li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.category-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Product Features Section */
.product-features {
    background: var(--light-gray);
}

.feature-item {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-item ul {
    list-style: none;
    text-align: left;
}

.feature-item ul li {
    padding: 6px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.feature-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Customer Reviews Section */
.customer-reviews {
    background: white;
}

.review-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.review-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.review-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Installation Guide Section */
.installation-guide {
    background: var(--light-gray);
}

.guide-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.guide-content {
    padding: 35px 30px;
}

.guide-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.guide-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.guide-content ul li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.guide-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.guide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guide-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Special Offers Section */
.special-offers {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.special-offers .container > .text-center h2,
.special-offers .container > .text-center p {
    color: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.offer-card.highlight {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-card.highlight .offer-badge {
    background: var(--accent-color);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin: 20px 0 15px 0;
    color: var(--text-dark);
}

.offer-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.offer-price {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.new-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.offer-card small {
    display: block;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 5px;
}

.offer-timer {
    margin-top: 15px;
    padding: 10px;
    background: #fee2e2;
    border-radius: 8px;
    color: var(--danger-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .category-card, .feature-item, .review-card {
        margin-bottom: 20px;
    }
    
    .guide-actions {
        flex-direction: column;
    }
    
    .guide-actions .btn {
        width: 100%;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card.highlight {
        transform: none;
    }
    
    .category-icon, .feature-icon {
        font-size: 2.5rem;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .category-card, .feature-item, .guide-content {
        padding: 25px 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .offer-card {
        padding: 25px 20px;
    }
}

/* Loyalty Program Styles */
.loyalty-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.loyalty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.loyalty-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.loyalty-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.loyalty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loyalty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.loyalty-requirement {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.loyalty-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.benefit-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.benefit-item:last-child {
    border-bottom: none;
}

.loyalty-points {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Seasonal Promotions Styles */
.seasonal-promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.seasonal-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    min-height: 300px;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.seasonal-content {
    flex: 2;
    padding: 35px 30px;
}

.seasonal-image {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasonal-card.autumn .seasonal-image {
    background: linear-gradient(135deg, #fed7aa 0%, #fb923c 100%);
}

.seasonal-card.winter .seasonal-image {
    background: linear-gradient(135deg, #dbeafe 0%, #60a5fa 100%);
}

.seasonal-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.seasonal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.seasonal-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.seasonal-products {
    list-style: none;
    margin-bottom: 25px;
}

.seasonal-products li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seasonal-products li:last-child {
    border-bottom: none;
}

.seasonal-products strong {
    color: var(--primary-color);
}

.seasonal-timer {
    background: #fef3c7;
    color: #92400e;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.seasonal-timer.coming-soon {
    background: #dbeafe;
    color: #1d4ed8;
}

/* Bundle Offers Styles */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bundle-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bundle-card.bestseller {
    border-color: var(--success-color);
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bundle-header {
    text-align: center;
    margin-bottom: 25px;
}

.bundle-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.bundle-subtitle {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.bundle-products {
    margin-bottom: 25px;
}

.bundle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.bundle-item:last-child {
    border-bottom: none;
}

.bundle-item span:first-child {
    color: var(--text-dark);
}

.bundle-item span:last-child {
    color: var(--secondary-color);
    font-weight: 600;
}

.bundle-pricing {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 15px;
    background: var(--light-gray);
    border-radius: 15px;
}

.bundle-original {
    color: var(--secondary-color);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bundle-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.bundle-savings {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.bundle-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .loyalty-card.featured {
        transform: none;
    }
    
    .seasonal-promotions {
        grid-template-columns: 1fr;
    }
    
    .seasonal-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .seasonal-image {
        min-height: 120px;
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-card, .bundle-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .loyalty-card, .seasonal-content, .bundle-card {
        padding: 25px 20px;
    }
    
    .seasonal-products li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}