/* Custom CSS for Reign Streetwear */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom styles for Reign */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* Product card hover effects */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card img {
    transition: transform 0.7s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Size selector */
.size-option {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.size-option:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.size-option.selected {
    border-color: #d4af37;
    background-color: #d4af37;
    color: #0a0a0a;
}

/* Navigation link hover effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Image slider */
.image-slider-container {
    position: relative;
    overflow: hidden;
}

.image-slider {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #d4af37;
    transform: scale(1.2);
}

/* Form input focus effects */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Social icon hover */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Modal animation */
#product-modal {
    transition: opacity 0.3s ease;
}

/* Loading animation for products */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card:hover {
        transform: translateY(-5px);
    }
}