/* ============ Custom Pages Shared Styles ============ */
.custom-page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}
.custom-page-content h2 {
    font-family: "Prata", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e7e7e7;
}
.custom-page-content h3,
.custom-page-content p strong {
    display: block;
    font-family: "Prata", serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #000;
    margin: 28px 0 10px 0;
}
.custom-page-content p {
    font-size: 0.938rem;
    line-height: 1.8;
    color: #313131;
    margin-bottom: 12px;
}
.custom-page-content a {
    color: #ee8d87;
    text-decoration: none;
}
.custom-page-content a:hover {
    text-decoration: underline;
}

/* ============ Contact Page ============ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-col h3,
.contact-form-col h3 {
    font-family: "Prata", serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
    border: none;
    padding: 0;
}
.contact-desc {
    color: #818181;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: #fae1e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #ee8d87;
}
.contact-item h4 {
    font-family: "Prata", serif;
    font-size: 0.938rem;
    font-weight: 400;
    color: #000;
    margin: 0 0 4px 0;
}
.contact-item p {
    font-size: 0.875rem;
    color: #818181;
    margin: 0;
    line-height: 1.6;
}
.contact-item a {
    color: #ee8d87;
    text-decoration: none;
}
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    color: #313131;
    margin-bottom: 6px;
}
.contact-form .required {
    color: #e74c3c;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    font-size: 0.875rem;
    color: #313131;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ee8d87;
}
.custom-page-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #ee8d87;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.custom-page-btn:hover {
    background: #d9706a;
}
@media (max-width: 768px) {
    .custom-page-content {
        margin: 40px auto;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============ Footer ============ */
.site-footer {
    background: #000;
    color: #bbb;
    padding: 60px 0 0;
    font-size: 0.875rem;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
}
.site-footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer a:hover {
    color: #ee8d87;
}
.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #323232;
}
.footer-logo {
    max-height: 40px;
    margin-bottom: 12px;
}
.footer-desc {
    color: #818181;
    max-width: 320px;
    font-size: 0.813rem;
    line-height: 1.7;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0;
}
.footer-widgets h4 {
    font-family: "Prata", serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 18px;
}
.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widgets ul li {
    margin-bottom: 8px;
}
.footer-bottom {
    border-top: 1px solid #323232;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.813rem;
    color: #818181;
}
.footer-payment-icons {
    display: flex;
    gap: 10px;
    font-size: 22px;
    color: #818181;
}
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
