body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
}

.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: url("../images/forest_bg.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5vh;
    padding-bottom: 3vh;
}

/* Bear Image */
.bear {
    height: 50vh;
    filter: drop-shadow(0 0 25px rgba(90,150,70,0.35));
    z-index: 3;
}

/* Title Sign */
.title-sign {
    margin-top: 10px;
    padding: 12px 35px;
    background: url("../images/wood_plank.png") center/cover no-repeat;
    color: #C5A45A;
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 3px #000;
    border-radius: 6px;
    box-shadow:
        0 6px 10px rgba(0,0,0,0.5),
        inset 0 -3px 3px rgba(0,0,0,0.4),
        inset 0 3px 3px rgba(255,255,255,0.1);
}

/* Button Row */
.button-row {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

/* Wooden Buttons */
.wood-btn {
    padding: 14px 30px;
    background: url("../images/wood_plank.png") center/cover no-repeat;
    color: #F3E9D0;
    font-size: 22px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.6),
        inset 0 -3px 3px rgba(0,0,0,0.4),
        inset 0 3px 3px rgba(255,255,255,0.15);
    transition: 0.2s ease-in-out;
}

.wood-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 15px rgba(90,150,70,0.6),
        inset 0 -3px 3px rgba(0,0,0,0.5),
        inset 0 3px 3px rgba(255,255,255,0.2);
}

/* Tagline */
.tagline {
    margin-top: 25px;
    padding: 8px 20px;
    background: rgba(243,233,208,0.75);
    border-radius: 4px;
    font-size: 20px;
    color: #3a2a1d;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.25),
        inset 0 2px 4px rgba(255,255,255,0.3);
}
.promo-video {
    width: 60vw;
    max-width: 900px;
    height: auto;               /* ← forces correct height */
    max-height: 450px;          /* ← caps vertical size */
    border-radius: 12px;
    margin-top: 25px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.55);
    object-fit: cover;          /* ← prevents distortion */
}

/* ===== PRODUCT HERO BANNER ===== */
.product-hero {
    width: 100%;
    height: 65vh;
    background-image: url("/static/images/papa_bear_balm_product.png");
    background-size: cover;
    background-position: center 15%;nano static/css/home.css

    background-repeat: no-repeat;
}

/* ===== PRODUCTS SECTION WITH BEAR BG ===== */
.products-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 100px 40px 140px;
    background-image: url("/static/images/balm bear.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #111;
    min-height: 70vh;
}


/* ===== PRODUCT CARDS ===== */
.product-box {
    background: #efe6d6; /* light tan */
    padding: 30px;
    width: 260px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.product-box h2 {
    margin-bottom: 10px;
}

.cbd {
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

.price {
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
}

/* ===== FULL PAGE PRODUCTS BACKGROUND ===== */
/* ===== FULL PAGE BACKGROUND ===== */
.products-full-bg {
    min-height: 100vh;
    background-image: url("/static/images/papa_bear_balm_product.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PRODUCTS WRAPPER ===== */
.products-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px;
}

/* ===== PRODUCT CARD WITH BEAR BG ===== */
.product-box.bear-bg {
    width: 280px;
    height: 360px;
    background-image: url("/static/images/balm bear.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* TEXT OVERLAY */
.product-content {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    background: rgba(239, 230, 214, 0.9);
    padding: 15px;
    text-align: center;
}

.product-content h2 {
    margin-bottom: 8px;
}

.cbd {
    font-size: 15px;
    font-weight: bold;
    color: #444;
}

.price {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
}

/* ===== BACK HOME WOOD BUTTON ===== */
.back-home-container {
    display: flex;
    justify-content: center;
    margin: 80px 0 40px;
    width: 100%;
}
body .back-home-container {
    position: relative;
}



.back-home-btn {
    background-image: url("/static/images/wood_plank.png");
    background-size: cover;
    background-position: center;
    padding: 16px 40px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.back-home-btn:hover {
    transform: translateY(-2px);
}
/* ===== PRODUCTS PAGE FOOTER ===== */
.products-footer {
    background: #0f0f0f;
    padding: 60px 20px 50px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.payment-icons img {
    height: 42px;
    width: auto;
    opacity: 0.95;
}

