/* 
   SNEAKERZ PREMIUM DESIGN SYSTEM 2.0 
   Theme: Neon Noir
*/

:root {
    /* Colors */
    --primary: #2ecc71;
    --primary-glow: rgba(46, 204, 113, 0.4);
    --secondary: #27ae60;

    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;

    --text-main: #ffffff;
    --text-muted: #888888;

    --border-light: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(46, 204, 113, 0.5);

    /* Glassmorphism */
    --glass-bg: rgba(5, 5, 5, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    /* Wider container for premium feel */
    margin: 0 auto;
    padding: 0 40px;
}

/* --- COMPONENTS --- */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-glow);
    background: #25a25a;
    /* Slightly darker/richer on hover */
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    font-weight: 700;
}

.btn-text:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    margin-right: 40px;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.nav-links .mobile-link {
    display: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Nav Icons */
.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.icon-box {
    font-size: 22px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.hero-stats h3 {
    font-size: 32px;
    color: var(--text-light);
}

.hero-stats p {
    margin-bottom: 0;
    font-size: 14px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.floating-shoe {
    width: 120%;
    max-width: 700px;
    transform: rotate(-15deg);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
}

/* Marquee */
.marquee-wrapper {
    background: var(--primary-color);
    padding: 15px 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.05);
    margin: 50px 0;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-bg);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Products */
.section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    gap: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(-5deg);
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}


.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-to-cart {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-add-to-cart:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--card-bg);
    z-index: 1001;
    padding: 30px;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-details p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 20px;
    width: fit-content;
}

.quantity-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.quantity-controls span {
    font-weight: 700;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    margin-left: auto;
    color: #ff4757;
    cursor: pointer;
}

.cart-footer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Menu Btn */
.menu-btn {
    display: none;
    font-size: 24px;
}


/* Promo Banner */
.promo-section {
    margin: 80px auto;
}

.promo-banner {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.promo-content span {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(5, 5, 5, 0.7), var(--bg-dark)), url('sneaker-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.hero h1 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Trust Features */
.trust-features {
    background: var(--bg-dark);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.trust-features::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-item i {
    font-size: 32px;
    color: var(--primary);
    background: rgba(46, 204, 113, 0.1);
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.trust-item:hover i {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.trust-item-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-main);
    font-weight: 700;
}

.trust-item-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Section Common */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title h2 span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: relative;
    height: 320px;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 85%;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-5deg);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new {
    background: var(--primary);
    color: #000;
}

.badge-sale {
    background: #e74c3c;
    color: #fff;
}

.product-actions {
    position: absolute;
    right: 15px;
    bottom: -50px;
    /* Hidden initially */
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    bottom: 15px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.current-price {
    color: var(--primary);
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
}

/* Collection Banners */
.collections-section {
    margin-bottom: 100px;
}

.collection-header {
    text-align: center;
    margin-bottom: 40px;
}

.collection-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    width: calc(100% - 60px);
}

.category-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.category-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 10px;
    color: white;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    width: 100%;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-container {
        justify-content: center;
        /* Center items on smaller screens */
        gap: 40px;
    }

    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    header {
        padding: 15px 0;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 24px;
        color: white;
    }

    .nav-links .close-menu {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 30px;
        cursor: pointer;
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 0;
    }

    .circle-bg {
        width: 350px;
        height: 350px;
    }

    .floating-shoe {
        width: 80%;
        transform: rotate(-5deg);
    }

    /* Global Section */
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .product-grid {
        justify-content: center;
    }

    /* Banners Responsive */
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .promo-image img {
        width: 100%;
        max-width: 300px;
        margin-top: 30px;
    }

    .category-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.modal-btn.confirm {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.modal-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 60px;
    /* Adjust based on header height */
    right: 0;
    width: 200px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.user-dropdown.active {
    display: flex;
}

/* Fix relative positioning for dropdown parent */
.nav-icons {
    position: relative;
}

.user-dropdown a,
.user-dropdown div {
    padding: 15px 20px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-dropdown a:last-child,
.user-dropdown div:last-child {
    border-bottom: none;
}

.user-dropdown a:hover,
.user-dropdown div:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

/* Profile Page Styles */
.profile-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 120px;
    margin-bottom: 80px;
}

.profile-sidebar {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.profile-sidebar button {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-sidebar button.active,
.profile-sidebar button:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

.profile-content h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.order-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-status {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.order-status.completed {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.order-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Mobile Profile Responsive */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        margin-top: 100px;
        gap: 20px;
    }

    .profile-sidebar {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
        margin-bottom: 10px;
        background: transparent;
        border: none;
    }

    .profile-sidebar button {
        width: auto;
        flex: 0 0 auto;
        margin-right: 10px;
        background: var(--card-bg);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .order-header {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .order-header div:last-child {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--card-bg);
    min-width: 180px;
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.nav-item-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

/* --- Premium Product Detail Design --- */

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShoe {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.product-detail-section {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Image takes slightly more space */
    gap: 80px;
    align-items: center;
}

/* 1. Image Area - Spotlight Effect */
.main-image-box {
    background: radial-gradient(circle at center, rgba(60, 60, 60, 0.4) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    /* Circular glow behind shoe */
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    /* Removed border for cleaner look */
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.main-image-box img {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-5deg);
    /* Floating animation is cool but let's keep it subtle on hover or constant */
    animation: floatShoe 6s ease-in-out infinite;
}

.main-image-box:hover img {
    transform: scale(1.1) rotate(-8deg);
    filter: drop-shadow(0 40px 60px rgba(46, 204, 113, 0.2));
    /* Green glow on hover */
}

/* 2. Info Panel Area */
.product-info-panel {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    /* Delays entrance */
}

.product-info-panel .product-category {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.product-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.05;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Price Pop */
.product-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
    font-family: 'Outfit', sans-serif;
}

.product-description {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    font-size: 16px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

/* Size Selector Redesign */
.size-selector h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.sizes-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #ddd;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.size-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.size-btn.active {
    background: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
    font-weight: 800;
}

/* --- Premium Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.85);
    /* Slightly transparent */
    backdrop-filter: blur(15px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 8%;
    background: rgba(18, 18, 18, 0.95);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a,
.nav-item-dropdown>a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after,
.nav-item-dropdown>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-item-dropdown>a:hover::after {
    width: 20px;
    /* Small dot/dash effect */
}

.nav-links a:hover,
.nav-item-dropdown:hover>a {
    color: white;
}

/* --- Premium Footer --- */
footer {
    background: #000;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.footer-links-group {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Cart Button Redesign */
.add-to-cart-btn-large {
    width: 100%;
    height: 65px;
    /* Fixed height for better control */
    background: var(--primary-color);
    /* Solid green */
    color: #000;
    border: none;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    padding-top: 8px;
    /* Pushing text down as requested */
}

.add-to-cart-btn-large i {
    font-size: 22px;
}

.add-to-cart-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
    background: #2ecc71;
}

.add-to-cart-btn-large:active {
    transform: scale(0.98);
}

/* Premium Checkout Button in Sidebar */
.checkout-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: black;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-box {
    position: relative;
    padding: 20px;
}

.about-image-box img {
    width: 100%;
    border-radius: 30px;
    transform: rotate(-5deg);
    transition: var(--transition);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.about-image-box:hover img {
    transform: rotate(0deg) scale(1.05);
}

.about-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Meta Data */
.product-meta {
    display: flex;
    gap: 30px;
    color: #666;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.product-meta span:hover {
    color: var(--primary-color);
}

.product-meta i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-image-box {
        padding: 40px;
    }

    .product-title {
        font-size: 40px;
    }

    .product-price {
        font-size: 32px;
    }

    .product-detail-section {
        padding-top: 120px;
    }

    /* --- MOBILE HEADER & HERO FIXES --- */

    /* Header & Navigation Overlay */
    .header {
        padding: 0 20px;
    }

    .header .container {
        padding: 15px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-bottom: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
        color: white;
    }

    /* Mobile specific links visible */
    .mobile-link {
        display: block !important;
    }

    /* Menu Button Visibility */
    /* Menu Button Visibility */
    #menu-btn {
        display: block !important;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    #menu-btn i {
        font-size: 24px;
        color: white;
    }

    /* Hero Section Fixes */
    .hero {
        height: auto;
        min-height: 85vh;
        /* Center content in view */
        padding-top: 100px;
        padding-bottom: 50px;
        overflow: visible;
        display: flex;
        align-items: center;
        /* Vertical center */
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        order: 1;
        /* Text first */
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-image {
        order: 2;
        /* Image second */
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .floating-shoe {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        transform: none !important;
        /* Reset rotation */
        animation: floatMobile 4s ease-in-out infinite;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* Dropdown inside Mobile Menu */
    .nav-item-dropdown {
        text-align: center;
    }

    .nav-item-dropdown>a {
        font-size: 24px;
        font-weight: 700;
        color: white;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        text-align: center;
    }

    .nav-item-dropdown:hover .dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-content a {
        font-size: 18px;
        color: var(--text-gray);
        padding: 5px 0;
    }

    /* Close Menu Button */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        color: white;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
    }

    .close-menu:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
        transition: 0.3s;
    }

    /* Collection Grid Mobile */
    .collection-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Links Styling */
    .mobile-link {
        display: block !important;
        font-size: 20px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }

    .mobile-link:hover {
        color: var(--primary-color);
    }

    /* Footer Mobile Fixes */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Desktop Fixes */
@media (min-width: 901px) {
    #menu-btn {
        display: none;
        /* Hide hamburger on desktop */
    }
}

/* --- Checkout Multi-Step Styles --- */

.checkout-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-stepper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.checkout-stepper .step.active {
    opacity: 1;
}

.checkout-stepper .step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.checkout-stepper .step.active .step-num {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.checkout-stepper .step-title {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.checkout-stepper .step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
    margin-bottom: 25px;
    /* Align with circle center roughly */
}

/* Steps Content */
.checkout-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.checkout-step.active {
    display: block;
}

.checkout-step h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Success Step */
.success-step {
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.success-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-step h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.success-step p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Summary Sidebar */
.order-summary-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 120px;
}

.summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.summary-item .info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.summary-item .info p {
    font-size: 12px;
    color: var(--text-gray);
}

.summary-totals .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.summary-totals .total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.payment-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 24px;
    color: var(--text-gray);
    margin-top: 25px;
}

/* Form Row for CVV/Date */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-sidebar {
        order: -1;
        /* Show summary on top or collapse? */
        /* Let's keep it on top but maybe simplified or just standard */
        margin-bottom: 30px;
    }

    .checkout-stepper .step-title {
        font-size: 12px;
    }

    .checkout-stepper {
        margin-bottom: 30px;
    }
}

/* --- Checkout Form Styling --- */

.checkout-content {
    background: transparent;
}

.checkout-step h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

/* Inputs & Textareas */
.checkout-step input,
.checkout-step textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.checkout-step input:focus,
.checkout-step textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.checkout-step input::placeholder,
.checkout-step textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Fix for AutoFill background on Chrome */
.checkout-step input:-webkit-autofill,
.checkout-step input:-webkit-autofill:hover,
.checkout-step input:-webkit-autofill:focus,
.checkout-step input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #121212 inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white;
}

/* Stepper Refinement */
.checkout-stepper .step-num {
    font-size: 16px;
    width: 36px;
    height: 36px;
}

.checkout-stepper .step.active .step-num {
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
    /* Glow effect */
}

/* Summary Card Polish */
.order-summary-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Tweaks */
@media (max-width: 900px) {
    .checkout-step h3 {
        font-size: 24px;
        text-align: center;
    }

    .checkout-stepper {
        margin-bottom: 40px;
    }
}

/* --- Toast Notification Styles --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(20, 20, 20, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    transform: translateX(120%);
    animation: slideInToast 0.4s forwards, fadeOutToast 0.4s forwards 3s;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.toast i {
    font-size: 24px;
}

.toast.success {
    border-left: 4px solid var(--primary-color);
}

.toast.success i {
    color: var(--primary-color);
}

.toast.error {
    border-left: 4px solid #ff4757;
}

.toast.error i {
    color: #ff4757;
}

.toast.info {
    border-left: 4px solid #3498db;
}

.toast.info i {
    color: #3498db;
}

.toast-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 13px;
    color: var(--text-gray);
}

@keyframes slideInToast {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutToast {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(120%);
        opacity: 0;
        pointer-events: none;
    }
}

/* --- Wishlist Button Styles --- */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wishlist-btn i {
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active i {
    color: #ff4757;
    font-weight: 900;
}

/* --- Review Styles --- */
.star-rating {
    display: flex;
    gap: 5px;
    font-size: 24px;
    color: #f1c40f;
    cursor: pointer;
    margin-bottom: 10px;
}

.review-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-header .user {
    font-weight: 700;
    color: white;
}

.review-header .date {
    font-size: 13px;
    color: var(--text-gray);
}

.review-stars {
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-search:hover {
    transform: rotate(90deg) scale(1.1);
}

.search-container {
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.search-container input {
    width: 100%;
    padding: 20px;
    font-size: 2rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: white;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    text-align: center;
}

.search-container input:focus {
    border-color: var(--primary-color);
}

.search-results {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    padding-bottom: 50px;
}

.search-card {
    background: #141414;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.search-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.search-card .info {
    padding: 15px;
}

.search-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.search-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* --- Wishlist Button on Card --- */
.product-card {
    position: relative;
    /* Ensure positioning context */
}

.wishlist-btn-card {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-btn-card i {
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
}

.wishlist-btn-card:hover {
    transform: scale(1.1);
    background: white;
}

.wishlist-btn-card.active i {
    color: #e74c3c;
    /* Red color for active */
    animation: heartPop 0.3s ease;
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Fix for Wishlist Icon in Header */
.wishlist-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    /* Ensures vertical centering */
    align-items: center;
    justify-content: center;
}


/* --- New Banner Grid Styles --- */
.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.banner-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.banner-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: white;
}

.banner-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.btn-text {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* Specific Items Grid Placement */
.item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-medium {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-small {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Mobile Responsive for Grid */
@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-large,
    .item-medium,
    .item-small {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }
}

/* --- Club Section Styles --- */
.club-section {
    background: #000;
    padding: 80px 0;
    margin-top: 100px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.club-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.club-content {
    max-width: 500px;
}

.club-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.club-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.club-visual {
    position: relative;
    width: 400px;
    height: 300px;
}

.circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
}

.circle-decoration.small {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    filter: blur(50px);
    opacity: 0.5;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media (max-width: 768px) {
    .club-container {
        flex-direction: column;
        text-align: center;
    }

    .club-visual {
        width: 100%;
        margin-top: 50px;
        height: 200px;
    }

    .club-content {
        z-index: 10;
    }
}

/* --- NEW SECTIONS STYLES --- */

/* Lifestyle Banners (Refactored to Product Cards) */
.banner-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 20px;
}

.banner-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    /* Match Promo */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.banner-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.banner-item.item-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.banner-item.item-medium {
    grid-column: 2;
    grid-row: 1;
}

.banner-item.item-small {
    grid-column: 2;
    grid-row: 2;
}

/* Floating Images (Not Cover) */
.banner-item img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60%;
    height: auto;
    object-fit: contain;
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.banner-item.item-large img {
    width: 80%;
    bottom: 20px;
    right: 20px;
}

.banner-item:hover img {
    transform: rotate(-10deg) scale(1.05);
}

/* Remove the old overlay */
.banner-item::after {
    display: none;
}

.banner-content {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    width: 60%;
    /* Limit width to avoid overlapping image */
    height: auto;
}

.banner-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
}

.item-medium .banner-content h3,
.item-small .banner-content h3 {
    font-size: 24px;
}

.banner-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

/* Button Styling (Green Pill) */
.btn-text {
    background: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-text:hover {
    gap: 12px;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.btn-text i {
    font-size: 16px;
}

/* Club Section - Redesigned */
.club-section {
    background: radial-gradient(circle at 70% 50%, #0a2e18 0%, #000 70%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.club-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.club-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.club-content h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1;
    color: white;
    text-shadow: 0 0 40px rgba(46, 204, 113, 0.3);
}

.club-content h2 span {
    color: var(--primary);
}

.club-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 45px;
    line-height: 1.6;
}

.club-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neon Rings Effect */
.circle-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 50%;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotateX(60deg);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.1);
}

.circle-decoration::before,
.circle-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(46, 204, 113, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-decoration::before {
    width: 70%;
    height: 70%;
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(46, 204, 113, 0.4);
}

.circle-decoration::after {
    width: 40%;
    height: 40%;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(40px);
}

.circle-decoration.small {
    display: none;
    /* Replaced with pseudo elements */
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .banner-item.item-large,
    .banner-item.item-medium,
    .banner-item.item-small {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }

    .club-container {
        text-align: center;
        justify-content: center;
    }


    .club-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links .mobile-link {
        display: block;
        margin-top: 10px;
    }


    .nav-links {
        /* Ensure normal mobile nav behavior overrides the desktop flex:1 */
        flex: initial;
    }
}

/* Fix for Product Detail Page Visibility */
.size-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #000 !important;
    /* Force black text on green background */
    box-shadow: 0 0 15px var(--primary-glow);
    font-weight: 800;
}

.add-to-cart-btn-large {
    background: var(--primary);
    color: #000;
    /* Default black text */
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.add-to-cart-btn-large:hover {
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
    background: #25a25a;
    color: #fff;
    /* White text on hover */
}

/* --- Redesigned Promo Banner --- */
.promo-section {
    padding: 50px 0;
    /* Reduced padding */
}

.promo-banner {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    height: 320px;
    /* Fixed smaller height */
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.1);
}

.promo-content {
    flex: 1;
    padding: 50px;
    z-index: 2;
    max-width: 600px;
}

.promo-content span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.promo-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-content p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 400px;
}

.promo-image {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image img {
    height: 120%;
    /* Slight overflow for dynamic look */
    width: auto;
    transform: rotate(-15deg) translateY(20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-banner:hover .promo-image img {
    transform: rotate(-10deg) translateY(10px) scale(1.05);
}

/* Promo Banner Responsive */
@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding-bottom: 0;
    }

    .promo-content {
        padding: 40px 20px;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .promo-content h2 {
        font-size: 36px;
    }

    .promo-image {
        height: 250px;
        width: 100%;
    }

    .promo-image img {
        height: 90%;
        transform: rotate(-5deg);
    }
}

/* ===== PROMO CARDS SECTION ===== */
.promo-cards-section {
    padding: 80px 0 60px;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-card {
    position: relative;
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 35px 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(46, 204, 113, 0.08);
}

/* Badge */
.promo-card__badge {
    display: inline-block;
    background: var(--primary, #2ecc71);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
}

.promo-card__badge--hot {
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.35);
    color: #fff;
}

.promo-card__badge--free {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.35);
    color: #fff;
}

/* Icon */
.promo-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.promo-card__icon i {
    font-size: 28px;
    color: var(--primary, #2ecc71);
}

.promo-card--adidas .promo-card__icon i {
    color: #ff6b35;
}

.promo-card--shipping .promo-card__icon i {
    color: #3498db;
}

.promo-card:hover .promo-card__icon {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    transform: scale(1.05);
}

.promo-card--adidas:hover .promo-card__icon {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.promo-card--shipping:hover .promo-card__icon {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

/* Title */
.promo-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Description */
.promo-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Price */
.promo-card__price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.promo-card__price .old-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    font-weight: 400;
}

.promo-card__price .new-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary, #2ecc71);
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

/* Highlight Text (for shipping card) */
.promo-card__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 25px;
}

.promo-card__highlight i {
    font-size: 20px;
    color: #3498db;
}

/* Button */
.promo-card__btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
}

/* Glow Effect */
.promo-card__glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.promo-card:hover .promo-card__glow {
    transform: scale(1.5);
    opacity: 0.8;
}

.promo-card--adidas .promo-card__glow {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
}

.promo-card--shipping .promo-card__glow {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.12) 0%, transparent 70%);
}

/* Responsive */
@media (max-width: 992px) {
    .promo-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }

    .promo-card__title {
        font-size: 20px;
    }

    .promo-card__price .new-price {
        font-size: 24px;
    }
}


/* ===== Payment Method Toggle ===== */
.payment-method-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.payment-tab {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.payment-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.payment-tab.active {
    border-color: var(--primary-color);
    background: rgba(46, 204, 113, 0.08);
    color: white;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.1);
}

.payment-tab.active i {
    color: var(--primary-color);
}

/* ===== EFT Info Card ===== */
.eft-info-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.eft-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eft-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.eft-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.eft-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.eft-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.eft-label {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.eft-value {
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.eft-iban {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
    font-size: 16px !important;
}

.eft-copy-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.eft-copy-btn:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.eft-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
}

.eft-note i {
    color: #3498db;
    font-size: 18px;
    margin-top: 2px;
}

.eft-note p {
    color: #a0c4e8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.eft-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(241, 196, 15, 0.06);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 10px;
}

.eft-warning i {
    color: #f1c40f;
    font-size: 18px;
    margin-top: 2px;
}

.eft-warning p {
    color: #ddd;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .payment-method-toggle {
        flex-direction: column;
    }
    
    .eft-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .eft-iban-row .eft-value {
        font-size: 13px !important;
        word-break: break-all;
    }
}