/* NOE Athletic - Global Styles */
:root {
    --noe-teal: #1a9b8f;
    --noe-teal-dark: #147a70;
    --noe-navy: #1a2744;
    --noe-coral: #ff6b6b;
    --noe-pink: #ff8fab;
    --noe-yellow: #ffd93d;
    --noe-green: #6bcb77;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --black: #0d0d0d;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--noe-teal), var(--noe-teal-dark));
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.announcement-bar strong {
    color: var(--noe-yellow);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--noe-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--noe-navy);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--noe-navy);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--noe-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--noe-teal);
}

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

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-actions a {
    color: var(--noe-navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-actions a:hover {
    color: var(--noe-teal);
}

.cart-btn {
    background: var(--noe-navy);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn:hover {
    background: var(--noe-teal) !important;
}

.cart-count {
    background: var(--noe-coral);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 16px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--noe-navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--noe-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 155, 143, 0.3);
}

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

.btn-secondary:hover {
    background: var(--noe-navy);
    color: var(--white);
}

.btn-teal {
    background: var(--noe-teal);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--noe-yellow);
    color: var(--noe-navy);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--noe-teal), var(--noe-green));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--noe-navy);
    letter-spacing: 0.05em;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-decoration: none;
    display: block;
}

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

.product-image {
    position: relative;
    height: 280px;
    background: var(--light-gray);
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-new { background: var(--noe-teal); color: var(--white); }
.badge-sale { background: var(--noe-coral); color: var(--white); }
.badge-hot { background: var(--noe-yellow); color: var(--noe-navy); }
.badge-limited { background: var(--noe-pink); color: var(--white); }

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.7rem;
    color: var(--noe-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.product-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--noe-navy);
    margin-bottom: 10px;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--noe-navy);
}

.product-price .original {
    text-decoration: line-through;
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: 10px;
}

.product-price .sale {
    color: var(--noe-coral);
}

/* Footer */
footer {
    background: var(--noe-navy);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: var(--noe-teal);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--noe-teal);
}

.footer-title {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--noe-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--noe-teal);
    text-decoration: none;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods span {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 60px;
    font-size: 0.85rem;
    color: var(--gray);
    background: var(--off-white);
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--noe-teal);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--noe-navy);
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    nav {
        padding: 15px 30px;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .breadcrumb {
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    footer {
        padding: 60px 30px 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
