@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');

body {
    background-color: lightgray;
    font-family: Arial, sans-serif;
    margin: 0;
}
h1 {
    color: darkblue;
}
p {
    color: #333333;
    font-size: 18px;
}
main {
    margin: 0;
    max-width: none;
    padding: 0;
}

.hero {
    width: 100%;

    aspect-ratio: 4.13 / 1;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("images/banner2.png");

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 25px;
}

.hero-button {
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 14px 22px;
    border-radius: 8px;
}
.site-header {
    background-color: white;
    color: black;

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid #eeeeee;
}

.nav-container {
    width: 100%;
    max-width: none;

    margin: 0;

    padding: 0 30px;

    box-sizing: border-box;

    height: 72px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-name {
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
}

.main-nav a:hover {
    text-decoration: underline;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-button {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: black;
}

.icon-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.announcement {
    background-color: white;
    color: black;
    text-align: center;
    padding: 12px 20px 14px;
}

.announcement-small {
    font-size: 25pt;
    line-height: 1.1;
}

.announcement-title {
    font-size: 50pt;
    font-weight: bold;
    line-height: 1.05;
}

.announcement-disclaimer {
    font-size: 10pt;
    font-style: italic;
    margin-top: 5px;
}
.site-footer {
    border-top: 1px solid #d9d9d9;
    background-color: white;
    padding: 24px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    font-size: 13px;
    color: #666666;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
.home-joke {
    position: relative;
    height: 135px;
    background-color: white;
    overflow: visible;
}

.joke-text {
    color: red;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Marker Felt", Arial, sans-serif;
    font-size: 20pt;
    font-weight: bold;
    padding-top: 72px;
    margin-left: 190px;
}

.joke-arrow {
    position: absolute;
    color: red;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Marker Felt", Arial, sans-serif;
    font-size: 58px;
    font-weight: bold;
    line-height: 1;
}

.arrow-store {
    left: 170px;
    top: 3px;
    transform: rotate(-25deg);
}

.arrow-home {
    left: 285px;
    top: 3px;
}
.second-joke {
    background-color: white;
    color: red;
    font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Marker Felt", Arial, sans-serif;
    font-size: 20pt;
    font-weight: bold;
    text-align: center;
    padding: 20px 20px 28px;
}
/* LOGIN PAGE */

.login-page {
    background-color: #fdf5e6;
    min-height: 720px;

    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(380px, 520px) minmax(220px, 1fr);
    gap: 40px;

    padding: 55px 40px;
    box-sizing: border-box;
}

.login-side {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.login-side img {
    width: 75%;
    height: auto;
    display: block;
    transform: translateY(-110px);
}

.login-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.login-box {
    background-color: white;
    padding: 38px 40px 42px;
    border: 1px solid #dddddd;
}

.login-box h1 {
    color: black;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 32px;
    white-space: nowrap;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    color: #333333;
    font-size: 13px;
    margin-bottom: 7px;
}

.login-form input {
    width: 100%;
    height: 48px;

    border: 1px solid #aaaaaa;
    border-radius: 3px;

    background-color: white;
    color: #222222;

    font-family: Arial, sans-serif;
    font-size: 16px;

    padding: 0 13px;
    margin-bottom: 22px;

    box-sizing: border-box;
}

.login-form input::placeholder {
    color: #999999;
}

.login-form input:focus {
    outline: 2px solid #555555;
    outline-offset: 1px;
}

.login-next {
    width: 100%;
    height: 50px;

    background-color: #477a46;
    color: white;

    border: none;
    border-radius: 3px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
    margin-top: 5px;
}

.login-next:hover {
    background-color: #396538;
}

.create-account-box {
    background-color: white;
    border: 1px solid #dddddd;

    padding: 25px 40px 30px;
    margin-top: 18px;

    text-align: center;
}

.create-account-box p {
    color: #333333;
    font-size: 14px;
    margin: 0 0 18px;
}

.create-account-button {
    width: 100%;
    height: 48px;

    background-color: white;
    color: #222222;

    border: 1px solid #333333;
    border-radius: 3px;

    font-size: 15px;
    font-weight: bold;

        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
}

.create-account-button:hover {
    background-color: #f4f4f4;
}

.login-copyright {
    color: #666666;
    font-size: 11px;
    text-align: center;

    margin-top: 22px;
}
.login-error-message {
    text-align: center;
    margin-bottom: 15px;
}

.bonk-title {
    color: #7aa31a;
    font-family: "Creepster", cursive;
    font-size: 50pt;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 8px;
}

.bonk-subtitle {
    color: #7aa31a;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
/* CORRUPTED CREATE ACCOUNT PAGE */

.corrupt-page {
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    overflow: hidden;
    position: relative;
}

.corrupt-wall {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    color: white;
    background-color: black;

    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: bold;
    line-height: 0.9;
    letter-spacing: 0;

    opacity: 0.9;

    word-break: break-all;
    user-select: none;
    pointer-events: none;

    z-index: 1;
}

.corrupt-line {
    width: 110%;
    margin-left: -2%;
    white-space: nowrap;
    height: 8px;
    overflow: visible;
}

.corrupt-message-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;

    width: min(700px, calc(100% - 80px));
    margin: 0;

    background-color: #d71920;
    color: black;

    padding: 45px;
    box-sizing: border-box;

    border: 4px solid black;

    text-align: center;
}

.corrupt-custom-message {
    color: black;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;

    margin: 0 0 35px;
}

.corrupt-back-button {
    display: block;
    width: 100%;

    background-color: black;
    color: #d71920;

    border: 2px solid black;

    padding: 16px 20px;
    box-sizing: border-box;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;

    text-decoration: none;
    text-align: center;
}

.corrupt-back-button:hover {
    color: red;
}
.zoom-easter-egg {
    position: fixed;

    left: 3000px;
    top: 50%;

    transform: translateY(-50%);

    width: 2400px;
    height: auto;

    z-index: 1;

    pointer-events: none;
    user-select: none;
}
.corrupt-rant {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 12px;
    margin-bottom: 30px;

    scrollbar-width: thin;
    scrollbar-color: black #d71920;
}
.corrupt-rant::-webkit-scrollbar {
    width: 10px;
}

.corrupt-rant::-webkit-scrollbar-track {
    background: #d71920;
}

.corrupt-rant::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 0;
}

.corrupt-rant::-webkit-scrollbar-thumb:hover {
    background: #222222;
}

.corrupt-custom-message {
    color: black;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.45;
    text-align: left;
    margin: 0;
}


body.corrupt-page {
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}




.product-placeholder {
    width: 100%;

    background-color: #7fa9d6;

    padding: 55px 30px 55px;

    box-sizing: border-box;
}


.store-products {
    width: 100%;
    max-width: none;

    margin: 0;

    box-sizing: border-box;
}

.store-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


.store-products-header h2 {
    margin: 0;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;
}



.store-view-all {
    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;

    text-decoration: none;

    margin-right: 4px;
}



.store-view-all:hover {
    text-decoration: underline;
}


/* FOUR PRODUCT COLUMNS */

.product-category-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.product-category-card {
    min-width: 0;
}


/* IMAGE */

.product-image-wrapper {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #eeeeee;
}



.product-card-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.2s ease;
}


#booksCarouselImage {
    object-fit: contain;

    background-color: #ffffff;

    padding: 12px;

    box-sizing: border-box;
}




/* =========================================================
   FIRST PRODUCT — JEWELRY CAROUSEL
   ========================================================= */

.product-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 25px;
    height: 52px;

    border: 1px solid rgba(0, 0, 0, 0.25);

    background-color: #7fa9d6;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 31px;
    font-weight: normal;
    line-height: 1;

    cursor: pointer;

    opacity: 1;

    z-index: 2;
}




.product-slide-arrow:hover {
    background-color: #9bbce0;
}

.product-slide-left {
    left: 10px;
}


.product-slide-right {
    right: 10px;
}





/* PRODUCT NAME + PRICE */

.product-card-info {
    display: block;

    padding-top: 10px;

    color: #111111;

    text-decoration: none;

    text-align: center;
}



/* =========================================================
   HOME PRODUCT CATEGORY LINKS
   ========================================================= */

.home-category-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-category-title-link {
    color: inherit;
    text-decoration: none;
}

.home-category-title-link:hover {
    text-decoration: underline;
}



.product-card-name {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
}



/* RESPONSIVE */

@media (max-width: 900px) {

    .product-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 520px) {

    .product-placeholder {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-category-grid {
        grid-template-columns: 1fr;
    }


}



.email-signup {
    background-color: white;
    border-bottom: 1px solid #dddddd;

    padding: 38px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.email-signup-copy {
    flex: 1;
}

.email-signup-copy h2 {
    color: black;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 6px;
}

.email-signup-copy p {
    color: #333333;
    font-size: 15px;
    margin: 0;
}

.email-signup-field {
    flex: 1.05;
    height: 58px;

    border: 1px solid #d5d5d5;
    border-radius: 999px;

    display: flex;
    align-items: center;

    padding: 0 8px 0 28px;

    background-color: white;
    box-sizing: border-box;
    overflow: hidden;
}

.email-input {
    flex: 1;
    min-width: 0;
    height: 100%;

    border: none;
    outline: none;
    appearance: none;

    background: transparent;
    color: #222222;

    font-family: Arial, sans-serif;
    font-size: 14px;

    padding: 0;
    margin: 0;
}

.email-input::placeholder {
    color: #777777;
}

.email-arrow {
    width: 62px;
    height: 100%;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    appearance: none;
    background: transparent;
    border: none;
    outline: none;

    color: #222222;
    font-size: 25px;

    padding: 0;
    margin: 0;

    cursor: pointer;
}

.email-arrow:hover {
    background-color: #f5f5f5;
}

/* =========================
   RETRO EMAIL ERROR PAGE
   ========================= */

.error-page {
    margin: 0;
    min-height: 100vh;

    background-color: #39ff14;
    color: black;

    font-family: Arial, sans-serif;

    position: relative;
    overflow-x: hidden;
}

.error-code-field {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;
    user-select: none;

    z-index: 0;
}

.floating-error-code {
    position: absolute;

    color: black;

    font-family: "Courier New", monospace;
    font-weight: bold;

    white-space: nowrap;
}

.error-page-content {
    position: relative;
    z-index: 1;

    width: min(900px, calc(100% - 50px));

    margin: 0 auto;

    padding: 90px 0 0;
}


/* TERMINAL */

.terminal-box {
    background-color: black;

    border: 5px solid black;

    padding: 38px 42px 45px;

    box-sizing: border-box;

    box-shadow:
        10px 10px 0 rgba(0, 0, 0, 0.35);
}

.terminal-heading {
    color: #39ff14;

    font-family: "Roboto Mono", "Courier New", monospace;

    font-size: 16px;
    font-weight: bold;

    margin-bottom: 8px;
}

.terminal-status {
    color: #39ff14;

    font-family: "Roboto Mono", "Courier New", monospace;

    font-size: 13px;

    margin-bottom: 32px;
}

.terminal-message {
    color: #39ff14;

    font-family: "Roboto Mono", "Courier New", monospace;

    font-size: 18px;
    font-weight: bold;

    line-height: 1.6;

    margin: 0 0 45px;
}


.terminal-message p {
    color: #39ff14;
    margin: 0 0 28px;
}


.terminal-message p:last-child {
    margin-bottom: 0;
}


.terminal-back-button {
    display: block;

    width: 100%;

    background-color: white;
    color: black;

    border: 3px solid white;

    box-sizing: border-box;

    padding: 17px 20px;

    text-align: center;

    font-family: "Roboto Mono", "Courier New", monospace;

    font-size: 15px;
    font-weight: bold;

    text-decoration: none;
}

.terminal-back-button:hover {
    background-color: #dddddd;
}


/* GRAVEYARD */

.graveyard {
    position: relative;

    width: calc(100vw - 40px);
    margin-top: 110px;
    margin-left: 50%;
    transform: translateX(-50%);

    min-height: 230px;

    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;

    align-items: end;

    padding: 40px 10px 70px;
    box-sizing: border-box;
}

.graveyard-ground {
    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 200vw;
    height: 95px;

    background-color: #111111;

    z-index: -1;
}

.tombstone {
    min-height: 120px;

    background-color: #777777;
    color: black;

    border: 3px solid #222222;

    border-radius: 50px 50px 6px 6px;

    padding: 28px 8px 14px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: "Times New Roman", serif;

    font-size: 11px;
    font-weight: bold;

    line-height: 1.15;

    box-shadow:
        inset -6px -6px 0 rgba(0, 0, 0, 0.15);
}

.tombstone span {
    display: block;

    font-size: 22px;
    font-weight: bold;

    margin-bottom: 7px;
}


/* MOBILE */

@media (max-width: 800px) {

    .error-page-content {
        width: calc(100% - 30px);
        padding-top: 45px;
    }

    .terminal-box {
        padding: 28px 24px 32px;
    }

    .terminal-message {
        font-size: 16px;
    }

    .graveyard {
    position: relative;

    margin-top: 110px;

    min-height: 300px;

    display: grid;
    grid-template-columns: repeat(10, 1fr);

    gap: 10px;

    align-items: end;

    padding: 40px 10px 70px;

    box-sizing: border-box;
}

}

.disclaimer-bar {
    width: 100%;
    background-color: white;

    padding: 6px 30px 18px;
    box-sizing: border-box;

    position: relative;
    min-height: 32px;
}

.disclaimer-link {
    color: red;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.legal-portal-link {
    position: absolute;

    left: auto;
    right: 320px;
    top: 6px;

    transform: none;

    color: #666666;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;

    white-space: nowrap;
}

.disclaimer-link:hover,
.legal-portal-link:hover {
    text-decoration: underline;
}

/* DISCLAIMER PAGE */

.disclaimer-page {
    margin: 0;
    background-color: white;
    color: black;

    font-family: "Times New Roman", Times, serif;
}

.disclaimer-document {
    max-width: 950px;
    margin: 0 auto;

    padding: 70px 50px 100px;

    font-family: "Times New Roman", Times, serif;
}

.disclaimer-document h1 {
    color: black;

    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    font-weight: bold;

    margin: 0 0 12px;
}

.disclaimer-updated {
    color: black;
    font-size: 16px;

    margin: 0 0 45px;
}

.disclaimer-document h2 {
    color: black;

    font-family: "Times New Roman", Times, serif;
    font-size: 23px;
    font-weight: bold;

    margin: 42px 0 16px;
}

.disclaimer-document p {
    color: black;

    font-family: "Times New Roman", Times, serif;
    font-size: 17px;
    line-height: 1.55;

    margin: 0 0 18px;
}

.disclaimer-document a {
    color: #0000ee;
    text-decoration: underline;
}

.disclaimer-document a:visited {
    color: #551a8b;
}

@media (max-width: 700px) {
    .disclaimer-document {
        padding: 40px 25px 70px;
    }

    .disclaimer-document h1 {
        font-size: 27px;
    }

    .disclaimer-document h2 {
        font-size: 21px;
    }

    .disclaimer-document p {
        font-size: 16px;
    }
}

/* ========================================
   LEGAL REPRESENTATIVE ACCESS PORTAL
   ======================================== */

.legal-portal-page {
    margin: 0;
    background-color: #f4f5f7;
    color: #1f2933;
    font-family: Arial, Helvetica, sans-serif;
}

.legal-portal-container {
    width: min(920px, calc(100% - 40px));
    margin: 55px auto 100px;
}

.legal-screen {
    background-color: white;
    border: 1px solid #d5d9de;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-portal-header {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 30px 35px;

    border-bottom: 1px solid #d5d9de;
    background-color: #fafafa;
}

.legal-portal-mark {
    width: 54px;
    height: 54px;

    border: 1px solid #7a838c;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;

    color: #3d4852;
}

.legal-portal-header h1 {
    margin: 0;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.4px;
}

.legal-portal-header p {
    margin: 6px 0 0;

    color: #666666;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
}

.legal-portal-intro {
    padding: 30px 35px 10px;
}

.legal-portal-intro p {
    color: #333333;
    font-size: 15px;
    line-height: 1.65;

    margin: 0 0 18px;
}


.legal-form-section {
    border-top: 1px solid #d5d9de;
}

.legal-section-heading {
    background-color: #f7f8f9;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 35px;

    border-bottom: 1px solid #d5d9de;
}

.legal-section-number {
    color: #7a838c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;

    letter-spacing: 1px;
}

.legal-section-heading h2 {
    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: normal;

    margin: 0;
}

.legal-section-heading p {
    color: #777777;

    font-size: 12px;

    margin: 3px 0 0;
}

.legal-question-block {
    padding: 28px 35px 35px;
}

.legal-fieldset {
    margin: 0;
    padding: 0;

    border: none;
}

.legal-fieldset legend {
    color: #222222;

    font-size: 15px;
    font-weight: bold;

    margin-bottom: 20px;
}

.legal-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 13px;

    color: #333333;
    font-size: 14px;
    line-height: 1.4;

    cursor: pointer;
}

.legal-option input {
    margin-top: 2px;
}

.legal-other-field {
    display: none;

    margin: 18px 0 0 27px;
}

.legal-other-field label {
    display: block;

    color: #444444;
    font-size: 13px;
    font-weight: bold;

    margin-bottom: 7px;
}

.legal-other-field input {
    width: 100%;
    max-width: 500px;

    border: 1px solid #aeb5bc;

    padding: 10px 11px;

    box-sizing: border-box;

    font-family: Arial, sans-serif;
    font-size: 14px;
}


.legal-question-label {
    display: block;

    color: #222222;
    font-size: 15px;
    font-weight: bold;

    margin-bottom: 12px;
}

.legal-textarea {
    width: 100%;
    min-height: 150px;

    border: 1px solid #aeb5bc;
    background-color: white;

    padding: 12px;

    box-sizing: border-box;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;

    resize: vertical;
}

.legal-textarea:focus {
    outline: 2px solid #596775;
    outline-offset: 1px;
}

.legal-helper-text {
    color: #6d747b;

    font-size: 12px;
    font-style: italic;
    line-height: 1.5;

    margin: 9px 0 0;
}


.legal-conditional-field {
    display: none;

    margin-top: 28px;
    padding-top: 24px;

    border-top: 1px solid #e1e4e7;
}


.legal-form-actions {
    padding: 32px 35px 38px;

    border-top: 1px solid #d5d9de;
    background-color: #fafafa;
}

.legal-action-notice {
    margin-bottom: 22px;
}

.legal-action-notice strong {
    display: block;

    color: #333333;
    font-size: 13px;

    margin-bottom: 5px;
}

.legal-action-notice p {
    color: #687078;

    font-size: 12px;
    line-height: 1.5;

    margin: 0;
}

.legal-generate-button {
    width: 100%;

    border: 1px solid #263746;
    background-color: #34495a;

    color: white;

    padding: 16px 22px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;

    cursor: pointer;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.legal-generate-button:hover {
    background-color: #293d4d;
}

.legal-generate-button:active {
    transform: translateY(1px);
}

.legal-screen-hidden {
    display: none;
}

.legal-standardization-notice {
    margin: 28px 35px 0;
    padding: 15px 18px;

    border: 1px solid #c8ced4;
    border-left: 4px solid #596775;

    background-color: #f5f6f7;
}

.legal-standardization-notice strong {
    display: block;

    color: #303940;
    font-size: 11px;
    letter-spacing: 1px;

    margin-bottom: 5px;
}

.legal-standardization-notice p {
    color: #5e666d;

    font-size: 12px;
    line-height: 1.5;

    margin: 0;
}

.cease-desist-document {
    margin: 30px 35px 40px;

    border: 1px solid #c7cbd0;

    background-color: white;

    padding: 50px 55px;

    box-sizing: border-box;

    font-family: Georgia, "Times New Roman", serif;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.cease-desist-document-header {
    padding-bottom: 22px;
    margin-bottom: 26px;

    border-bottom: 2px solid #333333;
}

.cease-desist-document-header h2 {
    margin: 0 0 20px;

    color: #111111;

    font-size: 24px;
    font-weight: normal;

    letter-spacing: 1px;
}

.cease-desist-date-grid {
    display: flex;
    gap: 50px;

    color: #333333;
    font-size: 13px;
}

.cease-desist-address-block {
    margin-bottom: 35px;

    color: #222222;

    font-size: 14px;
    line-height: 1.55;
}

.cease-desist-address-block p {
    margin: 0 0 16px;
}

.cease-desist-letter {
    color: #222222;

    font-size: 15px;
    line-height: 1.75;
}

.cease-desist-letter p {
    margin: 0 0 22px;
}

.generated-legal-response {
    margin: -5px 0 24px;
    padding: 14px 18px;

    border-left: 3px solid #9aa2a9;

    background-color: #f6f6f6;

    color: #111111;

    font-weight: bold;
    line-height: 1.6;
}

.cease-desist-signature {
    margin-top: 45px;
}


.generated-legal-response ul {
    margin: 0;
    padding-left: 22px;
}

.generated-legal-response li {
    margin-bottom: 7px;
}

.generated-legal-response li:last-child {
    margin-bottom: 0;
}


.legal-confirmation-content {
    padding: 35px;
}

.legal-confirmation-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 22px 35px;
    margin-bottom: 28px;

    border-bottom: 1px solid #c7d9c7;
    background-color: #eef7ee;
}



.legal-status-icon {
    width: 46px;
    height: 46px;

    border: 1px solid #789878;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #456045;
    background-color: white;

    font-size: 24px;
    font-weight: bold;
}


.legal-confirmation-status h2 {
    margin: 0;

    color: #2f4f2f;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: normal;
}



.legal-confirmation-status p {
    margin: 0;

    color: #666666;

    font-size: 13px;
}

.legal-confirmation-text {
    color: #333333;

    font-size: 14px;
    line-height: 1.7;
}

.legal-confirmation-text p {
    margin: 0 0 20px;
}

.legal-important-notice {
    margin-top: 30px;

    padding: 24px 26px;

    border: 1px solid #c7ccd1;
    border-left: 4px solid #596775;

    background-color: #f7f8f9;
}

.legal-important-notice h3 {
    margin: 0 0 15px;

    color: #303940;

    font-size: 13px;
    letter-spacing: 0.7px;
}

.legal-important-notice p:last-child {
    margin-bottom: 0;
}


.legal-confirmation-text > p {
    margin-left: 28px;
    margin-right: 28px;
}


.content-removal-section {
    margin-top: 35px;

    border-top: 1px solid #c7ccd1;
    background-color: white;
}


.content-removal-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 22px 35px;

    border-bottom: 1px solid #d5d9de;
    background-color: #f7f8f9;
}

.content-removal-heading > div {
    text-align: left;
}


.content-removal-heading h2 {
    margin: 0;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: normal;
}

.content-removal-heading p {
    margin: 4px 0 0;

    color: #777777;

    font-size: 12px;
}


.content-removal-body {
    padding: 26px 35px 8px;

    color: #555555;

    font-size: 9px;
    line-height: 1.55;
}




.content-removal-body p {
    margin: 0 0 12px;
}



.content-removal-actions {
    padding: 24px 35px 35px;
}


.legal-final-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 22px 35px;

    border-bottom: 1px solid #c7d9c7;
    background-color: #eef7ee;
}

.legal-final-status h2 {
    margin: 0;

    color: #2f4f2f;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: normal;
}

.legal-final-content {
    padding: 34px 35px 40px;

    color: #333333;

    font-size: 14px;
    line-height: 1.7;
}

.legal-final-content > p {
    margin: 0 0 20px;
}

.legal-case-number-box {
    margin: 30px 0;

    padding: 22px 24px;

    border: 1px solid #c7ccd1;
    background-color: #f7f8f9;
}

.legal-case-number-box span {
    display: block;

    margin-bottom: 8px;

    color: #687078;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.legal-case-number-box strong {
    display: block;

    color: #222222;

    font-family: "Courier New", monospace;
    font-size: 22px;
    letter-spacing: 1px;
}

.legal-request-status {
    margin-bottom: 32px;

    border: 1px solid #c7ccd1;
}

.legal-status-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;

    padding: 15px 18px;

    border-bottom: 1px solid #d9dde1;
}

.legal-status-row:last-child {
    border-bottom: none;
}

.legal-status-row span {
    color: #687078;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.7px;
}

.legal-status-row strong {
    color: #222222;

    font-size: 13px;
}

.legal-final-copy {
    margin-bottom: 34px;
}

.legal-final-copy p {
    margin: 0 0 20px;
}




.legal-final-thanks {
    margin: 28px 0 34px;
    padding: 18px 24px;

    background:
        radial-gradient(circle at 8% 20%, rgba(255, 215, 80, 0.22) 0 3px, transparent 4px),
        radial-gradient(circle at 92% 25%, rgba(180, 40, 40, 0.16) 0 3px, transparent 4px),
        radial-gradient(circle at 18% 82%, rgba(80, 120, 190, 0.14) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 78%, rgba(255, 215, 80, 0.18) 0 3px, transparent 4px),
        linear-gradient(
            180deg,
            #fffdf3 0%,
            #f8efce 52%,
            #f2e4b5 100%
        );

    border: 1px solid #c9aa52;
    border-radius: 3px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 2px 5px rgba(0, 0, 0, 0.10);

    color: #29251b;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;

    text-align: center;
}




.legal-part-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 105px;

    box-sizing: border-box;

    padding: 28px 30px;

    border: 2px solid #8b6a08;

    background:
        linear-gradient(
            180deg,
            #fff1a8 0%,
            #f4d35e 18%,
            #d9ad28 48%,
            #f0ca4d 72%,
            #b88912 100%
        );

    color: #191300;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2px;

    text-decoration: none;

    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.75),
        inset 0 -3px 0 rgba(105, 73, 0, 0.25),
        0 3px 7px rgba(0, 0, 0, 0.18);

    cursor: pointer;
}




.legal-part-button:hover {
    background:
        linear-gradient(
            180deg,
            #fff6bd 0%,
            #f8dd70 18%,
            #e2b932 48%,
            #f5d45c 72%,
            #c39719 100%
        );
}


/* ========================================
   LEGAL PORTAL — FINAL POLISH OVERRIDES
   ======================================== */


/* IMPORTANT — ADDITIONAL ACTION REQUIRED */

.legal-important-notice {
    margin-top: 30px;

    padding: 24px 28px;

    border: 1px solid #d8bd65;
    border-left: 5px solid #b58a14;

    background-color: #fff8dc;
}

.legal-important-notice h3 {
    margin: 0 0 17px;

    color: #332900;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.legal-important-notice p {
    color: #3f3a2a;

    font-size: 13px;
    line-height: 1.65;

    margin: 0 0 17px;
}

.legal-important-notice p:last-child {
    margin-bottom: 0;
}


/* CONTENT REMOVAL REQUEST — OFFICIAL FORM */

.content-removal-section {
    margin: 30px 28px 0;

    border: 1px solid #c6cbd0;

    background-color: white;
}

.content-removal-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 3px;

    padding: 21px 35px;

    border-bottom: 1px solid #c6cbd0;

    background-color: #f3f5f7;

    text-align: center;
}

.content-removal-heading > div {
    text-align: center;
}

.content-removal-heading .legal-section-number {
    display: block;

    margin-bottom: 3px;

    color: #69747e;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.content-removal-heading h2 {
    margin: 0;

    color: #20262c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 0.3px;
}

.content-removal-heading p {
    margin: 4px 0 0;

    color: #6c7379;

    font-size: 12px;
}


/* CONTENT REMOVAL REQUEST FINE PRINT */

.content-removal-body {
    padding: 24px 28px 8px;

    color: #555b60;

    font-size: 9.5px;
    line-height: 1.6;
}

.content-removal-body p {
    margin: 0 0 11px;

    font-size: 9.5px;
    line-height: 1.6;
}


/* FINAL SCAMMERS / PERVERTS MESSAGE */

.legal-final-thanks {
    font-size: 13.5px;
    line-height: 1.5;
}

.legal-final-thanks p {
    margin-left: 0;
    margin-right: 0;
}


.generated-legal-citation {
    margin-top: 10px;

    color: #6c7379;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-style: italic;
    font-weight: normal;

    text-align: left;
}

.cease-desist-letter [id$="-inline"] {
    font-weight: normal;
}




.category-page {
    width: 100%;
    min-height: 900px;

    background-color: #7fa9d6;

    padding: 55px 30px 100px;

    box-sizing: border-box;
}

.category-page-header {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto 40px;
}



.category-page-header h1 {
    margin: 0 0 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;

    color: #111111;
}

.category-description {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #222222;
}


/* CATEGORY PRODUCT GRID */

.category-product-grid {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.category-product {
    min-width: 0;
}

.category-product-image-link {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #eeeeee;
}

.category-product-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.2s ease;
}

.category-product-image-link:hover .category-product-image {
    transform: scale(1.015);
}

.category-product-details {
    padding-top: 12px;
}

.category-product-name {
    display: block;

    margin-bottom: 6px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    text-decoration: none;
}

.category-product-name:hover {
    text-decoration: underline;
}

.category-product-price {
    margin: 0 0 14px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.add-to-cart-button {
    width: 100%;

    padding: 13px 18px;

    border: 1px solid #222222;
    background-color: #222222;

    color: white;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;

    letter-spacing: 0.8px;

    cursor: pointer;
}

.add-to-cart-button:hover {
    background-color: #444444;
}

@media (max-width: 800px) {

    .category-product-grid {
        grid-template-columns: 1fr;
    }

}



/* ========================================
   SHOPPING CART
   ======================================== */

.cart-page {
    width: 100%;
    min-height: 800px;

    background-color: #7fa9d6;

    padding: 55px 30px 100px;

    box-sizing: border-box;
}

.cart-page-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.cart-page h1 {
    margin: 0 0 35px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;
}

.cart-empty-message {
    padding: 50px 0;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.cart-items {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1fr)
        150px
        150px;

    gap: 24px;

    align-items: center;

    padding: 20px;

    background-color: white;

    border: 1px solid rgba(0, 0, 0, 0.12);
}

.cart-item-image {
    display: block;

    width: 130px;
    height: 130px;

    object-fit: cover;
}

.cart-item-info h2 {
    margin: 0 0 7px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
}

.cart-item-price {
    margin: 0;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.cart-quantity {
    display: flex;
    align-items: center;

    border: 1px solid #bbbbbb;

    width: max-content;
}

.cart-quantity button {
    width: 38px;
    height: 38px;

    border: none;

    background-color: white;

    color: #222222;

    font-size: 20px;

    cursor: pointer;
}

.cart-quantity span {
    width: 42px;

    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 14px;
}

.cart-item-right {
    text-align: right;
}

.cart-item-total {
    margin-bottom: 14px;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
}

.cart-remove-button {
    border: none;

    background: transparent;

    color: #555555;

    font-family: Arial, sans-serif;
    font-size: 11px;

    text-decoration: underline;

    cursor: pointer;
}


/* TOTALS */

.cart-summary {
    width: 420px;

    margin: 35px 0 0 auto;

    padding: 25px;

    box-sizing: border-box;

    background-color: white;

    border: 1px solid rgba(0, 0, 0, 0.12);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;

    padding: 10px 0;

    color: #222222;

    font-family: Arial, sans-serif;
    font-size: 14px;
}

.cart-summary-row + .cart-summary-row {
    border-top: 1px solid #dddddd;

    margin-top: 8px;
    padding-top: 18px;

    font-size: 17px;
}

.cart-checkout-button {
    width: 100%;

    margin-top: 20px;

    padding: 16px;

    border: none;

    background-color: #222222;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;
}

.cart-checkout-button:hover {
    background-color: #444444;
}


@media (max-width: 750px) {

    .cart-item {
        grid-template-columns: 90px 1fr;
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-quantity,
    .cart-item-right {
        grid-column: 2;
    }

    .cart-item-right {
        text-align: left;
    }

    .cart-summary {
        width: 100%;
    }

}


.cart-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: inherit;
    text-decoration: none;
}

.cart-count {
    position: absolute;

    top: -8px;
    right: -10px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    box-sizing: border-box;

    border-radius: 999px;

    background-color: #111111;
    color: white;

    display: none;
    align-items: center;
    justify-content: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;

    pointer-events: none;
}



/* ========================================
   SHOPPING CART — POLISHED LAYOUT
   ======================================== */

.cart-page {
    min-height: 850px;
    padding: 55px 40px 110px;
}

.cart-page-inner {
    width: 100%;
    max-width: none;

    margin: 0;

    box-sizing: border-box;
}


/* HEADER */

.cart-page-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 36px;
}

.cart-page-heading h1 {
    margin: 0 0 8px;

    font-size: 42px;
    line-height: 1;
}

.cart-page-subtitle {
    margin: 0;

    color: #263646;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.cart-continue-shopping {
    margin-bottom: 3px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;

    text-decoration: none;
}

.cart-continue-shopping:hover {
    text-decoration: underline;
}


/* TWO-COLUMN CART */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;

    gap: 30px;

    align-items: start;
}

.cart-main-column {
    min-width: 0;
}


/* PRODUCT ROWS */

.cart-items {
    gap: 14px;
}

.cart-item {
    grid-template-columns:
        145px
        minmax(0, 1fr)
        155px
        150px;

    gap: 26px;

    padding: 22px;

    border: none;
    border-radius: 2px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
    width: 145px;
    height: 145px;
}

.cart-item-info h2 {
    margin-bottom: 9px;

    font-size: 18px;
    font-weight: normal;
}

.cart-item-price {
    color: #626262;
    font-size: 13px;
}


/* QUANTITY */

.cart-quantity {
    border: 1px solid #c7c7c7;
    background-color: white;
}

.cart-quantity button {
    width: 40px;
    height: 40px;

    font-size: 19px;
}

.cart-quantity span {
    width: 44px;
}


/* ITEM TOTAL */

.cart-item-total {
    margin-bottom: 12px;

    font-size: 16px;
}

.cart-remove-button {
    color: #666666;

    font-size: 11px;
}


/* ORDER SUMMARY */

.cart-summary {
    width: 100%;
    margin: 0;

    padding: 28px;

    border: none;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    position: sticky;
    top: 105px;
}

.cart-summary h2 {
    margin: 0 0 22px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.cart-summary-row {
    padding: 11px 0;
}

.cart-summary-total {
    margin-top: 12px;
    padding-top: 18px;

    border-top: 1px solid #dddddd;

    font-size: 18px;
}

.cart-summary-note {
    margin: 17px 0 0;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.5;
}

.cart-checkout-button {
    margin-top: 22px;

    padding: 18px;

    font-size: 13px;
}


/* EMPTY CART */

.cart-empty-message {
    padding: 60px 35px;

    background-color: rgba(255, 255, 255, 0.65);

    font-size: 16px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

}

@media (max-width: 700px) {

    .cart-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cart-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-quantity,
    .cart-item-right {
        grid-column: 2;
    }

}


/* ========================================
   CHECKOUT / FINANCIAL COMPARISON
   ======================================== */

.checkout-page {
    width: 100%;
    min-height: 850px;

    background-color: #7fa9d6;

    padding: 55px 40px 110px;

    box-sizing: border-box;
}

.checkout-page-inner {
    width: 100%;
    max-width: none;

    margin: 0;

    box-sizing: border-box;
}

.checkout-heading {
    margin-bottom: 32px;
}

.checkout-heading h1 {
    margin: 0 0 10px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;
}

.checkout-heading p {
    margin: 0;

    color: #263646;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}


/* CART TOTAL */

.checkout-total-panel {
    border: 3px solid #7f878e;

    
    background:
    linear-gradient(
        180deg,
        #f7f8f9 0%,
        #e2e5e7 35%,
        #c8cdd1 68%,
        #eef0f1 100%
    );


    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.95),
        inset 0 -3px 0 rgba(70, 80, 90, 0.18),
        0 4px 10px rgba(0, 0, 0, 0.16);

    padding: 38px 40px;
}

.checkout-total-label {
    color: #4f5961;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

#checkout-total {
    color: #111111;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7);
}

#checkout-item-count {
    margin: 0;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}


/* COMPARISON AREA */

.checkout-comparison-section {
    margin-top: 32px;

    padding: 34px 40px 45px;

    background-color: white;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.checkout-comparison-heading {
    padding-bottom: 24px;

    border-bottom: 1px solid #dddddd;
}

.checkout-comparison-heading h2 {
    margin: 0 0 8px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.checkout-comparison-heading p {
    margin: 0;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.checkout-comparisons {
    margin-top: 28px;
}


@media (max-width: 700px) {

    .checkout-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .checkout-total-panel,
    .checkout-comparison-section {
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* ========================================
   CATALOG PAGE — BARE BONES
   ======================================== */

.catalog-page {
    width: 100%;
    min-height: 900px;

    background-color: #7fa9d6;

    padding: 28px 30px 100px;

    box-sizing: border-box;
}

.catalog-page-inner {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}

.catalog-page-heading {
    margin-bottom: 35px;
}

.catalog-page-heading h1 {
    margin: 0;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: bold;
}


/* PRODUCT COUNT + SORTING BAR */

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding-bottom: 18px;
    margin-bottom: 28px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.catalog-product-count {
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.catalog-sort {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-left: auto;
}

.catalog-sort label {
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
}

.catalog-sort select {
    min-width: 200px;

    padding: 9px 34px 9px 12px;

    border: 1px solid rgba(0, 0, 0, 0.35);
    background-color: white;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    cursor: pointer;
}


/* EMPTY GRID FOR FUTURE INVENTORY */

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px 18px;
}



/* ========================================
   CATALOG — SORTED RESULTS
   ======================================== */

.catalog-sort-results {
    width: 100%;
}


.catalog-best-selling-empty {
    min-height: 190px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    padding: 35px 25px 20px;

    box-sizing: border-box;

    text-align: center;
}


.catalog-page.catalog-best-selling-mode {
    min-height: 0;
    padding-bottom: 45px;
}


.catalog-best-selling-empty-title {
    margin-bottom: 18px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 30px;
    font-weight: 900;

    color: #111111;
}


.catalog-best-selling-empty p {
    max-width: 700px;

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;
    font-weight: bold;

    line-height: 1.6;

    color: #222222;
}




/* ========================================
   CHECKOUT — DREAM COMPARISONS
   ======================================== */

.checkout-comparisons {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


.dream-card {
    position: relative;

    min-width: 0;

    padding: 28px 26px 30px;

    box-sizing: border-box;

    border: 1px solid #d4d4d4;

    background-color: #f7f7f7;

    color: #222222;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


.dream-card h3 {
    margin: 0 0 5px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
}


.dream-title {
    margin-bottom: 27px;

    color: #5e6870;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* PERCENTAGE STAT */

.dream-stat {
    margin-bottom: 24px;
}


.dream-stat strong {
    display: block;

    margin-bottom: 7px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1;
}


.dream-stat span {
    display: block;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.55;
}


/* THERESA KIT TOTAL */

.dream-kit-stat {
    margin: 18px 0 5px;
}


.dream-kit-stat strong {
    display: block;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    line-height: 1;
}


.dream-kit-stat span {
    display: block;

    margin-top: 7px;

    color: #157734;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}


.dream-kit-explanation {
    margin: 8px 0 27px;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


/* EXPLANATION */

.dream-description {
    margin: 0;

    padding-top: 20px;

    border-top: 1px solid #dddddd;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}


/* SUCCESS MESSAGE */

.dream-achievement-banner {
    display: none;

    margin: -28px -26px 24px;
    padding: 16px 18px;

    background-color: #198c3d;

    color: white;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.45;

    text-align: center;
}


/* DREAM ACHIEVED */

.dream-card.dream-achieved {
    background-color: #effff1;

    border: 6px solid;

    border-image:
        repeating-linear-gradient(
            45deg,
            #ffca28 0 9px,
            #ef5350 9px 18px,
            #42a5f5 18px 27px,
            #66bb6a 27px 36px,
            #ab47bc 36px 45px
        ) 1;

    box-shadow:
        0 0 0 4px rgba(35, 165, 76, 0.25),
        0 5px 18px rgba(0, 0, 0, 0.15);
}


.dream-card.dream-achieved
.dream-achievement-banner {
    display: block;
}


.dream-card.dream-achieved
.dream-stat strong,

.dream-card.dream-achieved
.dream-kit-stat strong {
    color: #157734;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .checkout-comparisons {
        grid-template-columns: 1fr;
    }

}


/* ========================================
   CHECKOUT — DREAM COMPARISONS
   ======================================== */

.checkout-comparisons {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


.dream-card {
    position: relative;

    min-width: 0;

    padding: 28px 26px 30px;

    box-sizing: border-box;

    border: 1px solid #d4d4d4;

    background-color: #f7f7f7;

    color: #222222;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


.dream-card h3 {
    margin: 0 0 5px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
}


.dream-title {
    margin-bottom: 27px;

    color: #5e6870;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* PERCENTAGE STAT */

.dream-stat {
    margin-bottom: 24px;
}


.dream-stat strong {
    display: block;

    margin-bottom: 7px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1;
}


.dream-stat span {
    display: block;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.55;
}


/* THERESA KIT TOTAL */

.dream-kit-stat {
    margin: 18px 0 5px;
}


.dream-kit-stat strong {
    display: block;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    line-height: 1;
}


.dream-kit-stat span {
    display: block;

    margin-top: 7px;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}


.dream-kit-explanation {
    margin: 8px 0 27px;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


/* EXPLANATION */

.dream-description {
    margin: 0;

    padding-top: 20px;

    border-top: 1px solid #dddddd;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}


/* SUCCESS MESSAGE */

.dream-achievement-banner {
    display: none;

    margin: -28px -26px 24px;
    padding: 16px 18px;

    background-color: #198c3d;

    color: white;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.45;

    text-align: center;
}


/* DREAM ACHIEVED */

.dream-card.dream-achieved {
    background-color: #effff1;

    border: 6px solid;

    border-image:
        repeating-linear-gradient(
            45deg,
            #ffca28 0 9px,
            #ef5350 9px 18px,
            #42a5f5 18px 27px,
            #66bb6a 27px 36px,
            #ab47bc 36px 45px
        ) 1;

    box-shadow:
        0 0 0 4px rgba(35, 165, 76, 0.25),
        0 5px 18px rgba(0, 0, 0, 0.15);
}


.dream-card.dream-achieved
.dream-achievement-banner {
    display: block;
}


.dream-card.dream-achieved
.dream-stat strong,

.dream-card.dream-achieved
.dream-kit-stat strong {
    color: #157734;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .checkout-comparisons {
        grid-template-columns: 1fr;
    }

}



.sarah-annual-message {
    margin: 5px 0 24px;

    padding: 14px 16px;

    border-left: 3px solid rgba(0, 0, 0, 0.25);

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.55;
}

/* ========================================
   DREAM COLUMNS — CONTENT REFINEMENTS
   ======================================== */

.dream-stat {
    margin-bottom: 28px;
}

.dream-stat-detail {
    margin: 8px 0 0;

    color: #444444;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.55;
}

.dream-stat-detail strong {
    display: block;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    font-weight: bold;
    line-height: 1;

    margin: 7px 0;
}


.dream-stat-detail strong {
    text-align: center;
}

.dream-kit-stat {
    text-align: center;
}



/* SECONDARY GOALS ARE HIDDEN UNTIL
   THE PRIMARY GOAL IS COMPLETED */

.dream-secondary-stat {
    display: none;

    position: relative;

    padding-top: 28px;

    border-top: 1px solid #dddddd;
}

#sarah-annual-section::before,
#pedrick-ppl-section::before {
    content: "AND";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(
        -50%,
        -50%
    );

    padding: 0 12px;

    background-color: #f7f7f7;

    color: #555555;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}

.dream-card.dream-achieved
#sarah-annual-section::before,

.dream-card.dream-achieved
#pedrick-ppl-section::before {
    background-color: #effff1;
}



/* SUCCESS MESSAGE AT BOTTOM */

.dream-success-footer {
    display: none;

    margin-top: 30px;
    padding-top: 20px;

    border-top: 2px solid #279847;

    color: #157734;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.45;

    text-align: center;
}

.dream-card.dream-achieved
.dream-success-footer {
    display: block;
}

/* DREAM COMPARISON — READABILITY */

.dream-stat-detail {
    font-size: 18px;
    line-height: 1.5;
}

.dream-kit-explanation {
    font-size: 17px;
    line-height: 1.5;
}



/* ========================================
   CHECKOUT — SILVER FUNDRAISING TREATMENT
   ======================================== */

.checkout-total-panel {
    border: 2px solid #9ba3aa;

    background:
        linear-gradient(
            180deg,
            #fafafa 0%,
            #e2e5e8 42%,
            #f7f8f9 100%
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(90, 100, 110, 0.15),
        0 3px 9px rgba(0, 0, 0, 0.10);
}

.checkout-comparison-section {
    border: 2px solid #9ba3aa;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 3px 9px rgba(0, 0, 0, 0.08);
}


.cart-quantity-input {
    width: 52px;
    height: 40px;

    box-sizing: border-box;

    border: none;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;

    background-color: white;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    text-align: center;

    outline: none;

    appearance: textfield;
}

.cart-quantity-input:focus {
    background-color: #f4f6f7;

    box-shadow:
        inset 0 0 0 2px #7fa9d6;
}

.cart-quantity-input::-webkit-inner-spin-button,
.cart-quantity-input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}


/* ========================================
   CHECKOUT TOTAL — STRONG SILVER BAR
   ======================================== */

.checkout-total-panel {
    position: relative;

    padding: 38px 40px;

    border: 3px solid #747c82;

    background:
        linear-gradient(
            180deg,
            #f4f6f7 0%,
            #d2d7da 46%,
            #aeb5ba 48%,
            #c3c9cd 52%,
            #e5e8ea 100%
        );

    box-shadow:
        inset 0 2px 0 #ffffff,
        inset 0 -2px 0 #8d959b,
        0 3px 7px rgba(0, 0, 0, 0.18);
}


/* LABEL */

.checkout-total-label {
    display: block;

    margin-bottom: 10px;

    color: #3f474d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


/* BIG TOTAL */

#checkout-total {
    display: block;

    margin-bottom: 12px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8);
}


/* ITEM COUNT */

#checkout-item-count {
    margin: 0;

    color: #3f474d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}





.checkout-total-panel {
    background:
        linear-gradient(
            135deg,
            #f7f8f9 0%,
            #d8dde0 28%,
            #b8c0c5 52%,
            #d2d7da 74%,
            #f1f3f4 100%
        );

    border: 3px solid #747c82;

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(90, 98, 105, 0.3),
        0 3px 7px rgba(0, 0, 0, 0.18);
}


.cease-desist-to-line {
    white-space: nowrap;
}


.cease-desist-letter #generated-correct-information-inline {
    font-weight: 700;
}




.legal-final-thanks {
    font-size: 13px;
    line-height: 1.5;
}

.legal-final-thanks-line {
    display: block;
    white-space: nowrap;
}

@media (max-width: 800px) {

    .legal-final-thanks-line {
        white-space: normal;
    }

}



.legal-real-representative-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 14px;

    box-sizing: border-box;

    padding: 16px 24px;

    border: 1px solid #641616;

    background:
        linear-gradient(
            180deg,
            #a72b2b 0%,
            #841d1d 100%
        );

    color: white;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.4px;

    text-align: center;
    text-decoration: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.15);
}

.legal-real-representative-button:hover {
    background:
        linear-gradient(
            180deg,
            #b73333 0%,
            #912222 100%
        );
}



.legal-final-thanks {
    margin: 28px 0 34px;
    padding: 18px 24px;

    background:
        linear-gradient(
            90deg,
            rgba(177, 40, 40, 0.14) 0%,
            rgba(244, 231, 184, 0.92) 22%,
            rgba(239, 222, 157, 0.96) 50%,
            rgba(213, 228, 184, 0.92) 78%,
            rgba(48, 111, 66, 0.14) 100%
        );

    border: none;
    border-radius: 0;

    box-shadow: none;

    color: #29251b;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;

    text-align: center;

    margin-left: -24px;
margin-right: -24px;
}




.legal-final-thanks span {
    display: block;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .legal-final-thanks span {
        white-space: normal;
    }
}



.meadow-text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80%;
    text-align: center;

    font-size: 48px; /* cut this to about half of what it was before */
    line-height: 1.2;
    font-weight: 700;

    color: #163a70; /* navy blue */

    text-shadow:
        0 1px 0 rgba(255,255,255,0.35),
        0 2px 6px rgba(255,255,255,0.25),
        0 0 14px rgba(255,255,255,0.18);

    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}






/* =========================================================
   PRODUCT CATALOG — GROUPED FEATURED VIEW
   ========================================================= */


.catalog-page {
    padding-bottom: 80px;
}


.catalog-page-inner {
    width: 100%;
    max-width: none;

    margin: 0;

    box-sizing: border-box;
}


.catalog-page-heading {
    padding-top: 0;
    scroll-margin-top: 120px;
}


.catalog-page-heading h1 {
    margin: 0;
}



/* =========================================================
   CATEGORY JUMP NAVIGATION
   ========================================================= */

.catalog-category-jump {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 26px;
    margin-bottom: 0;
}


.catalog-category-jump a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding:
        7px
        15px;

    border:
        1px
        solid
        rgba(
            0,
            0,
            0,
            0.28
        );

    background-color:
        #7fa9d6;

    color:
        #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        14px;

    font-weight:
        bold;

    text-decoration:
        none;

    box-sizing:
        border-box;
}


.catalog-category-jump a:hover {
    background-color:
        #9bbce0;
}



/* =========================================================
   TOOLBAR
   ========================================================= */

.catalog-toolbar {
    display: flex;

    justify-content:
        flex-end;

    align-items:
        center;

    /*
       Pull Sort By upward so it shares
       the same horizontal row as the
       category navigation buttons.
    */

    margin-top:
        -38px;

    padding:
        0
        0
        18px;

    margin-bottom:
        14px;

    /*
       Only ONE divider line.
    */

    border-top:
        none;

    border-bottom:
        1px
        solid
        rgba(
            0,
            0,
            0,
            0.18
        );
}


.catalog-sort {
    display: flex;

    align-items:
        center;

    gap: 9px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        14px;
}


.catalog-sort select {
    min-height:
        38px;

    padding:
        5px
        34px
        5px
        10px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        14px;
}



/* =========================================================
   CATEGORY SECTIONS
   ========================================================= */

.catalog-category-section {
    margin-top:
        60px;

    scroll-margin-top:
        110px;
}


.catalog-category-section:first-child {
    margin-top:
        12px;
}


.catalog-category-heading {
    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        20px;

    padding-bottom:
        12px;

    border-bottom:
        3px
        solid
        #111111;
}



.catalog-heading-left {
    display: flex;

    align-items: baseline;

    gap: 14px;

    flex-wrap: wrap;
}


.catalog-back-to-top {
    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: bold;

    text-decoration: none;

    white-space: nowrap;
}


.catalog-back-to-top:hover {
    text-decoration: underline;
}




.catalog-category-heading h2 {
    margin:
        0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            26px,
            3vw,
            38px
        );

    line-height:
        1.05;
}


.catalog-category-count {
    flex-shrink:
        0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        13px;

    font-weight:
        bold;
}



/* =========================================================
   JEWELRY COLLECTION JUMP NAV
   ========================================================= */

.catalog-collection-jump {
    display: flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        16px;

    margin-bottom:
        12px;
}


.catalog-collection-jump a {
    padding:
        6px
        10px;

    border:
        1px
        solid
        rgba(
            0,
            0,
            0,
            0.22
        );

    background-color:
        #ffffff;

    color:
        #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        12px;

    font-weight:
        bold;

    text-decoration:
        none;
}


.catalog-collection-jump a:hover {
    background-color:
        #eeeeee;
}



/* =========================================================
   COLLECTION SECTIONS
   ========================================================= */

.catalog-collection-section {
    margin-top:
        36px;

    scroll-margin-top:
        110px;
}


.catalog-collection-heading {
    display: flex;

    justify-content:
        space-between;

    align-items:
        baseline;

    gap:
        20px;

    margin-bottom:
        14px;

    padding-bottom:
        8px;

    border-bottom:
        1px
        solid
        rgba(
            0,
            0,
            0,
            0.22
        );
}


.catalog-collection-heading h3 {
    margin:
        0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        20px;

    line-height:
        1.2;
}


.catalog-collection-heading span {
    flex-shrink:
        0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        12px;
}



/* =========================================================
   PRODUCT GRID
   ========================================================= */

.catalog-collection-grid {
    display:
        grid;

    grid-template-columns:
    repeat(
        4,
        minmax(
            0,
            1fr
        )
    );

    gap:
        32px
        24px;
}



/* =========================================================
   PRODUCT CARD
   ========================================================= */

.catalog-product-card {
    min-width:
        0;
}


.catalog-product-image-frame {
    width:
        100%;

    aspect-ratio:
        1 / 1;

    overflow:
        hidden;

    background-color:
        #ffffff;

    border:
        1px
        solid
        rgba(
            0,
            0,
            0,
            0.14
        );

    box-sizing:
        border-box;
}


.catalog-product-image {
    display:
        block;

    width:
        100%;

    height:
        100%;

    padding:
        4px;

    object-fit:
        contain;

    box-sizing:
        border-box;
}




.catalog-product-title {
    margin-top:
        10px;

    color:
        #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        16px;

    font-weight:
        bold;

    line-height:
        1.25;

    text-align:
        center;
}




.catalog-product-price {
    margin-top:
        8px;

    color:
        #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        15px;

    font-weight:
        bold;

    text-align:
        center;
}




.catalog-add-to-cart-button {
    display:
        block;

    width:
        100%;

    min-height:
        42px;

    margin-top:
        10px;

    padding:
        9px
        12px;

    border:
        1px
        solid
        #111111;

    background-color:
        #7fa9d6;

    color:
        #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        13px;

    font-weight:
        bold;

    cursor:
        pointer;

    box-sizing:
        border-box;
}


.catalog-add-to-cart-button:hover {
    background-color:
        #9bbce0;
}


.catalog-add-to-cart-button:disabled {
    cursor:
        default;

    opacity:
        0.75;
}





/* =========================================================
   CATALOG RESPONSIVE
   ========================================================= */

@media (
    max-width: 700px
) {

    .catalog-page-inner {
        width:
            min(
                100% - 24px,
                1400px
            );
    }


    .catalog-category-heading {
        align-items:
            center;
    }


    .catalog-category-heading h2 {
        font-size:
            27px;
    }


    .catalog-collection-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            20px
            12px;
    }


    .catalog-toolbar {
        justify-content:
            flex-start;
    }

}







/* ========================================
   SITE-WIDE SELECTION LOCK
   ======================================== */

html,
body,
body *,
body *::before,
body *::after {
    -webkit-user-select: none !important;
    user-select: none !important;

    -webkit-touch-callout: none !important;
}






/* =========================================================
   SITE SEARCH
   ========================================================= */

body.site-search-open {
    overflow: hidden;
}


.site-search-overlay {
    position: fixed;
    inset: 0;

    display: none;
    align-items: flex-start;
    justify-content: center;

    padding: 11vh 20px 30px;

    box-sizing: border-box;

    background:
        rgba(0, 0, 0, 0.62);

    z-index: 20000;
}


.site-search-overlay.open {
    display: flex;
}


.site-search-panel {
    position: relative;

    width: min(
        760px,
        100%
    );

    padding: 34px;

    box-sizing: border-box;

    background-color: white;

    border:
        1px solid
        rgba(0, 0, 0, 0.18);

    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.36);
}


.site-search-close {
    position: absolute;

    top: 8px;
    right: 12px;

    width: 38px;
    height: 38px;

    padding: 0;

    border: none;

    background: transparent;

    color: #111111;

    font-size: 31px;
    line-height: 1;

    cursor: pointer;
}


.site-search-heading {
    margin-bottom: 20px;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 27px;
    font-weight: bold;
}


.site-search-form {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 10px;
}


.site-search-input {
    width: 100%;
    min-width: 0;

    height: 50px;

    padding: 0 16px;

    box-sizing: border-box;

    border:
        1px solid
        #777777;

    background-color: white;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    outline: none;
}


.site-search-input:focus {
    border-color: #111111;

    box-shadow:
        inset 0 0 0 1px
        #111111;
}


.site-search-submit {
    min-width: 120px;

    padding: 0 22px;

    border:
        1px solid
        #222222;

    background-color:
        #222222;

    color: white;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;
}


.site-search-submit:hover {
    background-color:
        #444444;
}


.site-search-helper {
    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    margin-top: 10px;

    color: #666666;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
}


.site-search-character-count {
    flex-shrink: 0;
}


/* =========================================================
   CATALOG SEARCH RESULTS
   ========================================================= */

.catalog-search-results-heading {
    display: flex;

    justify-content:
        space-between;

    align-items: flex-end;

    gap: 30px;

    margin:
        15px 0 30px;

    padding-bottom: 16px;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.24);
}


.catalog-search-results-heading h2 {
    margin: 0;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 30px;
}


.catalog-search-results-meta {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;

    color: #333333;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
}


.catalog-search-results-meta a {
    color: #111111;

    font-weight: bold;

    text-decoration:
        underline;
}


.catalog-search-empty {
    padding: 70px 20px;

    background-color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    color: #222222;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    text-align: center;
}


/* =========================================================
   PRODUCT IMAGE VIEWER
   ========================================================= */

.catalog-product-image {
    cursor: zoom-in;
}


body.catalog-image-viewer-open {
    overflow: hidden;
}


.catalog-image-viewer {
    position: fixed;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background:
        rgba(0, 0, 0, 0.78);

    z-index: 25000;
}


.catalog-image-viewer.open {
    display: flex;
}


.catalog-image-viewer-panel {
    position: relative;

    display: grid;

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    width:
        min(
            1180px,
            calc(
                100vw - 40px
            )
        );

    height:
        min(
            90vh,
            900px
        );

    overflow: hidden;

    background-color: white;

    box-shadow:
        0 20px 70px
        rgba(0, 0, 0, 0.5);
}


.catalog-image-viewer-close {
    position: absolute;

    top: 10px;
    right: 14px;

    width: 42px;
    height: 42px;

    z-index: 3;

    padding: 0;

    border: none;

    border-radius: 50%;

    background-color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    color: #111111;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 1px 7px
        rgba(0, 0, 0, 0.18);
}


.catalog-image-viewer-stage {
    min-width: 0;
    min-height: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: auto;

    padding: 35px;

    box-sizing: border-box;

    background-color:
        #f3f3f3;
}


.catalog-image-viewer-image {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    transform:
        scale(1);

    transform-origin:
        center center;

    transition:
        transform
        0.18s ease;

    cursor: zoom-in;
}


.catalog-image-viewer-image.is-zoomed {
    cursor: zoom-out;
}


.catalog-image-viewer-footer {
    min-height: 72px;

    display: flex;

    align-items: center;
    justify-content:
        space-between;

    gap: 25px;

    padding: 14px 22px;

    box-sizing: border-box;

    border-top:
        1px solid
        #dddddd;

    background-color:
        white;
}


.catalog-image-viewer-caption {
    min-width: 0;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;
    font-weight: bold;
}


.catalog-image-viewer-controls {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.catalog-image-viewer-controls button {
    width: 36px;
    height: 36px;

    border:
        1px solid
        #999999;

    background-color:
        white;

    color: #111111;

    font-size: 21px;

    cursor: pointer;
}


.catalog-image-viewer-controls button:hover:not(:disabled) {
    background-color:
        #eeeeee;
}


.catalog-image-viewer-controls button:disabled {
    opacity: 0.35;

    cursor: default;
}


.catalog-image-zoom-level {
    min-width: 52px;

    color: #333333;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    text-align: center;
}


@media (
    max-width: 650px
) {

    .site-search-form {
        grid-template-columns:
            1fr;
    }


    .site-search-submit {
        height: 46px;
    }


    .catalog-search-results-heading {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 10px;
    }


    .catalog-image-viewer {
        padding: 10px;
    }


    .catalog-image-viewer-panel {
        width:
            calc(
                100vw - 20px
            );

        height:
            calc(
                100vh - 20px
            );
    }


    .catalog-image-viewer-stage {
        padding: 20px;
    }


    .catalog-image-viewer-footer {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 10px;
    }

}

#theresa-kit-label {
    color: #157734;
}

.dream-stat-detail strong,
.dream-kit-stat {
    text-align: left;
}






