/* ================================================================= */
/* ========================= GLOBAL CSS & VARIABLES ================== */
/* ================================================================= */

:root {
    --evogen-red: #cc0000;
    --evogen-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --light-gray: #f8f8f8;
    --medium-gray: #eee;
    --border-gray: #ddd;
    --font-family: 'Montserrat', sans-serif;
    --max-width: 1300px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--evogen-red);
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================= */
/* ========================= HEADER STYLES =========================== */
/* ================================================================= */

.header-top {
    background-color: #000;
    color: var(--text-light);
    font-size: 0.75em;
    padding: 8px 0;
    border-bottom: none;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top a {
    color: var(--text-light);
    font-weight: 500;
}

.header-top a:hover {
    color: var(--evogen-red);
}

.separator {
    color: #666;
    margin: 0 8px;
}

.header-main {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo-img {
    max-width: 140px;
    height: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--text-dark);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05) 0%, rgba(204, 0, 0, 0.03) 50%, rgba(26, 26, 26, 0.05) 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--evogen-red) 0%, #d60909 50%, #690404 100%);
    opacity: 0;
    transform: scale(0.9) translateY(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    z-index: -1;
    filter: blur(0px);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    border: none;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3), 0 0 30px rgba(204, 0, 0, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px);
}

.nav-link:hover::after {
    width: 200px;
    height: 200px;
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--evogen-red) 0%, #ff1a1a 50%, #ff3333 100%);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.5), 0 0 40px rgba(204, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.03);
    border: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link.active::before {
    opacity: 1;
    background: linear-gradient(135deg, #ff1a1a 0%, var(--evogen-red) 50%, #ff1a1a 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    transform: scale(1) translateY(0);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


.nav-link i {
    font-size: 0.7em;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-link:hover i,
.nav-link.active i {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(204, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 12px 0;
    border: 1px solid rgba(204, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: none;
    font-size: 0.9em;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 8px;
    border-radius: 8px;
    background: linear-gradient(90deg, transparent 0%, rgba(204, 0, 0, 0.02) 100%);
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, var(--evogen-red) 0%, #ff1a1a 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(204, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%);
    color: var(--evogen-red);
    padding-left: 28px;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.15);
}

.dropdown-menu a:hover::before {
    height: 70%;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.header-icon {
    font-size: 1.2em;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

.header-icon:hover {
    color: var(--evogen-red);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--evogen-red);
    color: var(--text-light);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    line-height: 1.4;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

/* Search Bar */
.search-bar {
    display: none;
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--medium-gray);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-bar.active {
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 3px;
    font-family: var(--font-family);
    font-size: 1em;
}

.search-input:focus {
    outline: none;
    border-color: var(--evogen-red);
}

.search-btn,
.search-close {
    background: var(--evogen-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.search-btn:hover,
.search-close:hover {
    background: #a00000;
}

/* ================================================================= */
/* ========================= SEARCH OVERLAY ======================== */
/* ================================================================= */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    transform: translateY(-30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0) scale(1);
}

.search-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-overlay-close:hover {
    background: var(--evogen-red);
    border-color: var(--evogen-red);
    transform: rotate(90deg);
}

.search-overlay-inner {
    text-align: center;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-icon-large {
    font-size: 4em;
    color: var(--evogen-red);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.search-overlay-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

.search-overlay-input {
    flex: 1;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-family);
    font-size: 1.2em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-overlay-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--evogen-red);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    transform: scale(1.02);
}

.search-overlay-submit {
    background: var(--evogen-red);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-overlay-submit:hover {
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.4);
}

.search-overlay-submit:active {
    transform: translateY(0);
}

.search-overlay-submit i {
    font-size: 1.2em;
}

.search-suggestions {
    margin-top: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.search-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.suggestion-tag {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 0.9em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.suggestion-tag:hover {
    background: var(--evogen-red);
    border-color: var(--evogen-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

/* Search Overlay Responsive */
@media (max-width: 768px) {
    .search-overlay-content {
        padding: 30px 20px;
    }
    
    .search-icon-large {
        font-size: 3em;
        margin-bottom: 20px;
    }
    
    .search-overlay-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-overlay-input {
        font-size: 1em;
        padding: 18px 20px;
    }
    
    .search-overlay-submit {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }
    
    .suggestion-tags {
        gap: 10px;
    }
    
    .suggestion-tag {
        padding: 10px 20px;
        font-size: 0.85em;
    }
}

/* ================================================================= */
/* ========================= BUTTONS ================================ */
/* ================================================================= */

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    font-size: 0.9em;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--evogen-red);
    color: var(--text-light);
    border-color: var(--evogen-red);
}

.btn-primary:hover {
    background-color: #a00000;
    border-color: #a00000;
    color: var(--text-light);
}

.btn-dark {
    background-color: var(--evogen-dark);
    color: var(--text-light);
    border-color: var(--evogen-dark);
}

.btn-dark:hover {
    background-color: #000;
    border-color: #000;
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--evogen-red);
    border-color: var(--evogen-red);
    color: var(--text-light);
}

/* ================================================================= */
/* ========================= HERO SECTION =========================== */
/* ================================================================= */

.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 5%;
    margin-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--evogen-red);
    font-weight: 900;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ================================================================= */
/* ========================= PRODUCT GRID =========================== */
/* ================================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 3px;
}

.product-card h3 {
    font-size: 1.1em;
    min-height: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-card .price {
    display: block;
    font-size: 1.4em;
    color: var(--evogen-red);
    font-weight: bold;
    margin-bottom: 15px;
}

.product-card .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 10px;
}

.product-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--evogen-red);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 3px;
}

/* ================================================================= */
/* ========================= SECTION TITLES ======================== */
/* ================================================================= */

.section-title {
    text-align: center;
    font-size: 2.5em;
    text-transform: uppercase;
    margin: 60px 0 40px;
    font-weight: 800;
    color: var(--evogen-dark);
}

/* ================================================================= */
/* ========================= FOOTER ================================= */
/* ================================================================= */

.main-footer {
    margin-top: auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #cc0000 100%);
    padding: 80px 0 30px;
    font-size: 0.9em;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    font-size: 1.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--evogen-red) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(204, 0, 0, 0.3));
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(204, 0, 0, 0.6));
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--evogen-red);
}

.footer-column a:hover::before {
    opacity: 1;
    left: -15px;
}

.newsletter-column p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 3px;
    font-family: var(--font-family);
    font-size: 1em;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--evogen-red);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom-content {
    width: 100%;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.rayza-link {
    color: #fff;
    font-weight: 800;
    font-size: 1.8em;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.3) 0%, rgba(204, 0, 0, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(204, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.2);
}

.rayza-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--evogen-red) 0%, #ff1a1a 50%, var(--evogen-red) 100%);
    border-radius: 6px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.rayza-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #fff 50%, transparent 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.rayza-link:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 50px rgba(204, 0, 0, 0.8), 0 0 75px rgba(204, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6), 0 0 50px rgba(204, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
    font-size: 1.35em;
    letter-spacing: 2px;
}

.rayza-link:hover::before {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(135deg, var(--evogen-red) 0%, #ff3333 50%, #ff1a1a 100%);
}

.rayza-link:hover::after {
    width: 100%;
    height: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.rayza-link:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.5);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2em;
    color: #fff;
}

.payment-methods i {
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.payment-methods i:hover {
    transform: translateY(-5px) scale(1.1);
    filter: grayscale(0);
    color: var(--evogen-red);
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
}

/* Social Media Icons */
.footer-social {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-column:last-child .footer-social {
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1;
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--evogen-red) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--evogen-red);
    background: rgba(204, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4), 0 0 30px rgba(204, 0, 0, 0.3);
    color: #fff;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon i {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Newsletter Form Enhanced */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.newsletter-form input[type="email"] {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--evogen-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    transform: translateY(-2px);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, var(--evogen-red) 0%, #ff1a1a 100%);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.newsletter-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff1a1a 0%, var(--evogen-red) 100%);
}

/* ================================================================= */
/* ========================= RESPONSIVE ============================= */
/* ================================================================= */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.8em;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
        background: rgba(204, 0, 0, 0.1);
        border-radius: 8px;
        padding: 8px 12px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(204, 0, 0, 0.2);
        transform: scale(1.05);
    }
    
    .main-nav {
        width: 100%;
        order: 3;
        margin-top: 15px;
        display: none;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 5px 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 12px 15px;
        border-radius: 8px;
        width: 100%;
        justify-content: flex-start;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.03) 0%, rgba(204, 0, 0, 0.02) 50%, rgba(26, 26, 26, 0.03) 100%);
    }
    
    .nav-link:hover {
        transform: translateX(5px) scale(1.01);
    }
    
    .nav-link.active {
        transform: translateX(5px) scale(1.02);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(204, 0, 0, 0.1);
        padding: 8px 0;
        margin-left: 0;
        margin-top: 8px;
        background: rgba(204, 0, 0, 0.05);
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        margin: 0;
        padding: 10px 20px;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 25px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .hero-section {
        height: 400px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 15px;
    }
    
    .footer-bottom-content p {
        font-size: 0.9em;
    }
    
    .rayza-link {
        padding: 2px 6px;
        font-size: 0.95em;
    }
    
    .footer-bottom-content p {
        font-size: 0.85em;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.5em;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.8em;
    }
    
    .footer-column h4 {
        font-size: 0.95em;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9em;
    }
    
    .payment-methods {
        font-size: 1.3em;
        gap: 10px;
    }
    
    .newsletter-form input[type="email"] {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .newsletter-form .btn {
        padding: 12px 20px;
        font-size: 0.85em;
    }
}

