/* ── STATIC PAGES ── */
.static-page { background: #f5f2ea; min-height: 70vh; }

.static-hero {
    background: #1a1a1a;
    color: white;
    padding: 80px 40px;
    text-align: center;
}
.static-hero__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #9a9a86;
    margin-bottom: 16px;
}
.static-hero__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.static-hero__sub {
    font-size: 14px;
    color: #9a9a86;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.static-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Info blocks */
.info-block {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 16px;
}
.info-block__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.info-block__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}
.info-block__body {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
}

/* FAQ */
.faq-group { margin-bottom: 32px; }
.faq-group__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a9a86;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e3d8;
}
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-item__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    gap: 12px;
}
.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #9a9a86;
}
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: #666;
    line-height: 1.9;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.faq-item.open .faq-item__a {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-contact {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 14px;
}
.faq-contact p { font-size: 14px; color: #888; margin-bottom: 20px; }
.faq-contact__btn {
    display: inline-block;
    padding: 13px 28px;
    background: #979684;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.faq-contact__btn:hover {
    background: #5a6548;
    transform: translateY(-2px);
}

/* Policy blocks */
.policy-block {
    background: white;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 16px;
    border-left: 4px solid transparent;
}
.policy-block--ok { border-left-color: #4caf50; }
.policy-block--no { border-left-color: #f44336; }
.policy-block__title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.policy-list {
    padding-left: 18px;
    font-size: 13px;
    color: #666;
    line-height: 2.2;
}

/* My Orders */
.order-search-form {
    background: white;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
}
.order-search-field { margin-bottom: 16px; }
.order-search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}
.order-search-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0d8ca;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background: #fafaf8;
    transition: border-color 0.2s;
}
.order-search-field input:focus {
    outline: none;
    border-color: #6f7a58;
}
.order-search-btn {
    width: 100%;
    padding: 14px;
    background: #6f7a58;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}
.order-search-btn:hover { background: #5a6548; }

.order-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.order-result {
    background: white;
    border-radius: 14px;
    overflow: hidden;
}
.order-result__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid #f0ebe2;
    flex-wrap: wrap;
    gap: 12px;
}
.order-result__number {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}
.order-result__date { font-size: 12px; color: #999; margin-top: 4px; }
.order-result__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.order-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.order-result__items { padding: 8px 24px; }
.order-result__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f1e8;
}
.order-result__item:last-child { border-bottom: none; }
.order-result__item img {
    width: 56px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    background: #f0ebe2;
    flex-shrink: 0;
}
.order-result__item-info { flex: 1; }
.order-result__item-name { font-size: 13px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.order-result__item-meta { font-size: 12px; color: #999; }
.order-result__item-price { font-size: 13px; font-weight: 700; color: #6f7a58; flex-shrink: 0; }

.order-result__totals {
    padding: 16px 24px;
    border-top: 1px solid #f0ebe2;
    background: #faf7f2;
}
.order-result__total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    padding: 4px 0;
}
.order-result__total-row--grand {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e8e3d8;
}

.order-result__shipping {
    padding: 20px 24px;
    border-top: 1px solid #f0ebe2;
}
.order-result__shipping-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.order-result__shipping-addr { font-size: 13px; color: #555; line-height: 1.8; }

.order-pay-btn {
    display: block;
    margin: 0 24px 24px;
    padding: 14px;
    background: #6f7a58;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.order-pay-btn:hover { background: #5a6548; }

@media (max-width: 600px) {
    .static-hero { padding: 60px 24px; }
    .static-content { padding: 40px 20px; }
    .info-block { flex-direction: column; gap: 12px; }
}