/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://stageham.com/
 Description:  Stage Ham Entertainment
 Author:       Stage Ham Entertainment
 Author URI:   https://stageham.com/
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* You can add your custom CSS below this line */
.stageham-product-card {
    border: 2px solid #333;
    border-radius: 8px;
    transition: transform 0.2s;
}
.stageham-product-card:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   FOURTHWALL CUSTOM STYLES
   ========================================================================== */

/* 1. The Main Product Card */
.fw-product-card {
    display: inline-block;
    vertical-align: top;
    margin: 15px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.fw-product-card:hover {
    transform: translateY(-5px); /* Gentle lift on hover */
}

/* 2. The Product Image */
.fw-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* 3. The Product Title */
.fw-product-title {
    margin: 10px 0 20px 0;
	text-align: left;
    font-size: 2rem !important; 
    color: #222222;
    font-family: inherit; /* Uses your theme's font */
    line-height: 1.8;
}

/* 4. The "Buy Now" Black Box Button */
.fw-buy-button {
    display: inline-block !important;
    background-color: #000000 !important; /* The Black Box */
    color: #ffffff !important;            /* The White Text */
    
    /* ADJUST FONT SIZE HERE */
    font-size: 18px !important;           
    
    padding: 10px 20px !important;        /* 20px side padding */
    text-decoration: none !important;
    font-weight: bold !important;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    visibility: visible !important;       /* Ensures it's not hidden */
}

/* 5. Orange Hover Effect */
.fw-buy-button:hover {
    background-color: #ff6600 !important; /* Orange */
    color: #ffffff !important;
}

/* 6. Membership Gating Teaser (For IndTheater) */
.fw-membership-teaser {
    border: 2px dashed #dddddd;
    padding: 40px;
    background: #fdfdfd;
    border-radius: 12px;
    text-align: center;
}