/* Shared theme – styled after raw/index.html (Tailwind + soft cards + light motion) */

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-float-delay {
    animation: float 7.2s ease-in-out infinite 0.9s;
}

/* Home hero background */
.hero-bg {
    background: radial-gradient(circle at 10% 20%, rgb(219, 234, 254) 0%, rgb(241, 245, 249) 90%);
}

/* Product card motion */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gallery thumb */
.gallery-thumb.active {
    border-color: #3b82f6;
    opacity: 1;
}

/* Special button */
.btn-blob {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-blob::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: -1;
}
.btn-blob:hover::after {
    transform: translateX(0);
}

/* Slight “masonry” break */
.masonry-item:nth-child(10n+1) { grid-column: span 2; grid-row: span 2; }

/* Drawer helpers (for non-tailwind fallback) */
.drawer-hidden { transform: translateX(100%); }
.drawer-show { transform: translateX(0); }

