/*
Theme Name:   Teeny Toys Child Theme
Theme URI:    https://teenytoys.com
Description:  Custom child theme for Teeny Toys e-commerce (Kuwait) - based on Blocksy
Author:       SONAMAK
Author URI:   https://sonamak.com
Template:     blocksy
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  teeny-child
*/

/* ==========================================================================
   TEENY TOYS CUSTOM STYLES
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ==========================================================================
   Typography
   ========================================================================== */

/* English Typography */
body,
html[lang="en"] body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Arabic Typography */
html[lang="ar"] body,
.rtl body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================================================
   Brand Colors - Teeny Toys Kuwait
   ========================================================================== */

:root {
    /* Primary Brand Colors */
    --teeny-primary: #774a33;      /* Warm brown - trust, warmth, natural toys */
    --teeny-secondary: #FFB5A0;    /* Soft coral/peach - playful, friendly, child-safe */
    --teeny-white: #FFFFFF;        /* Pure white - clean, safe, spacious */

    /* Supporting Colors */
    --teeny-primary-dark: #5a3626;   /* Darker brown for hover states */
    --teeny-primary-light: #9d6b4d;  /* Lighter brown for backgrounds */
    --teeny-secondary-light: #FFD4C7; /* Light coral for subtle backgrounds */

    /* Neutral Colors */
    --teeny-dark: #2D2D2D;         /* Dark text */
    --teeny-gray: #6B6B6B;         /* Secondary text */
    --teeny-light: #F7F7F7;        /* Light gray background */
    --teeny-border: #E5E5E5;       /* Borders and dividers */

    /* Functional Colors */
    --teeny-success: #4CAF50;      /* Success messages, in-stock */
    --teeny-warning: #FF9800;      /* Warnings, low stock */
    --teeny-error: #F44336;        /* Errors, out of stock */
}

/* ==========================================================================
   Header Customization
   ========================================================================== */

/* Header background and spacing */
.site-header {
    background-color: var(--teeny-white);
    border-bottom: 2px solid var(--teeny-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo/Site Title */
.site-title,
.site-branding a {
    color: var(--teeny-primary) !important;
    font-weight: 700;
    font-size: 1.8em;
    text-decoration: none;
}

.site-title:hover,
.site-branding a:hover {
    color: var(--teeny-primary-dark) !important;
}

/* Navigation Menu */
.header-menu-bar nav a {
    color: var(--teeny-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-menu-bar nav a:hover {
    color: var(--teeny-secondary);
}

/* Cart Icon */
.ct-header-cart a {
    color: var(--teeny-primary);
}

.ct-header-cart .ct-cart-content {
    background-color: var(--teeny-secondary);
    color: var(--teeny-primary);
    border-radius: 50%;
}

/* Cart Dropdown/Mini Cart */
[data-id="cart"] .ct-cart-content,
.ct-header-cart .ct-dropdown-container {
    background-color: var(--teeny-white) !important;
    border: 2px solid var(--teeny-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    padding: 20px !important;
    min-width: 350px !important;
}

.ct-header-cart .widget_shopping_cart {
    background-color: transparent !important;
}

.ct-header-cart .widget_shopping_cart .woocommerce-mini-cart {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ct-header-cart .woocommerce-mini-cart__total {
    color: var(--teeny-primary) !important;
    border-top: 2px solid var(--teeny-border) !important;
    padding-top: 15px !important;
    margin-top: 15px !important;
}

.ct-header-cart .woocommerce-mini-cart__total .amount {
    color: var(--teeny-primary) !important;
    font-weight: 700 !important;
}

.ct-header-cart .woocommerce-mini-cart-item a {
    color: var(--teeny-primary) !important;
    text-decoration: none !important;
}

.ct-header-cart .woocommerce-mini-cart-item a:hover {
    color: var(--teeny-secondary) !important;
}

.ct-header-cart .woocommerce-mini-cart-item {
    padding: 15px 0 !important;
    border-bottom: 1px solid var(--teeny-border) !important;
}

.ct-header-cart .woocommerce-mini-cart-item:last-child {
    border-bottom: none !important;
}

.ct-header-cart .woocommerce-mini-cart__buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

.ct-header-cart .woocommerce-mini-cart__buttons .button {
    flex: 1 !important;
    text-align: center !important;
}

/* Cart Panel (Side Panel) */
#woo-cart-panel {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

#woo-cart-panel .ct-panel-inner {
    background-color: var(--teeny-white) !important;
}

#woo-cart-panel .cart_list li a {
    color: var(--teeny-primary) !important;
}

#woo-cart-panel .cart_list li a:hover {
    color: var(--teeny-secondary) !important;
}

#woo-cart-panel .woocommerce-mini-cart__total {
    color: var(--teeny-primary) !important;
}

#woo-cart-panel .amount {
    color: var(--teeny-primary) !important;
    font-weight: 700 !important;
}

/* Language Switcher in Header */
.ct-language-switcher,
.lang-item a {
    color: var(--teeny-primary);
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    color: var(--teeny-primary);
}

/* ==========================================================================
   Footer Customization
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, var(--teeny-primary) 0%, var(--teeny-primary-dark) 100%);
    color: var(--teeny-white);
    padding: 60px 5% 30px;
}

.site-footer a {
    color: var(--teeny-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: var(--teeny-white);
}

.site-footer .widget-title,
.site-footer h1,
.site-footer h2,
.site-footer h3 {
    color: var(--teeny-white);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer Bottom / Copyright */
.ct-footer-copyright,
.site-info {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--teeny-secondary-light);
}

/* Footer Widget Areas */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Social Icons (if using) */
.footer-social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--teeny-secondary);
    color: var(--teeny-primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--teeny-white);
    transform: translateY(-3px);
}

/* ==========================================================================
   RTL Support (Basic)
   ========================================================================== */

/* RTL-specific adjustments will be in style-rtl.css */

/* ==========================================================================
   Custom Components (will be added as we build)
   ========================================================================== */

/* Mascot containers */
.teeny-mascot {
    max-width: 200px;
    height: auto;
}

/* Language switcher custom styling */
.polylang-switcher {
    /* Custom styles for language switcher */
}

/* ==========================================================================
   Global Button Styles
   ========================================================================== */

.button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: var(--teeny-primary) !important;
    color: var(--teeny-white) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--teeny-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(119, 74, 51, 0.3);
}

/* Secondary Buttons */
.button.secondary,
.woocommerce a.button.alt {
    background-color: var(--teeny-secondary) !important;
    color: var(--teeny-primary) !important;
}

.button.secondary:hover,
.woocommerce a.button.alt:hover {
    background-color: var(--teeny-secondary-light) !important;
}

/* ==========================================================================
   WooCommerce Customizations
   ========================================================================== */

/* Product cards */
.woocommerce ul.products li.product,
body.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 2px solid var(--teeny-border) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    background-color: var(--teeny-white) !important;
}

.woocommerce ul.products li.product:hover,
body.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    border-color: var(--teeny-primary) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Product images */
.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Price display */
.woocommerce .price {
    color: var(--teeny-primary);
    font-weight: 700;
    font-size: 1.4em;
}

.woocommerce .price del {
    color: var(--teeny-gray);
    opacity: 0.7;
}

.woocommerce .price ins {
    text-decoration: none;
    color: var(--teeny-error);
}

/* Sale badge */
.woocommerce span.onsale {
    background-color: var(--teeny-secondary) !important;
    color: var(--teeny-primary) !important;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 700;
}

/* Add to Cart button on product cards */
.woocommerce ul.products li.product .button {
    width: 100%;
    text-align: center;
}

/* Star ratings */
.woocommerce .star-rating span:before {
    color: var(--teeny-secondary);
}

/* Stock status */
.woocommerce .stock {
    color: var(--teeny-success);
    font-weight: 600;
}

.woocommerce .stock.out-of-stock {
    color: var(--teeny-error);
}

/* ==========================================================================
   Cart & Checkout Styling
   ========================================================================== */

/* Cart Page Container */
.woocommerce-cart .ct-container,
.woocommerce-checkout .ct-container {
    max-width: 1200px;
    padding: 40px 5%;
}

/* Cart Page Title */
.woocommerce-cart .entry-header .entry-title,
.woocommerce-checkout .entry-header .entry-title {
    color: var(--teeny-primary);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Cart & Checkout Page Titles */
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title,
.woocommerce-cart h1,
.woocommerce-checkout .entry-title,
.woocommerce-checkout .page-title,
.woocommerce-checkout h1 {
    color: var(--teeny-primary) !important;
}

/* Cart Table - Simple styling */
.woocommerce table.cart {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.woocommerce table.cart thead th {
    background-color: var(--teeny-primary);
    color: var(--teeny-white);
    padding: 15px;
}

.woocommerce table.cart td {
    padding: 15px;
}

/* Fix remove button cell padding */
.woocommerce table.cart .product-remove {
    text-align: center;
    padding: 15px;
}

.woocommerce table.cart .product-name a {
    color: var(--teeny-primary);
    font-weight: 600;
}

.woocommerce table.cart .product-thumbnail img {
    max-width: 70px;
    border-radius: 8px;
}

/* Coupon code input matching button height */
.woocommerce table.cart .coupon input[type="text"] {
    height: 40px;
    padding: 0 15px;
    border: 2px solid var(--teeny-border);
    border-radius: 8px;
}

.woocommerce table.cart .coupon .button {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
}

/* Cart Totals - Simple styling */
.woocommerce .cart_totals {
    background-color: var(--teeny-light);
    border-radius: 12px;
    padding: 25px;
}

.woocommerce .cart_totals h2 {
    color: var(--teeny-primary);
}

/* Checkout - Simple styling */
.woocommerce-checkout #order_review {
    background-color: var(--teeny-light);
    border-radius: 12px;
    padding: 25px;
}

/* ==========================================================================
   Shop Page Styling
   ========================================================================== */

/* Shop Page Header with Hero Background */
.woocommerce-shop .page-header,
.woocommerce-products-header {
    /* Replace the URL below with your shop hero image */
    background-image: url('https://teenykw.com/wp-content/uploads/2025/10/shop-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5%;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
}

.woocommerce-shop .page-title,
.woocommerce-products-header__title {
    font-size: 3em;
    color: var(--teeny-primary);
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Shop Toolbar - Filters, Sorting, Search */
.woocommerce-shop .woocommerce-notices-wrapper + *,
.shop-toolbar-wrapper {
    background: linear-gradient(135deg, var(--teeny-secondary-light) 0%, var(--teeny-white) 100%);
    padding: 25px 5%;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Create toolbar container */
.woocommerce-ordering-wrapper,
.woocommerce-result-count-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Add breadcrumbs styling */
.woocommerce-breadcrumb {
    font-size: 0.9em;
    color: var(--teeny-gray);
    margin-bottom: 15px;
}

.woocommerce-breadcrumb a {
    color: var(--teeny-primary);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: var(--teeny-secondary);
}

/* Shop Toolbar - Sorting & Results Count */
.woocommerce-result-count {
    color: var(--teeny-gray);
    font-size: 1em;
    margin-bottom: 20px;
}

.woocommerce-ordering {
    margin-bottom: 20px;
}

.woocommerce-ordering select {
    border: 2px solid var(--teeny-border);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1em;
    color: var(--teeny-primary);
    background-color: var(--teeny-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
    border-color: var(--teeny-primary);
    outline: none;
}

/* Product Grid Improvements */
.woocommerce ul.products,
.woocommerce.columns-4 ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce.columns-4 ul.products li.product {
    list-style: none !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    color: var(--teeny-primary) !important;
    font-weight: 600 !important;
    margin: 15px 0 10px !important;
    min-height: 50px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title {
    font-size: 1.3em !important;
    color: var(--teeny-primary) !important;
    font-weight: 700 !important;
}

/* Sidebar/Filters Styling */
.woocommerce-sidebar,
.widget-area {
    background-color: var(--teeny-white);
}

.widget {
    background-color: var(--teeny-white);
    border: 2px solid var(--teeny-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.widget-title {
    color: var(--teeny-primary);
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--teeny-secondary);
}

/* WooCommerce Widgets */
.widget_product_categories ul,
.widget_layered_nav ul,
.widget_rating_filter ul,
.widget_price_filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_product_categories ul li,
.widget_layered_nav ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--teeny-border);
}

.widget_product_categories ul li:last-child,
.widget_layered_nav ul li:last-child {
    border-bottom: none;
}

.widget_product_categories ul li a,
.widget_layered_nav ul li a {
    color: var(--teeny-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_product_categories ul li a:hover,
.widget_layered_nav ul li a:hover {
    color: var(--teeny-primary);
    padding-left: 10px;
}

.widget_product_categories ul li.current-cat > a {
    color: var(--teeny-primary);
    font-weight: 700;
}

/* Price Filter Widget */
.widget_price_filter .price_slider_wrapper {
    padding: 15px 0;
}

.widget_price_filter .price_slider {
    margin-bottom: 20px;
}

.widget_price_filter .ui-slider {
    background-color: var(--teeny-border);
    border: none;
    height: 6px;
    border-radius: 3px;
}

.widget_price_filter .ui-slider-range {
    background-color: var(--teeny-primary);
}

.widget_price_filter .ui-slider-handle {
    background-color: var(--teeny-secondary);
    border: 3px solid var(--teeny-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_price_filter .price_label {
    color: var(--teeny-primary);
    font-weight: 600;
    font-size: 1.1em;
}

.widget_price_filter button {
    background-color: var(--teeny-primary) !important;
    color: var(--teeny-white) !important;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 50px;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination ul li {
    list-style: none;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 12px 18px;
    background-color: var(--teeny-white);
    border: 2px solid var(--teeny-border);
    border-radius: 8px;
    color: var(--teeny-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-pagination ul li a:hover {
    background-color: var(--teeny-secondary);
    border-color: var(--teeny-secondary);
    color: var(--teeny-white);
    transform: translateY(-2px);
}

.woocommerce-pagination ul li span.current {
    background-color: var(--teeny-primary);
    border-color: var(--teeny-primary);
    color: var(--teeny-white);
}

/* Active Filters Display */
.woocommerce-active-filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.woocommerce-active-filters ul li {
    background-color: var(--teeny-secondary-light);
    border: 2px solid var(--teeny-secondary);
    border-radius: 20px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.woocommerce-active-filters ul li a {
    color: var(--teeny-primary);
    text-decoration: none;
    font-weight: 600;
}

/* No Products Found */
.woocommerce-no-products-found {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--teeny-light);
    border-radius: 16px;
}

.woocommerce-no-products-found::before {
    content: '🔍';
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.woocommerce-info {
    background-color: var(--teeny-secondary-light);
    border-left: 4px solid var(--teeny-secondary);
    padding: 20px;
    border-radius: 8px;
    color: var(--teeny-primary);
}

/* ==========================================================================
   Product Single Page
   ========================================================================== */

.single-product .product {
    background-color: var(--teeny-white);
}

.single-product .product_title {
    color: var(--teeny-primary);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-product .woocommerce-product-details__short-description {
    color: var(--teeny-gray);
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.single-product .product_meta {
    color: var(--teeny-gray);
    font-size: 0.95em;
    padding-top: 20px;
    border-top: 1px solid var(--teeny-border);
}

.single-product .product_meta a {
    color: var(--teeny-primary);
    text-decoration: none;
}

.single-product .product_meta a:hover {
    color: var(--teeny-secondary);
}

/* Product Images Gallery */
.woocommerce-product-gallery {
    margin-bottom: 30px;
}

.woocommerce-product-gallery__image {
    border-radius: 12px;
    overflow: hidden;
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 50px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--teeny-border);
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.woocommerce-tabs ul.tabs li {
    list-style: none;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 15px 30px;
    background-color: var(--teeny-light);
    color: var(--teeny-gray);
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    background-color: var(--teeny-primary);
    color: var(--teeny-white);
}

/* Related Products */
.related.products {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--teeny-border);
}

.related.products h2 {
    color: var(--teeny-primary);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ==========================================================================
   Homepage Styling
   ========================================================================== */

.teeny-homepage-wrapper {
    background-color: var(--teeny-white);
}

/* Hero Section */
.teeny-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4rem);
    padding: 80px 5% 0;
    background: linear-gradient(135deg, var(--teeny-secondary-light) 0%, var(--teeny-white) 100%);
    min-height: 500px;
}

.teeny-hero-content {
    max-width: 600px;
    padding-bottom: 60px;
}

.teeny-hero-title {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.teeny-hero-subtitle {
    font-size: 1.3em;
    color: var(--teeny-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.teeny-hero-button {
    display: inline-block;
    background-color: var(--teeny-primary);
    color: var(--teeny-white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(119, 74, 51, 0.3);
}

.teeny-hero-button:hover {
    background-color: var(--teeny-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 74, 51, 0.4);
    color: var(--teeny-white);
}

.teeny-hero-image {
    position: relative;
    align-self: flex-end;
}

.teeny-hero-img {
    width: clamp(320px, 40vw, 520px);
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.teeny-hero-img:hover {
    transform: scale(1.05);
}

.teeny-hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--teeny-primary-light) 0%, var(--teeny-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.teeny-section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.teeny-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--teeny-secondary);
    border-radius: 2px;
}

/* ==========================================================================
   Promotional Banners Section
   ========================================================================== */

.teeny-promo-banners {
    padding: 60px 5%;
    background-color: var(--teeny-light);
}

.teeny-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.teeny-promo-card {
    background-color: var(--teeny-white);
    border: 3px solid var(--teeny-border);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teeny-promo-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(119, 74, 51, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teeny-promo-card:hover:before {
    opacity: 1;
}

.teeny-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.teeny-promo-hot {
    border-color: var(--teeny-error);
}

.teeny-promo-hot:hover {
    border-color: var(--teeny-error);
    background-color: rgba(244, 67, 54, 0.05);
}

.teeny-promo-selling {
    border-color: var(--teeny-warning);
}

.teeny-promo-selling:hover {
    border-color: var(--teeny-warning);
    background-color: rgba(255, 152, 0, 0.05);
}

.teeny-promo-new {
    border-color: var(--teeny-secondary);
}

.teeny-promo-new:hover {
    border-color: var(--teeny-secondary);
    background-color: var(--teeny-secondary-light);
}

.teeny-promo-limited {
    border-color: var(--teeny-primary);
}

.teeny-promo-limited:hover {
    border-color: var(--teeny-primary);
    background-color: var(--teeny-primary-light);
    color: var(--teeny-white);
}

.teeny-promo-icon {
    font-size: 4em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.teeny-promo-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.teeny-promo-card p {
    font-size: 1em;
    color: var(--teeny-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Shop by Gender Section
   ========================================================================== */

.teeny-shop-by-gender {
    padding: 80px 5%;
    background-color: var(--teeny-white);
}

.teeny-gender-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.teeny-gender-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.teeny-gender-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.teeny-card-boys {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.teeny-card-girls {
    background: linear-gradient(135deg, #FFB5A0 0%, #FF8A80 100%);
}

.teeny-gender-placeholder {
    font-size: 180px;
    opacity: 0.3;
    position: absolute;
    z-index: 1;
}

.teeny-gender-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--teeny-white);
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teeny-gender-overlay h3 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--teeny-white);
}

.teeny-gender-cta {
    display: inline-block;
    background-color: var(--teeny-white);
    color: var(--teeny-primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.teeny-gender-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.teeny-gender-card:hover .teeny-gender-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.teeny-gender-card:hover .teeny-gender-cta {
    background-color: var(--teeny-secondary);
    color: var(--teeny-white);
}

/* ==========================================================================
   Shop by Age Section
   ========================================================================== */

.teeny-shop-by-age {
    padding: 80px 5%;
    background-color: var(--teeny-light);
}

.teeny-age-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive: Tablet (3 columns) */
@media (max-width: 1024px) {
    .teeny-age-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Responsive: Mobile (2 columns) */
@media (max-width: 768px) {
    .teeny-age-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Responsive: Small Mobile (2 columns, smaller) */
@media (max-width: 480px) {
    .teeny-age-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.teeny-age-card {
    background-color: var(--teeny-white);
    border: 3px solid var(--teeny-border);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .teeny-age-card {
        padding: 25px 15px;
    }

    .teeny-age-image {
        width: 100px !important;
        height: 100px !important;
    }

    .teeny-age-card h3 {
        font-size: 1em !important;
    }
}

@media (max-width: 480px) {
    .teeny-age-card {
        padding: 20px 10px;
    }

    .teeny-age-image {
        width: 80px !important;
        height: 80px !important;
    }

    .teeny-age-card h3 {
        font-size: 0.9em !important;
    }
}

.teeny-age-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--teeny-primary);
}

.teeny-age-icon {
    font-size: 5em;
    margin-bottom: 15px;
}

.teeny-age-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.teeny-age-card:hover .teeny-age-image {
    transform: scale(1.1);
}

.teeny-age-card h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin: 0;
}

/* ==========================================================================
   Category Showcase Section
   ========================================================================== */

.teeny-category-showcase {
    padding: 80px 5%;
    background-color: var(--teeny-white);
}

.teeny-category-showcase.teeny-showcase-alt {
    background-color: var(--teeny-light);
}

.teeny-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.teeny-showcase-header .teeny-section-title {
    margin-bottom: 0;
    text-align: left;
}

.teeny-see-all {
    color: var(--teeny-primary);
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.teeny-see-all:hover {
    color: var(--teeny-secondary);
    transform: translateX(5px);
}

.teeny-showcase-products {
    max-width: 1200px;
    margin: 0 auto;
}

.teeny-showcase-products .woocommerce ul.products {
    margin: 0;
}

.teeny-showcase-products .woocommerce ul.products li.product {
    margin-bottom: 0;
}


.teeny-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.teeny-product-card {
    border: 2px solid var(--teeny-border);
    border-radius: 16px;
    background-color: var(--teeny-white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teeny-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--teeny-secondary);
}

.teeny-product-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.teeny-product-title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

.teeny-product-title a {
    color: var(--teeny-primary);
    text-decoration: none;
}

.teeny-product-title a:hover {
    color: var(--teeny-secondary);
}

.teeny-product-price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--teeny-primary);
}

.teeny-product-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: var(--teeny-primary);
    color: var(--teeny-white);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.teeny-product-button:hover {
    background-color: var(--teeny-primary-dark);
    transform: translateY(-2px);
}

.teeny-no-products {
    text-align: center;
    font-size: 1.1em;
    color: var(--teeny-gray);
}


/* Categories Section */
.teeny-categories {
    padding: 80px 5%;
    background-color: var(--teeny-white);
}

.teeny-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.teeny-category-card {
    background-color: var(--teeny-white);
    border: 2px solid var(--teeny-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.teeny-category-card:hover {
    border-color: var(--teeny-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.teeny-category-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--teeny-light);
}

.teeny-category-name {
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--teeny-primary);
    margin: 0;
}

/* Featured Products Section */
.teeny-featured-products {
    padding: 80px 5%;
    background-color: var(--teeny-light);
}

.teeny-products-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Why Us Section */
.teeny-why-us {
    padding: 80px 5%;
    background-color: var(--teeny-white);
}

.teeny-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.teeny-feature {
    text-align: center;
    padding: 30px;
    background-color: var(--teeny-white);
    border: 2px solid var(--teeny-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.teeny-feature:hover {
    border-color: var(--teeny-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.teeny-feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--teeny-primary);
}

.teeny-feature-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin-bottom: 15px;
}

.teeny-feature-text {
    font-size: 1em;
    color: var(--teeny-gray);
    line-height: 1.6;
}

/* Call to Action Section */
.teeny-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--teeny-secondary) 0%, var(--teeny-secondary-light) 100%);
    text-align: center;
}

.teeny-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.teeny-cta-title {
    font-size: 3em;
    font-weight: 700;
    color: var(--teeny-primary);
    margin-bottom: 20px;
}

.teeny-cta-text {
    font-size: 1.3em;
    color: var(--teeny-primary-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.teeny-cta-button {
    display: inline-block;
    background-color: var(--teeny-primary);
    color: var(--teeny-white);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(119, 74, 51, 0.3);
}

.teeny-cta-button:hover {
    background-color: var(--teeny-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 74, 51, 0.4);
    color: var(--teeny-white);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .teeny-hero {
        flex-direction: column;
        align-items: center;
        padding: 50px 5% 0;
        gap: 30px;
        text-align: center;
    }

    .teeny-hero-content {
        padding-bottom: 0;
    }

    .teeny-hero-title {
        font-size: 2.2em;
    }

    .teeny-hero-subtitle {
        font-size: 1.1em;
    }

    .teeny-hero-placeholder {
        width: 280px;
        height: 280px;
        font-size: 100px;
    }

    /* Hero Image Responsive - Fall back into normal flow */
    .teeny-hero-img {
        position: static;
        width: min(80vw, 380px);
        margin-top: 1.5rem;
        transform: none;
    }

    .teeny-hero-img:hover {
        transform: none;
    }

    /* Section Titles Mobile */
    .teeny-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Categories Grid Mobile */
    .teeny-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Features Grid Mobile */
    .teeny-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* CTA Mobile */
    .teeny-cta-title {
        font-size: 2em;
    }

    .teeny-cta-text {
        font-size: 1.1em;
    }

    /* Promo Banners Mobile */
    .teeny-promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .teeny-promo-card {
        padding: 25px 15px;
    }

    .teeny-promo-icon {
        font-size: 2.5em;
    }

    .teeny-promo-card h3 {
        font-size: 1.1em;
    }

    .teeny-promo-card p {
        font-size: 0.9em;
    }

    /* Gender Cards Mobile */
    .teeny-gender-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .teeny-gender-card {
        height: 300px;
    }

    .teeny-gender-overlay h3 {
        font-size: 2em;
    }

    .teeny-gender-placeholder {
        font-size: 120px;
    }

    /* Category Showcase Mobile */
    .teeny-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .teeny-showcase-header .teeny-section-title {
        text-align: center;
        width: 100%;
    }

    .teeny-see-all {
        align-self: center;
    }

    /* General Padding Mobile */
    .teeny-categories,
    .teeny-featured-products,
    .teeny-why-us,
    .teeny-cta,
    .teeny-promo-banners,
    .teeny-shop-by-gender,
    .teeny-category-showcase {
        padding: 50px 5%;
    }
}

/* ==========================================================================
   Empty States with Mascots (will be implemented)
   ========================================================================== */

.empty-cart-mascot,
.empty-search-mascot,
.error-404-mascot {
    text-align: center;
    padding: 2rem;
}
