/* =====================================================
   ProSite - Main Stylesheet
   Premium Fashion Store
   ===================================================== */

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', system-ui, sans-serif;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Poppins', sans-serif;
}

/* Navigation Link Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Glow Effect */
.btn-glow {
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.6);
    transform: translateY(-3px);
}

/* Product Card Styles */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2) !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider Styles */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    pointer-events: auto;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white !important;
    font-size: 18px !important;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.hero-slider .owl-nav button:hover {
    background: #1e40af !important;
    border-color: #1e40af !important;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 0 6px;
    transition: all 0.3s;
}

.hero-slider .owl-dot.active span {
    background: #1e40af !important;
    width: 30px;
    border-radius: 10px;
}

/* Slide Content Animation */
.slide-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Card Hover */
.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Feature Card Hover */
.feature-card:hover {
    transform: translateY(-5px);
}

/* Value Card Hover (About Page) */
.value-card:hover {
    transform: translateY(-10px);
}

/* Contact Card Hover */
.contact-card:hover {
    transform: translateY(-8px);
}

/* FAQ Card Hover */
.faq-card:hover {
    border-color: #1e40af;
}

/* Filter Button Active State (Shop Page) */
.filter-btn.active {
    background: #1e40af;
    color: white;
}

/* Size Button Active State (Product Details Page) */
.size-btn.active {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* =====================================================
   Custom Scrollbar Design
   ===================================================== */

/* Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1e40af 0%, #1d4ed8 100%);
    border-color: #e2e8f0;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 100%);
}

::-webkit-scrollbar-corner {
    background: #f1f5f9;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1e40af #f1f5f9;
}

/* Selection Style */
::selection {
    background: #1e40af;
    color: white;
}

::-moz-selection {
    background: #1e40af;
    color: white;
}

/* Notification Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideIn {
    animation: slideIn 0.4s ease-out;
}

/* Checkout Page Styles */
.payment-option:has(input:checked) {
    border-color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
}