/* IMPORT WIX SITE FONT (Fredoka) */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Fredoka', sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* BRAND COLOR CLASSES */
.pink-text {
    color: #f78bb0;
}

.purple-text {
    color: #a855f7;
}

/* MAIN CONTAINER */
.site-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FLOATING CHAT BUTTON */
.chat-floating-top {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-pill-btn {
    background-color: #fa9ed2;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.notification-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 12px;
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.peeking-cat-img {
    width: 130px;
    height: auto;
    margin-bottom: 15px;
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    color: #f78bb0;
    margin-bottom: 5px;
}

.hero-tagline {
    font-size: 18px;
    color: #f78bb0;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-shop-btn {
    display: inline-block;
    background-color: #fa9ed2;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}

/* PRODUCT SECTION LAYOUT */
.product-block {
    width: 100%;
    margin-bottom: 50px;
}

.product-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* 3-IMAGE ROW */
.image-gallery-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 25px;
    width: 100%;
}

.image-frame {
    flex: 1;
    height: 180px;
    border: 3px solid #f78bb0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fafafa;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DESCRIPTIONS & TEXT STYLE */
.product-desc {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-left: 10px;
}

.slanted-caption {
    font-size: 34px;
    font-weight: 700;
    transform: rotate(-3deg);
    margin-top: 5px;
}

.slanted-subcaption {
    font-size: 28px;
    font-weight: 700;
    color: #f78bb0;
    transform: rotate(-2deg);
    margin-top: 5px;
    text-align: right;
    width: 100%;
}

/* FREE SQUISHY CONTEST SECTION */
.contest-block {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contest-content {
    flex: 1;
}

.contest-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contest-text {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    line-height: 1.6;
}

.contest-image-frame {
    width: 240px;
    height: 240px;
    border: 3px solid #f78bb0;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #fafafa;
}

.contest-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT SECTION */
.contact-block {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.email-link {
    color: #f78bb0;
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    color: #333333;
    margin-top: 10px;
}

/* FOOTER */
.site-footer {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-copy, .footer-status, .footer-email {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #666666;
    margin-bottom: 4px;
}

/* MOBILE RESPONSIVE LAYOUT */
@media (max-width: 600px) {
    .image-gallery-row {
        flex-direction: column;
    }
    .image-frame {
        height: 220px;
    }
    .contest-block {
        flex-direction: column;
    }
    .contest-image-frame {
        width: 100%;
        height: 200px;
    }
}