/* 
NoWater Theme Custom Styles 
*/

.animate-scale {
    animation: scale 20s infinite alternate;
}

@keyframes scale {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #111111;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a386;
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography Refinements */
.font-serif {
    font-feature-settings: "ss01", "ss02";
}

/* WooCommerce Overrides */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    @apply bg-brand-cream border-brand-accent text-brand-primary rounded-2xl p-6 mb-8 !important;
}
.woocommerce-message .button, .woocommerce-info .button {
    @apply bg-brand-primary text-brand-secondary rounded-xl !important;
}
