/* Base Styles & CSS Reset */
:root {
    /* Main Colors */
    --dark-bg: #0d0d14;
    --dark-surface: #161622;
    --dark-card: #1f1f2c;
    --light-text: #f2f2f7;
    --muted-text: #a0a0b1;
    
    /* Accent Colors (Vibrant anime-inspired) */
    --accent-primary: #8257ff; /* Purple */
    --accent-secondary: #f72585; /* Hot Pink */
    --accent-tertiary: #00c8ff; /* Cyan */
    --accent-quaternary: #ff8800; /* Orange */
    
    /* Functional Colors */
    --success: #48d38a;
    --error: #ff4747;
    --warning: #ffcd44;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), var(--accent-quaternary));
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html, body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a14 0%, #121220 100%);
    color: var(--light-text);
    scroll-behavior: smooth;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Trust Badges Styling - Anime Inspired */
.trust-badges {
    padding: 50px 0 50px;
    margin: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.trust-badges-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
}trust-badges

.trust-badges .container {
    position: relative;
   
}

.trust-badges-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges-header::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
}

.trust-badges-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trust-badges-header .accent {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badges-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.badge {
    position: relative;
    background: rgba(31, 31, 44, 0.6);
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(130, 87, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.badge:hover::before {
    transform: translateX(100%);
}

.badge-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130, 87, 255, 0.15), transparent 70%);
    top: -30px;
    left: -30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.badge:hover .badge-glow {
    opacity: 1;
}

/* Badge type-specific styling */
.badge[data-badge-type="delivery"] .badge-icon {
    background: linear-gradient(135deg, rgba(130, 87, 255, 0.2), rgba(0, 200, 255, 0.15));
}

.badge[data-badge-type="shipping"] .badge-icon {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(72, 211, 138, 0.15));
}

.badge[data-badge-type="guarantee"] .badge-icon {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.2), rgba(255, 205, 68, 0.15));
}

.badge[data-badge-type="support"] .badge-icon {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.2), rgba(255, 107, 107, 0.15));
}

.badge[data-badge-type="payment"] .badge-icon {
    background: linear-gradient(135deg, rgba(72, 211, 138, 0.2), rgba(130, 87, 255, 0.15));
}

.badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(31, 31, 44, 0.8);
}

.badge-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.badge-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.badge:hover .badge-icon::after {
    opacity: 0.3;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.badge:hover .badge-icon img {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}

.badge-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.badge-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.badge:hover .badge-content h4 {
    transform: translateY(-2px);
}

.badge-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.badge:hover .badge-content p {
    opacity: 0.9;
}

.badge-tag {
    position: absolute;
    top: -30px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    transform: rotate(5deg) scale(0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.badge:hover .badge-tag {
    transform: rotate(5deg) scale(1);
    opacity: 1;
}

.badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.badge:hover .badge-overlay {
    opacity: 1;
}

@media (max-width: 1200px) {
    .badges-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .badges-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .trust-badges {
        padding: 50px 0 40px;
        margin: 60px 0 40px;
    }
    
    .badges-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-badges-header h2 {
        font-size: 1.8rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Standard property replacing text-fill-color */
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--muted-text);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-primary);
    color: var(--light-text);
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-medium);
    box-shadow: 0 6px 15px rgba(130, 87, 255, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-secondary);
    z-index: -1;
    transition: var(--transition-medium);
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(130, 87, 255, 0.4);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 242, 247, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-primary);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icons a {
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-icons a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-secondary);
    color: var(--light-text);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(13, 13, 20, 0.6), rgba(13, 13, 20, 0.85)), url('../images/background.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: heroGradient 15s infinite alternate;
}

@keyframes heroGradient {
    0% {
        background-color: rgba(13, 13, 20, 0.7);
    }
    50% {
        background-color: rgba(20, 20, 40, 0.7);
    }
    100% {
        background-color: rgba(30, 20, 50, 0.7);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(130, 87, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Trust Badges */
.trust-badges {
    padding: 8px 0;
    position: relative;
    margin: 8px 0 10px 0;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.trust-badges .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    transition: transform 0.3s ease;
}

.badge:hover::after {
    transform: translateX(-50%) scaleX(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge i {
    font-size: 2rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.15);
}

.badge:hover i {
    transform: translateY(-5px);
    color: #fff;
    background: rgba(255, 107, 107, 0.7);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.badge h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #b3b3b3;
    opacity: 0.8;
}

/* Responsive adjustments for trust badges */
@media (max-width: 1100px) {
    .trust-badges .container {
        justify-content: center;
        gap: 30px;
    }
    
    .badge {
        width: 200px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .badge h4, .badge p {
        text-align: center;
    }
}

@media (max-width: 650px) {
    .trust-badges {
        padding: 30px 0;
    }
    
    .badge {
        width: 160px;
    }
    
    .badge i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Products Section Styling */
.products-section {
    padding: 2.8rem 0;
}

/* Fix for Featured Products positioning */
#featured-products {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0;
    transform: none;
}

/* Ensure all section titles are visible */
#featured-products .section-title h2,
#t-shirts .section-title h2,
#hoodies .section-title h2 {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 0 0 0.5rem 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    bottom: 0px;

}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 20, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

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

.search-content {
    width: 90%;
    max-width: 600px;
    background-color: var(--dark-card);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transform: translateY(-50px);
    transition: var(--transition-medium);
}

.search-overlay.active .search-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-close:hover {
    color: var(--accent-secondary);
    transform: rotate(90deg);
}

.search-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-content form {
    display: flex;
    gap: 0.5rem;
}

.search-content input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--dark-surface);
    color: var(--light-text);
    border: 1px solid var(--muted-text);
    border-radius: 50px;
}

.search-content button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-primary);
    color: var(--light-text);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-content button:hover {
    background-color: var(--accent-secondary);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--dark-card);
    z-index: 2000;
    overflow-y: auto;
    transition: var(--transition-medium);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(242, 242, 247, 0.1);
}

.cart-header h3 {
    margin-bottom: 0;
}

.cart-close {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    color: var(--accent-secondary);
    transform: rotate(90deg);
}

.cart-items {
    padding: 1.5rem;
    min-height: 200px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    color: var(--muted-text);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(242, 242, 247, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.checkout-btn, .continue-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.checkout-btn {
    background-color: var(--accent-primary);
    color: var(--light-text);
}

.continue-btn {
    background-color: transparent;
    border: 1px solid var(--muted-text);
}

.checkout-btn:hover {
    background-color: var(--accent-secondary);
}

.continue-btn:hover {
    border-color: var(--light-text);
}

/* Footer Styling */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 L80,50 M50,20 L50,80" stroke="rgba(139, 92, 246, 0.03)" stroke-width="1"/></svg>');
    pointer-events: none;
    opacity: 0.4;
}

.footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-logo h2 span {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-description {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-description::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px;
}

.footer-column {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.social-icon:hover::before {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Enhanced Footer Styles */
.footer-column address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Enhanced Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icon {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

/* Enhanced Footer Links */
.footer-links a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--accent-secondary);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-top: 15px;
    text-align: center;
    width: 100%;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 650px) {
    .site-footer {
        height: auto;
        padding: 30px 0 20px;
    }
    
    .footer-columns {
        gap: 30px;
        justify-content: flex-start;
    }
    
    .footer-description {
        padding: 0 15px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 0 25px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .trust-badges .container {
        flex-direction: column;
        max-width: 500px;
    }
    
    .badge {
        min-width: 100%;
    }
}

@media (max-width: 650px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-surface);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        max-height: 450px;
        background: linear-gradient(rgba(13, 13, 20, 0.6), rgba(13, 13, 20, 0.85)), url('../images/background-mb.webp') no-repeat center center/cover;
        display: flex;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
    }
    
    .product-rating i {
        font-size: 0.8rem;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
}

/* Product Preview */
.product-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-price {
    color: #ffd93d;
    font-size: 1.1rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 650px) {
    .power-levels {
        grid-template-columns: 1fr;
    }
    
    .jutsu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jutsu-grid {
        grid-template-columns: 1fr;
    }
    
    .mood-grid {
        grid-template-columns: 1fr;
    }
}


/* Hoodie Showcase */
.hoodie-showcase {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(40, 40, 70, 0.5), rgba(30, 30, 60, 0.8));
    border-radius: 15px;
    overflow: hidden;
}

.showcase-left, .showcase-right {
    flex: 1;
    min-width: 300px;
}

.showcase-text {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.showcase-text h3::after {
    content: '';
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, transparent);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.showcase-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.showcase-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.showcase-text ul li i {
    color: #6bcf7f;
    margin-right: 10px;
    font-size: 1.2rem;
}

.hoodie-image {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hoodie-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.floating-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
    100% { transform: rotate(15deg) translateY(0); }
}

.product-badge.hot {
    background-color: #ff3838;
}

/* Responsive adjustments */
@media (max-width: 650px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reset-filter {
        margin: 10px 0 0 0;
        width: 100%;
    }
    
    .showcase-left, .showcase-right {
        flex: 1 1 100%;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, #1a1a2e, #121220);
    color: #f5f5f5;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.6), transparent);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: linear-gradient(45deg, #ff6b6b, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.footer-logo .tagline {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-top: 2px;
    color: #c0c0c0;
}

.footer-about {
    margin: 20px 0;
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff6b6b;
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: #ff6b6b;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 0.3s;
}

.footer-links a:hover::before {
    width: 100%;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    position: relative;
}

.newsletter-form input {
    border: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 5px;
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form .submit-btn {
    background: #ff6b6b;
    color: #fff;
    border: none;
    width: 45px;
    border-radius: 0 5px 5px 0;
    position: absolute;
    right: 0;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form .submit-btn:hover {
    background: #ff5252;
}

.payment-methods {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    color: #808080;
    font-size: 1.5rem;
}

.payment-methods i:hover {
    color: #fff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 0.9rem;
}

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

.copyright {
    color: #b3b3b3;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #b3b3b3;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff6b6b;
}

/* View More Button Styles */
.view-more-container {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 650px) {
    .view-more-container {
        margin-top: 10px;
    }
    
    /* Collection Pages Mobile Enhancements */
    .products-section {
        padding: 2rem 0;
    }
    
    .products-section .container {
        padding: 0 1rem;
    }
    
    /* Enhanced mobile navigation for collection pages */
    .navbar {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    /* Better spacing for mobile collection layouts */
    main {
        padding-top: 0;
    }
    
    /* Mobile-optimized section spacing */
    section {
        margin-bottom: 1.5rem;
    }
    
    /* Enhanced mobile typography for collections */
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-title p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

.view-more-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff7676);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 82, 82, 0.2);
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments for Footer */
@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}
/* Theme Section Styles */
.theme-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.theme-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.header-decoration {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 3px;
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: -5px;
}

.header-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.section-card {
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -1;
}

.section-card:hover .card-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.section-card:hover::before {
    opacity: 1;
}

.section-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cursed-power {
    background: linear-gradient(135deg, #ff3366 0%, #3d0101 100%);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.3);
}


.gentle-giants {
    background: linear-gradient(135deg, #64c8ff 0%, #1e3a5f 100%);
    box-shadow: 0 8px 32px rgba(100, 200, 255, 0.3);
}


.uchiha-legacy {
    background: linear-gradient(135deg, #2f3542 0%, #1e2328 100%);
    box-shadow: 0 8px 32px rgba(47, 53, 66, 0.5);
}

.section-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.section-card:hover .section-icon {
    transform: scale(1.1);
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-tagline {
    font-size: 1.1rem;
    margin-bottom: 18px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.4;
    font-style: italic;
}

.section-series {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-card:hover .section-series {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 650px) {
    .theme-section {
        padding: 60px 0;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .section-card {
        padding: 35px 25px;
        min-height: 220px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .theme-section {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .section-card {
        padding: 30px 20px;
        min-height: 200px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
}