/* CSS Design System */
:root {
    --primary-red: #e12b2b;
    --dark-bg: #111111;
    --topbar-bg: #0c0c0c;
    --text-main: #333333;
    --text-muted: #777777;
    --white: #ffffff;
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-main);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Top Bar */
.top-bar {
    background: var(--topbar-bg);
    color: #bbb;
    font-size: 13px;
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

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

.social-links a:hover {
    color: var(--primary-red);
}

.top-right, .top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact i {
    color: var(--primary-red);
    font-size: 14px;
}

.top-contact a:hover {
    color: var(--primary-red);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    position: relative; /* Positioning context for mobile menu */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    color: #000;
}

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

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

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

.cart-box {
    position: relative;
    cursor: pointer;
}

.cart-box i {
    font-size: 22px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s linear infinite alternate;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h3 {
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero h3 span {
    color: var(--primary-red);
    font-family: 'Playball', cursive;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-explorer {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--dark-bg);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-explorer:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(225, 43, 43, 0.3);
}

/* Features Bar */
.features-bar {
    background: #f9f9f9;
    padding: 50px 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 13px;
    color: var(--text-muted);
}

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

/* Responsive */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-bg);
}

@media (max-width: 1024px) {
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: none;
        z-index: 2000;
        text-align: left;
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        color: #000 !important;
        opacity: 0; 
        font-weight: 600 !important;
        font-size: 17px;
        width: 100%;
        padding: 18px 10%;
        border-bottom: 1px solid #f5f5f5;
        display: block;
        transition: all 0.3s;
        letter-spacing: 0.5px;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:active {
        background: #fdf2f2;
        color: var(--primary-red) !important;
    }

    .nav-menu a.active {
        color: var(--primary-red) !important;
        background: #fff5f5;
        border-left: 5px solid var(--primary-red);
        padding-left: calc(10% - 5px);
    }

    .nav-menu a::after {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }
    .features-bar {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    padding: 100px 10%;
    background: var(--white);
    overflow: hidden;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(225, 43, 43, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.about-badge i {
    font-size: 30px;
    margin-bottom: 5px;
    display: block;
}

.about-badge span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content .subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content .title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content .title span {
    color: var(--primary-red);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Products Section */
.products-section {
    padding: 100px 10%;
    background: #fdfdfd;
}

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

.section-header .subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header .title {
    font-size: 36px;
    font-weight: 800;
}

.section-header .title span {
    color: var(--primary-red);
}

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

.view-more-container {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.product-img {
    position: relative;
    height: 300px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.product-card:hover .product-img::after {
    left: 125%;
}

.product-img img {
    max-width: 80%;
    max-height: 80%;
    transition: var(--transition);
}

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

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

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

.btn-add {
    padding: 12px 25px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .btn-add {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info .category {
    font-size: 12px;
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.product-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-bg);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Footer Section */
.main-footer {
    background: var(--dark-bg);
    color: #bbb;
    padding: 80px 10% 30px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col ul li a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

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

.footer-social a {
    width: 35px;
    height: 35px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--primary-red);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-red);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Contact Section */
.contact-section {
    padding: 100px 10%;
    background: var(--white);
}

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

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

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

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(225, 43, 43, 0.05);
}

.btn-submit {
    padding: 15px 40px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box i {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.info-box p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Catalogue Section */
.catalogue-section {
    padding: 100px 10%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('cat.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-left: 10%;
    margin-right: 10%;
}

.catalogue-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(225, 43, 43, 0.1));
    z-index: 1;
}

.catalogue-cta {
    position: relative;
    z-index: 2;
    text-align: center;
}

.catalogue-content {
    max-width: 750px;
    margin: 0 auto;
}

.catalogue-content .subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.catalogue-content .title {
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.catalogue-content .title span {
    color: var(--primary-red);
}

.catalogue-content p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.catalogue-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(225, 43, 43, 0.4);
    text-decoration: none;
    font-size: 14px;
}

.btn-view {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.btn-download:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(225, 43, 43, 0.3);
}

.btn-view:hover {
    background: var(--primary-red);
    color: var(--white);
}

@media (max-width: 768px) {
    .catalogue-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-download {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .catalogue-section {
        margin: 60px 5%;
        padding: 80px 5%;
    }
    .catalogue-content .title {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .catalogue-content .title {
        font-size: 28px;
    }
    .btn-download {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: #f4f6f8;
    overflow: hidden;
}

.brands-slider {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    width: calc(300px * 12);
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6)); }
}

.brand-item {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    margin: 0 25px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 800;
    color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(225, 43, 43, 0.1);
}
