/*
Theme Name: Bayol Store
Theme URI: https://store.bayolcreations.com
Author: Sam
Author URI: https://bayolcreations.com
Description: Custom ultra-modern WooCommerce store theme for Bayol Creations. Built with Tailwind CSS and optimized for digital assets.
Version: 1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: bayol-store
Tags: ecommerce, woocommerce, dark-theme, custom-theme
*/

/* =====================================================
   GLOBAL STYLES
   Tailwind CSS is loaded via CDN in header.php
===================================================== */

html,
body {
    background-color: #050505;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Remove outline & tap highlight */
* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

body {
    font-family: ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    line-height: 1.6;
}

/* =====================================================
   LINKS
===================================================== */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #5ce336;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-ae {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 800;
    letter-spacing: 0.12em;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-ae:hover {
    transform: translateY(-1px);
}

/* =====================================================
   WOOCOMMERCE FIXES
===================================================== */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.woocommerce-message a,
.woocommerce-info a {
    color: #5ce336;
    font-weight: bold;
}

/* Hide default Woo styles we don't use */
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
    display: none;
}

/* =====================================================
   SCROLLBAR (OPTIONAL)
===================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5ce336;
}
