.elementor-6 .elementor-element.elementor-element-1393a8c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6 .elementor-element.elementor-element-1393a8c.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-6 .elementor-element.elementor-element-1393a8c{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-f7428ac *//* Reset and Base Styles */
:root {
    --primary-red: #c41e3a;
    --primary-red-dark: #9a1830;
    --primary-red-light: #e63950;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2d2d2d;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #f5f5f5;
    --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    font-size: 32px;
    color: var(--primary-red);
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    padding: 5px 0;
    position: relative;
}

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

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

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

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--gray-lighter);
    color: var(--primary-red);
    padding-left: 25px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--primary-red-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="80" cy="80" r="25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: 200px 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-icon {
    font-size: 80px;
    color: var(--primary-red);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-tagline {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background-color: var(--white);
}

.info-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 30px;
}

.info-link {
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: underline;
}

.info-link:hover {
    color: var(--primary-red-dark);
}

.info-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* What's New Section */
.whats-new {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.whats-new-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 50%, var(--black) 100%);
}

.whats-new-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><rect x="60" y="60" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 150px 150px;
}

.whats-new-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background-color: var(--gray-lighter);
}

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

.shop-title {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

.shop-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.shop-note {
    font-size: 14px;
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 25px;
}

.shop-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--black);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-description {
    font-size: 16px;
    color: var(--gray-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 14px;
    border: 2px solid var(--black-lighter);
    background-color: var(--black-lighter);
    color: var(--white);
    border-radius: 0;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

/* Social Section */
.social-section {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
}

.social-content {
    text-align: center;
}

.social-title {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    color: var(--white);
    font-size: 20px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--black);
    color: var(--white);
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-red);
}

.copyright {
    font-size: 14px;
    color: var(--gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    color: var(--gray);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-link {
    font-size: 14px;
    color: var(--primary-red);
    text-decoration: underline;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 12px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-manage {
    background-color: transparent;
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

.cookie-btn-allow {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-close:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-lighter);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 50px;
    }

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

    .shop-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-icon {
        font-size: 60px;
    }

    .hero-tagline {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}/* End custom CSS */