﻿/* ─── SIZE GUIDE PAGE ─── */

/* Page header */
.sg-header {
    border-bottom: 0.5px solid #c9a84c22;
    padding: 56px 32px 48px;
    background: linear-gradient(135deg, #0a0a0a 60%, #0f0d00);
}

.sg-header-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sg-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.1;
}

.sg-subtitle {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 480px;
}

/* Sections */
.sg-section {
    padding: 48px 32px;
    border-bottom: 0.5px solid #c9a84c11;
}

.sg-section-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #f5f0e8;
    margin-bottom: 28px;
}

.sg-section-title span {
    color: #c9a84c;
}

/* How to measure cards */
.sg-measure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.sg-measure-card {
    background: #111;
    border: 0.5px solid #c9a84c22;
    border-radius: 2px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s;
}

.sg-measure-card:hover {
    border-color: #c9a84c55;
}

.sg-measure-icon {
    width: 48px;
    height: 48px;
    background: #c9a84c11;
    border: 0.5px solid #c9a84c33;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-measure-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    color: #f5f0e8;
    font-weight: 700;
}

.sg-measure-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Tip bar */
.sg-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #c9a84c0d;
    border: 0.5px solid #c9a84c33;
    border-radius: 2px;
    padding: 14px 18px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.sg-tip svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Table note */
.sg-table-note {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Size tables */
.sg-table-wrap {
    overflow-x: auto;
    border: 0.5px solid #c9a84c22;
    border-radius: 2px;
}

.sg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sg-table thead tr {
    background: #c9a84c0f;
    border-bottom: 0.5px solid #c9a84c44;
}

.sg-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a84c;
    white-space: nowrap;
}

.sg-table td {
    padding: 13px 20px;
    color: #aaa;
    border-bottom: 0.5px solid #c9a84c0d;
    white-space: nowrap;
}

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

.sg-table tbody tr:hover td {
    background: #c9a84c07;
    color: #f5f0e8;
}

.sg-table td:first-child {
    font-weight: 600;
    color: #f5f0e8;
    font-family: "Playfair Display", serif;
    font-size: 14px;
}

/* Fit notes */
.sg-notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sg-note-card {
    background: #111;
    border: 0.5px solid #c9a84c22;
    border-radius: 2px;
    padding: 24px 20px;
    transition: border-color 0.2s;
}

.sg-note-card:hover {
    border-color: #c9a84c55;
}

.sg-note-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: #c9a84c;
    margin-bottom: 14px;
}

.sg-note-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sg-note-card ul li {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.sg-note-card ul li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: #c9a84c44;
}

/* CTA banner */
.sg-cta {
    margin: 0 32px 40px;
    background: linear-gradient(135deg, #111 60%, #1a1400);
    border: 0.5px solid #c9a84c44;
    border-radius: 2px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sg-cta-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #f5f0e8;
    margin-bottom: 6px;
}

.sg-cta-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

.sg-cta .btn-gold {
    text-decoration: none;
    display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
    .sg-measure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-notes-grid {
        grid-template-columns: 1fr;
    }

    .sg-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .sg-cta .btn-gold {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .sg-header {
        padding: 36px 20px 32px;
    }

    .sg-title {
        font-size: 34px;
    }

    .sg-section {
        padding: 32px 20px;
    }

    .sg-measure-grid {
        grid-template-columns: 1fr;
    }

    .sg-cta {
        margin: 0 20px 28px;
        padding: 24px 20px;
    }
}
