/* Sizing Page Specific Styles */

/* Hero Section */
.sizing-hero {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sizing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sizing-hero .hero-content {
    position: relative;
    z-index: 2;
}

.sizing-hero .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.sizing-hero .hero-title span {
    color: var(--primary-red);
}

.sizing-hero .hero-subtitle {
    color: var(--medium-grey);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Info Section */
.sizing-info-section {
    background: var(--pure-white);
    padding: 80px 0;
}

.sizing-info-section .container {
    max-width: 1600px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

/* Conversion Table */
.conversion-table {
    overflow-x: auto;
}

.conversion-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.conversion-table th {
    background: var(--primary-red);
    color: white;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conversion-table th:first-child {
    border-radius: 10px 0 0 0;
}

.conversion-table th:last-child {
    border-radius: 0 10px 0 0;
}

.conversion-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--dark-grey);
}

.conversion-table tr:last-child td {
    border-bottom: none;
}

.conversion-table td:first-child {
    font-weight: 600;
    color: var(--primary-black);
}

/* Fit Types */
.fit-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fit-type {
    padding: 15px;
    background: rgba(220, 38, 38, 0.03);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fit-type:hover {
    background: rgba(220, 38, 38, 0.06);
    transform: translateX(5px);
}

.fit-type h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.fit-type p {
    font-size: 14px;
    color: var(--medium-grey);
    margin: 0;
}

/* Care Instructions */
.care-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.care-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.care-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.care-item i {
    font-size: 20px;
    color: #10B981;
    flex-shrink: 0;
}

.care-item span {
    font-size: 14px;
    color: var(--dark-grey);
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--primary-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 14px;
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Sizing Help Section */
.sizing-help {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    border-radius: 20px;
    padding: 50px;
    color: white;
}

.help-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.help-content > i {
    font-size: 60px;
    opacity: 0.9;
}

.help-content > div {
    flex: 1;
    min-width: 300px;
}

.help-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.help-content p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.help-content .btn {
    background: white;
    color: var(--primary-red);
    padding: 15px 40px;
    font-weight: 600;
    white-space: nowrap;
}

.help-content .btn:hover {
    background: var(--light-grey);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sizing-hero {
        padding: 40px 0;
    }

    .sizing-info-section {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card {
        padding: 30px;
    }

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

    .sizing-help {
        padding: 30px;
    }

    .help-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .help-content > i {
        font-size: 48px;
    }

    .help-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .sizing-hero .hero-title {
        font-size: 32px;
    }

    .sizing-hero .hero-subtitle {
        font-size: 16px;
    }

    .info-card {
        padding: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 28px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-item {
        padding: 20px;
    }

    .sizing-help {
        padding: 25px;
    }

    .help-content h3 {
        font-size: 24px;
    }

    .help-content p {
        font-size: 14px;
    }
}