/* =========================================================
   RAIN SPREE — PRINT ON DEMAND ARCHIVE
   pod-archive.css
   ========================================================= */

.rs-pod-archive {
    --pod-orange: #f36b16;
    --pod-orange-dark: #d9570b;
    --pod-orange-soft: #fff1e4;
    --pod-cream: #fffaf5;
    --pod-text: #252525;
    --pod-muted: #6d6d6d;
    --pod-border: #f0dfd1;

    width: 100%;
    padding: 0 0 50px;

    color: var(--pod-text);

    background:
        linear-gradient(
            180deg,
            #fffaf6 0%,
            #ffffff 55%,
            #fff8f1 100%
        );
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.rs-pod-container {
    width: min(1060px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.rs-pod-breadcrumb {
    display: none;
    align-items: center;
    gap: 8px;

    padding: 14px 0 12px;

    font-size: 11px;
    line-height: 1.4;

    color: #777;
}

.rs-pod-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.rs-pod-breadcrumb a:hover {
    color: var(--pod-orange);
}

.rs-pod-breadcrumb span {
    white-space: nowrap;
}


/* =========================================================
   HERO
   ========================================================= */

.rs-pod-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    min-height: 340px;

    overflow: hidden;

    border: 1px solid #f3dfcf;
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #fff0df 0%,
            #fffaf5 100%
        );

    box-shadow:
        0 8px 25px rgba(145, 75, 25, 0.07);
}


/* =========================================================
   HERO LEFT
   ========================================================= */

.rs-pod-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 42px 40px;
}

.rs-pod-eyebrow {
    display: block;

    margin-bottom: 12px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--pod-orange);
}

.rs-pod-hero h1 {
    margin: 0 0 15px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(42px, 4.3vw, 60px);
    font-weight: 600;

    line-height: .92;

    color: var(--pod-orange-dark);
}

.rs-pod-shirt {
    display: inline-block;

    margin-left: 5px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: .55em;
    font-weight: 700;

    vertical-align: middle;

    color: var(--pod-orange);
}

.rs-pod-hero p {
    max-width: 430px;

    margin: 0 0 27px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;
    line-height: 1.65;

    color: #555;
}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.rs-pod-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    width: 100%;
}

.rs-pod-feature {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    min-width: 0;
}

.rs-pod-feature-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ffd2ae;
    border-radius: 50%;

    color: var(--pod-orange);

    background: rgba(255,255,255,.75);
}

.rs-pod-feature-icon i {
    font-size: 14px;
}

.rs-pod-feature strong {
    display: block;

    margin: 1px 0 4px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.25;
}

.rs-pod-feature small {
    display: block;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.4;

    color: #777;
}


/* =========================================================
   HERO RIGHT / IMAGE
   ========================================================= */

.rs-pod-hero-image {
    position: relative;

    min-height: 340px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fff8f0,
            #ffe9d5
        );
}

.rs-pod-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */

.rs-pod-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    text-align: center;

    color: var(--pod-orange);
}

.rs-pod-image-placeholder i {
    font-size: 52px;
}

.rs-pod-image-placeholder strong {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 32px;
    font-weight: 600;
}

.rs-pod-image-placeholder span {
    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;

    color: #777;
}


/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.rs-pod-categories {
    display: flex;
    align-items: center;

    width: 100%;

    gap: 7px;

    margin-top: 12px;
    padding: 8px 10px;

    overflow-x: auto;

    border: 1px solid #f1e2d6;
    border-radius: 15px;

    background: rgba(255,255,255,.9);

    scrollbar-width: none;
}

.rs-pod-categories::-webkit-scrollbar {
    display: none;
}

.rs-pod-category {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 38px;

    padding: 5px 14px;

    border: 1px solid #f0e1d4;
    border-radius: 30px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    color: #333;

    background: #fff;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.rs-pod-category:hover {
    border-color: var(--pod-orange);

    color: var(--pod-orange);

    transform: translateY(-1px);
}

.rs-pod-category.active {
    border-color: var(--pod-orange);

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #f36b16,
            #ef7b29
        );

    box-shadow:
        0 4px 10px rgba(243,107,22,.18);
}

.rs-pod-category-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--pod-orange);

    background: #fff3e7;
}

.rs-pod-category.active .rs-pod-category-icon {
    color: var(--pod-orange);

    background: #fff;
}

.rs-pod-category-icon i {
    font-size: 10px;
}


/* =========================================================
   FILTER / SORT BAR
   ========================================================= */

.rs-pod-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 10px;
    padding: 10px 12px;

    border: 1px solid #f1e2d6;
    border-radius: 14px;

    background: rgba(255,255,255,.95);
}

.rs-pod-filter-left {
    display: flex;
    align-items: center;

    gap: 8px;
}

.rs-pod-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 34px;

    padding: 7px 13px;

    border: 1px solid #efd9c7;
    border-radius: 9px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 600;

    color: #444;

    background: #fff;

    cursor: pointer;

    transition: .2s ease;
}

.rs-pod-filter-button:hover {
    color: var(--pod-orange);
    border-color: var(--pod-orange);
}

.rs-pod-filter-button i {
    color: var(--pod-orange);
}

.rs-pod-filter-label {
    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;

    color: #777;
}

.rs-pod-sort {
    display: flex;
    align-items: center;

    gap: 8px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;

    color: #777;
}

.rs-pod-sort select {
    min-width: 120px;
    min-height: 34px;

    padding: 6px 10px;

    border: 1px solid #efd9c7;
    border-radius: 9px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;

    color: #333;

    background: #fff;

    cursor: pointer;
}


/* =========================================================
   PRODUCTS AREA
   ========================================================= */

.rs-pod-products {
    width: 100%;

    margin-top: 12px;
}

.rs-pod-products ul.products {
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   EMPTY PRODUCTS STATE
   ========================================================= */

.rs-pod-empty {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 35px 20px;

    text-align: center;

    border: 1px solid #f0dfd2;
    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 5px 20px rgba(100,60,30,.035);
}

.rs-pod-empty-icon {
    margin-bottom: 10px;

    color: var(--pod-orange);

    font-size: 34px;
}

.rs-pod-empty h2 {
    margin: 0 0 7px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 30px;
    font-weight: 600;

    color: var(--pod-orange-dark);
}

.rs-pod-empty p {
    max-width: 500px;

    margin: 0 0 16px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
    line-height: 1.5;

    color: #777;
}

.rs-pod-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 18px;

    border-radius: 30px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    color: #fff !important;

    background: var(--pod-orange);

    text-decoration: none;

    transition: .2s ease;
}

.rs-pod-empty-button:hover {
    color: #fff !important;

    background: var(--pod-orange-dark);

    transform: translateY(-1px);
}


/* =========================================================
   BUNDLE SECTION
   ========================================================= */

.rs-pod-bundle {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 145px;

    overflow: hidden;

    margin-top: 14px;
    padding: 25px 28px;

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            #fff0df 0%,
            #fff8f0 100%
        );
}

.rs-pod-bundle-content {
    position: relative;
    z-index: 2;
}

.rs-pod-bundle-content > span {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;

    color: var(--pod-orange);
}

.rs-pod-bundle h2 {
    margin: 0 0 5px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;
    font-weight: 600;

    line-height: .95;

    color: var(--pod-orange-dark);
}

.rs-pod-bundle p {
    margin: 0 0 12px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;

    color: #777;
}

.rs-pod-bundle a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 32px;

    padding: 7px 16px;

    border-radius: 30px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    color: #fff !important;

    background: var(--pod-orange);

    text-decoration: none;

    transition: .2s ease;
}

.rs-pod-bundle a:hover {
    color: #fff !important;

    background: var(--pod-orange-dark);

    transform: translateY(-1px);
}

.rs-pod-bundle-decoration {
    position: absolute;
    right: 30px;
    top: 50%;

    display: flex;
    align-items: center;

    gap: 45px;

    transform: translateY(-50%);

    color: #f7c69f;

    opacity: .7;
}

.rs-pod-bundle-decoration i {
    font-size: 50px;
}

.rs-pod-bundle-decoration i:nth-child(2) {
    font-size: 70px;
}

.rs-pod-bundle-decoration i:nth-child(3) {
    font-size: 60px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.rs-pod-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    width: 100%;

    margin-top: 12px;

    overflow: hidden;

    border: 1px solid #f0e1d6;
    border-radius: 14px;

    background: #fff;
}

.rs-pod-benefit {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 70px;

    padding: 10px 15px;

    border-right: 1px solid #f0e1d6;
}

.rs-pod-benefit:last-child {
    border-right: 0;
}

.rs-pod-benefit > span {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ffd9bb;
    border-radius: 50%;

    color: var(--pod-orange);

    background: #fff8f2;
}

.rs-pod-benefit > span i {
    font-size: 13px;
}

.rs-pod-benefit strong {
    display: block;

    margin-bottom: 3px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 700;
}

.rs-pod-benefit small {
    display: block;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.35;

    color: #777;
}


/* =========================================================
   WOOCOMMERCE PAGINATION
   ========================================================= */

.rs-pod-products .woocommerce-pagination {
    margin-top: 25px;
}

.rs-pod-products .woocommerce-pagination ul {
    border: 0 !important;
}

.rs-pod-products .woocommerce-pagination li {
    border: 0 !important;
}

.rs-pod-products .woocommerce-pagination a,
.rs-pod-products .woocommerce-pagination span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 3px;

    border: 1px solid #f0d9c7 !important;
    border-radius: 50% !important;

    font-size: 10px !important;

    color: #555 !important;

    background: #fff !important;
}

.rs-pod-products .woocommerce-pagination .current {
    color: #fff !important;
    background: var(--pod-orange) !important;
    border-color: var(--pod-orange) !important;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .rs-pod-container {
        width: min(100% - 24px, 760px);
    }

    .rs-pod-hero {
        grid-template-columns: 1fr;
    }

    .rs-pod-hero-image {
        min-height: 300px;
    }

    .rs-pod-features {
        max-width: 600px;
    }

    .rs-pod-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-pod-benefit:nth-child(2) {
        border-right: 0;
    }

    .rs-pod-benefit:nth-child(-n + 2) {
        border-bottom: 1px solid #f0e1d6;
    }

    .rs-pod-bundle-decoration {
        opacity: .35;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .rs-pod-container {
        width: calc(100% - 20px);
    }

    .rs-pod-breadcrumb {
        padding-top: 10px;
        font-size: 10px;
    }

    .rs-pod-hero-content {
        padding: 30px 23px;
    }

    .rs-pod-hero h1 {
        font-size: 42px;
    }

    .rs-pod-hero p {
        font-size: 13px;
    }

    .rs-pod-features {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .rs-pod-feature {
        max-width: 320px;
    }

    .rs-pod-hero-image {
        min-height: 240px;
    }

    .rs-pod-filter-bar {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .rs-pod-sort {
        width: 100%;

        justify-content: space-between;
    }

    .rs-pod-sort select {
        flex: 1;
    }

    .rs-pod-bundle {
        min-height: 135px;

        padding: 22px;
    }

    .rs-pod-bundle h2 {
        font-size: 25px;
    }

    .rs-pod-bundle-decoration {
        display: none;
    }

    .rs-pod-benefits {
        grid-template-columns: 1fr;
    }

    .rs-pod-benefit {
        border-right: 0;
        border-bottom: 1px solid #f0e1d6;
    }

    .rs-pod-benefit:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   POD FILTER BAR — COMPACT / UNIFORM
   ========================================================= */

.rs-pod-filter-bar {
    width: 100%;
    min-height: 52px;
    margin: 14px 0 20px;
    padding: 8px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 120, 30, 0.10);
    border-radius: 14px;
}

/* LEFT SIDE */

.rs-pod-filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FILTER BUTTON */

.rs-pod-filter-button {
    height: 34px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid #f0dfd2;
    border-radius: 9px;

    background: #fff;
    color: #e56719;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.rs-pod-filter-button:hover {
    background: #fff7f1;
}

/* CURRENT CATEGORY */

.rs-pod-filter-label {
    height: 34px;
    padding: 0 13px;

    display: inline-flex;
    align-items: center;

    border: 1px solid #f0dfd2;
    border-radius: 9px;

    background: #fff;

    color: #514943;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

/* SORT */

.rs-pod-sort {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #625951;

    font-family: "Inter", sans-serif;
    font-size: 11px;
}

.rs-pod-sort select {
    height: 34px;
    min-width: 95px;

    padding: 0 28px 0 12px;

    border: 1px solid #f0dfd2;
    border-radius: 9px;

    background: #fff;

    color: #514943;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;

    cursor: pointer;
    outline: none;
}

.rs-pod-sort select:focus {
    border-color: #f28a45;
}

/* MOBILE */

@media (max-width: 768px) {

    .rs-pod-filter-bar {
        flex-wrap: wrap;
        padding: 10px;
    }

    .rs-pod-filter-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .rs-pod-sort {
        width: 100%;
        margin-left: 0;
        justify-content: flex-end;
    }
}

/* =========================================================
   POD FILTER CONTROLS
   ========================================================= */

.rs-pod-filter-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.rs-pod-filter-control select {
    appearance: none;
    -webkit-appearance: none;

    height: 34px;
    min-width: 82px;

    padding: 0 28px 0 12px;

    border: 1px solid #f0dfd2;
    border-radius: 9px;

    background: #fff;

    color: #514943;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;

    cursor: pointer;
    outline: none;
}

.rs-pod-filter-control::after {
    content: "\f107";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    color: #625951;
    font-size: 9px;

    pointer-events: none;
}


/* CLEAR */

.rs-pod-filter-clear {
    height: 34px;
    padding: 0 5px;

    display: inline-flex;
    align-items: center;

    color: #e56719;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.rs-pod-filter-clear:hover {
    text-decoration: underline;
    color: #c65310;
}