:root {
    --pink: #f3ebde;
    --peach: #ffc6a8;
    --cream: #fff5ec;
    --brown: #5a3e36;
    --sky: #c3f0ff;
}

* {
    box-sizing: border-box;
}

html {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--peach), var(--sky));
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, rgba(243, 235, 222, 0.96), rgba(255, 198, 168, 0.94), rgba(195, 240, 255, 0.94));
    min-height: 100vh;
    max-width: 400px;
    width: 100%;
    padding: 110px 16px 24px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.8); */
    /* background-image: url('img/icon/bgHeader2.png'); */
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(10px);
    max-width: 400px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
}

#fb_link,
#ig_link,
#tik_link {
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 9px;
    margin-right: 9px;
    margin-top: 5px;
    width: 25px;
    height: 25px;
}

#header_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header_cap {
    color: var(--brown);
    font-style: italic;
    font-size: xx-small;
    margin: 5px 0 5px;
    text-align: center;
}

#headerLogo {
    /* max-width: 250px; */
    width: 100%;
    padding-top: 10px;
}

.landing_main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero_block {
    background: rgba(255, 255, 255, 0.8);
    background-image: url('img/icon/bgHeader5.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 22px;
    padding: 5px 20px 17px 20px;
    box-shadow: 0 10px 24px rgba(90, 62, 54, 0.12);
    /* text-align: center; */
}

.hero_cap {
    margin: 0px;
    font-size: 12px;
    text-shadow: -6px 3px 8px peachpuff;
    text-align: center;
    font-weight:bolder;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brown);
}

.hero_block h1 {
    margin: 0;
    color: var(--brown);
    font-size: 30px;
}

.hero_text {
    margin: 10px 0 0;
    color: rgba(90, 62, 54, 0.9);
    line-height: 1.5;
}

.social_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding-top: 8px;
}

#social_caption {
    margin-left: 6px;
    white-space: nowrap;
    color: var(--brown);
    font-size: 12px;
}

.hero_block a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.landing_nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.landing_card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 140px;
    padding: 10px;
    border-radius: 24px;
    text-decoration: none;
    color: var(--brown);
    box-shadow: 0 14px 28px rgba(90, 62, 54, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(90, 62, 54, 0.18);
}


.card_shop {
    background-image:
        linear-gradient(125deg, rgba(255, 198, 168, 0.92), rgba(255, 198, 168, 0.12), rgba(195, 240, 255, 0.94)),
        repeating-linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0px,
            rgba(255, 255, 255, 0) 92px,
            rgba(255, 255, 255, 0.55) 130px,
            rgba(255, 255, 255, 0) 152px,
            rgba(255, 255, 255, 0) 240px);
    background-size: 100% 100%, 240px 100%;
    background-position: 0 0, 0 0;
    animation: cardShopShimmerLeft 5.4s linear infinite;
    will-change: background-position;
}

@keyframes cardShopShimmerLeft {
    from {
        background-position: 0 0, -240px 0;
    }

    to {
        background-position: 0 0, 0 0;
    }
}

.card_album {
    background-image:
        linear-gradient(135deg, rgba(195, 240, 255, 0.74), rgba(243, 235, 222, 0.54), rgba(255, 245, 236, 0.96)),
        repeating-linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0px,
            rgba(255, 255, 255, 0) 92px,
            rgba(255, 255, 255, 0.55) 130px,
            rgba(255, 255, 255, 0) 152px,
            rgba(255, 255, 255, 0) 240px);
    background-size: 100% 100%, 240px 100%;
    background-position: 0 0, 0 0;
    animation: cardShopShimmerLeft 5.4s linear infinite;
    animation-delay: 2s;
    will-change: background-position;
}

.card_reviews {
    background-image:
        linear-gradient(135deg, rgba(255, 245, 236, 0.96), rgba(255, 198, 168, 0.12), rgba(255, 198, 168, 0.92)),
        repeating-linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0px,
            rgba(255, 255, 255, 0) 92px,
            rgba(255, 255, 255, 0.55) 130px,
            rgba(255, 255, 255, 0) 152px,
            rgba(255, 255, 255, 0) 240px);
    background-size: 100% 100%, 240px 100%;
    background-position: 0 0, 0 0;
    animation: cardShopShimmerLeft 5.4s linear infinite;
    animation-delay: 3s;
    will-change: background-position;
}

.card_icon_wrap {
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card_icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.card_copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card_label {
    font-size: 28px;
    font-weight: 700;
    
}

.card_copy p {
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 420px) {
    body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .landing_card {
        min-height: 150px;
        gap: 12px;
    }

    .card_icon_wrap {
        flex-basis: 94px;
        width: 94px;
        height: 94px;
    }

    .card_icon {
        width: 72px;
        height: 72px;
    }

    .card_label {
        font-size: 24px;
    }
}

footer {
    text-align: center;
    padding: 2px;
    color: #777;
}

a {
    text-decoration: none;
}