/* Rack-Straps Custom Styles - Refined */

:root {
    --rack-navy: #0F172A;
    --rack-orange: #F97316;
}

/* Header */
.site-header {
    background-color: var(--rack-navy) !important;
}

.site-header .main-navigation a {
    color: white !important;
    font-weight: 500;
}

.site-header .main-navigation a:hover {
    color: var(--rack-orange) !important;
}

/* Buttons */
.button, .wp-block-button__link, .add_to_cart_button {
    background-color: var(--rack-orange) !important;
    border-radius: 16px !important;
    font-weight: 600 !important;
}

/* Product Cards - Enhanced */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: #cbd5e1;
}

/* Horizontal Scroll Enhancement */
.horizontal-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Typography */
h1, h2, h3, .product_title {
    font-family: 'Space Grotesk', 'Inter', system_ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Section Spacing Polish */
section {
    scroll-margin-top: 80px;
}

/* Hide product tags from public frontend — tags remain in WP admin */
.tagged_as,
.product_meta .tagged_as {
    display: none !important;
}
