* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1f2937;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1f2937;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1f2937;
    border-radius: 1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #1f2937;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.carousel-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.carousel-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.1);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 8rem 0;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.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: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-content {
    padding: 1.25rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.card-category {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.card-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    font-size: 0.875rem;
    color: #9ca3af;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.card-link:hover {
    color: #6b7280;
}

/* Product Cards */
.product-card {
    background: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-description {
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.product-sizes {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.size {
    padding: 0.25rem 0.5rem;
    background: #e5e7eb;
    color: #374151;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.original-price {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: #1f2937;
    color: white;
}

.btn-primary:hover {
    background: #374151;
    transform: scale(1.05);
}

.btn-secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #d1d5db;
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Background Colors */
.bg-gray {
    background: #f9fafb;
}

/* Vision Page Styles */
.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-text {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.post-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #1f2937;
}

.post-category {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.post-meta span {
    margin: 0 0.5rem;
}

.post-image {
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.post-content {
    prose: true;
    max-width: none;
}

.post-content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
}

.post-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
}

.contact-info-section {
    padding: 1rem 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-content h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.info-content span {
    color: #6b7280;
    font-size: 0.875rem;
}

.newsletter-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
}

.newsletter-section h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

.newsletter-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Shipping & Returns Styles */
.shipping-content,
.returns-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.shipping-section,
.returns-section,
.privacy-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.shipping-section.important,
.returns-section {
    background: #dbeafe;
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.shipping-section h2,
.returns-section h2,
.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 0.75rem 0;
}

.shipping-section ul,
.shipping-section ol,
.returns-section ol,
.privacy-section ul {
    margin-left: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.shipping-section li,
.returns-section li,
.privacy-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Size Chart Styles */
.size-chart-content {
    max-width: 800px;
    margin: 0 auto;
}

.size-chart-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.size-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.size-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.size-table td {
    color: #4b5563;
}

.measurement-guide {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.measurement-guide h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.measurement-guide li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Footer */
.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    color: #6b7280;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #1f2937;
}

.footer-copyright {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation Mobile Improvements */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e7eb;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        color: #1f2937;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .logo-text {
        font-size: 1rem;
        display: none;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    /* Hero Carousel Mobile */
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-content {
        padding: 0 15px;
    }

    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .carousel-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .carousel-description {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Page Headers Mobile */
    .page-header {
        padding: 3rem 0;
        text-align: center;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    /* Section Mobile */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    /* About Content Mobile */
    .about-content {
        text-align: center;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Grid Layouts Mobile */
    .grid {
        gap: 1.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Cards Mobile */
    .card {
        border-radius: 1rem;
        overflow: hidden;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .carousel-description {
        font-size: 1rem;
    }

    .card-image {
        height: 200px;
        object-fit: cover;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .card-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .card-link {
        align-self: flex-end;
    }

    /* Product Cards Mobile */
    .product-card {
        border-radius: 1rem;
    }

    .product-image {
        height: 220px;
        object-fit: cover;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .product-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .product-sizes {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }

    .size {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price-info {
        align-self: stretch;
        justify-content: center;
    }

    .price {
        font-size: 1.375rem;
    }

    /* Buttons Mobile */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
        text-align: center;
        justify-content: center;
    }

    .btn-full {
        width: 100%;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Blog Post Mobile */
    .blog-post {
        padding: 1rem 0;
    }

    .post-header {
        margin-bottom: 1.5rem;
    }

    .back-link {
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
    }

    .post-category {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .post-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .post-meta {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .post-image {
        margin-bottom: 1.5rem;
    }

    .post-image img {
        height: 250px;
        border-radius: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }

    .post-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .post-actions {
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .action-buttons {
        gap: 0.75rem;
    }

    .action-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .form-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 0.75rem;
    }

    .contact-info-section {
        padding: 0;
    }

    .info-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .info-item {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .info-icon {
        font-size: 1.25rem;
    }

    .newsletter-section {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-input {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .newsletter-signup {
        text-align: center;
    }

    .newsletter-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .newsletter-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .faq-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .faq-item p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* About Page Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .about-image img {
        height: 300px;
        border-radius: 1rem;
    }

    .team-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .team-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .team-name {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .team-role {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .team-bio {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* Value Cards Mobile */
    .value-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .value-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .value-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* Shipping & Returns Mobile */
    .shipping-content,
    .returns-content,
    .privacy-content {
        padding: 0;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .shipping-section,
    .returns-section,
    .privacy-section {
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .shipping-section h2,
    .returns-section h2,
    .privacy-section h2 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .privacy-section h3 {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.75rem 0;
    }

    .shipping-section ul,
    .shipping-section ol,
    .returns-section ol,
    .privacy-section ul {
        margin-left: 1rem;
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .contact-info {
        padding: 1.25rem;
        border-radius: 0.75rem;
        margin-top: 1rem;
    }

    /* Size Chart Mobile */
    .size-chart-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .size-table {
        margin-bottom: 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .size-table table {
        min-width: 500px;
        border-radius: 0.75rem;
    }

    .size-table th,
    .size-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .measurement-guide {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .measurement-guide h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .measurement-guide li {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 0.75rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }

    .footer-links span {
        display: none;
    }

    .footer-copyright {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    /* Vision Page Mobile */
    .vision-content {
        padding: 0;
    }

    .vision-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Modal Mobile Improvements */
    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        border-radius: 1rem;
        max-height: 85vh;
    }

    .modal-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .modal-title {
        font-size: 1.375rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .cancel-btn,
    .save-btn {
        padding: 1rem 2rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }

    /* Touch Improvements */
    .btn,
    .card-link,
    .nav-link,
    .mobile-menu-btn,
    .carousel-dot {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improved Spacing */
    .container {
        max-width: 100%;
    }

    /* Better Typography Scaling */
    html {
        font-size: 16px;
    }

    body {
        line-height: 1.6;
    }

    /* Improved Touch Targets */
    .action-btn,
    .edit-btn,
    .delete-btn,
    .add-btn,
    .logout-btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    /* Better Image Handling */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improved Form Elements */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better Scroll Behavior */
    .size-table {
        scroll-behavior: smooth;
    }

    /* Improved Admin Dashboard Mobile */
    .admin-header-content {
        padding: 0 1rem;
    }

    .admin-title {
        font-size: 1.25rem;
    }

    .admin-container {
        padding: 1rem;
        margin-top: 80px;
    }

    .admin-nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .admin-nav-btn {
        padding: 1rem;
        font-size: 0.875rem;
        text-align: center;
    }

    .admin-section {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .add-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.875rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .item-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

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

    .item-title {
        font-size: 1.125rem;
    }

    .item-meta {
        font-size: 0.75rem;
    }

    .item-actions {
        gap: 0.5rem;
        width: 100%;
    }

    .edit-btn,
    .delete-btn {
        flex: 1;
        padding: 0.75rem;
        font-size: 0.75rem;
        text-align: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .carousel-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .post-title {
        font-size: 1.875rem;
    }

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

    .product-price {
        text-align: center;
    }

    .card-footer {
        text-align: center;
    }

    .form-actions {
        gap: 0.75rem;
    }

    .btn {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel {
        height: 70vh;
    }

    .carousel-title {
        font-size: 2.25rem;
    }

    .carousel-description {
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .section {
        padding: 2rem 0;
    }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-title {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .card-image {
        height: 180px;
    }

    .product-image {
        height: 200px;
    }

    .about-grid {
        gap: 3rem;
    }

    .contact-grid {
        gap: 3rem;
    }

    .admin-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .carousel-slide {
        transition: none;
    }

    .fade-in {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* This can be implemented later if needed */
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .carousel-dots,
    .mobile-menu-btn,
    .btn,
    .cta-section {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .main-content {
        margin-top: 0 !important;
    }

    .section {
        padding: 1rem 0 !important;
    }

    .page-header {
        padding: 1rem 0 !important;
    }

    .card,
    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Course Page Styles */
.course-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-container {
    flex: 1;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #1f2937;
}

.filter-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: #1f2937;
}

.course-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image-container {
    position: relative;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image {
    transform: scale(1.05);
}

.course-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1f2937;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.course-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-play-overlay {
    opacity: 1;
}

.play-button {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #1f2937;
}

.course-content {
    padding: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.course-category {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-level {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-level-beginner {
    background: #dcfce7;
    color: #166534;
}

.course-level-intermediate {
    background: #fef3c7;
    color: #92400e;
}

.course-level-advanced {
    background: #fecaca;
    color: #991b1b;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.course-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.course-price .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.course-price .original-price {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
}

.course-enroll-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Mobile Responsive for Courses */
@media (max-width: 768px) {
    .course-filters {
        gap: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .course-card {
        margin-bottom: 1rem;
    }
    
    .course-content {
        padding: 1.25rem;
    }
    
    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .course-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .course-enroll-btn {
        width: 100%;
        text-align: center;
    }
    
    .course-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid #1f2937;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner-show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-banner-text p {
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #1f2937;
    color: white;
    border: 2px solid #1f2937;
}

.cookie-btn-primary:hover {
    background: #374151;
    border-color: #374151;
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: transparent;
    color: #d1d5db;
    border: 2px solid #374151;
}

.cookie-btn-secondary:hover {
    background: #374151;
    color: white;
    transform: translateY(-1px);
}

/* Cookie Preferences */
.cookie-preferences {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-preferences h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #374151;
    border-radius: 12px;
    margin-right: 1rem;
    transition: background 0.2s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider {
    background: #1f2937;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider::before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-slider {
    background: #6b7280;
    cursor: not-allowed;
}

.cookie-label {
    font-weight: 500;
    color: white;
}

.cookie-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-preferences-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-weight: 500;
}

.cookie-notification.show {
    transform: translateX(0);
}

/* Legal Pages Styles */
.definition-list {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.definition-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #1f2937;
}

.definition-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.definition-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.cookie-category {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.cookie-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-examples {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
}

.cookie-examples h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.cookie-examples ul {
    margin: 0;
    padding-left: 1rem;
}

.cookie-examples li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-examples code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: #1f2937;
}

.third-party-service {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
}

.third-party-service h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.third-party-service p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.third-party-service p:last-child {
    margin-bottom: 0;
}

.cookie-management {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.cookie-management h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-instructions {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.browser-instructions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.browser-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
}

.browser-instructions li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.impact-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.impact-warning h3 {
    color: #dc2626;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.impact-warning ul {
    margin: 0;
    padding-left: 1.5rem;
}

.impact-warning li {
    color: #7f1d1d;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.impact-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.impact-info h3 {
    color: #1d4ed8;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.impact-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.impact-info li {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .cookie-preferences-actions {
        flex-direction: column;
    }
    
    .cookie-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .cookie-notification.show {
        transform: translateY(0);
    }
    
    .cookie-category {
        padding: 1.5rem;
    }
    
    .cookie-management {
        padding: 1.5rem;
    }
    
    .third-party-service {
        padding: 1.25rem;
    }
    
    .browser-instructions {
        padding: 1.25rem;
    }
    
    .definition-item {
        padding: 1.25rem;
    }
}