/*
Theme Name: Headhunterz Theme
Theme URI: https://example.com/headhunterz
Author: KamSoft Consultants
Author URI: https://kamsoft.tech
Description: A premium, aerodynamic, high-speed custom WooCommerce theme. Fully dynamic, using Tailwind CSS and modern aesthetics.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: headhunterz
Tags: custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce
*/

/* 
 * We are using Tailwind CSS via CDN injected in the head for utility classes. 
 * Any custom classic CSS overrides goes here. 
 */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for Tailwind utility .hide-scrollbar if necessary */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Specific product card transitions */
.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skew-bg {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.angled-divider {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}