/**
 * FSP Page Template Styles
 * Coming Soon, Policy, Guarantee, and other page templates
 *
 * @package Free_Style_Products
 */

/* ==========================================================================
   Page Templates - Coming Soon & Policy Pages
   ========================================================================== */

/* Coming Soon Hero */
.coming-soon-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon {
    margin-bottom: 30px;
    color: var(--hw-primary);
}

.coming-soon-text {
    font-size: 1.5rem;
    color: var(--hw-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.coming-soon-description {
    max-width: 600px;
    margin: 25px auto 40px;
    color: var(--hw-gray-lighter);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--hw-dark) 0%, var(--hw-dark-secondary) 50%, var(--hw-dark-tertiary) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(44, 198, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 198, 77, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Policy Hero */
.policy-hero {
    padding: 120px 0 60px;
    min-height: auto;
}

.policy-hero .hero-title {
    margin-bottom: 15px;
}

/* Policy Content Section */
.policy-section {
    padding: 60px 0 100px;
    background: var(--hw-dark);
}

.policy-content {
    background: var(--hw-dark-secondary);
    border-radius: var(--hw-radius-lg);
    padding: 50px 60px;
    border: 1px solid var(--hw-dark-tertiary);
}

.policy-intro {
    font-size: 1.1rem;
    color: var(--hw-gray-lighter);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hw-dark-tertiary);
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hw-white);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hw-primary);
    display: inline-block;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    color: var(--hw-gray-lighter);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 25px 20px;
    padding: 0;
}

.policy-content ul li {
    color: var(--hw-gray-lighter);
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content ul li::marker {
    color: var(--hw-primary);
}

.policy-content .contact-list {
    list-style: none;
    margin-left: 0;
    background: var(--hw-dark);
    padding: 20px 25px;
    border-radius: var(--hw-radius);
    border-left: 3px solid var(--hw-primary);
}

.policy-content .contact-list li {
    margin-bottom: 8px;
}

.policy-content .contact-list li:last-child {
    margin-bottom: 0;
}

.policy-content .contact-list a {
    color: var(--hw-primary);
    text-decoration: none;
}

.policy-content .contact-list a:hover {
    text-decoration: underline;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--hw-dark-tertiary);
    color: var(--hw-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   Content Pages (Guarantee, etc.)
   ========================================================================== */

/* Guarantee Hero */
.guarantee-hero {
    padding: 120px 0 60px;
    min-height: auto;
}

.guarantee-hero .hero-title {
    margin-bottom: 15px;
}

/* Content Section */
.content-section {
    padding: 60px 0 100px;
    background: var(--hw-dark);
}

.content-wrapper {
    background: var(--hw-dark-secondary);
    border-radius: var(--hw-radius-lg);
    padding: 50px 60px;
    border: 1px solid var(--hw-dark-tertiary);
}

.content-intro {
    font-size: 1.1rem;
    color: var(--hw-gray-lighter);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hw-dark-tertiary);
}

.content-intro p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-intro p:last-child {
    margin-bottom: 0;
}

.content-intro strong {
    color: var(--hw-white);
}

.content-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hw-white);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hw-primary);
    display: inline-block;
}

.content-heading:first-of-type {
    margin-top: 0;
}

.content-wrapper > p {
    color: var(--hw-gray-lighter);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Guarantee List */
.guarantee-list {
    background: var(--hw-dark);
    padding: 30px;
    border-radius: var(--hw-radius);
    margin: 25px 0;
}

.guarantee-item {
    margin-bottom: 25px;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item h4 {
    color: var(--hw-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-item p {
    color: var(--hw-gray-lighter);
    line-height: 1.7;
    margin: 0;
}

/* Quality List */
.quality-list {
    margin: 20px 0 30px 20px;
    padding: 0;
}

.quality-list li {
    color: var(--hw-gray-lighter);
    margin-bottom: 12px;
    line-height: 1.7;
}

.quality-list li::marker {
    color: var(--hw-primary);
}

.quality-list li strong {
    color: var(--hw-white);
}

/* Promise Block */
.promise-block {
    border-left: 4px solid var(--hw-primary);
    padding: 20px 25px;
    margin: 30px 0;
    background: rgba(44, 198, 77, 0.05);
    font-style: italic;
    color: var(--hw-gray-lighter);
    border-radius: 0 var(--hw-radius) var(--hw-radius) 0;
}

.promise-block strong {
    color: var(--hw-primary);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--hw-dark-tertiary);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive adjustments for content pages */
@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 30px 25px;
    }

    .content-heading {
        font-size: 1.25rem;
    }

    .guarantee-list {
        padding: 20px;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }

    .policy-content {
        padding: 30px 25px;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }

    .coming-soon-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}
