/* ========================================
   PRODUCT CARD STYLING - COPY/PASTE READY
   For use with programmer's hero section content
   ======================================== */

/* Hero Section & Product Card Container */
#hero {
    background: white;
    padding: 60px 0;
    text-align: center;
}

#product-card {
    min-width: 500px;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    Xpadding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

#product-frame {
    width: 100%;
}

#product-options-container h4 { display:none; }
div[aria-label="Choose Recurring Order"] { display: none; }

/* Product Options Section */
.product-options {
    margin-bottom: 30px;
}

.option-group h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.option-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.option-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.option-btn.is-active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    font-weight: 600;
}

/* Product Image */
.product-image {
    max-width: 250px;
    height: auto;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Pricing Section */
.pricing {
    margin-top: 30px;
}

.discount-label {
    background: var(--red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 10px;
}

.price-comparison {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-sale {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1;
}

.savings {
    color: var(--success-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Button Styling */
.btn-primary {
    background: var(--success-green);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
}

.btn-primary:hover {
    background: #6d8f1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 169, 35, 0.3);
}

.btn-secondary {
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    max-width: 250px;
}

.btn-secondary:hover {
    background: #e6940a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    #product-card {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .option-buttons {
        gap: 6px;
    }

    .option-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .product-image {
        max-width: 200px;
    }

    .price-sale {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   CSS VARIABLES USED (ensure these are defined in your main CSS)
   ======================================== */

/*
:root {
    --primary-orange: #FFA500;
    --success-green: #7FA923;
    --text-dark: #333333;
    --text-light: #666666;
    --red: #dc3545;
}
*/

/* ========================================
   END PRODUCT CARD STYLING
   ======================================== */