.successful_title{
    color: #58a81e;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px; 
    animation: flash 0.5s ease-in-out;
}
.cart-num{

    position: relative;
}
.cart-count{
    position: absolute;
    top: -8px;
    left: 16px;
    background: #ff003c;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
}
@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}
.quantity-control {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
    outline: none;
    font-size: 12px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* nodel */

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), var(--neon-glow);  
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.Pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    max-width: 600px;
    padding: 10px;
    border-radius: 5px;    
    z-index: 1001;
    overflow: hidden;
    animation: modalFadeIn 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), var(--neon-glow);   
}
.Pop-up .top_header{
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: end;
}
.Pop-up .products_box{
  padding: 20px;
}
.Pop-up  .box_price .discount_price{
    text-decoration: line-through;
    color: #fff;
    font-size: 14px;
}
.Pop-up  .box_price .price{    
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-left: 15px;
}
.Pop-up .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Pop-up  .btn  .button{
    padding: 10px;
    background-color: #0a7e78;
    border-radius: 5px;
    margin: 0px 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.Pop-up select {
    padding: 2px 5px;
    width: 300px;
    height: 2.75rem;
    border: 1px solid #ddd;
    font-size: 12px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, .02);
    outline: none;
}
.Pop-up .sku_code{
    margin-top: 10px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #400b0b87;
    z-index: 1000;
    /* backdrop-filter: blur(5px); */
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.lager_hide{
    display: none;
}
:root {
    --primary: #000000;
    --secondary: #ff003c;
    --accent: #00ffea;
    --gold: #ffd700;
    --light: #f5f5f5;
    --dark: #111111;
    --neon-glow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 40px var(--accent);
}


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

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
    letter-spacing: 2px;
}

.logo span {
    color: var(--light);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {   
    position: relative;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    box-shadow: var(--neon-glow);
}

nav a:hover {
    color: var(--accent);
}

nav a:hover:after {
    width: 100%;
}

.user-actions a {
    color: var(--light);
    margin-left: 20px;
    font-size: 20px;
    transition: all 0.3s;
    position: relative;
}

.user-actions a:hover {
    color: var(--accent);
    transform: translateY(-3px);
    text-shadow: var(--neon-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    letter-spacing: 3px;
    line-height: 1.1;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 0, 60, 0.8), 0 0 40px rgba(0, 255, 234, 0.6);
    }
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 0 15px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.countdown-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), var(--neon-glow);
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.countdown-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.btn-black {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-black:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), var(--neon-glow);
}

.btn-black:hover:before {
    left: 100%;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: var(--light);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    box-shadow: var(--neon-glow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 0, 60, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.original-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-left: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.add-to-cart i {
    margin-right: 10px;
    font-size: 18px;
}

.add-to-cart:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), var(--neon-glow);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--accent);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-column a:before {
    content: '▶';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: white;
    padding-left: 15px;
}

.footer-column a:hover:before {
    opacity: 1;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s;
    font-size: 20px;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Floating Elements */
.floating {
    position: absolute;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 60, 0.2);
    border-radius: 50%;
}

.floating-2 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 234, 0.2);
    border-radius: 50%;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        margin: 10px 15px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        margin: 10px;
        min-width: 100px;
    }

    .section-title h2 {
        font-size: 36px;
    }
}
/* .submenu {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
} */

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

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

.nav-item {
    position: relative;
}

.nav-links > .nav-item > a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-links > .nav-item > a:hover {
    color: #ffdd40;
}


.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #070707;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    font-weight: 500;
    color: #fff;
    display: flex;
    flex-direction: column;
}

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

.sub-menu li {
    list-style: none;
}

.sub-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.sub-menu a:hover {
    background: #f8f9fa;
    color: #2575fc;
}
.sub-menu .sub-menu-2 {
    position: absolute;
    left: 100%;
    top: 0;
    background: #000;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sub-menu li:hover .sub-menu-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}



.side-menu {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    left: 0;
}

.menu-header {
    height: 50px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: bold;
}

.menu-close {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    padding: 10px 0;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.side-menu .menu-link {
    display: block;
    width: 90%;   
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.side-menu .menu-link:hover {
    background-color: #f9f9f9;
}

.menu-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #666;
}

.menu-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform-origin: center; 
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-arrow.expanded {
    transform: rotate(90deg);
}

.submenu {
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.submenu.expanded {
    max-height: 1000px;
}

.submenu .menu-link {
    padding-left: 40px;
}

.submenu .submenu .menu-link {
    padding-left: 65px;
}
.content {
    margin-top: 60px;
    padding: 15px;
}

.content h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
        max-width: 500px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-column{
        width: 49%;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .lager_hide{
        display:block;
    }
    .small_hide_box{
        display: none;
    }
    .header-top {
        flex-wrap: wrap;
    }
    
    .promo-text {
        order: 3;
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .user-actions {
        gap: 15px;
        display: flex;
        align-items: center;
    }
    
    .banner {
        padding: 50px 0;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    .footer-column{
        width: 49%;
    }
}


@media (max-width: 576px) {
    .header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .user-action span {
        display: none;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    .footer-column{
        width: 49%;
    }
}

