/* ===== Info Pages — Premium Styles ===== */

/* Hero */
.info-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, #1a2e1f 0%, #2d5a3f 50%, #1a3a2a 100%);
    position: relative;
    overflow: hidden;
}
.info-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.info-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.info-breadcrumb a:hover { color: #fff; }
.info-breadcrumb svg { stroke: rgba(255,255,255,0.4); }
.info-breadcrumb span { color: rgba(255,255,255,0.9); font-weight: 500; }

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

/* Layout */
.info-section {
    padding: 48px 0 80px;
    background: #f8f7f4;
    min-height: 50vh;
}

.info-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar */
.info-sidebar {
    position: sticky;
    top: 80px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.info-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}
.info-nav-item:hover {
    background: var(--gray-50);
    color: var(--green-700);
    transform: translateX(2px);
}
.info-nav-item.active {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: var(--green-800);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--green-700);
}
.info-nav-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.info-nav-item.active svg {
    opacity: 1;
    stroke: var(--green-700);
}

/* Content Area */
.info-content {
    max-width: 760px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.info-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green-700);
    letter-spacing: -0.01em;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 32px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-content h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--green-700);
    border-radius: 2px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 8px;
}

.info-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.info-content a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.info-content a:hover {
    color: var(--green-800);
}

.info-content ul, .info-content ol {
    margin: 10px 0 20px;
    padding-left: 0;
    list-style: none;
}

.info-content li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}
.info-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--green-200);
    border: 2px solid var(--green-700);
    border-radius: 50%;
}
.info-content ol {
    counter-reset: info-counter;
}
.info-content ol li {
    counter-increment: info-counter;
}
.info-content ol li::before {
    content: counter(info-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--green-700);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content strong { color: var(--gray-800); }

/* Info cards */
.info-card {
    background: #fafaf8;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 20px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-card.highlight {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-color: rgba(45,90,63,0.2);
    border-left: 4px solid var(--green-700);
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px 0;
}

.info-card p {
    margin-bottom: 0;
    color: var(--gray-600);
}
.info-card p + p {
    margin-top: 8px;
}

/* Size table */
.size-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.size-table th {
    background: linear-gradient(135deg, #1a2e1f, #2d5a3f);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.size-table th:first-child { border-radius: 12px 0 0 0; }
.size-table th:last-child { border-radius: 0 12px 0 0; }

.size-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
}
.size-table td:first-child {
    font-weight: 700;
    color: var(--gray-900);
}

.size-table tr:nth-child(even) td {
    background: #fafaf8;
}
.size-table tr:hover td {
    background: #e8f5e9;
}
.size-table tr:last-child td:first-child { border-radius: 0 0 0 12px; }
.size-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }

/* FAQ */
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    background: #fff;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: all 0.2s;
}
.faq-question:hover {
    background: #fafaf8;
    color: var(--green-700);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    opacity: 0.5;
}
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    opacity: 1;
    stroke: var(--green-700);
}
.faq-item.open .faq-question {
    border-bottom: 1px solid var(--gray-100);
    background: #fafaf8;
    color: var(--green-700);
}

.faq-answer {
    display: none;
    padding: 20px 22px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-600);
    background: #fff;
}
.faq-answer a {
    color: var(--green-700);
    text-decoration: underline;
}
.faq-item.open .faq-answer {
    display: block;
}

/* Contact CTA */
.info-cta {
    background: linear-gradient(135deg, #1a2e1f, #2d5a3f);
    border: none;
    border-radius: 16px;
    padding: 36px 32px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.info-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.info-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 8px 0;
    position: relative;
}
.info-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    position: relative;
}
.info-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.info-cta .btn-primary {
    background: #fff;
    color: var(--green-700);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .info-hero {
        padding: 100px 0 32px;
    }
    .info-title {
        font-size: 1.6rem;
    }
    .info-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .info-sidebar {
        position: static;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .info-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .info-nav-item {
        padding: 8px 14px;
        font-size: 0.78rem;
        border: 1px solid var(--gray-100);
        border-radius: 20px;
        background: #fff;
    }
    .info-nav-item svg { display: none; }
    .info-nav-item.active {
        border-color: var(--green-700);
        background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
        box-shadow: none;
    }
    .info-content {
        padding: 28px 20px;
        border-radius: 12px;
    }
    .info-content h2 {
        font-size: 1.3rem;
    }
    .info-cta {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .info-hero {
        padding: 90px 0 24px;
    }
    .info-title {
        font-size: 1.4rem;
    }
    .info-content {
        padding: 24px 16px;
    }
    .size-table th,
    .size-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}
