/* Size Guide Page Specific Styles */

/* Size Guide Hero Section */
.size-guide-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/other/banner7.png') no-repeat center center/cover;
    color: var(--accent);
    padding: 150px 0;
    text-align: center;
    margin-top: 70px;
}

.size-guide-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.size-guide-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Size Basics Section */
.size-basics {
    padding: 100px 0;
    background-color: var(--accent);
}

.basics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.basics-text p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.measurement-guide {
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.measurement-guide h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.measurement-guide ol {
    margin-left: 20px;
}

.measurement-guide li {
    margin-bottom: 10px;
    color: var(--text);
}

.basics-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Size Chart Section */
.size-chart {
    padding: 100px 0;
    background-color: var(--light);
}

.chart-container {
    overflow-x: auto;
    margin-top: 50px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.size-table th,
.size-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--secondary);
}

.size-table th {
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
}

.size-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.size-table tr:hover {
    background-color: #e9ecef;
}

/* Style Guide Section */
.style-guide {
    padding: 100px 0;
    background-color: var(--accent);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.style-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

.style-image {
    height: 200px;
    overflow: hidden;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card:hover .style-image img {
    transform: scale(1.05);
}

.style-content {
    padding: 25px;
}

.style-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.style-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.style-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.style-content li {
    margin-bottom: 8px;
    color: var(--text);
}

/* Strap Sizing Section */
.strap-sizing {
    padding: 100px 0;
    background-color: var(--light);
}

.strap-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.strap-info h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--primary);
}

.strap-info h3:first-child {
    margin-top: 0;
}

.strap-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text);
}

.strap-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Professional Fitting Section */
.professional-fitting {
    padding: 100px 0;
    background-color: var(--accent);
}

.fitting-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fitting-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.fitting-content p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.fitting-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .basics-content {
        grid-template-columns: 1fr;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    .strap-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .size-guide-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .size-table {
        font-size: 0.9rem;
    }
    
    .fitting-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .size-guide-hero {
        padding: 100px 0;
    }
    
    .size-guide-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .size-table th,
    .size-table td {
        padding: 10px;
    }
}