/*
Theme Name: TILT Premium
Version: 1.1.4
*/

/* Osigurava da Tailwind klase uvek imaju prioritet i da su fontovi glatki */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SAKRIVANJE SKROLBARA - TOTALNA ELIMINACIJA (NEXT.JS LEVEL) */
/* Za Chrome, Safari, Edge i Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    -webkit-appearance: none !important;
}

/* Za Firefox */
.scrollbar-hide {
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
    overflow: -moz-scrollbars-none !important;
}

/* Globalni reset za horizontalni overflow na nivou tela koji može uzrokovati fantomske skrolbarove */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Lucide ikone fiks */
svg[data-lucide] {
    stroke-width: 2.5px;
}

/* WooCommerce override za dugmad */
.woocommerce button.button.alt, 
.woocommerce a.button.alt,
.woocommerce #respond input#submit.alt {
    background-color: #B99D75 !important;
    color: #000 !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem !important;
}

/* Star Rating Styling */
.woocommerce .star-rating {
    color: #B99D75;
    font-family: 'star';
    font-size: 1rem;
}

.woocommerce p.stars a {
    color: #B99D75 !important;
}

/* Reset default WC fields */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.dark .woocommerce form .form-row input.input-text, 
.dark .woocommerce form .form-row textarea {
    background-color: #171717;
    color: #fff;
    border-color: rgba(255,255,255,0.1);
} 