/* Odin Pet Shop - Custom Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fafaf9;
    color: #1c1917;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #e7e5e4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d6d3d1;
}

/* Smooth Transition Utilities */
.transition-all-300 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Zoom Effect */
.hover-zoom img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-zoom:hover img {
    transform: scale(1.05);
}

/* Custom category badge hover overlay */
.category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

/* Smooth Button Ripple Simulation */
.btn-effect {
    position: relative;
    overflow: hidden;
}
.btn-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}
.btn-effect:hover::after {
    width: 300%;
    height: 300%;
}

/* Custom Dot Indicator Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }
    80%, 100% {
        opacity: 0;
    }
}
@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}
.pulse-indicator {
    position: relative;
}
.pulse-indicator::before {
    content: '';
    position: absolute;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #f59e0b;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}
.pulse-indicator::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f59e0b;
    border-radius: 15px;
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.030, 0.515, 0.955) -0.4s infinite;
}
