/*
Theme Name: Samsflorists Child Theme
Theme URI: https://samsflorists.co.ke
Description: Custom child theme for Samsflorists - Premium Flower Delivery
Author: Samsflorists
Author URI: https://samsflorists.co.ke
Template: storefront
Version: 1.0.0
Text Domain: samsflorists
*/

/* ===== CUSTOM COLORS ===== */
:root {
    --sf-primary: #6B2D5C;
    --sf-primary-light: #8B3D7C;
    --sf-secondary: #F5A623;
    --sf-light-bg: #FFF5F7;
    --sf-text-dark: #2D1B2A;
    --sf-text-light: #F9F0F2;
}

/* ===== HEADER ===== */
.site-header {
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-primary-light));
    padding: 20px 0;
    border-bottom: 4px solid var(--sf-secondary);
}

.site-title a,
.site-description {
    color: white !important;
}

/* ===== FEATURED ICONS ON HOMEPAGE ===== */
.sf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 20px;
    background: var(--sf-light-bg);
    text-align: center;
}

.sf-feature-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(107, 45, 92, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 45, 92, 0.2);
}

.sf-feature-item .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--sf-primary);
    margin-bottom: 15px;
}

.sf-feature-item h3 {
    color: var(--sf-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sf-feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== PRODUCT BUTTONS ===== */
.woocommerce .button {
    background-color: var(--sf-secondary) !important;
    color: var(--sf-text-dark) !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.woocommerce .button:hover {
    background-color: #e0951a !important;
    transform: scale(1.05);
}

.woocommerce .add_to_cart_button {
    background-color: var(--sf-primary) !important;
    color: white !important;
}

.woocommerce .add_to_cart_button:hover {
    background-color: var(--sf-primary-light) !important;
}

/* ===== PRODUCT CARDS ===== */
.products .product {
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.products .product:hover {
    box-shadow: 0 8px 30px rgba(107, 45, 92, 0.15);
    transform: translateY(-5px);
}

.woocommerce-loop-product__title {
    color: var(--sf-primary) !important;
}

.price {
    color: var(--sf-primary) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
}

/* ===== SHOP PAGE ===== */
.woocommerce-products-header {
    background: linear-gradient(135deg, var(--sf-primary), var(--sf-primary-light));
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.woocommerce-products-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ===== CHECKOUT ===== */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
    color: var(--sf-primary);
}

#order_review_heading {
    color: var(--sf-primary);
}

.woocommerce-checkout-review-order .button {
    background-color: var(--sf-secondary) !important;
    color: var(--sf-text-dark) !important;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--sf-text-dark);
    color: var(--sf-text-light);
    padding: 40px 0;
    margin-top: 60px;
}

.site-footer a {
    color: var(--sf-secondary);
}

.site-footer a:hover {
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sf-features {
        grid-template-columns: 1fr;
        padding: 30px 15px;
    }
    
    .woocommerce-products-header h1 {
        font-size: 1.8rem;
    }
}