/**
 * WooGarden Customizer - Cart & Checkout Styles
 */

/* Hero Section Styles */
.wgc-hero-section {
    position: relative;
    padding: 3rem 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.wgc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.wgc-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Full width hero section */
.wgc-hero-full-width {
    max-width: unset;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    border-radius: 0;
    padding: 100px 20px;
}

.wgc-hero-full-width .wgc-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Buttons Container */
.wgc-cart-nav-buttons,
.wgc-checkout-nav-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Navigation Button Base Styles */
.wgc-cart-nav-buttons .wgc-nav-button,
.wgc-checkout-nav-buttons .wgc-nav-button,
.wgc-social-buttons .wgc-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Colors will be set via inline styles from settings */
}

.wgc-cart-nav-buttons .wgc-nav-button:hover,
.wgc-checkout-nav-buttons .wgc-nav-button:hover,
.wgc-social-buttons .wgc-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wgc-cart-nav-buttons .wgc-nav-icon,
.wgc-checkout-nav-buttons .wgc-nav-icon,
.wgc-social-buttons .wgc-nav-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.wgc-cart-nav-buttons .wgc-nav-label,
.wgc-checkout-nav-buttons .wgc-nav-label,
.wgc-social-buttons .wgc-nav-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Social Sharing Styles */
.wgc-social-share-container {
    text-align: center;
    margin-top: 20px;
}

.wgc-social-share-container p {
    margin-bottom: 15px;
    font-weight: 600;
}

.wgc-social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wgc-cart-nav-buttons,
    .wgc-checkout-nav-buttons,
    .wgc-social-buttons {
        gap: 10px;
    }
    
    .wgc-nav-button {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    .wgc-nav-icon {
        font-size: 24px;
    }
    
    .wgc-nav-label {
        font-size: 12px;
    }
    
    .wgc-hero-content h1 {
        font-size: 28px;
    }

    .wgc-social-buttons .wgc-nav-button {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .wgc-cart-nav-buttons,
    .wgc-checkout-nav-buttons,
    .wgc-social-buttons {
        gap: 8px;
    }
    
    .wgc-nav-button {
        width: 75px;
        height: 75px;
        padding: 8px;
    }
    
    .wgc-nav-icon {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .wgc-nav-label {
        font-size: 11px;
    }
    
    .wgc-hero-content h1 {
        font-size: 24px;
    }

    .wgc-social-buttons .wgc-nav-button {
        width: 70px;
        height: 70px;
    }
}

/* Hide default titles */
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-checkout .woocommerce-order-received .entry-header,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
    display: none !important;
} 