/* Custom Interactive Cursor - Bigger and More Interactive */

/* Hide default cursor on desktop */
@media (pointer: fine) {
    * {
        cursor: none !important;
    }
}

/* Custom cursor element */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Outer border circle - Bigger (32px) */
.cursor-outer {
    width: 32px;
    height: 32px;
    border: 2.5px solid #001f3f;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: border-color 0.3s ease, border-width 0.3s ease;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.9);
    will-change: transform;
}

/* Inner solid circle - Bigger (12px) */
.cursor-inner {
    width: 12px;
    height: 12px;
    background-color: #001f3f;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: background-color 0.3s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
    will-change: transform;
}

/* Hover state - Even bigger (48px) and green */
.custom-cursor.hover .cursor-outer {
    border-color: #00a551;
    border-width: 3px;
}

.custom-cursor.hover .cursor-inner {
    background-color: #00a551;
}

/* Click animation */
.custom-cursor.click .cursor-outer {
    border-color: #00a551;
}

.custom-cursor.click .cursor-inner {
    background-color: #00a551;
}

/* Fallback cursor for touch devices */
@media (pointer: coarse) {
    * {
        cursor: auto !important;
    }
    
    .custom-cursor {
        display: none !important;
    }
}

/* Smooth transitions for interactive elements */
a, button, .btn-primary-large, .btn-secondary-large, 
.hero-product-item, .category-card, .collection-item,
.client-logo-wrapper {
    transition: transform 0.2s ease;
}
