/* page-contact.php */
/* ===== POLICY PAGE STYLES ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-faq.php */
/* ===== FAQ HERO ===== */
    .ss-faq-hero {
        position: relative;
        background: url('<?php echo get_template_directory_uri(); ?>/assets/faq-hero.jpg') center/cover no-repeat;
        background-color: #c5c5b8;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ss-faq-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.1);
    }

    .ss-faq-hero__inner {
        position: relative;
        z-index: 1;
        padding: 4rem 2rem;
    }

    .ss-faq-hero__title {
        font-size: 3rem;
        font-weight: 400;
        color: #fff;
        margin: 0 0 2rem;
        letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
        .ss-faq-hero__title {
            font-size: 4rem;
        }
    }

    .ss-faq-hero__search {
        max-width: 400px;
        margin: 0 auto;
    }

    .ss-faq-search-form {
        position: relative;
        display: flex;
        align-items: center;
    }

    .ss-faq-search-icon {
        position: absolute;
        left: 1.2rem;
        color: #fff;
        opacity: 0.7;
    }

    .ss-faq-search-input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 0;
        background: transparent;
        color: #fff;
        font-size: 1.2rem;
    }

    .ss-faq-search-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .ss-faq-search-input:focus {
        outline: none;
        border-color: #fff;
    }

    /* ===== FAQ CONTENT ===== */
    .ss-faq-content {
        padding: 4rem 0 6rem;
    }

    .ss-faq-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    @media (min-width: 992px) {
        .ss-faq-layout {
            grid-template-columns: 250px 1fr;
            gap: 4rem;
        }
    }

    /* ===== FAQ SIDEBAR ===== */
    .ss-faq-sidebar__title {
        font-size: 2.4rem;
        font-weight: 400;
        margin: 0 0 2rem;
        color: #000;
    }

    .ss-faq-nav {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .ss-faq-nav__item {
        color: #000;
        text-decoration: none;
        font-size: 1.2rem;
        padding: 0.5rem 0;
        border-left: 2px solid transparent;
        padding-left: 1rem;
        transition: all 0.2s;
    }

    .ss-faq-nav__item:hover,
    .ss-faq-nav__item.active {
        color: #000;
        border-left-color: #000;
    }

    /* ===== FAQ CATEGORIES ===== */
    .ss-faq-category {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e5e5e5;
    }

    .ss-faq-category:last-child {
        border-bottom: none;
    }

    .ss-faq-category__title {
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin: 0 0 1.5rem;
        color: #000;
    }

    /* ===== FAQ ITEMS ===== */
    .ss-faq-items {
        display: flex;
        flex-direction: column;
    }

    .ss-faq-item {
        border-bottom: 1px solid #e5e5e5;
    }

    .ss-faq-item:last-child {
        border-bottom: none;
    }

    .ss-faq-item__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1.5rem 0;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-size: 1.2rem;
        color: #000;
        gap: 1rem;
    }

    .ss-faq-item__header:hover {
        opacity: 0.7;
    }

    .ss-faq-item__question {
        flex: 1;
    }

    .ss-faq-item__icon {
        flex-shrink: 0;
        color: #6a6a6a;
        transition: transform 0.3s;
    }

    .ss-faq-item[data-open="true"] .ss-faq-item__icon {
        transform: rotate(180deg);
    }

    .ss-faq-item__content {
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .ss-faq-item__content[hidden] {
        display: none;
    }

    .ss-faq-item__answer {
        padding: 0 0 1.5rem;
        font-size: 1.15rem;
        line-height: 1.7;
        color: #444;
    }

    .ss-faq-item__answer p {
        margin: 0 0 1rem;
    }

    .ss-faq-item__answer p:last-child {
        margin-bottom: 0;
    }

    .ss-faq-item__answer a {
        color: #000;
        text-decoration: underline;
    }

    .ss-faq-item__answer a:hover {
        opacity: 0.7;
    }

    /* Mobile Sidebar */
    @media (max-width: 991px) {
        .ss-faq-sidebar {
            position: sticky;
            top: 0;
            background: #fff;
            padding: 1rem 0;
            border-bottom: 1px solid #e5e5e5;
            z-index: 10;
        }

        .ss-faq-nav {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }

        .ss-faq-nav__item {
            border-left: none;
            padding-left: 0;
            font-size: 1.1rem;
        }
    }

    /* ===== SEARCH RESULTS ===== */
    .ss-faq-search-results__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .ss-faq-clear-search {
        background: none;
        border: 1px solid #000;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.2s;
    }

    .ss-faq-clear-search:hover {
        background: #000;
        color: #fff;
    }

    .ss-faq-no-results {
        padding: 2rem;
        text-align: center;
        color: #666;
        font-size: 1.1rem;
    }

    .ss-faq-result-category {
        font-size: 0.85rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.3rem;
    }

/* page-legal-notice.php */
/* ===== POLICY PAGE STYLES ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-privacy-policy.php */
/* ===== PRIVACY POLICY PAGE ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte ul {
        list-style: disc;
        margin: 0 0 1.25rem 1.5rem;
        padding: 0;
        line-height: 1.2rem;
    }

    .shopify-policy__container .rte li {
        font-size: 14px;
        line-height: 17.6px;
        margin-bottom: 0.5rem;
    }

    .shopify-policy__container .rte b,
    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

    .shopify-policy__container .osano-optout-link {
        color: #000;
        text-decoration: underline;
    }

    /* ===== TABLES ===== */
    .shopify-policy__container table {
        width: 100%;
        border: 1px solid #000;
        border-collapse: collapse;
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container table td {
        padding: 10px;
        border: 1px solid #000;
        font-size: 14px;
        font-weight: 400;
        line-height: 17.6px;
        vertical-align: top;
    }

    .shopify-policy__container table p {
        margin: 0 0 0.75rem;
    }

    .shopify-policy__container table p:last-child {
        margin-bottom: 0;
    }

    /* ===== FOCUS STATES ===== */
    .focus-none:focus,
    .focus-none:focus-visible {
        outline: none;
        box-shadow: none;
    }

/* page-returns.php */
/* ===== POLICY PAGE STYLES ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-shipping-policy.php */
/* ===== POLICY PAGE STYLES ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-stores.php */
/* ===== STORES PAGE ===== */
    .ss-stores {
        padding: 3rem 0 6rem;
    }

    .ss-stores__layout {
        display: flex;
        gap: 3rem;
    }

    .ss-stores__main {
        flex: 1;
    }

    .ss-stores__sidebar {
        width: 200px;
        flex-shrink: 0;
        text-align: right;
    }

    @media (max-width: 991px) {
        .ss-stores__layout {
            flex-direction: column;
        }

        .ss-stores__sidebar {
            width: 100%;
            text-align: left;
            order: -1;
        }
    }

    /* Title */
    .ss-stores__title {
        font-size: 2.5rem;
        font-weight: 400;
        margin: 0 0 1.5rem;
        color: #000;
    }

    /* Filter Dropdown */
    .ss-stores-filter {
        position: relative;
        display: block;
        width: 100%;
    }

    .ss-stores-filter__toggle {
        font-size: 0.95rem;
        color: #000;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e5e5;
        user-select: none;
    }

    .ss-stores-filter__toggle:hover {
        opacity: 0.7;
    }

    .ss-stores-filter__caret {
        font-size: 1rem;
        transition: transform 0.2s;
    }

    .ss-stores-filter.open .ss-stores-filter__caret {
        transform: rotate(180deg);
    }

    .ss-stores-filter__dropdown {
        display: none;
        flex-direction: column;
        gap: 0.4rem;
        margin-top: 0.75rem;
        align-items: flex-end;
    }

    @media (max-width: 991px) {
        .ss-stores-filter__dropdown {
            align-items: flex-start;
        }
    }

    .ss-stores-filter.open .ss-stores-filter__dropdown {
        display: flex;
    }

    .ss-stores-filter__link {
        font-size: 0.95rem;
        color: #000;
        text-decoration: none;
        cursor: pointer;
        padding: 0.15rem 0;
        transition: color 0.2s;
    }

    .ss-stores-filter__link:hover {
        color: #b8860b;
    }

    .ss-stores-filter__link.active {
        color: #b8860b;
    }

    /* Regions */
    .ss-stores-region {
        margin-bottom: 3rem;
    }

    .ss-stores-region[data-region] {
        display: none;
    }

    .ss-stores-region.visible {
        display: block;
    }

    .ss-stores-region__title {
        font-size: 1rem;
        font-weight: 400;
        padding-top: 1rem;
        border-top: 1px solid #f5f5f5;
        margin-bottom: 0.5rem;
        color: #000;
    }

    .ss-stores-region__columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2rem;
    }

    .ss-stores-column {
        flex: 1;
        min-width: 250px;
        max-width: 33.333%;
        line-height: 1.4;
    }

    @media (max-width: 991px) {
        .ss-stores-column {
            max-width: 100%;
            min-width: 100%;
        }
    }

    /* State/Country Headings */
    .ss-stores-state {
        margin-bottom: 1.5rem;
    }

    .ss-stores-state__name {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 0.25rem;
        color: #000;
    }

    .ss-stores-state__stores {
        font-size: 0.9rem;
        color: #333;
    }

    .ss-stores-state__stores p {
        margin: 0;
        line-height: 1.4;
    }

    .ss-stores-state__stores a {
        color: #000;
        text-decoration: underline;
    }

    .ss-stores-state__stores a:hover {
        color: #b8860b;
    }

    /* Current Region Display */
    .ss-stores__current-region {
        font-size: 1rem;
        color: #333;
        margin-bottom: 2rem;
    }

/* page-terms-conditions.php */
/* ===== TERMS & CONDITIONS PAGE ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-terms-of-sale.php */
/* ===== POLICY PAGE STYLES ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }

/* page-terms-of-service.php */
/* ===== TERMS & CONDITIONS PAGE ===== */
    .shopify-policy__container {
        margin: 0 auto;
        max-width: 640px;
        padding: 50px 20px;
    }

    .shopify-policy__container .shopify-policy__title {
        text-align: left;
    }

    .shopify-policy__container .shopify-policy__title h1 {
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }

    @media (min-width: 768px) {
        .shopify-policy__container .shopify-policy__title h1 {
            font-size: 32px;
        }
    }

    .shopify-policy__container .shopify-policy__body {
        margin-top: 1.375rem;
    }

    /* ===== RTE CONTENT STYLES ===== */
    .shopify-policy__container .rte,
    .shopify-policy__container .rte p {
        font-size: 14px;
        line-height: 17.6px;
        color: #000;
    }

    .shopify-policy__container .rte p {
        margin: 0 0 1.25rem;
    }

    .shopify-policy__container .rte strong {
        font-weight: 700;
    }

    /* ===== LINKS ===== */
    .shopify-policy__container .text-link {
        color: #000;
        text-decoration: underline;
        background-color: transparent;
        transition: color 0.2s linear;
    }

    .shopify-policy__container .text-link:hover {
        color: #666;
    }
