/* Reset and Base Styles */
:root {
    --primary-black: #000000;
    --primary-yellow: #F5E050;
    --dark-yellow: #E6D435;
    --light-yellow: #FFF9C4;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-dark: #333333;
    --accent-gold: #F0E68C;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-yellow: rgba(245, 224, 80, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--primary-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Font Styling for T-shirt Website */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-team {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
}

.footer {
    font-family: 'Inter', sans-serif;
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 224, 80, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(230, 212, 53, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(240, 230, 140, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(245, 224, 80, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 30% 10%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 70% 90%, rgba(218, 165, 32, 0.08) 0%, transparent 55%),
        linear-gradient(135deg,
            #000000 0%,
            #0a0a0a 15%,
            #1a1a1a 30%,
            #2a2a2a 45%,
            #1a1a1a 60%,
            #0f0f0f 75%,
            #000000 100%);
    background-size:
        600% 600%,
        500% 500%,
        700% 700%,
        400% 400%,
        550% 550%,
        650% 650%,
        300% 300%;
    animation: enhancedGradientShift 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

/* Loading Content */
.loading-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}



.loading-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

@keyframes enhancedGradientShift {
    0% {
        background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%;
    }
    12% {
        background-position: 20% 30%, 80% 70%, 40% 20%, 60% 80%, 30% 60%, 70% 40%, 10% 90%;
    }
    25% {
        background-position: 50% 0%, 50% 100%, 80% 40%, 20% 60%, 60% 30%, 40% 70%, 30% 70%;
    }
    37% {
        background-position: 80% 30%, 20% 70%, 60% 80%, 40% 20%, 90% 10%, 10% 90%, 50% 50%;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 40% 60%, 80% 40%, 70% 80%, 30% 20%, 70% 30%;
    }
    62% {
        background-position: 80% 70%, 20% 30%, 20% 80%, 60% 20%, 40% 50%, 60% 80%, 90% 10%;
    }
    75% {
        background-position: 50% 100%, 50% 0%, 60% 40%, 40% 80%, 10% 70%, 90% 30%, 80% 20%;
    }
    87% {
        background-position: 20% 70%, 80% 30%, 80% 20%, 20% 60%, 50% 90%, 50% 10%, 60% 40%;
    }
    100% {
        background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%;
    }
}

.loading-logo {
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-image {
    width: 80px;
    height: 80px;
    background: rgba(245, 224, 80, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite;
    border: 2px solid var(--primary-yellow);
    overflow: hidden;
}

.logo-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px var(--shadow-yellow);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--shadow-yellow);
    }
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(245, 224, 80, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold), var(--primary-yellow));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    animation: progressShine 1.5s ease-in-out infinite;
    transition: width 0.3s ease;
}

@keyframes progressShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading-percentage {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-yellow);
}

.loading-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Loading Screen Healing Particles */
.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.loading-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 6s linear infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Different starting positions and delays for natural effect */
.loading-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}
.loading-particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}
.loading-particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 4.5s;
}
.loading-particle:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 7s;
}
.loading-particle:nth-child(5) {
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}
.loading-particle:nth-child(6) {
    left: 60%;
    animation-delay: 3s;
    animation-duration: 6.5s;
}
.loading-particle:nth-child(7) {
    left: 70%;
    animation-delay: 0.8s;
    animation-duration: 4.8s;
}
.loading-particle:nth-child(8) {
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 5.8s;
}
.loading-particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 6.2s;
}
.loading-particle:nth-child(10) {
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 4.2s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }
    5% {
        transform: translateY(105vh) scale(0.3);
        opacity: 0.3;
    }
    15% {
        transform: translateY(95vh) scale(0.6);
        opacity: 0.8;
    }
    85% {
        transform: translateY(5vh) scale(1);
        opacity: 0.8;
    }
    95% {
        transform: translateY(-5vh) scale(0.6);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}



/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .loading-subtitle {
        font-size: 1rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-yellow);
    box-shadow: 0 2px 20px rgba(253, 225, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(253, 225, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
    z-index: 1001;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    border-color: var(--text-white);
    box-shadow: 0 0 15px rgba(253, 225, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 17px;
    color: var(--text-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0%;
    right: 0;
    bottom: -6px;
    background-color: var(--primary-yellow);
    transition: all 0.3s ease;
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    right: auto;
    left: 0;
    transition: all 0.7s ease;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(253, 225, 0, 0.1);
    border: 1px solid rgba(253, 225, 0, 0.3);
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(253, 225, 0, 0.2);
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-yellow);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Floating shapes removed as requested */

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -2px;
}

/* Premium Text Animation - Subtle Version */
.premium-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg,
        var(--primary-yellow) 0%,
        #F5E050 30%,
        #E6D435 70%,
        var(--primary-yellow) 100%);
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        premiumGlow 3s ease-in-out infinite,
        premiumShine 4s linear infinite;
    filter: drop-shadow(0 0 5px rgba(245, 224, 80, 0.3));
}

.premium-text::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(245, 224, 80, 0.1) 30%,
        rgba(230, 212, 53, 0.15) 70%,
        transparent 100%);
    border-radius: 6px;
    z-index: -1;
    animation: premiumPulse 3s ease-in-out infinite;
    filter: blur(6px);
}

.premium-text::after {
    content: '✨';
    position: absolute;
    top: -12px;
    right: -15px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0.5;
    filter: none;
}

@keyframes premiumGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(245, 224, 80, 0.3)) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(245, 224, 80, 0.5)) brightness(1.1);
        transform: scale(1.01);
    }
}

@keyframes premiumShine {
    0% {
        background-position: -150% 0;
    }
    100% {
        background-position: 150% 0;
    }
}

@keyframes premiumPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.02);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg) scale(0.9);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg) scale(1.1);
    }
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    box-shadow: 0 4px 15px var(--shadow-yellow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-yellow);
    background: linear-gradient(45deg, var(--dark-yellow), var(--primary-yellow));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* League Tabs */
.league-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-yellow);
    background: transparent;
    color: var(--primary-yellow);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-yellow);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #333;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    transform: scale(1.05);
    background: var(--dark-yellow);
    color: var(--primary-black);
    box-shadow: 0 5px 15px var(--shadow-yellow);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-white);
}

.product-team {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.original-price {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #333;
}

.feature i {
    color: #667eea;
    font-size: 1.2rem;
    width: 20px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-white);
    padding: 40px 0 20px;
    border-top: 2px solid var(--primary-yellow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid var(--primary-yellow);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--shadow-dark);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: var(--primary-yellow);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px var(--shadow-yellow);
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
    line-height: 1;
}

.close:hover {
    transform: rotate(90deg);
    color: var(--primary-black);
    background: var(--dark-yellow);
}

/* Size Guide Modal Styles */
.size-guide-modal {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: #1a1a1a;
    border: 2px solid var(--primary-yellow);
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.size-guide-modal::-webkit-scrollbar {
    display: none; /* WebKit */
}

.size-guide-content {
    padding: 30px;
}

.size-guide-content h2 {
    color: var(--text-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 60px; /* Add padding to prevent overlap with close button */
}

.size-guide-content h2 i {
    color: var(--primary-yellow);
}

.size-guide-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.size-guide-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
}

.size-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.size-tab.active {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

.size-tab:hover {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.size-chart {
    display: none;
    margin-bottom: 30px;
}

.size-chart.active {
    display: block;
}

.size-chart h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.size-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: #222;
}

.size-table th {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--primary-black);
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.size-table td {
    padding: 12px;
    border-bottom: 1px solid #333;
    color: var(--text-white);
}

.size-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.size-table td:first-child {
    font-weight: 700;
    color: var(--primary-yellow);
}

.size-guide-tips {
    margin-bottom: 30px;
}

.size-guide-tips h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-guide-tips h3 i {
    color: var(--primary-yellow);
}

.measuring-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
    border: 1px solid #333;
}

.tip h4 {
    color: var(--text-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.tip h4 i {
    color: var(--primary-yellow);
}

.tip p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.size-guide-notes {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
    border: 1px solid #333;
}

.size-guide-notes h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-guide-notes h3 i {
    color: var(--primary-yellow);
}

.size-guide-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.size-guide-notes li {
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.size-guide-notes li:before {
    content: '•';
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.size-guide-tips {
    margin-bottom: 30px;
}

.size-guide-tips h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-guide-tips h3 i {
    color: var(--primary-yellow);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.tip-content h4 {
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.tip-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.size-guide-note {
    background: #222;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.note-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Auto-Moving Floating Widgets - Hero Section Only */
.floating-widgets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.floating-widget {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 12px 18px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.9;
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.widget-content i {
    font-size: 1rem;
    color: var(--primary-yellow);
}

.widget-text {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Widget Positioning and Auto Movement */
.widget-1 {
    top: 15%;
    left: 8%;
    animation: autoFloat1 12s ease-in-out infinite;
}

.widget-2 {
    top: 12%;
    right: 10%;
    animation: autoFloat2 14s ease-in-out infinite;
}

.widget-3 {
    top: 40%;
    left: 5%;
    animation: autoFloat3 16s ease-in-out infinite;
}

.widget-4 {
    top: 55%;
    right: 7%;
    animation: autoFloat4 13s ease-in-out infinite;
}

.widget-5 {
    bottom: 30%;
    left: 10%;
    animation: autoFloat5 15s ease-in-out infinite;
}

.widget-6 {
    bottom: 25%;
    right: 12%;
    animation: autoFloat6 11s ease-in-out infinite;
}

/* Auto Movement Animations */
@keyframes autoFloat1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -15px); }
    50% { transform: translate(-10px, -25px); }
    75% { transform: translate(15px, -10px); }
}

@keyframes autoFloat2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-25px, 20px); }
    50% { transform: translate(15px, -15px); }
    75% { transform: translate(-20px, 10px); }
}

@keyframes autoFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, 15px); }
    50% { transform: translate(-20px, 25px); }
    75% { transform: translate(25px, -20px); }
}

@keyframes autoFloat4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-15px, -20px); }
    50% { transform: translate(25px, 15px); }
    75% { transform: translate(-30px, -10px); }
}

@keyframes autoFloat5 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, 25px); }
    50% { transform: translate(-25px, -15px); }
    75% { transform: translate(15px, 20px); }
}

@keyframes autoFloat6 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, -25px); }
    50% { transform: translate(30px, 20px); }
    75% { transform: translate(-15px, 15px); }
}

/* Hero Healing Effect Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 50;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: heroParticleFloat 8s linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Different starting positions and delays for natural effect */
.hero-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}
.hero-particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}
.hero-particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 6s;
}
.hero-particle:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 9s;
}
.hero-particle:nth-child(5) {
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}
.hero-particle:nth-child(6) {
    left: 60%;
    animation-delay: 3s;
    animation-duration: 8.5s;
}
.hero-particle:nth-child(7) {
    left: 70%;
    animation-delay: 0.8s;
    animation-duration: 6.5s;
}
.hero-particle:nth-child(8) {
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 7.8s;
}
.hero-particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 8.2s;
}
.hero-particle:nth-child(10) {
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 6.8s;
}
.hero-particle:nth-child(11) {
    left: 25%;
    animation-delay: 0.3s;
    animation-duration: 9.2s;
}
.hero-particle:nth-child(12) {
    left: 35%;
    animation-delay: 2.8s;
    animation-duration: 7.2s;
}
.hero-particle:nth-child(13) {
    left: 45%;
    animation-delay: 1.2s;
    animation-duration: 8.8s;
}
.hero-particle:nth-child(14) {
    left: 55%;
    animation-delay: 4s;
    animation-duration: 6.2s;
}
.hero-particle:nth-child(15) {
    left: 65%;
    animation-delay: 0.7s;
    animation-duration: 9.5s;
}
.hero-particle:nth-child(16) {
    left: 75%;
    animation-delay: 3.2s;
    animation-duration: 7.7s;
}
.hero-particle:nth-child(17) {
    left: 85%;
    animation-delay: 1.7s;
    animation-duration: 8.3s;
}
.hero-particle:nth-child(18) {
    left: 95%;
    animation-delay: 2.2s;
    animation-duration: 6.7s;
}
.hero-particle:nth-child(19) {
    left: 5%;
    animation-delay: 4.5s;
    animation-duration: 9.8s;
}
.hero-particle:nth-child(20) {
    left: 12%;
    animation-delay: 0.9s;
    animation-duration: 7.3s;
}

@keyframes heroParticleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Enhanced particles with glow effect */
.hero-particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: particleGlow 2s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem;
        height: 70px;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(253, 225, 0, 0.2);
        padding: 30px 0;
        gap: 0;
        border-top: 2px solid var(--primary-yellow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 30px;
        margin: 8px 20px;
        border-radius: 15px;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--primary-yellow);
        color: var(--primary-black);
        border-color: var(--primary-yellow);
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(253, 225, 0, 0.4);
    }

    .nav-link.active {
        background: var(--primary-yellow);
        color: var(--primary-black) !important;
        border: 3px solid var(--text-white);
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(253, 225, 0, 0.6);
        font-weight: 800;
        position: relative;
    }

    .nav-link.active::before {
        content: '●';
        position: absolute;
        left: -15px;
        color: var(--text-white);
        font-size: 1.2rem;
        animation: pulse 2s infinite;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .league-tabs {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        order: 2;
    }

    .social-links {
        order: 3;
    }

    /* Hide floating widgets on mobile for better performance */
    .floating-widgets {
        display: none;
    }

    /* Hide hero particles on mobile for better performance */
    .hero-particles {
        display: none;
    }



    /* Products page mobile styles */
    .products-page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .breadcrumb {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .search-filter-section {
        padding: 25px 0;
    }

    .search-filter-wrapper {
        gap: 15px;
        padding: 0 15px;
    }

    .search-bar-container {
        margin-bottom: 5px;
    }

    /* .search-input-wrapper {
        max-width: 0%;
    } */

    .search-input {
        padding: 12px 45px 12px 16px;
        font-size: 14px;
    }

    .search-icon {
        right: 16px;
        font-size: 15px;
    }

    .filter-controls {
        padding: 15px;
        border-radius: 12px;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        justify-content: stretch;
    }

    .filter-item {
        min-width: auto;
        max-width: none;
        width: 100%;
        flex: none;
    }

    .filter-item label {
        font-size: 11px;
    }

    .filter-select {
        padding: 14px 16px;
        font-size: 15px;
    }

    .search-bar-container {
        min-width: auto;
        max-width: none;
        flex: none;
        width: 100%;
    }

    .search-bar-container::before {
        font-size: 11px;
    }

    .search-input {
        padding: 14px 16px;
        font-size: 15px;
    }

    .filter-actions {
        align-items: center;
        min-width: auto;
        width: 100%;
    }

    .filter-actions::before {
        font-size: 11px;
        align-self: center;
    }

    .clear-filters-btn {
        padding: 14px 20px;
        font-size: 13px;
        width: fit-content;
        align-self: center;
    }

    .results-summary {
        margin-top: 0;
    }

    .results-count {
        font-size: 14px;
        padding: 8px 16px;
    }

    .all-products-section {
        padding: 40px 0;
    }

    .all-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }

    .no-results {
        margin: 20px;
        padding: 60px 20px;
    }

    .no-results-content i {
        font-size: 3rem;
    }

    .no-results-content h3 {
        font-size: 1.3rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Product Card Animations */
.product-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.product-image {
    transform-style: preserve-3d;
}

.product-card:hover .product-image {
    transform: translateZ(20px);
}

/* Glowing Effects */
.glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
    }
}

/* Text Gradient Animation */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b, #ee5a24);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%;
    }
    25% {
        background-position: 50% 0%, 25% 75%, 75% 25%, 25% 75%;
    }
    50% {
        background-position: 100% 50%, 100% 50%, 100% 50%, 100% 50%;
    }
    75% {
        background-position: 50% 100%, 75% 25%, 25% 75%, 75% 25%;
    }
    100% {
        background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%;
    }
}



/* ===== PRODUCTS PAGE STYLES ===== */
.products-page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-yellow);
}

.products-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(253, 225, 0, 0.5);
}

.breadcrumb-separator {
    margin: 0 12px;
    color: var(--primary-yellow);
    font-weight: bold;
}

.breadcrumb-current {
    color: var(--text-white);
    font-weight: 600;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--text-white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.search-filter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-black) 100%);
    padding: 30px 0;
    border-bottom: 2px solid var(--primary-yellow);
    position: relative;
}

.search-filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.search-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.search-bar-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    flex: 1.2;
    max-width: 220px;
}

.search-bar-container::before {
    content: "Search";
    font-weight: 700;
    color: var(--primary-yellow);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(245, 224, 80, 0.6);
    border-radius: 10px;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.95));
    color: var(--text-white);
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.search-input::placeholder {
    color: var(--text-gray);
    font-weight: 500;
}

.search-input:hover {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(40, 40, 40, 1));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 224, 80, 0.2);
}

.search-input:focus {
    outline: none;
    border-color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(245, 224, 80, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(40, 40, 40, 1));
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-yellow);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--text-white);
    transform: translateY(-50%) scale(1.05);
}

.filter-controls {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(245, 224, 80, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.filter-row {
    display: flex;
    align-items: end;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
    flex: 1;
    max-width: 160px;
}

.filter-item label {
    font-weight: 700;
    color: var(--primary-yellow);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid rgba(245, 224, 80, 0.6);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.95));
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.filter-select:hover {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(40, 40, 40, 1));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 224, 80, 0.2);
}

.filter-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 224, 80, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(40, 40, 40, 1));
}

.filter-select option {
    background: var(--primary-black);
    color: var(--text-white);
    padding: 10px;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
    min-width: 100px;
}

.filter-actions::before {
    content: "Actions";
    font-weight: 700;
    color: var(--primary-yellow);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    align-self: flex-start;
}

.clear-filters-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--text-white);
    border: 2px solid rgba(220, 53, 69, 0.6);
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    border-color: #dc3545;
}

.clear-filters-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.results-summary {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.results-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--primary-yellow);
    font-weight: 600;
    background: rgba(26, 26, 26, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(245, 224, 80, 0.3);
    backdrop-filter: blur(5px);
}

.results-count i {
    color: var(--primary-yellow);
    font-size: 14px;
}

.all-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    position: relative;
}

.all-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.all-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 30px;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
    margin-bottom: 30px;
}

/* Enhanced Loading Animation - Updated to match theme */

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: rgba(255, 255, 255, 0.75);
    }
}

/* Magnetic Effect for Buttons */
.magnetic {
    transition: transform 0.3s ease;
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Glass Morphism Enhancement */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neon Glow Effect */
.neon {
    text-shadow:
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Bounce Animation */
.bounce-in {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Flip Animation */
.flip {
    animation: flip 1s ease-in-out;
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(0.95);
    }
    100% {
        transform: perspective(400px) scale(1);
    }
}

/* Slide Animation */
.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.about-hero, .contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 30%, #2d2d2d 70%, var(--primary-black) 100%);
    overflow: hidden;
    margin-top: 0;
}

.about-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

.about-hero-content, .contact-hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(45deg, var(--text-white), var(--primary-yellow), var(--text-white));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(253, 225, 0, 0.3);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}



/* Additional animations for hero sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}



.our-story, .our-mission {
    padding: 100px 0;
    background: #111111;
}

.our-mission {
    background: #1a1a1a;
}

.story-content, .mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content {
    grid-template-columns: 1fr 1fr;
}

.story-text h2, .mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-text h2 i, .mission-text h2 i {
    color: var(--primary-yellow);
    font-size: 2rem;
}

.story-text p, .mission-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-points {
    margin-top: 30px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.mission-point i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.story-image, .mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us {
    padding: 100px 0;
    background: #111111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-black);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.our-team {
    padding: 100px 0;
    background: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #222;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.member-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.our-values {
    padding: 100px 0;
    background: #111111;
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #222;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.value-item:hover {
    background: #333;
    box-shadow: 0 10px 30px var(--shadow-yellow);
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.value-text p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 100px 0;
    background: #111111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-black);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-hours h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.chat-btn {
    margin-top: 20px;
}

.contact-form-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.form-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    font-weight: 500;
}

.form-feature i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: #222;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px var(--shadow-yellow);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 224, 80, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.faq-section .section-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
    align-items: start; /* Ensure items align to top */
}

.faq-item {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 2px solid #333;
    position: relative;
    width: 100%; /* Ensure full width */
    align-self: start; /* Prevent stretching */
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-question {
    padding: 30px;
    background: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.faq-question:hover {
    background: #222;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    color: var(--primary-yellow);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #222;
}

.faq-item.active .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px var(--shadow-yellow);
}

.faq-item.active .faq-toggle {
    background: var(--primary-yellow);
}

.faq-item.active .faq-toggle i {
    color: var(--primary-black);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #111;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 300px; /* Reduced for better consistency */
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

/* Active Navigation Link - Styles moved to main navigation section */

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .story-content,
    .mission-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid,
    .team-grid,
    .values-content,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start; /* Ensure mobile items also align to top */
    }

    .faq-item {
        border-radius: 15px;
        width: 100%;
        align-self: start;
    }

    .faq-question {
        padding: 20px;
        gap: 15px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-toggle {
        width: 35px;
        height: 35px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-hero,
    .contact-hero {
        height: 50vh;
        margin-top: 0;
    }

    .page-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }


}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, #1a1a1a, #222);
}

.notification-error {
    border-color: #dc3545;
    background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
}

.notification-info {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, #1a1a1a, #222);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
    color: var(--primary-yellow);
}

.notification-content span {
    color: var(--text-white);
    font-weight: 500;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.notification-close:hover {
    background: #f0f0f0;
    color: #333;
}

@media (max-width: 768px) {
    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* Enhanced Product Modal Styles */
.product-modal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.product-modal-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.product-modal-image {
    position: relative;
    text-align: center;
}

.modal-main-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-badge-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-modal-header h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
    padding-right: 60px; /* Add padding to prevent overlap with close button */
    line-height: 1.3;
}

.product-modal-team {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price-modal {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.original-price-modal {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-modal-description p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.product-features-modal h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-modal h4 i {
    color: var(--primary-yellow);
}

.features-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-item-modal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.feature-item-modal i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

.size-selection-modal h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-selection-modal h4 i {
    color: var(--primary-yellow);
}

.size-options-modal {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.product-modal-sizes h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 12px 16px;
    border: 2px solid #333;
    background: #1a1a1a;
    color: var(--text-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.size-option:hover,
.size-option.selected {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.size-guide {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.size-guide-link {
    color: var(--primary-yellow);
    text-decoration: none;
}

.size-guide-link:hover {
    text-decoration: underline;
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-contact-product {
    flex: 1;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-contact-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-yellow);
    background: linear-gradient(45deg, var(--dark-yellow), var(--primary-yellow));
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    background: #1a1a1a;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.btn-wishlist:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #222;
    border-radius: 12px;
    border: 1px solid #333;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary-yellow);
    width: 16px;
    text-align: center;
}

/* Product Modal Responsive */
@media (max-width: 768px) {
    .product-modal-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .size-guide-content {
        padding: 20px;
    }

    .inquiry-form-container {
        padding: 20px;
    }

    .features-grid-modal {
        grid-template-columns: 1fr;
    }

    .product-modal-actions {
        flex-direction: column;
    }

    .btn-contact-product {
        width: 100%;
    }

    /* Ensure headers don't overlap with close button on mobile */
    .product-modal-header h2,
    .size-guide-content h2,
    .inquiry-form-header h2 {
        padding-right: 50px; /* Reduced padding for mobile */
        font-size: 1.5rem; /* Slightly smaller font on mobile */
    }
}

/* Product Inquiry Form Styles */
.inquiry-form-container {
    padding: 30px;
    max-height: 85vh;
    overflow-y: auto;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.inquiry-form-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.inquiry-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.inquiry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-black);
    font-size: 1.5rem;
}

.inquiry-form-header h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
    padding-right: 60px; /* Add padding to prevent overlap with close button */
}

.inquiry-form-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.inquiry-product-card {
    display: flex;
    gap: 20px;
    background: #222;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    align-items: center;
    border: 1px solid var(--primary-yellow);
}

.inquiry-product-image {
    position: relative;
    flex-shrink: 0;
}

.inquiry-product-image img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inquiry-product-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.inquiry-product-info h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.inquiry-product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.team-badge {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-tag {
    background: var(--dark-yellow);
    color: var(--primary-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.size-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.size-info i {
    color: var(--primary-yellow);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    background: #222;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #333;
}

.form-section h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.form-section h4 i {
    color: var(--primary-yellow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid #333;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: var(--text-white);
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px var(--shadow-yellow);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    transition: width 0.3s ease;
}

.input-group input:focus + .input-highlight,
.input-group select:focus + .input-highlight,
.input-group textarea:focus + .input-highlight {
    width: 100%;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 20px 0;
}

.btn-cancel {
    padding: 12px 24px;
    border: 2px solid #333;
    background: #1a1a1a;
    color: var(--text-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
}

.btn-submit {
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-yellow);
    background: linear-gradient(45deg, var(--dark-yellow), var(--primary-yellow));
}

.form-footer {
    text-align: center;
    padding: 20px;
    background: #222;
    border-radius: 12px;
    border: 1px solid #333;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.response-time i {
    color: var(--primary-yellow);
}

/* Inquiry Form Responsive */
@media (max-width: 768px) {
    .inquiry-form-container {
        padding: 20px;
    }

    .inquiry-product-card {
        flex-direction: column;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Products Page Styles */
.products-page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.products-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 224, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 224, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-yellow);
}

.breadcrumb-separator {
    color: var(--text-gray);
}

.breadcrumb-current {
    color: var(--text-white);
    font-weight: 600;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--dark-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* Products Section */
.products-page-section {
    padding: 40px 0 80px;
    background: var(--primary-black);
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.products-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
}

.products-count {
    color: var(--text-gray);
    font-weight: 500;
}

.search-container {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 224, 80, 0.3);
    color: var(--text-white);
    padding: 12px 40px 12px 15px;
    border-radius: 8px;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.sort-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 224, 80, 0.3);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.sort-select option {
    background: var(--primary-black);
    color: var(--text-white);
}

/* Filter Sidebar */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: var(--primary-black);
    border-right: 1px solid var(--primary-yellow);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-sidebar::-webkit-scrollbar {
    display: none;
}

.filter-sidebar.active {
    left: 0;
}

.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(245, 224, 80, 0.2);
    background: rgba(245, 224, 80, 0.05);
}

.filter-sidebar-header h3 {
    color: var(--primary-yellow);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-close-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-close-btn:hover {
    background: rgba(245, 224, 80, 0.2);
    color: var(--primary-yellow);
}

.filter-sidebar-content {
    padding: 20px;
}

/* Active Filters */
.active-filters {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(245, 224, 80, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(245, 224, 80, 0.2);
}

.active-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.active-filters-header span {
    font-weight: 600;
    color: var(--text-white);
}

.clear-all-filters {
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.clear-all-filters:hover {
    color: var(--dark-yellow);
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.remove-filter {
    background: none;
    border: none;
    color: var(--primary-black);
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.remove-filter:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Filter Groups */
.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(245, 224, 80, 0.1);
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-title:hover {
    color: var(--primary-yellow);
}

.filter-title i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

.filter-toggle {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-toggle:hover {
    color: var(--primary-yellow);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-content.expanded {
    max-height: 500px;
}

/* Filter Checkboxes */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.filter-checkbox:hover {
    background: rgba(245, 224, 80, 0.1);
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-gray);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-weight: bold;
    font-size: 12px;
}

.filter-label {
    color: var(--text-white);
    font-weight: 500;
    flex: 1;
}

.filter-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Price Range Filter */
.price-range-container {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 224, 80, 0.3);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 4px;
    width: 80px;
    text-align: center;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.price-separator {
    color: var(--text-gray);
    font-weight: 600;
}

.price-slider {
    position: relative;
    margin-bottom: 10px;
}

.price-range-input {
    width: 100%;
    height: 4px;
    background: rgba(245, 224, 80, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
}

.price-range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Size Filter Grid */
.size-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-filter-option {
    cursor: pointer;
}

.size-filter-option input[type="checkbox"] {
    display: none;
}

.size-option-label {
    display: block;
    padding: 10px;
    text-align: center;
    border: 2px solid var(--text-gray);
    border-radius: 6px;
    color: var(--text-white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-filter-option input[type="checkbox"]:checked + .size-option-label {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}

.size-filter-option:hover .size-option-label {
    border-color: var(--primary-yellow);
}

/* Filter Overlay */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Products Main Content */
.products-main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.no-results-content i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.no-results-content p {
    margin-bottom: 20px;
}

/* Active Navigation Link - Styles consolidated in main navigation section */

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .products-header-left,
    .products-header-right {
        justify-content: space-between;
    }

    .search-input {
        width: 200px;
    }

    .filter-sidebar {
        width: 100%;
        left: -100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .filter-content.expanded {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .products-page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .products-header-right {
        flex-direction: column;
        gap: 10px;
    }

    .search-input {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-sidebar-content {
        padding: 15px;
    }
}
