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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000000;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
img {
    -webkit-user-drag: none;
    user-select: none;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin-left: 90px;
}

header {
    position: sticky;
    top: 0%;
    z-index: 1000;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar {
    background: #000000;
    color: #ffffff;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.top-bar p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 150px;
}

.top-bar i {
    color: #39d353;
}

.header-main {
    background: #000000;
    border-bottom: 1px solid #1d1d1d;
}

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
}

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

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

}

.logo i {
    color: #39d353;
    font-size: 32px;
    margin-left: -70px;
    text-shadow: 0 0 20px rgba(57, 212, 83, 0.685);
}

.logo-tech {
    color: #39d453;
    font-size: 34px;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(57, 212, 83, 0.89);
}

.logo-store {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-left: -9px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.473);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 45px;
    margin-left: 250px;
    position: relative;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 540;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a.active {
    color: #39d453;
}

.nav-links a:hover {
    color: #72f077;
    text-shadow: 0 0 8px rgba(61, 173, 80, 0.9),
                 0 0 16px rgba(68, 184, 87, 0.7),
                 0 0 24px rgba(75, 196, 95, 0.5); 
}

.nav-indicator {
    position: absolute;
    bottom: -18px;
    left: 0;
    height: 2px;
    background: #72f077;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(61, 173, 80, 0.9),
                0 0 16px rgba(68, 184, 87, 0.7),
                0 0 24px rgba(75, 196, 95, 0.5);
    transition: left .35s ease,
                width .35s ease;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 100px;
}

.search-bar {
    position: relative;
    width: 270px;
    
}

.search-bar input {
    width: 100%;
    height: 42px;
    background: #1b1b1b;
    border: 1px solid #2d2d2d;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    padding: 0 45px 0 16px;
    transition: .3s ease;
}

.search-bar input::placeholder {
    color: #9c9c9c
}

.search-bar input:focus {
    outline: none;
    border-color: #4b4b4b;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.search-bar i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #8f8f8f;
    cursor: pointer;
    transition: .3s ease;
}

.search-bar i:hover {
    color: #72f077;
    text-shadow: 0 0 6px rgba(144,240,119,.9),
                 0 0 14px rgb(116, 231,.6);
}

.user-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
    margin-top: 3px;
    margin-left: 10px;
}

.user-btn:hover {
    color: #72f077;
    text-shadow: 0 0 6px rgba(144,240,119,.9),
                 0 0 14px rgb(116, 231,.6);
}

.cart-btn,
.wishlist-btn1 {
    position: relative;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
    margin-top: 3px;
    margin-left: 10px;
}

.cart-btn {
    margin-left: 25px;
}

.cart-btn:hover,
.wishlist-btn1:hover {
    color: #72f077;
    text-shadow: 0 0 6px rgba(144,240,119,.9),
                 0 0 14px rgb(116, 231,.6);
}

.cart-count,
.wishlist-count {
    position: absolute;
    left: 26px;
    width: 18px;
    height: 18px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 2px;
}

.quantity {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
}
/*--------- HERO ----------*/

.hero {
    background: #000003;
    padding: 1px 0;
    overflow: hidden;
    position: relative;
    min-height: 550px;
}

#hero,
#categories,
#featured-products,
#summer-banner,
#why-choose-us,
#content {
    scroll-margin-top: 104px;
}
.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    margin-left: 170px;
}
.hero-content {
    flex: 0 0 48%;
    z-index: 2;
    margin-left: 10px;
    width: 700px;
}

.hero-image {
    position: absolute;
    top: -50px;
    right: 0;
    height: 100%;
    display: block;
    width:80%;
    display: flex;
    justify-content:flex-end;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    
}
.hero-image img {
    display: block;
    width: 100%;
}

.hero-content h1 {
    color: white;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 700px;
    margin-top: 55px;
}

.hero-content h1 span {
    color: #39d453;
}

.hero-content p {
    color: #ebebeb;
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 430px;
    margin-top: -11px;
    
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    margin-top: 10px;
    background: linear-gradient(90deg, #47d64d,#67ef63);
    color:#fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: .3s ease;
    box-shadow: 0 2px 9px rgba(71,214,77,.35);
    position: relative;
    overflow: hidden;
}

.hero-btn i {
    font-size: 14px;
    transition: .3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 10px rgba(71,214,77,.45);
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn::before {
    content: "";
    position: absolute;
    top:0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent rgba(255,255,255,.25), transparent);
    transition: .6s;
}

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

.hero-features {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.features {
    display: flex;
    gap: 14px;
    width: 220px;
}

.features i {
    font-size: 26px;
    color: #39d453;
}

.features h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}

.features p {
    color: #9b9b9b;
    font-size: 14px;
    margin: 0;
}


/*--------- CATEGORIES ----------*/
.main-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.categories {
    background: #ffffff;
    padding: 20px 0;
    margin-top: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 27px;
    font-weight: 600;
    color: #111;
}

.section-header a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    transform: translateX(100px);
    margin-right: 110px;
}

.section-header a:hover {
    color: #39d453
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}

.category-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    flex: 1;
    max-width: 230px;
    padding: 30px 20px;
    text-align: center;
    transition: .35s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.category-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
    margin:0 auto 18px;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    text-align: center;
}

.category-card p {
    font-size: 14px;
    color: #8b8b8b;
}


/*--------- FEATURED PRODUCTS ----------*/

.featured-products {
    background: #ffffff;
    padding: 20px 0 40px;
}

#sort-products {
    padding: 6px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    
}

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

.product-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 18px;
    position: relative;
    transition: .3s;
    width: auto;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #39d353;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 10px auto 25px;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    margin-top: -17px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #f5b301;
    font-size: 13px;
}

.product-rating span {
    color: #888;
    font-size: 13px;
    margin-left: 5px;
}

.product-price {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    gap: 8px;
}

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

.add-to-cart {
    background: #39d353;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.add-to-cart:hover {
    background: #2fb548;
    transform: translateY(2px);
}

.add-to-cart:active {
    transform: translateY(4px);
}

.product-buttons i {
    font-size: 17px;
    color: #7c7a7a;
    background: rgb(243, 243, 243);
    cursor: pointer;
    transition: .3s;
    padding: 11px 17px;
    border-radius: 8px;
}

.product-buttons i:hover {
    color: #39d453;
}

.wishlist-btn {
    background: rgba(243,243,243);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.wishlist-btn i.active {
    font-size: 17px;
    color: #39d353;
    transition: .3s;
}

.wishlist-btn:hover {
    background: #eeeeee;
}

.wishlist-btn:hover i {
    color: #39d353;
}

.product-discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f02929;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}


/*--------- SUMMER BANNER ----------*/

.summer-content {
    background: linear-gradient(90deg, #050505, #0b0b0b);
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.offer-badge {
    color: #39d353;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.summer-text h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}

.summer-text p {
    color: #b8b8b8;
    font-size: 17px;
    margin-bottom: 28px;
}

.summer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #39d353;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

.summer-btn:hover {
    background: #2db84a;
}

.summer-image {
    flex: 1;
    position: relative;
}

.summer-image img {
    width: 470px;
    position: absolute;
    right: 270px;
    bottom: -40px;
    object-fit: contain;
}

.discount-circle {
    position: absolute;
    right: 180px;
    top: -210px;
    width: 170px;
    height: 170px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.discount-circle small {
    font-size: 19px;
    font-weight: 700;
    color: #111;
}
.discount-circle span {
    font-size: 56px;
    margin-top: 3px;
    margin-bottom: 3px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.discount-circle p {
    font-size: 19px;
    font-weight: 700;
    color: #111;
}

/*--------- WHY CHOOSE US ----------*/

.why-choose-us {
    background: #ffffff;
    padding: 35px 0 80px;
}

.why-choose-us h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
}

.featured-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-card {
    margin-top: -10px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f4fff6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 36px;
    color: #39d353;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: #8b8b8b;
    line-height: 1.5;
}


/*--------- BEST SELLERS ----------*/

.best-sellers {
    padding: 18px 0;
    background: #fff;
    margin-top: -60px;
}

.best-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    transition: .3s;
}

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

.product-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 16px;
}


/*--------- TESTIMONIALS ----------*/

.testimonials {
    padding: 20px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.testimonials-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    margin-top: 20px;
    padding: 25px;
    transition: .3s;
}

.testimonials-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars {
    color: #f8b400;
    margin-bottom: 15px;
    font-size: 15px;
}
.customer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.customer-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-icon i {
    font-size: 22px;
    color: #39d453;
}

.customer-info h4 {
    margin: 0;
    font-size: 16px;
}

.customer-info span {
    font: 14px;
    color: rgb(114, 114, 112);
}


/*--------- NEWSLETTER ----------*/

.newsletter {
    background: #030303;
    padding: 45px 0;
    margin-top: 20px;
}

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

.newsletter-text h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #b9b9b9;
    margin-bottom: 15px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-form input {
    display: flex;
    gap: 15px;
    width: 550px;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    background: #0f0f0f;
    color: white;
}

.newsletter-form button {
    background: #39d453;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    align-self: flex-start;
    margin-top: 1px;
}

.newsletter-message.error-message {
    color: #ff4d4d;
    font-size: 16px;
}

.newsletter-message {
   position: absolute;
   top: 60px;
   left: 0;
}

.newsletter-form button:hover {
    background: #2db646;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    position: relative;
}

/*--------- FOOTER ----------*/

footer {
    background: #000000;
    padding: 20px 0 1px;
}

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

.footer-column h3 {
    color: #39d453;
    text-shadow: 0 0 10px rgba(57, 212, 83, 0.785);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    color: #39d453;
    text-shadow: 0 0 10px rgba(57, 212, 83, 0.785);
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s;
}

.footer-column a:hover {
    color: #39d453;
    text-shadow: 0 0 8px rgba(61, 173, 80, 0.9),
                 0 0 16px rgba(68, 184, 87, 0.7),
                 0 0 24px rgba(75, 196, 95, 0.5); 
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1b1b1b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.social-icons i {
    margin-bottom: 10px;
    font-size: 25px;
}

.social-icons a:hover {
    background: #39d453;
}

.social-icons a:hover i {
    color: #000000;
}

.copyright {
    color: #777;
    margin-top: 15px;
}

.footer-column i {
    color: #39d453;
    margin-top: 10px;
}


/*--------- CART DRAWER ----------*/

.cart-footer {
    padding: 25px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.cart-footer h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.cart,
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    transition: right 0.3s ease;
    z-index: 1001;
}

.cart-header,
.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.cart-header h2,
.wishlist-header h2  {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.close-cart,
.close-wishlist {
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    color: #000000;
    transition: .3s;
}

.close-cart:hover,
.close-wishlist:hover  {
    color: #2ecc71;
    transform: rotate(90deg);
}

.cart.active,
.wishlist-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-item,
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.cart-item img,
.wishlist-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 8px;
}

.wishlist-item-info {
    flex: 1;
}

.remove-wishlist{
    margin-left: auto;
}

.cart-item-info h4,
.wishlist-item-info h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.cart-item-info p,
.wishlist-item-info p  {
    color: black;
    font-weight: 600;
}

.total-price {
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px solid #2ecc2e;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    background: linear-gradient(90deg, #47d64d,#67ef63);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 10px rgba(71,214,77,.45);
}

.checkout-btn:active {
    transform: scale(.98);
    background: linear-gradient(90deg, #48d64f,#5ed85a);
    box-shadow: 4px 5px 10px rgba(71,214,77,.45);
}

.checkout-message {
    margin-top: 15px;
    font-size: 14px;
    color: #d43939;
    text-shadow: 0 0 10px rgba(212, 57, 57, 3);
    text-align: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 10px 0;
}

.quantity-controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f2f2f2;
    color: #444;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease;
}

.quantity-controls button:hover {
    background: #2ecc71;
    color: white;
    transform: scale(1.1);
}

.quantity {
    font-size: 15px;
    font-weight: 600;
    min-width: 35px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 20px;
    transition: .3s;
    margin-left: 100px;
    border-radius: 50%;
}

.remove-wishlist {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #888;
    font-size: 20px;
    transition: .3s;
    margin-right: 25px;
    flex-shrink: 0;
}
.remove-wishlist:hover{
    background: #e74c3c;
    color: white;
    transform: scale(1.15);
}
.remove-item:hover {
    background: #e74c3c !important;
    transform: scale(1.15);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.empty-cart h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.empty-cart i {
    font-size: 26px;
    margin-bottom: 10px;
}

.empty-cart p {
    font-size: 16px;
    color: #777;
}

.no-results {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #666;
    padding: 153px 0;
    min-height: 250px;
}


/*--------- CART TOAST NOTIFICATION ----------*/
.toast {
    position: fixed;
    top: 100px;
    right: -450px;
    width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0.15);
    transition: all .4s ease;
    z-index: 9999;
}

.toast.active {
    right: 20px;
}

.toast-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    padding: 5px;
}

.toast-text {
    flex: 1;
}

.toast-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #222;
}

.toast-text p {
    font-size: 14px;
    color: #666;
}

.toast i {
    color: #00c853;
    font-size: 26px;
}


/*--------- WISHLIST ---------- Also have some css in CART DRAWER*/

.empty-wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 25px;
}

.empty-wishlist i {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-wishlist h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.empty-wishlist p {
    color: #777;
    line-height: 1.6;
    max-width: 240px;
}

/*--------- WISHLIST TOAST NOTIFICATION ----------*/
.wishlist-toast {
    position: fixed;
    top: 220px;
    right: -380px;
    width: 360px;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 15px 35px rgba(0,0,0.15);
    transition: .4s;
    z-index: 3000;
    background: white;
}

.wishlist-toast.active {
    right: 20px;
}

.wishlist-toast-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 6px;
}

.wishlist-toast-text {
    flex: 1;
}

.wishlist-toast-text h4 {
   font-size: 16px;
    margin-bottom: 4px;
    color: #222;
}

.wishlist-toast-icon {
    color: #ff4d6d;
    font-size: 26px;
}

.wishlist-toast-message {
    font-size: 14px;
    color: #666;
}

.move-to-cart {
    margin-top: 12px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #6bdb59;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.move-to-cart:hover {
    background: #57c847;
    transform: translateY(-2px);
}

.move-to-cart i {
    font-size: 14px;
}

/*--------- Quick View Product ----------*/
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 3000;
}

.quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view {
    position: relative;
    width: 900px;
    max-width: 90%;
    background: white;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    gap: 50px;
    align-items: center;
    transform: scale(.85);
    opacity: 0;
    transition: .35s ease;
}

.quick-view-overlay.active .quick-view {
    transform: scale(1);
    opacity: 1;
}

.close-quick-view {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.close-quick-view:hover {
    color: #2ecc71;
    transform: rotate(180deg);
}

.quick-view-image {
    flex: 1;
    text-align: center;
}

.quick-view-product-image {
    width: 100%;
    max-width: 350px;
}

.quick-view-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.quick-view-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    width: 100%;
}

.quick-view-price {
    font-size: 30px;
    color: #6ce05b;
    font-weight: bold;
    margin-bottom: 25px;
    width: 100%;
}

.quick-view-features {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    line-height: 2;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quick-view-features li {
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.quick-view-add-cart {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #6ce05b;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.quick-view-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 10px rgba(71,214,77,.45);
}

.quick-view-overlay.active .quick-view-product-image {
    animation: imagePop .45s ease;
}

@keyframes imagePop {
    from {
        transform: scale(.69);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ===========================
   RESPONSIVE 1200px
=========================== */

@media (max-width: 1200px) {

/* ---------- Containers ---------- */

.container {
    width:100%;
    max-width:1100px;
    padding:0 25px;
}

.main-container {
    max-width:1100px;
    padding:0 25px;
}


/* ---------- Header ---------- */

.top-bar p {
    margin-right:0;
    justify-content:center;
}

.logo i {
    margin-left:0;
    font-size:28px;
}

.logo-tech,
.logo-store {
    font-size:30px;
}


/* ---------- Navigation ---------- */

 .navbar {
    height:70px;
}

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

.nav-links {
    gap:30px;
    margin-left:60px;
}

.nav-links a {
    font-size:14px;
}

.nav-actions {
    margin-left:40px;
    gap: 18px;
}

.wishlist-btn1 {
    margin-right: 10px;
}

.search-bar {
    width:210px;
}

.search-bar input {
    height:40px;
    font-size:13px;
}

.user-btn,
.wishlist-btn1,
.cart-btn {
    font-size:18px;
}

.cart-btn {
    margin-left:12px;
}

/* ---------- Hero ---------- */

.hero {
    min-height:450px;
}

.hero .container {
    margin-left:0;
    gap:30px;
    align-items:center;
}

.hero-content {
    width:auto;
    flex:0 0 52%;
    margin-left:50px;
    z-index:2;
}

.hero-content h1 {
    font-size:56px;
    margin-top:20px;
    max-width:550px;
}

.hero-content p {
    font-size:18px;
    max-width:380px;
    line-height:1.6;
}

.hero-btn {
    padding:15px 30px;
    font-size:16px;
}

.hero-features {
    gap:20px;
    margin-top:45px;
}

.features {
    width:180px;
    gap:10px;
}

.features i {
    font-size:22px;
}

.features h4 {
    font-size:15px;
}

.features p {
    font-size:13px;

}
.hero-image {
    width:88%;
    top:-20px;
    right:-20px;
}

.hero-image img {
    width:100%;
}

/* ---------- Categories ---------- */

.categories-grid {
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.category-card {
    max-width:none;
    width:100%;
    padding:28px 18px;
}

.category-card img {
    width:115px;
    height:115px;
}

.section-header a {
    margin-right:0;
    transform:none;
}


/* ---------- Featured Products ---------- */

.products-grid {
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.product-card {
    width:100%;
}

.product-card img {
    width:165px;
    height:165px;
}

.product-card h3 {
    font-size:16px;
 }

.product-buttons {
    gap:10px;
}

.add-to-cart {
    flex:1;
}

/* ---------- Summer Banner ---------- */

.summer-content {
    padding:35px 40px;
    min-height:340px;
}

.summer-text h2 {
    font-size:38px;
}

.summer-text p {
    font-size:16px;
}

.summer-image img {
    width: 50%;
    right:180px;
    margin-bottom: 30px;
    }

.discount-circle {
    width:190px;
    height:190px;
    right:50px;
    top: -265px;
}

.discount-circle span {
    font-size:46px;
}

.discount-circle small,
.discount-circle p {
    font-size:16px;
}


/* ---------- Why Choose Us ---------- */

.why-choose-us {
    padding:35px 0 70px;
}

.why-choose-us h2 {
    font-size:30px;
}

.featured-grid {
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-card {
    padding:22px;
}

.feature-icon {
    width:56px;
    height:56px;
}

.feature-icon i {
     font-size:30px;
}

.feature-text h3 {
    font-size:16px;
}

.feature-text p {
    font-size:14px;
 }

/* ---------- Best Sellers ---------- */

.best-grid {
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.best-grid .product-card {
    width:100%;
}

.best-grid .product-card img {
    width:145px;
    height:145px;
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.testimonials-card {
    padding:22px;
}

.testimonial-text {
    font-size:15px;
}

/* ---------- Newsletter ---------- */

.newsletter {
    padding:40px 0;
}

.newsletter-content {
    gap:30px;
}

.newsletter-text h2 {
    font-size:28px;
}

.newsletter-form input {
    width:430px;
}

/* ---------- Footer ---------- */

.footer-grid {
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-column:first-child {
    grid-column:1 / -1;
}

.footer-logo {
    font-size:28px;
}

/* ---------- Cart ---------- */

.cart,
.wishlist-sidebar {
    width:380px;
    right:-380px;
}

.toast {
    width:330px;
}

.wishlist-toast {
    width:330px;
}

/* ---------- Quick View ---------- */

.quick-view {
    width:850px;
    gap:35px;
    padding:35px;
}

.quick-view-product-image {
    max-width:280px;
}

.quick-view-title {
    font-size:30px;
}

.quick-view-price {
    font-size:27px;
}

.quick-view-features li {
    font-size:16px;
}

.quick-view-add-cart {
    font-size:17px;
}
}


/* ===========================
   RESPONSIVE 768px
=========================== */

@media (max-width: 768px) {

/* ---------- Containers ---------- */

.container,
.main-container {
    width:100%;
    max-width:100%;
    padding:0 20px;
}

 /* ---------- Top Bar ---------- */

.top-bar {
    display:none;
}

 /* ---------- Header ---------- */

.navbar {
    height:70px;
}

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

.logo {
    margin-left: 0px;
}

.logo i {
    font-size:26px;
}

.logo-tech,
.logo-store {
    font-size:25px;
}

/* ---------- Navigation ---------- */

.nav-links {
    display:none;
}
.nav-indicator {
    display:none;
}

.search-bar {
    display:none;
}

.nav-actions {
    margin-right: 20px;
    gap:14px;
}

.wishlist-btn1 {
    margin-right: 20px;
}

.user-btn,
.wishlist-btn1,
.cart-btn {
    font-size:20px;
}

.cart-btn {
    margin-left:0;
}

/* ---------- Hero ---------- */

.hero {
    min-height:auto;
     padding:10px 0;
}

.hero .container {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:40px;
}

.hero-content {
    width:100%;
    flex:none;
    margin:0;
    order:2;
}

.hero-content h1 {
    font-size:42px;
    max-width:100%;
    margin:0 auto 20px;
    line-height:1.15;
 }

.hero-content p {
    font-size:17px;
    max-width:600px;
    margin:0 auto 30px;
}

.hero-btn {
    padding:15px 30px;
    font-size:16px;
}

.hero-features {
    justify-content:space-between;
    gap:18px;
    margin-top:35px;
    align-items: flex-start;
}

.features {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    width:auto;
}

.features i {
    flex-shrink: 0;
}

.features h4 {
    margin-bottom: 3px;
}

.hero-image {
    position:relative;
    width:110%;
    right:auto;
    top:auto;
    order:1;
}

.hero-image img {
    width:100%;
    height:auto;
    display:block;
}

 /* ---------- Categories ---------- */

.categories {
    padding:20px 0;
}

.section-header {
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
    margin-bottom:35px;
}

.section-header h2 {
    font-size:30px;
}

.section-header a {
    margin:0;
}

.categories-grid {
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

.category-card {
    width:100%;
    max-width:100%;
    padding:30px 20px;
}

.category-card img {
    width:120px;
    height:120px;
}

.category-card h3 {
    font-size:20px;
}

/* ---------- Featured Products ---------- */

.featured-products {
    padding:20px 0;
}

.products-toolbar {
    flex-direction:column;
    align-items:stretch;
    gap:18px;
}

.products-toolbar select {
    width:100%;
}

.products-grid {
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

.product-card {
    width:100%;
    max-width:420px;
    margin:0 auto;
}

.product-card img {
    width:180px;
    height:180px;
}

.product-buttons {
    flex-direction:column;
    gap:12px;
}

.wishlist-btn {
    width:100%;
    justify-content:center;
}

.add-to-cart {
    width:100%;
    justify-content:center;
}

/* ---------- Summer Banner ---------- */

.summer-banner {
    padding:20px 0;
}

.summer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;

}

.summer-text {
    width:45%;
}

.summer-text h2 {
    font-size:34px;
}

.summer-text p {
    font-size:16px;
}

.summer-image {
    position:relative;
    width:50%;
    float: 1;
    display:flex;
    align-items: center;
    justify-content: flex-end;
}

.summer-image img {
    position:absolute;
    width:380px;
    left: 220px;
    top: -225px;
}

.discount-circle {
    width:120px;
    height:120px;
    left:555px;
    top:-180px;
}

.discount-circle span {
    font-size:34px;
}

.discount-circle small,
.discount-circle p {
    font-size:14px;
}

/* ---------- Why Choose Us ---------- */

.why-choose-us {
    padding:20px 0;
}

.why-choose-us h2 {
    font-size:30px;
    margin-bottom:35px;
}

.featured-grid {
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.feature-card {
    padding:25px;
}

.feature-icon {
    width:60px;
    height:60px;
}

.feature-icon i {
    font-size:30px;
}

.feature-text h3 {
    font-size:18px;
}

.feature-text p {
    font-size:15px;
    line-height:1.7;
}

/* ---------- Best Sellers ---------- */

.best-sellers {
    padding: 80px 20px 0 0;
}

.best-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:25px;
}

.best-grid .product-card {
    width:100%;
    max-width:420px;
    margin:0 auto;
}

.best-grid .product-card img {
    width:180px;
    height:180px;
}

/* ---------- Testimonials ---------- */

.testimonials {
    padding:40px 0;
}

.testimonials-grid {
    grid-template-columns:1fr;
    gap:20px;
}

    
.testimonials-card {
    padding:25px;    
}

    
.testimonial-text {
    font-size:15px;
    line-height:1.8;
}

.testimonial-user img {
    width:55px;
    height:55px;
}


/* ---------- Newsletter ---------- */

.newsletter {
    padding:20px 0 60px 0;
}

.newsletter-content {
    flex-direction:column;
    text-align:center;
    gap:30px;
    padding-top: 10px ;
}

.newsletter-text {
    width:100%;
}

.newsletter-text h2 {
    font-size:30px;
}

.newsletter-text p {
    font-size:16px;
}

.newsletter-form {
    width:100%;
    flex-direction:column;
    gap:15px;
}

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

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

.newsletter-message.error-message {
    margin-top: 60px;
}

/* ---------- Footer ---------- */

.footer {
    padding-top:60px;
}

.footer-grid {
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
}

.footer-column:first-child {
    grid-column:auto;
}

.footer-logo {
    justify-content:center;
}

.footer-column ul {
    padding:0;
}

.social-links {
    justify-content:center;
}

.footer-bottom {
    flex-direction:column;
    gap:12px;
    text-align:center;

}
 .social-icons {
    justify-content: center;
    margin-top: 26px;
 }

/* ---------- Cart ---------- */

.cart {
    width:100%;
    right:-100%;
}

.cart.active {
    right:0;
}

/* ---------- Wishlist ---------- */

.wishlist-sidebar {
    width:100%;
    right:-100%;
}

.wishlist-sidebar.active {
    right:0;
}

/* ---------- Quick View ---------- */

.quick-view {
    width:95%;
    max-height:90vh;
    overflow-y:auto;
    flex-direction:column;
    padding:25px;
    gap:25px;
 }

.quick-view-left,
.quick-view-right {
    width:100%;
}

.quick-view-product-image {
    width:220px;
    max-width:100%;
    margin:0 auto;
    display:block;
}

.quick-view-title {
    font-size:28px;
    text-align:center;
}

.quick-view-price {
    text-align:center;
    font-size:24px;
}

.quick-view-features {
    margin-top:20px;
}

.quick-view-add-cart {
    width:100%;
    justify-content:center;
}

/* ---------- General ---------- */

img {
    max-width:100%;
    height:auto;
}

section {
    overflow:hidden;
}

}