.main {
    background: #000000;
    min-height: 84vh;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;

}

.auth-box {
    width: 1100px;
    min-height: 550px;
    background: #090214;
    display: flex;
    position: relative;
    border: 2px solid #8b3dff;
    box-shadow: 0 0 10px #8b3dff, 0 0 25px #8b3dff, 0 0 50px rgba(139, 61, 255, .5);
}

.left-side {
    width: 45%;
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
    display: flex;
    align-items: center;
}

.left-content {
    padding-left: 60px;
    color: #fff;
}

.left-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.left-content p {
    width: 260px;
    color: #e5e5e5;
    font-size: 15px;
    line-height: 1.7;
}

.right-side {
    flex: 1;
    padding: 60px 70px;
    color: #fff;
}

.right-side h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 50px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .8);
    color: #fff;
    font-size: 15px;
    padding: 12px 40px 12px 0;
    outline: none;
}

.form-group input::placeholder {
    color: #cfcfcf;
}

.form-group i {
    position: absolute;
    right: 5px;
    top: 14px;
    color: #fff;
    font-size: 15px;
}

.invalid-feedback {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
}

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-row label {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-row a {
    color: #a855f7;
    text-decoration: none;
}

.remember-row a:hover {
    color: #c084fc;
}

.login-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(180deg,
            #a855f7,
            #7e22ce);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow:
        0 0 10px #3C1777,
        0 0 20px rgba(147, 51, 234, .5);
    transition: .3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 15px #a855f7,
        0 0 30px rgba(168, 85, 247, .7);
}

@media (max-width: 991px) {

    .auth-wrapper {
        padding: 20px;
    }

    .auth-box {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        border-radius: 12px;
    }

    .left-side {
        width: 100%;
        clip-path: none;
        justify-content: center;
        padding: 60px 20px;
        text-align: center;
    }

    .left-content {
        padding: 0;
    }

    .left-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .left-content p {
        width: 100%;
        font-size: 14px;
    }

    .right-side {
        padding: 35px 25px;
    }

    .right-side h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="text"] {
        font-size: 14px;
        padding: 10px 35px 10px 0;
    }

    .form-group i {
        font-size: 14px;
        top: 12px;
    }

    .remember-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
    }

    .login-btn {
        height: 50px;
        font-size: 16px;
    }
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #000;
    padding: 10px 15px;
}

.logo {
    max-height: 40px;
}

.search-box {
    display: flex;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 9px 13px;
    border: none;
    outline: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.search-box button {
    background: red;
    border: none;
    color: #fff;
    padding: 0 20px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.icons i {
    background: red;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin-left: 10px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 10px 0 0;
    padding: 0;
}

.menu ul li {
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    font-size: 15px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.price {
    margin: 6px 0;
}

.price del {
    color: #999;
    margin-right: 8px;
}

.price span {
    color: red;
    font-weight: bold;
}

.config {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
    min-height: 40px;
}

.buy-btn {
    display: block;
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* WHATSAPP */
.whatsapp-btn {
    display: block;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
}

.hot-deals-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.view-all-link {
    text-decoration: none;
    color: #ff3c2f;
    font-weight: 600;
    transition: .3s;
}

.view-all-link:hover {
    color: #d62c20;
}

.banner-section {
    position: relative;
    width: 100%;
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin: 0 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
}

.banner-text {
    font-size: 28px;
    font-weight: 500;
    max-width: 700px;
    color: red;
}

/* Tablet */
@media (max-width: 991px) {

    .banner-content {
        width: 90%;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 5px;
    }

    .banner-text {
        font-size: 22px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .banner-section img {
        min-height: 250px;
        object-fit: cover;
    }

    .banner-content {
        width: 90%;
    }

    .social-icons {
        margin-bottom: 15px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 3px;
    }

    .banner-text {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .banner-section img {
        min-height: 200px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0;
    }

    .banner-text {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 10px;
    }
}
.top-brand {
    background: #f8f8f8;
}

.brand-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
}

.view-all {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 500;
}

.brand-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.reviews-section {
    background: #f8fafc;
}

.rating-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.rating-box h2 {
    font-weight: 700;
}

.stars {
    color: #ffb400;
    font-size: 32px;
    margin: 10px 0;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars {
    color: #ffb400;
    margin-bottom: 10px;
}

.red {
    color: red;
    font-size: 19px;
}

.why-card {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 6px;
    height: 100%;
}

.why-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.subscribe-section {
    background: #f5f5f5;
}

.footer-dark {
    background: #000;
    color: #fff;
    padding-top: 60px;
}

.contact-row {
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}

.footer-links-row {
    padding-top: 50px;
}

.footer-dark h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-dark p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e30613;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: #1c1c1c;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    margin-top: 50px;
    background: #e5e5e5;
    color: #555;
    text-align: center;
    padding: 18px;
}

.brand-section {
    background: #d9d9d9;
    padding: 16px 0;
}

.brand-box {
    max-width: 1140px;
    margin: 0 auto;
    background: #f5f5f5;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    border-radius: 2px;
}

.brand-box a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
}

.brand-box a:hover {
    color: #e30613;
}
    .top-info-bar {
    background: #000;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.info-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 45px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.info-item i {
    color: #ff3b30;
    font-size: 20px;
}

@media (max-width: 991px) {
    .info-items {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
    }

    .info-item {
        font-size: 13px;
    }
}
  .promo-video-section {
            background: #f8f9fa;
        }

        .video-card {
            background: linear-gradient(180deg, #ff4d1a, #f0a020);
            padding: 15px;
            border-radius: 10px;
        }

        .video-card iframe {
            width: 100%;
            height: 220px;
            border: none;
            border-radius: 8px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            opacity: 1;
        }

        .custom-arrow {
            width: 45px;
            height: 45px;
            background: #22c55e;
            color: #fff;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .video-card iframe {
                height: 200px;
            }

            .custom-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
        .main-menu{
    display:flex;
    align-items:center;
    gap:25px;
    background: black;
}

.main-menu .menu-item{
    position:relative;
}

.main-menu .menu-item > a{
    color:#e5e7eb;
    text-decoration:none;
    display:block;
    padding:12px 14px;
    font-size:15px;
    font-weight:500;
    border-radius:6px;
    transition:0.3s ease;
}

.main-menu .menu-item > a:hover{
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    transform: translateY(-2px);
}

.submenu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#ffffff;
    list-style:none;
    padding:8px 0;
    margin:0;

    opacity:0;
    visibility:hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:999;
}

.menu-item:hover .submenu{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
}

.submenu li a{
    display:block;
    padding:10px 15px;
    color:#111827;
    text-decoration:none;
    font-size:14px;
    transition:0.25s;
}

.submenu li a:hover{
    background:#f3f4f6;
    padding-left:22px;
    color:#000;
}

.main-menu .menu-item > a::after{
    content:"";
    display:block;
    width:0%;
    height:2px;
    background:#3b82f6;
    transition:0.3s;
    margin-top:4px;
}

.main-menu .menu-item > a:hover::after{
    width:100%;
}

.icons .badge{
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0;
    color: #000;

}
.card {
    transition: 0.3s;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15) !important;
}
.mainlogo{
width: 100px;
height: 200px;
}
.mobile-header{
    background:#000;
    padding:10px 15px 15px;
}
.mobile-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.mobile-menu-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#ff4d2d;
    color:#fff;
    font-size:28px;
}

.mobile-logo{
    height:75px;
    object-fit:contain;
}


.mobile-cart{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ff4d2d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    font-size:20px;
}

.mobile-cart span{
    position:absolute;
    top:-5px;
    right:-5px;
    width:18px;
    height:18px;
    background:#fff;
    color:#000;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-search{
    display:flex;
}

.mobile-search input{
    width:100%;
    height:45px;
    border:none;
    padding:0 15px;
}

.mobile-search button{
    width:55px;
    border:none;
    background:#ff4d2d;
    color:#fff;
}


.offcanvas{
    width:320px ;
}

.mobile-sidebar-header{
    padding:15px;
    border-bottom:1px solid #eee;
}

.sidebar-search{
    margin-bottom:15px;
    border:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px;
}

.sidebar-search input{
    border:none;
    outline:none;
    width:100%;
}

.mobile-category{
    border-top:1px solid #eee;
}

.category-btn{
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#000;
}

.subcategory-link{
    display:block;
    padding:12px 30px;
    text-decoration:none;
    color:#555;
    border-top:1px solid #f5f5f5;
}

.mobile-links{
    margin-top:15px;
}

.mobile-links a{
    display:block;
    padding:15px;
    text-decoration:none;
    color:#000;
    border-top:1px solid #eee;
}

@media(max-width:991px){

    .main-header,
    .main-menu{
        display:none !important;
    }

}
@media(max-width:1024px){

    .main-header,
    .main-menu{
        display:none !important;
    }

    .mobile-header{
        display:block !important;
    }

}