:root {
    /* --- Colors: Main & Backgrounds --- */
    --color-main: #221002;
    --color-bg-body: #fdfbf7;
    --color-bg-dark-red: #8f0c0c;
    --color-bg-light-gray: #f0f0f0;
    --color-bg-very-light-gray: #fcfcfc;

    /* --- Colors: Accents --- */
    --color-accent-red: #bd5449;
    --color-accent-blue: #495b8a;
    --color-accent-gold: #B8860B;

    /* --- Colors: Text --- */
    --color-text-light: #fff;
    --color-text-dark: #333;
    --color-text-gray: #555;
    --color-text-gray-light: #666;

    /* --- Colors: Borders --- */
    --color-border: #ddd;
    --color-border-light: #e0e0e0;
    --color-border-lighter: #ccc;

    /* --- Colors: Status / Rank --- */
    --color-line-green: #06C755;
    --color-dark-green: #006400;
    --color-rank-silver: #C0C0C0;
    --color-rank-bronze: #CD7F32;

    /* --- Overlays --- */
    --color-overlay-white-light: rgba(255, 255, 255, 0.05);
    --color-overlay-white-medium: rgba(255, 255, 255, 0.65);
    --color-overlay-white-heavy: rgba(255, 255, 255, 0.9);

    --color-overlay-black-0: rgba(0, 0, 0, 0);
    --color-overlay-black-weak: rgba(0, 0, 0, 0.07);
    --color-overlay-black-mid: rgba(0, 0, 0, 0.25);
    --color-overlay-black-strong: rgba(0, 0, 0, 0.5);

    /* --- Typography --- */
    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', serif;
    /* 'Noto Serif JP',  */
    --font-icon: "Font Awesome 6 Free";
}


/* --- Base Styles --- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-base);
    /* background-color: var(--color-bg-dark-red); */
    /* background-image: url('./images/haikei2.jpg'); */
    background-image: url('./images/haikei3.jpg');
    /* background: linear-gradient(to bottom, #a63232 0%, #8f0c0c 50%, #6b0808 100%); */
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: luminosity;
    color: var(--color-main);
    margin: 0;
    overflow-x: hidden;
    position: relative;
}


/* main::before,
main::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.3) 35px,
            rgba(255, 255, 255, 0.3) 70px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.3) 35px,
            rgba(255, 255, 255, 0.3) 70px);
}

main::before {
    left: 0;
}

main::after {
    right: 0;
}

@media (max-width: 768px) {

    main::before,
    main::after {
        width: 30px;
    }
} */

a {
    color: inherit;
    text-decoration: none;
}

/* --- Utilities --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Layout: Header --- */
header {
    background-color: var(--color-main);
    color: var(--color-bg-body);
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px var(--color-overlay-black-mid);
    z-index: 100;
}

.header__container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    position: relative;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    line-height: 1px;
}

.header__logo a {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-bg-body);
    text-decoration: none;
}

.header__logo h1 {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100vw;
    }

    .header__logo-img {
        width: 30%;
        height: auto;
    }
}

main {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: left;
    position: relative;
    height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero__content {
    color: #ffffff;
    background: transparent;
    padding: clamp(0.4rem, 1.4vw, 1rem);
    border-radius: 0;
    max-width: min(840px, 92%);
    width: 100%;
    margin: 0 1rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    text-align: left;
    align-self: flex-end;
    transform: translateY(6%);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.hero__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 6.5vw, 4.6rem);
    line-height: 1.02;
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.01em;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.80), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero__content p {
    font-family: var(--font-serif);
    margin: 0.3rem 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.95rem, 2.2vw, 1.45rem);
    line-height: 1.6;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.80), 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

.hero__date {
    font-size: 2rem;
}

@media (min-width: 769px) {
    .hero__content {
        margin-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 62vh;
        align-items: flex-start;
        padding-top: 6vw;
    }

    .hero__content {
        align-self: center;
        text-align: center;
        transform: translateY(0);
        padding: 1rem 1.25rem;
        max-width: 94%;
    }

    .hero__content h2 {
        font-size: clamp(1.6rem, 7.5vw, 2.6rem);
    }
}

.slider-section {
    margin-bottom: 3rem;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.mySwiper {
    height: auto;
    overflow: hidden;
}

.swiper-wrapper {
    height: auto;
    transition-timing-function: linear;
}

.swiper-slide {
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.diagnosis {
    max-width: 800px;
    margin: 6rem auto;
    text-align: center;
}

.diagnosis-container {
    background: var(--color-overlay-white-medium);
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question-step.is-hidden,
.diagnosis-result.is-hidden {
    display: none;
}

.question-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.answer-btn {
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: bold;
    background-color: var(--color-text-light);
    color: var(--color-main);
    border: 2px solid var(--color-main);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    max-width: 500px;
}

.answer-btn:hover {
    background-color: var(--color-main);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.result-card {
    animation: fadeIn 0.5s ease-in-out;
}

.result-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.result-type {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.result-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.result-image {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.recommend-styles {
    max-width: 1100px;
    margin: 6rem auto;
    text-align: center;
}

.styles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.style-card {
    background-color: var(--color-text-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--color-overlay-black-weak);
}

.style-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.style-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin: 1.5rem 1rem 0.5rem;
}

.style-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.benefits {
    max-width: 900px;
    margin: 6rem auto 4rem;
    text-align: center;
}

.benefits__inner {
    background: var(--color-overlay-white-heavy);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1rem;
}

.benefits__item {
    flex: 1;
    min-width: 100px;
}

.benefits__item i {
    font-size: 2.5rem;
    /* color: var(--color-accent-gold); */
    color: var(--color-bg-dark-red);
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.benefits__item:hover i {
    transform: scale(1.1);
}

.benefits__item span {
    display: block;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1.5;
    font-size: 1rem;
}

.style-button {
    display: block;
    background-color: var(--color-accent-gold);
    color: var(--color-bg-body);
    text-decoration: none;
    padding: 0.8rem 1rem;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.style-button:hover {
    opacity: 0.9;
}

.novelty {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
}

.section-title {
    font-family: var(--font-serif);
    color: var(--color-text-light);
    padding: 2rem 2rem;
    margin: 0 auto 2rem;
    position: relative;
    text-align: center;
    max-width: 500px;
    white-space: nowrap;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--color-text-light);
}

.section-title::before {
    top: 1rem;
}

.section-title::after {
    bottom: 1rem;
}

.novelty-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.novelty-item {
    text-align: center;
    border: 1px solid var(--color-accent-gold);
    border-radius: 8px;
    background-color: var(--color-text-light);
    position: relative;
    padding: 1rem;
    overflow: hidden;
}

.novelty-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;

    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;

}

.novelty-item h3 {
    background: var(--color-accent-gold);
    color: var(--color-bg-body);
    padding: 0.6rem 1.5rem;
    margin: 0 -1rem 1.5rem -1rem;
    position: relative;
    font-size: 1.1rem;
}

.novelty-item h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    border-style: solid;
    border-width: 21px 0 21px 10px;
    border-color: transparent transparent transparent var(--color-accent-gold);
}

.novelty-item h3::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    border-style: solid;
    border-width: 21px 10px 21px 0;
    border-color: transparent var(--color-accent-gold) transparent transparent;
}

.novelty-item p {
    font-size: 0.85rem;
    color: var(--color-text-gray-light);
}

.novelty-description {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-text-light);
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background-color: var(--color-text-light);
    color: var(--color-main);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--color-bg-light-gray);
    border-color: var(--color-border-lighter);
}

.filter-btn.active {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-body);
    border-color: var(--color-accent-gold);
}

.filter-btn[data-category="ladies"].active {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
}

.filter-btn[data-category="mens"].active {
    background-color: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.sort-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 2rem;
}

.sort-container label {
    margin-right: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-text-light);
}

#sort-order {
    font-family: var(--font-serif);
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-border-lighter);
    border-radius: 8px;
    background-color: var(--color-text-light);
    color: var(--color-main);
    cursor: pointer;
    transition: border-color 0.3s;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    transition: opacity 0.2s ease-in-out;
}

.products__grid.is-fading {
    opacity: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    background-color: var(--color-bg-very-light-gray);
    box-shadow: 0 4px 8px var(--color-overlay-black-weak);
}

.product-card__rank {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent-gold);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.product-card__rank.is-ranked {}

.product-card__rank .fa-crown {
    font-size: 3rem;
    line-height: 1;
    text-shadow: 1px 1px 3px var(--color-overlay-black-mid);
}

.product-card__rank .rank-number {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-bg-body);
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 3px var(--color-main);
    white-space: nowrap;
}

.product-card__rank.is-ranked {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.product-card__rank.rank-2 {
    color: var(--color-rank-silver);
}

.product-card__rank.rank-3 {
    color: var(--color-rank-bronze);
}


.product-card::before {
    content: "";
    display: inline-block;
    position: absolute;
    padding: 10px 0;
    left: -40px;
    top: 40px;
    width: 200px;
    text-align: center;
    font-size: 18px;
    line-height: 16px;
    background: var(--color-dark-green);
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-shadow: 0 0 0 2px var(--color-dark-green);
    border-top: dashed 1px var(--color-overlay-white-medium);
    border-bottom: dashed 1px var(--color-overlay-white-medium);
}

@media (max-width: 768px) {
    .product-card::before {
        left: -80px;
    }
}

.product-card__items {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 3rem 0 1.5rem;
}

.product-card__item {
    flex: 1;
    min-width: 0;
}

.product-card__item a {
    display: block;
    text-decoration: none;
}

.product-card__item a:hover img {
    opacity: 0.8;
}

.product-card__item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.product-card__item h3 {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.product-card__item .product-card__price {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-accent-red);
}

.product-card__summary {
    margin-top: 1rem;
}

.product-card__description {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    text-align: left;
    margin: 0 0 1rem;
    padding-top: 0;
}

.product-card__description-title {
    font-size: 0.85em;
    font-weight: bold;
    text-align: left;
    border-top: 1px solid var(--color-border-light);
    padding-top: 0.5em;
    margin-bottom: 0.5em;
}

.product-card__total-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-accent-red);
}

.product-card__button {
    background-color: var(--color-accent-red);
    color: var(--color-bg-body);
    border: none;
    padding: 0.75rem 0;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    width: 100%;
}

@media (max-width: 768px) {
    .product-card__button {
        font-size: .8rem;
    }
}

.product-card__button:hover {
    opacity: 0.9;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.button--line {
    background-color: var(--color-line-green);
    color: var(--color-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-image: linear-gradient(to bottom, var(--color-overlay-white-light), var(--color-overlay-black-0));
    box-shadow: 0 2px 4px var(--color-overlay-black-mid);
}

.button--line:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--color-overlay-black-mid);
}

.button--line .fa-line {
    font-size: 1.3em;
}

.products__grid.single-item-view {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card--single {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    background-color: var(--color-bg-very-light-gray);
    box-shadow: 0 4px 8px var(--color-overlay-black-weak);
}

.product-card--single::before {
    content: "";
    display: inline-block;
    position: absolute;
    padding: 10px 0;
    left: -60px;
    top: 40px;
    width: 200px;
    text-align: center;
    font-size: 18px;
    line-height: 16px;
    background: var(--color-dark-green);
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-shadow: 0 0 0 2px var(--color-dark-green);
    border-top: dashed 1px var(--color-overlay-white-medium);
    border-bottom: dashed 1px var(--color-overlay-white-medium);
}

@media (max-width: 768px) {
    .product-card--single::before {
        left: -80px;
    }
}

.product-card--single img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 3rem;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.product-card--single a:hover img {
    opacity: 0.8;
}

.product-card--single h3 {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.product-card--single .product-card__price {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-accent-red);
}

.product-card--single .product-card__button {
    width: 100%;
}

.pair-view .product-card__item .product-card__price,
.pair-view .product-card__total-price {
    color: var(--color-accent-gold);
}

.pair-view .product-card__button {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.ladies-view .product-card--single .product-card__price {
    color: var(--color-accent-red);
}

.mens-view .product-card--single .product-card__price {
    color: var(--color-accent-blue);
}

.mens-view .product-card--single .product-card__button {
    background-color: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.loan {
    max-width: 1100px;
    margin: 6rem auto 4rem;
    text-align: center;
}

.loan__inner {
    background: var(--color-overlay-white-heavy);
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    padding: 3rem 2rem;
}

.loan__inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 2.5rem;
}

.loan__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-accent-gold);
    color: var(--color-bg-body);
    border: none;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px var(--color-overlay-black-mid);
}

.loan__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-overlay-black-mid);
}

.promo {
    max-width: 1100px;
    margin: 6rem auto 4rem;
    text-align: center;
}

.promo__inner {
    background: var(--color-overlay-white-heavy);
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    padding: 3rem 2rem;
}

.promo__inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 2.5rem;
}

.promo__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-main);
    color: var(--color-bg-body);
    border: none;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px var(--color-overlay-black-mid);
}

.promo__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-overlay-black-mid);
}

.product-card__maker {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-gray-light);
    margin-bottom: 0.25rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .loan__button,
    .promo__button {
        font-size: .9rem;
    }

    .loan__inner p,
    .promo__inner p {
        font-size: 1rem;
    }
}


#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snow__flake {
    position: absolute;
    color: var(--color-text-light);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: fall linear infinite;
    text-shadow: 1px 1px 2px var(--color-overlay-black-strong), 0 0 5px var(--color-text-light), 0 0 10px var(--color-text-light);
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0);
    }

    100% {
        transform: translateY(110vh) translateX(10vw);
    }
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-line-green);
    color: var(--color-text-light);
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px var(--color-overlay-black-mid);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px var(--color-overlay-black-mid);
    animation-play-state: paused;
}

.floating-cta .fa-line {
    font-size: 2rem;
}

.floating-cta span {
    font-size: 0.9rem;
    line-height: 1.3;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}


@media (max-width: 768px) {
    .benefits__inner {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .novelty {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products__grid.single-item-view {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }

    main {
        padding: 0 1rem 1rem;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .product-card__item h3 {
        font-size: 0.85rem;
    }

    .product-card__item .product-card__price {
        font-size: 0.9rem;
    }

    .product-card__maker {
        font-size: 0.75rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        gap: 0.5rem;
    }

    .floating-cta .fa-line {
        font-size: 1.8rem;
    }

    /* .floating-cta span {
        display: none;
    } */
}


.footer__item h3 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.footer__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__item ul li {
    margin-bottom: 0.75rem;
}

.footer__item a {
    color: var(--color-bg-body);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__item a:hover {
    opacity: 0.8;
}

.footer__item p {
    line-height: 1.8;
    font-size: 0.9rem;
}




.footer {
    padding: 60px 0;
    background-color: var(--color-main);
    color: var(--color-text-light);
    font-size: 14px;
    /* margin-top: 4rem; */
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
    margin-left: .3em;
}

.footer a {
    color: var(--color-text-light);
}

.footer a:hover {
    text-decoration: underline;
}

.footer a[target="_blank"]::after {
    font-family: var(--font-icon);
    font-weight: 900;
    content: "\f35d";
    font-size: 0.8em;
    margin-left: 0.4em;
    display: inline-block;
    vertical-align: middle;
}

.footer__toggle {
    padding: 0 20px 0 0;
    margin: 1rem 0;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .footer__toggle {
        position: relative;
        cursor: pointer;
        padding: 0 20px 0 0;
        margin: 1rem 0;
    }

    .footer__toggle::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.427 7.427l3.573 3.573 3.573-3.573c.39-.39 1.024-.39 1.414 0s.39 1.024 0 1.414l-4.28 4.28c-.39.39-1.024.39-1.414 0l-4.28-4.28c-.39-.39-.39-1.024 0-1.414s1.024-.39 1.414 0z'/%3e%3c/svg%3e");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
    }

    .footer__item.is-open .footer__toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .footer__links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .footer__item.is-open .footer__links {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
    }

    .footer__item .footer__links li {
        background-color: var(--color-overlay-white-light);
        border-top: 1px solid var(--color-overlay-white-light);
        padding: 12px 10px;
        margin-bottom: 0;
        margin-top: 0;
    }
}

.footer__copyright {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding: 2em 0;
}

.footer__address {
    font-style: normal;
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1010;
}

.header__hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(70vw, 400px);
    height: 100%;
    background-color: var(--color-overlay-white-heavy);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
    z-index: 1005;
}

.header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.header__nav ul {
    list-style: none;
    padding: 5rem 1.25rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    height: 100%;
}

.header__nav li {
    margin: 0;
    width: 100%;
}

.header__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: background-color 0.22s ease, transform 0.18s ease;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header__nav a {
        font-size: 1rem;
    }
}

.header__nav a:hover {
    transform: translateX(-4px);
}

.header__nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.header__nav-close:hover {
    transform: scale(1.1);
}

.header__nav-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 16px;
}

body.no-scroll {
    overflow: hidden;
}

.header__nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay-black-strong);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.header__nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}


.novelty-conditions {
    background: var(--color-overlay-white-heavy);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: left;
    color: var(--color-main);
}

.novelty-conditions .section-subtitle {
    font-family: var(--font-serif);
    text-align: center;
    color: var(--color-main);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-bg-dark-red);
}

.novelty-list-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.novelty-item-simple {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--color-border-light);
}

.novelty-item-simple:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.novelty-item__icon {
    flex-shrink: 0;
    color: var(--color-bg-dark-red);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.novelty-item__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.novelty-item__condition {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    font-weight: bold;
}

.novelty-item__reward {
    font-size: 1.05rem;
    color: var(--color-main);
    font-weight: bold;
    font-family: var(--font-serif);
}

@media (max-width: 480px) {
    .novelty-item-simple {
        gap: 0.75rem;
    }
}

.novelty-conditions .description {
    font-size: 0.85rem;
    color: var(--color-text-gray-light);
    margin-top: 0.5rem;
    line-height: 1.5;
}


.novelty-swiper {
    overflow: hidden;
}

@media (min-width: 769px) {
    .novelty-swiper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .novelty-swiper .swiper-wrapper {
        display: contents;
    }

    .novelty-swiper .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
    }
}


@media (max-width: 768px) {
    .novelty-items {
        margin-bottom: 3rem;

        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1rem;
    }
}

.notes {
    max-width: 1100px;
    margin: 6rem auto 4rem;
    text-align: center;
}

.notes__inner {
    background: var(--color-overlay-white-heavy);
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    padding: 3rem 2rem;
    display: block;
    gap: 0;
    text-align: left;
}



.notes__item {
    margin-bottom: 1.5rem;
}

.notes__item ul {
    margin: 0.6rem 0 0 0;
    padding-left: 1.25rem;
    color: var(--color-text-gray);
}

.notes__item ul li {
    margin-bottom: 0.45rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.notes__item ul li::marker {
    color: currentColor;
    font-weight: 700;
}


@media (max-width: 480px) {
    .notes__inner {
        padding: 2rem 1rem;
    }

    .notes__item {
        margin-bottom: 1rem;
    }
}

.notes__item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-main);
    padding-bottom: 0.5rem;
    margin: 0 0 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.notes__item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-gray);
    margin: 0;
}


.wrapping {
    max-width: 1100px;
    margin: 6rem auto 4rem;
    text-align: center;
}

.wrapping__inner {
    padding: 3rem 2rem;
    background-color: var(--color-overlay-white-heavy);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);

    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: center;
}

@media (min-width: 768px) {
    .wrapping__inner {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
}

.wrapping__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapping__text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 1.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .wrapping__text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.wrapping__text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-main);
}

.wrapping__text .note {
    font-size: 0.9rem;
    color: #555;
}


.ribbon-separator {
    display: inline-block;
    position: relative;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    /* background: #012f2c; */
    background: #0c5956;
    color: #FFF;
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.ribbon-separator::before {
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    border-top: dashed 2px #f0b539;
    border-bottom: dashed 2px #f0b539;
    height: 95%;
    width: 100vw;
    color: #f0b539;
}
/* --- Campaign End Section --- */
.campaign-end {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    padding: 2rem 0;
}

.campaign-end__content {
    background: var(--color-overlay-white-heavy);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-overlay-white-light);
    box-shadow: 0 4px 15px var(--color-overlay-black-weak);
    max-width: 800px;
    width: 100%;
}

.campaign-end__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--color-main);
}

.campaign-end__message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
    font-weight: bold;
}

.campaign-end__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .campaign-end__links {
        flex-direction: row;
        justify-content: center;
    }
}

.campaign-end__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 240px;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--color-main);
    color: var(--color-text-light);
    box-shadow: 0 2px 8px var(--color-overlay-black-mid);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-overlay-black-mid);
}

.btn--secondary {
    background-color: transparent;
    border: 2px solid var(--color-main);
    color: var(--color-main);
}

.btn--secondary:hover {
    background-color: var(--color-main);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-overlay-black-mid);
}

