/*
Theme Name: PartyTime - Party Supplies Store
Theme URI: https://partytime.ie
Author: Giedrius
Author URI: https://partytime.ie
Description: A modern, responsive WordPress theme for party supplies stores. Features a clean design with Tailwind CSS, product grids, category showcases, and deal sections.
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: partytime
Domain Path: languages
Tags: ecommerce, store, party, supplies, responsive, tailwind
*/

/* ============================================
   Custom Styles - PartyTime Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.category-icon {
    transition: transform 0.2s ease-in-out;
}

.category-icon:hover {
    transform: scale(1.1);
}

/* Woocommerce compatibility */
.woocommerce .product-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.woocommerce .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
