﻿/* ========================================================
   return_exchange_policy.css
   Page-specific styles for return_exchange_policy.aspx.
   Depends on Home.css being loaded first for design tokens
   (--primary-gold/--light-gold, --white/--black/--border-light/
   --medium-gray/--dark-gray/--light-gray neutrals, spacing/
   radius/shadow/transition scale) and for the shared header,
   cart-sidebar, and footer rules — none of that is repeated here.

   Replaces shop-style.css (~2400 lines of hero/testimonial/blog/
   checkout/track-order/button-demo rules this page's markup never
   reached) — the only things this page actually used were the
   breadcrumb strip, the .cr-common-wrapper/.cr-cgi-block policy
   card, and the .cr-services service-slider tiles, all rebuilt
   below. The inline <style> block is gone too — it only patched
   the pre-rebuild header's .main-dropdown, which this page no
   longer has.
   ======================================================== */

/* === BREADCRUMB ===
   Same class names/visual language as Register.css's breadcrumb —
   kept identical across every secondary page rather than each one
   reinventing its own banner. */
.page-breadcrumb {
    width: 100%;
    padding: 28px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
}

.page-breadcrumb-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

    .page-breadcrumb-title h2 {
        margin: 0;
        font-family: 'Manrope', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
    }

    .page-breadcrumb-title span {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
    }

        .page-breadcrumb-title span a {
            color: var(--black);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

/* === POLICY CONTENT CARD === */
.cr-terms-conditions {
    background: var(--light-gray);
}

.cr-common-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.cr-cgi-block-title {
    margin: 0 0 var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid var(--border-light);
}

/* litPolicyContent renders admin-authored HTML from the PolicyPages
   table — style the common tags it's likely to contain rather than
   assuming specific classes, since that content isn't controlled
   from this file. */
.cr-cgi-block-content {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: var(--medium-gray);
}

    .cr-cgi-block-content h1,
    .cr-cgi-block-content h2,
    .cr-cgi-block-content h3,
    .cr-cgi-block-content h4 {
        margin: var(--spacing-md) 0 var(--spacing-sm);
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        color: var(--black);
    }

    .cr-cgi-block-content p {
        margin-bottom: var(--spacing-sm);
    }

    .cr-cgi-block-content ul,
    .cr-cgi-block-content ol {
        margin: 0 0 var(--spacing-sm);
        padding-left: 22px;
    }

    .cr-cgi-block-content li {
        margin-bottom: 6px;
    }

    .cr-cgi-block-content a {
        color: var(--primary-gold);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .cr-cgi-block-content a:hover {
            color: var(--black);
        }

    .cr-cgi-block-content table {
        width: 100%;
        margin-bottom: var(--spacing-sm);
        border-collapse: collapse;
    }

        .cr-cgi-block-content table th,
        .cr-cgi-block-content table td {
            padding: 10px 12px;
            border: 1px solid var(--border-light);
            text-align: left;
        }

        .cr-cgi-block-content table th {
            background: var(--light-gray);
            font-weight: 600;
            color: var(--black);
        }

/* === SERVICES STRIP === */
.section-services {
    background: var(--white);
}

.cr-services-border {
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-lg);
}

.cr-services {
    height: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

    .cr-services:hover {
        border-color: var(--primary-gold);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.cr-services-image {
    margin-bottom: var(--spacing-sm);
}

    .cr-services-image i {
        font-size: 34px;
        line-height: 1;
        color: var(--primary-gold);
    }

.cr-services-contain h4 {
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.cr-services-contain p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* === RESPONSIVE === */
@media (max-width: 575px) {
    .cr-common-wrapper {
        padding: var(--spacing-md);
    }
}
