:root {
    --primary: #9ccff8;
    --secondary: #267296;
    --accent: #36abda;
    --dark: #033858;
    --light: #c4e4f7;
    --text: #212121;
    --white: #FFFFFF;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}
*,p,h1,h2,h3,h4,h5,h6,ul{ margin: 0 }
h1,h2,h3,h4,h5,h6{font-weight: bold;}
ul{
    padding: 0;
    list-style-type: none;
}
.font1{
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}
a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
.fw1{ font-weight: lighter; }
.fw2{ font-weight: normal; }
.fw3{ font-weight: bold; }
.inline{ display: inline-block; }
.flex{display: flex;}
.jc{ justify-content: center; }
.jcb{ justify-content: space-between; }
.ai{ align-items: center; }
.inflex{ display: inline-flex; }
.jce{ justify-content: flex-end }
.rel{ position: relative; }
.abs{ position: absolute; }
.fs11{ font-size: 11px }
.fs12{ font-size: 12px }
.fs13{ font-size: 13px }
.fs14{ font-size: 14px }
.fs16{ font-size: 16px }
.fs17{ font-size: 17px }
.fs18{ font-size: 18px }
.fs19{ font-size: 19px }
.fs20{font-size: 19px;}
.fs30{ font-size: 30px }
.fs40{ font-size: 40px }
.fs50{ font-size: 50px }
.br100{ border-radius: 100px }
.m0{ margin: 0 }
.m10{margin: 10px 0;}
.m15{ margin: 15px }
.m20{margin: 20px 0;}
.mt5{ margin-top: 5px }
.mt10{ margin-top: 10px }
.mt15{ margin-top: 15px }
.mt20{ margin-top: 20px }
.mb5{ margin-bottom: 5px }
.mb10{ margin-bottom: 10px }
.mb15{ margin-bottom: 15px }
.mb20{ margin-bottom: 20px }
.mr5{ margin-right: 5px }
.mr10{ margin-right: 10px }
.mr20{ margin-right: 20px }
:root{--first: #357db8;--second: #00A54E;}
.cwhite{ color: white !important }
.cgray{ color: gray }
.cfirst{ color: var(--first) }
.csecond{ color: var(--second) }
.flex{ display: flex; }
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--dark);
}
section {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    line-height: 1.2;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto;
}
/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 6px solid #3396D3;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
}
        
        .nav-links li {
            margin-left: 30px;
            padding: 10px 0;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 15px;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .cart-icon {
            position: relative;
            margin-left: 30px;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.7rem;
            font-weight: bold;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: #033858 url(../img/heroimg1.jpg) no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 220px 0;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 65px;
            line-height: 1.1;
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-top: 25px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .about {
            background-color: var(--white);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 44px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            background-color: var(--light);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        
        .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
        }
        
    
        
        /* Features Section */
        .features {
            background-color: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: #666;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            display: none;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .stars {
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--accent);
        }
        
        /* Offer Section */
        .offer {
            background: url(../img/topfootimg1.jpg) no-repeat center;
            background-size: cover;
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }
        
        .offer h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .offer p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 5px;
        }
        
        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
        /* Newsletter Section */
        .newsletter {
            background-color: var(--white);
            text-align: center;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        
        .newsletter-form input:focus {
            border-color: var(--accent);
        }
        
        .newsletter-form .btn {
            padding: 15px 30px;
        }
        
        .privacy-text {
            margin-top: 15px;
            font-size: 0.8rem;
            color: #666;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--white);
            opacity: 0.8;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            gap: 18px;
            display: block;
        }
        
        .payment-methods img {
            height: 25px;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .payment-methods img:hover {
            opacity: 1;
        }
        
        /* Sticky Cart */
        .sticky-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent);
            color: var(--dark);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .sticky-cart:hover {
            transform: scale(1.1);
        }
        
        .sticky-cart .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--dark);
            color: var(--white);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                flex: none;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                padding-left: 0;
                top: 0;
                bottom: hei;
                height: 100%;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-links h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
        }
/* Dropdown Menu */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text);
    transition: all 0.3s ease;
}
.dropdown-menu a:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 25px;
}
/* Shop Page */
.shop-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/cat.png') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.shop-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.breadcrumbs {
    color: var(--text);
}
.breadcrumbs a {
    color: var(--text);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--accent);
}
.breadcrumbs span {
    color: var(--accent);
}
.sort-filter select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    border: 1px solid black;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #fff;
    margin-right: 5px;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.product-info h3 a {
    color: var(--dark);
    text-decoration: none;
}
.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.page-number, .page-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-number:hover, .page-nav:hover {
    background: var(--accent);
    color: var(--dark);
}
.page-number.active {
    background: var(--dark);
    color: var(--white);
}
.page-nav.disabled {
    opacity: 0.5;
    pointer-events: none;
}
/* Product Page */
.product-details {
    padding: 60px 0;
    background: white
}
.product-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}
.product-gallery {
    flex: 1;
}
.main-image {
    margin-bottom: 15px;
}
.main-image img {
    width: 100%;
    border-radius: 10px;
    height: 480px;
    object-fit: contain;
    background: #e5e5e5;
}
.thumbnail-images {
    display: flex;
    gap: 10px;
}
.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.thumbnail-images img:hover {
    opacity: 0.8;
}
.product-info {
    flex: 1;
}
.product-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}
.rating {
    color: var(--accent);
}
.price {
    font-size: 1.0rem !important;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0;
}
.product-description {
    margin: 20px 0;
}
.product-description ul {
    margin: 15px 0;
    padding-left: 20px;
}
.product-description li {
    margin-bottom: 8px;
    position: relative;
}
.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}
.quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quantity-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    -moz-appearance: textfield;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.product-share a {
    color: var(--text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.product-share a:hover {
    background: var(--accent);
    color: var(--dark);
}
.product-tabs {
    margin: 60px 0;
}
.tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.tabs-nav li {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    user-select: none;
}
.tabs-nav li.active {
    background: var(--first);
    color: white !important;
    border-radius: 10px 10px 0 0;
}
.tabs-nav li.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
    padding: 0 10px;
}
.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
}
/* Cart Page */
.cart-page {
    padding: 60px 0;
}
.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}
.page-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px 0;
}
.cart-container {
    display: flex;
    gap: 40px;
}
.cart-items {
    flex: 2;
}
.cart-summary {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}
.cart-header {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--dark);
}
.header-product {
    flex: 2;
}
.header-price, .header-quantity, .header-subtotal {
    flex: 1;
    text-align: center;
}
.cart-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.item-product {
    flex: 2;
    display: flex;
    align-items: center;
}
.item-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
f {
    margin-bottom: 5px;
}
.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}
.remove-item:hover {
    color: var(--accent);
}
.item-price, .item-quantity, .item-subtotal {
    flex: 1;
    text-align: center;
}
.item-quantity .quantity-selector {
    justify-content: center;
}
.item-subtotal {
    font-weight: 600;
}
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.continue-shopping {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.continue-shopping:hover {
    color: var(--accent);
}
.update-cart {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.update-cart:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.summary-row.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-weight: 600;
    font-size: 1.1rem;
}
.coupon-code {
    display: flex;
    margin: 25px 0;
}
.coupon-code input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    outline: none;
}
.apply-coupon {
    border-radius: 0 30px 30px 0;
    padding: 12px 20px;
}
.checkout-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.secure-checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}
/* Checkout Page */
.checkout-page {
    padding: 60px 0;
}
.checkout-container {
    display: flex;
    gap: 40px;
}
.checkout-form {
    flex: 2;
}
.order-summary {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}
.checkout-section {
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.checkout-section h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent);
}
.form-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group {
    flex: 1;
}
.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.shipping-method input {
    display: none;
}
.shipping-method label {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.shipping-method input:checked + label {
    border-color: var(--accent);
    background: rgba(255, 171, 0, 0.05);
}
.method-name {
    font-weight: 500;
}
.method-price {
    font-weight: 600;
}
.method-duration {
    display: block;
    font-size: 0.8rem;
    color: #666;
}
.payment-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    gap: 14px;
    margin: 0 0 19px;
}
.payment-tab {
    user-select: none !important;
    padding: 15px;
    cursor: pointer;
    user-select: n;
    text-align: center;
    flex: 1;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
    margin: 0 0 20px !important
}
.payment-tab.active {background: #fffbf2;border: 1px solid var(--accent);}
.payment-tab i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    margin: 0 0 14px;
}
.payment-content {
    display: none;
}
.payment-content.active {
    display: block;
    width: 100%;
    background: #f7f7f7;
    padding: 26px;
    border-radius: 10px;
}
.paypal-btn {
    width: 100%;
    background: #003087;
    color: white;
    margin-top: 15px;
}
.paypal-btn:hover {
    background: #002366;
    color: white;
}
.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.back-to-cart {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.back-to-cart:hover {
    color: var(--accent);
}
.place-order {
    padding: 15px 30px;
}
.summary-items {
    margin-bottom: 20px;
}
.summary-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.summary-item .item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}
.summary-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.summary-item .item-details {
    flex: 1;
}
.summary-item .item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.summary-item .item-details p {
    font-size: 0.8rem;
    color: #666;
}
.summary-item .item-quantity {
    font-size: 0.9rem;
    color: #666;
}
.summary-item .item-price {
    font-weight: 600;
}
.summary-totals {
    margin: 20px 0;
}
.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.total-row.grand-total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.order-notes textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-wrapper {
        flex-direction: column;
    }
    
    .cart-container, .checkout-container {
        flex-direction: column;
    }
    
    .cart-summary, .order-summary {
        position: static;
        margin-top: 40px;
        width: 100%;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 20px 0;
    }
    
    .item-product {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .item-price, .item-quantity, .item-subtotal {
        text-align: left;
        margin: 10px 0;
        width: 100%;
    }
    
    .item-subtotal {
        font-weight: 600;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    .remove-item {
        /**position: absolute;**/
        /**top: 20px;**/
        /**right: 0;**/
        color: #dc3545;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
    
    .payment-tabs {
        flex-direction: column;
    }
    
    .payment-tab {
        border-bottom: none;
        border-left: 2px solid transparent;
    }
    
    .payment-tab.active {
        border-bottom: none;
        border-left-color: var(--accent);
    }
}
.logo-main{
    
height: 34px;
}
.footerlogo{
    
width: 117px;
}
.headTopopt{
    display: flex;
    gap: 15px;
}
.headIconBack{
position: relative;
}
.headIconBack img{
height: 20px;
}
.headIconBack .count{
    
position: absolute;
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
height: 17px;
    
width: 17px;
    
background: #ffab00;
    
border-radius: 100px;
    
color: black !important;
    
font-size: 13px;
    
top: -4px;
    
right: -7px;
}
.us{ user-select: none; }
.topHeader{
background: #9ccff8;
padding: 6px 0;
}
.topDropBack{
display: inline-flex;
}
.topDropBack .inner{
    
display: inline-flex;
    
border: 1px solid hsl(0deg 0% 0% / 29%);
    
padding: 0px 5px;
    
border-radius: 5px;
    
cursor: pointer;
    
user-select: none;
    
position: relative;
}
.topDropBack .deliveryiomg1{
    
height: 18px;
    
width: initial;
    
vertical-align: sub;
}
.topDropBack .flag{
    
height: 14px;
    
margin-right: 4px;
}
.topDropBack .flex{
    
align-items: center;
}
.topDropBack p{
    
font-size: 13px;
    
margin: 0 9px;
}
.topHeadTxt{
    
font-size: 14px;
}
.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    z-index: 1000;
    display: block;
}
.topDropBack-dropdown{
position: absolute;
background: white;
z-index: 99;
width: 190px;
padding: 12px 0;
border-radius: 9px;
left: -16px;
top: 36px;
display: none;
}
.topDropBack-dropdown .single{
display: flex;
align-items: center;
padding: 4px 18px;
cursor: pointer;
}
.topDropBack-dropdown .single:hover{
    background: #e3dedc;
}
.topDropBack-dropdown .single .flag{
}
.topDropBack-dropdown .single .val{
color: black;
}
.topDropBack-active{
    background: white;border-radius: 5px;
}
.linkTopHed{
}
.linkTopHed .fa{
    
margin-right: 10px;
    
color: var(--first);
}
.aboutSec{
    padding: 90px 0;
    background: white;
}
.aboutSec .innerFlex{
}
.aboutSec .part_1{
    
background: #fff;
    
padding: 40px 70px 50px;
    
width: 50%;
    
display: flex;
    
flex-direction: column;
    
justify-content: center;
    
min-height: 400px;
}
.font2{
    font-family: 'Ephesis', cursive;
}
.aboutSec .font2{
    
font-size: 33px;
    
margin: 0 0 -12px;
    
color: #033858;
}
.aboutSec .font1{
    
font-weight: 800;
    
font-size: 41px;
}
.aboutSec .desc{
    
margin: 22px 0 30px;
}
.aboutSec .asdasdasdasd{
    
}
.btn1{
    background: var(--first);
    border: none;
}
.aboutBtn{
    
width: 200px;
}
.aboutSec .part_2{
    background: #c4e4f7 url(../img/abtimg2.png);
    width: 50%;
    background-size: cover;
    background-position: center;
}
.abtAbsBox{
background: #b6d3ef;
width: 240px;
padding: 30px;
right: -130px;
top: 40px;
}
.abtAbsBox .com{
    
font-weight: 600;
    
font-size: 18px;
    
line-height: 1.4;
}
.abtAbsBox .name{
    
font-weight: 600;
    
font-size: 20px;
    
margin: 16px 0 0;
}
.abtAbsBox .buyer{
    
font-size: 14px;
}
.revSecOute3r{
}
.revSecSlider{
}
.revSlide{
padding: 30px 35px;
background: white;
margin: 0 20px;
}
.revSlide .topSec{
display: flex;
align-items: center;
}
.revSlide .name{
    
font-weight: 500;
    
font-size: 19px;
}
.revSlide .starBack{
    
margin: 0 0 6px;
}
.revSlide .fa-star{
display: flex;
align-items: center;
justify-content: center;
height: 27px;
width: 27px;
background: var(--first);
border-radius: 6px;
margin-right: 6px;
color: white;
}
.revSlide .star1{
    
}
.revSlide .star2{
    
background: #d9d9d9;
}
.revSlide .date{
    
}
.revSlide .comment{
    
margin: 17px 0 0;
    
font-weight: 500;
}
.revSlide .userimg{
    
width: 70px;
    
height: 70px;
    
object-fit: cover;
    
margin-right: 20px;
}
*{outline: none !important}
.revSecSlider .slick-dots li{
    background: white;
    border-radius: 100px;
}
.revSecSlider .slick-dots li button:before {
        width: 60%;
        height: 60%;
        background: #00c3ff;
        border-radius: 100px;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
}
.revSecSlider .slick-dots li button {
    
display: flex;
    
align-items: center;
    
justify-content: center;
}
.revSecSlider .slick-dots {
    
transform: translateY(48px);
}
.revSecHome{
    
padding: 100px 0 140px;
}
.feature-card{
    
border: 3px solid #C4E4F7;
}
.foottitle{
font-size: 25px;
letter-spacing: 2px;
margin: 0 0 30px;
font-size: 19px;
}
.footer-new{
padding: 60px 0;
border-top: 1px solid #36abda;
}
.footUl{
margin: 20px 0;
}
.footUl li{
margin: 7px 0 0;
}
.footUl li A{font-size: 13px;}
.footSuppCol{
    
margin: 20px 0;
}
.footSocials{
}
.footSocials a{
    
font-size: 15px;
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 35px;
    
height: 35px;
    
border: 1px solid black;
    
border-radius: 100px;
    
margin-right: 11px;
}
.footPayFlex{
gap: 10px;
margin: 40px 0 30px;
}
.footPayFlex img{
width: 56px;
}
.copyrightFooter{
    
font-size: 14px;
}
.addCartBtnProd{
    
font-weight: 600;
    
padding: 7px 20px;
    
font-size: 15px;
    
border-radius: 100px;
}
.prod-tag{
    
z-index: 1;
    
position: absolute;
    
top: 15px;
    
left: 15px;
    
background: white;
    
padding: 3px 7px;
    
border-radius: 100px;
    
font-size: 13px;
    
font-weight: 500;
    
display: flex;
    
align-items: center;
}
.prod-tag img{
    
width: 14px;
}
.prod-tag1{
}
.prod-tag1 img{
      /*filter: brightness(0) invert(1);*/
}
@media screen and ( max-width: 992px ) {
    .aboutSec .innerFlex{
        display: block;
    }
.aboutSec .part_1{
    padding: 40px 30px;
    width: 100%
}
.abtAbsBox{
right: 0;
bottom: 0;
width: 80%;
top: initial;
}
.aboutSec .part_2{
    height: 450px;
    width: 100%;
}
.aboutSec .font1{
    
font-size: 30px;
}
}
.font2title{
    
font-size: 32px;
    
color: #3396D3;
    
margin: 0 0 1px;
}
.product-list li:before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #3396D3;
    border-radius: 100px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -22px;
}
.wishlist-btn{
    
padding: 0;
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 50px;
    
height: 50px;
}
.prodBtmSec {
    
padding: 70px 0 30px;
    
border-top: 1px solid #ddd;
}
/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
/* Prevent scroll when lightbox is active */
body.noscroll {
  overflow: hidden;
}
/* Lightbox image zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox img {
  animation: zoomIn 0.3s ease-out;
  transition: transform 0.3s ease;
}
.tabs-nav img{
    
height: 19px;
    
margin-right: 3px;
}
.tabs-nav li.active img{
            filter: brightness(0) invert(1);
    
}
.prod-tab-title{
    
font-size: 22px;
    
margin: 34px 0 10px;
    
text-transform: uppercase;
    
letter-spacing: 2px;
}
.tabs-content hr{
    
opacity: 0.15;
    
margin: 27px 0;
}
.prod-tick-list li{
    background: url(../img/tick324.png) no-repeat 0;
    background-size: 13px;
    padding-left: 26px;
}
.quantity-btn:active{
    background: #f1f1f1
}
.comment-prod-back{
}
.comment-block{
margin: 30px 0 0;
}
.comment-block .userimg{
height: 70px;
width: 70px;
object-fit: cover;
margin-right: 17px;
}
.comment-block .user-name{
font-weight: 600;
font-size: 17px;
margin-right: 20px;
}
.comment-block .user-comment{
    
margin: 10px 0 10px;
}
.comment-block .verified{
    background: url(../img/tick324.png) no-repeat 0;
    background-size: 12px;
    padding-left: 21px;
    font-size: 15px;
    font-weight: 500;
    /* color: #cb9629; */
}
.comment-block .comment-date{
    
font-size: 14px;
    
font-weight: 500;
    
color: #878787;
}
.comment-prod-img-back{
    display: flex;
    gap: 11px;
    margin: 13px 0 13px;
}
.comment-prod-img-back .comment-img{
width: 80px;
height: 80px;
border-radius: 7px;
padding: 5px;
border: 1px solid #a9a9a9;
cursor: pointer;
}
.comment-prod-img-back .comment-img:hover{
    border: 1px solid black
}
.lightbox{
    position: fixed !important;
    bottom: 0
}
.seller-prod-back{
padding: 24px 30px;
background: #f5f3f2;
margin: 22px 0 0;
border-radius: 8px;
}
.seller-prod-back .seller-name{
    
color: black;
    
font-weight: 600;
}
.seller-prod-back .seller-comment{
    
margin: 12px 0 0;
}
.seller-prod-back .seller-img{
    
width: 60px;
    
height: 60px;
    
object-fit: cover;
    
margin-right: 20px;
}
.seller-prod-back .agent{
    
    
}
.seller-prod-back .seller-comment b{
    
font-weight: 500;
}
.pagination{
gap: 2px;
}
.pagination-button{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
font-size: 17px;
    
width: 35px;
    
height: 35px;
    
border-radius: 100px;
    
color: black !important;
}
.pagenation-active{
    
background: #ededed;
}
.pagination-button:hover{
background: #ededed;
    
}
.prod-rev-star-back{
    display: flex;
    align-items: center;
    margin: 5px 0 0;
    gap: 5px;
}
.prod-rev-star-back .fa-star{
color: var(--first);
}
.prod-rev-star-back .star1{
    
}
.prod-rev-star-back .star2{
    
color: #e9e9e9;
}
.alertBox1{
border: 1px solid #d7d7d7;
padding: 15px 20px;
border-radius: 7px;
}
.underline{
    text-decoration: underline;
}
.lbl1{
display: block;
}
.inp1{
width: 100%;
padding: 7px 18px;
border: 1px solid black;
margin: 6px 0 12px;
}
.inp1:hover,
.inp1:focus{
}
.textarea1{
width: 100%;
max-width: 100%;
min-width: 100%;
min-height: 140px;
max-height: 280px;
}
.comentBtn1{
    
border-radius: 0;
}
.recomProdSlider .product-card{
    
margin: 30px 13px;
}
.recomProdSliderOuter .slickBtn{
position: absolute;
top: 220px;
font-size: 26px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
z-index: 9;
width: 47px;
height: 47px;
border-radius: 100px;
transition: 0.35s ease;
border: 1px solid #000000;
opacity: 0.3;
}
.recomProdSliderOuter .slickBtn-left{
    
left: -80px;
}
.recomProdSliderOuter .slickBtn-right{
    
right: -80px;
}
.recomProdSliderOuter .slickBtn:hover,
.recomProdSliderOuter .slickBtn:focus{
background: #efefef;
border-color: #efefef;
opacity: 1
}
.slick-prev,
.slick-next{
    display: none !important;
}
@media screen and ( max-width: 992px  ) {
.tabs-nav li{
    text-align: center;
    padding: 15px 12px;
    font-size: 15px;
    width: 50%;
    padding: 18px 0;
}
.tabs-nav img{
    height: 22px;
}
.seller-prod-back .flex{
display: block;
}
.seller-prod-back{
    
padding: 24px;
}
.recomProdSliderOuter .slickBtn{
    display: none;
}
.comment-block .userimg {margin: 0 0 12px;}
.comment-block .flex{
    display: block;
    text-align: center;
    background: none;
    padding: 0;
    display: inline;
}
.thumbnail-images{
    overflow-y: auto
}
}
.dropdown-big-outer{
    position: relative;
}
.dropdown-big-block{
position: absolute;
width: 1000px;
left: -400px;
background: #ffffff;
z-index: 9;
box-shadow: 0 0 20px hsl(0deg 0% 0% / 12%);
padding: 29px;
top: 45px;
display: none;
}
.dropdown-big-block .imageBack{
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: black;
width: 100%;
margin: 0 0 27px;
overflow: hidden;
}
.dropdown-big-block .imageBack .inner{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
height: 100%;
    
width: 100%;
}
.dropdown-big-block .imageBack .inner p{
position: absolute;
z-index: 1;
color: white;
/* top: 0; */
/* left: 0; */
/* right: 0; */
/* margin: auto; */
}
.dropdown-big-block .imageBack .inner img{
WIDTH: 100%;
HEIGHT: 170PX;
OBJECT-FIT: COVER;
opacity: 0.8;
transition: 0.4s ease;
}
.dropdown-links{
}
.dropdown-links li{
margin: 0 0 6px;
padding: 0;
}
.dropdown-links li a{font-size: 14px;font-weight: 500;}
.dropdown-links .title{
    
font-size: 16px;
    
letter-spacing: 2px;
}
.dropdown-big-block .inner:hover img{
    transform: scale(1.2);
}
.dropdown-big-block .seemoreBtn{
    color: var(--first);
    margin: 10px 0 0;
    display: inline-block;
}
.dropdown-big-block .inner .seemoreBtn i{
    
}
.dropdown-big-outer:hover .dropdown-big-block{
    display: block;
}
#pc_header{
    display: block;
}
#mob_header{
    display: none;
}
@media screen and ( max-width: 992px ) {
    #pc_header{
        display: none;
    }
    #mob_header{
        display: block;
    }
}
.moblogo{
    
width: 98px;
}
#mob_header{
    
position: relative;
    
padding: 20px 9px;
    
border-bottom: 1px solid #efefef;
    
}
.mob-nav-cont{
background: hsl(0deg 0% 0% / 61%);
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100%;
height: 100%;
z-index: 999999;
display: none;
}
.mob-nav-cont .blackBox{
    background: black;
}
.mobNavBlock{
background: white;
width: 60%;
height: 100%;
overflow-y: auto;
position: fixed;
left: -80%;
transition: 0.45s ease;
}
.mobNavBlock .top1{
    
padding: 0;
    
font-weight: 500;
    
position: relative;
    
border-bottom: 1px solid #bfbfbf;
    
padding-left: 18px;
    
display: flex;
    
justify-content: space-between;
}
.mobDropOpener{
    display: flex;
    justify-content: space-between;
}
.mobNavBlock .firstUl{
}
.mobNavBlock .innerUl{
    
}
.mobNavBlock li{}
.mobNavBlock li a{
    display: block;
    padding: 7px 0;
    border-bottom: 1px solid #bfbfbf;
    width: 100%;
    color: black !important;
    padding: 12px 17px;
    font-weight: 400;
    font-size: 15px;
}
.mobNavBlock li li{
    padding: 0
}
.mobNavBlock .mobNavSideIcon{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 60px;
    
border-bottom: 1px solid #bfbfbf;
    
border-left: 1px solid #bfbfbf;
    
font-size: 14px;
    
color: #bfbfbf;
    
cursor: pointer;
}
.firstUl .innerUl{
    display: none;
    background: #ebebeb;
}
.mobNavBlock .mobNavSideIcon:hover{
    background: #ebebeb;
}
.mobNavBlock a:hover{
}
.mobmenulogo{
    
height: 30px;
    
margin: 14px 0 0;
}
.clsoemobul{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
right: 0;
    
background: black;
    
width: 60px;
    
color: white;
    
font-size: 12px;
    
cursor: pointer;
    
height: 60px;
}
.mobNavBlock-active{
     left: 0; 
}
.mobNavBlock li ul a:hover{
    background: #cdcdcd;
}
.mobBars{
}
.mobBars span{
    background: black;
    width: 23px;
    height: 2px;
    margin: 7px 0;
    display: block;
    margin-right: 20px;
}
@media screen and ( max-width: 992px ) {
    .headIconBack img{
        height: 22px;
    }
}
.mobSearckOuter{
display: none;
}
.searchMobFlex{
padding: 18px 20px;
}
.btn4{
    color: white;
    border: none;
    width: 130px;
    background: black;
    transition: 0.4s ease;
    font-size: 15px;
}
.btn4:hover,
.btn4:focus{
    background: var(--first);
    color: white !important
}
.searchMobBtn{
}
.mobSearchInp{
    
width: 100%;
    
padding: 7px 10px;
    
border: 1px solid black;
    
font-weight: 500;
}
.pcSearchOuter{
background: white;
padding: 27px 0;
background: #ededed;
display: none;
}
.searchInp2{
width: 100%;
padding: 8px 12px;
border: 1px solid black;
}
.searchInp2:hover,
.searchInp2:focus{
}
.searchSel1{
width: 40%;
}
.searchgBtnPc{
    
background: black;
    
border: none;
    
color: white !important;
    
width: 390px;
    
font-weight: 500;
}
.pcSearchOuter .flex1{
    
gap: 20px;
}
@media screen and ( max-width: 992px ) {
        .pcSearchOuter .flex1{
            display: block;
        }
        .searchgBtnPc{
            
        padding: 5px 0;
            
        padding: 11px 0;
            
        width: 100%;
        }
        .searchInp2{
            height: 45px;
            margin: 0 0 12px;
        }
        .searchSel1{
            width: 32%;
            margin-left: 2%;
        }
}
.prodBigMob{padding: 0 !important;background-size: cover;}
.prodBigMob .inner2{
    
padding: 12px 17px;
    
background: hsl(0deg 0% 0% / 64%);
    
color: white;
    
letter-spacing: 1px;
    
font-weight: 600;
    
font-size: 14px;
}
.mobDropOpener .innerUl a:hover{
    background: initial;
}
.checkHead2{
    
font-size: 16px;
    
color: #b5b5b5;
    
margin: 0 0 20px;
}
.checkPayFlex img{
height: 29px;
border-radius: 5px;
opacity: 1 !important;
filter: none;
}
.checkPayFlex{
    column-gap: 5px;
}
.m0{ margin: 0 !important}
.payment-content input{
    
border: 1px solid #c9c9c9;
    
background: transparent;
}
.payment-tab.active i{
color: #3396D3;
}
@media screen and ( max-width: 992px ) {
.payment-methods{
    display: block;
}
.payment-tabs{
    flex-direction: row;
    margin: 0 0 12px;
}
.payment-tab{
    
background: #e7e7e7;
    
border-color: #e7e7e7;
}
.payment-content.active{
    width: 100%
}
.pay-cardimg-flex{
flex-direction: column-reverse;
align-items: flex-start;
}
.pay-cardimg-flex .flex{
    
margin: 0 0 23px;
}
}
.payment-tab img{
    
filter: grayscale(1);
    
transform: none;
    
opacity: 1;
    
margin: 0 0 15px;
    
height: 24px;
}
.payment-tab.active img{
filter: grayscale(0);
}
.padder1{
    padding: 80px 0
}
.sidebar-product{
position: sticky;
margin: 0 0 20px;
top: 20px;
}
.sidebar-product .mainTitle1{
    
}
.sidebar-product .title2{
    
font-size: 17px;
    
font-weight: 500;
    
margin: 12px 0 10px;
}
.productPageGrid .product-card{
margin: 0 0 30px;
}
.productPageGrid .product-image{
height: 180px;
}
.productPageGrid .product-info h3{
font-size: 19px;
}
.productPageGrid .product-price{
}
.productPageGrid .price{
    margin: 0;
    font-size: 21px;
}
.productPageGrid .addCartBtnProd{
    
font-size: 13px;
    
padding: 6px 12px;
}
.productPageGrid .inner2{
    
min-height: 104px;
}
.productPageGrid .title-product{
    
font-weight: 700;
    
font-size: 19px;
    
line-height: 1.3;
    
color: black !important;
    
display: -webkit-box;
    
-webkit-line-clamp: 2;
    
-webkit-box-orient: vertical;
    
overflow: hidden;
    
text-overflow: ellipsis;
}
.inpFilter{
width: 100%;
padding: 9px 10px;
background: none;
border: 1px solid black;
border-radius: 5px;
margin: 0 0 14px;
}
.inpFilter:hover,
.inpFilter:focus{
    
}
.cateFilterBlock{
}
.cateFilterBlock .single{
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 3px;
}
.cateFilterBlock .checkbox{
    
height: 15px;
    
margin-right: 12px;
    
width: 15px;
}
.checkbox {
  appearance: none;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.checkbox:checked {
  background-color: #3396D3;
  border-color: #3396D3;
}
.checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cateFilterBlock li{margin: 0 -10px;}
.filterBtn{
    
width: 100%;
    
margin: 20px 0 0;
    
border-radius: 9px;
    
font-size: 13px;
}
.cateFilterBlock .single:hover{
    
background: #e3e3e3;
}
.cart-items{
        flex: 2;
        background: white;
        padding: 37px 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.gootlogo{
width: 120px;
margin: 17px 0 27px;
}
.footDesc{
    
font-size: 14px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #3396D3;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #043858;
}
.logDropHead{
cursor: pointer;
}
.logDropHead:hover .logDropUl{
    display: block;
}
.logDropHead li{
margin: 0;
font-size: 15px;
padding: 0;
}
.logDropUl{
        background: white;
        position: absolute;
        width: 210px;
        z-index: 1;
        padding: 8px 0;
        border-radius: 6px;
        left: -20px;
        top: 26px;
        border: 1px solid #e1e1e1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
}
.logDropUl a{
    
display: block;
    
padding: 8px 14px;
    
font-weight: 500;
    
font-size: 15px;
    
display: flex;
    
align-items: center;
}
.logDropUl a:hover{
    
background: var(--light);
}
.logDropUl .fa{
    
margin-right: 12px;
    
font-size: 17px;
}
.logDropHead:hover .logDropUl{
    display: block;
}
@media screen and ( max-width: 992px ) {
.copyrightFooter{
    
margin: 0 0 30px;
}
.logDropUl{
    
right: -40px;
    
left: initial;
    
top: 40px;
}
}
    .login-box {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      border-bottom: 9px solid #cfcfcf;
    }
    .login-box h2 {
      margin: 0 0 10px;
      font-size: 24px;
    }
    .login-box p {
      margin: 0 0 30px;
      color: #666;
    }
.login-box .logInp,
    .login-box input[type="email"],
    .login-box input[type="password"] {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }
.login-box .logInp:hover,
.login-box .logInp:focus,
.login-box input[type="email"]:hover,
.login-box input[type="email"]:focus,
 .login-box input[type="password"]:hover,
 .login-box input[type="password"]:focus
{
    border: 1px solid var(--first)
}
    .login-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    .login-options label {
      display: flex;
      align-items: center;
      font-size: 14px;
    }
    .login-options input[type="checkbox"] {
      margin-right: 5px;
    }
    .login-options a {
      font-size: 14px;
      text-decoration: none;
    }
    .login-options a:hover {
      text-decoration: underline;
      color: var(--first);
    }
    .login-box button {
      width: 100%;
      padding: 12px;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    .login-box button:hover {
    background: black;
    }
.underline{
    text-decoration: underline;
}
.logregPage{
    
background: url(../img/logback2.jpg);
    
background-size: cover;
    
padding: 110px 0;
}
/*about us start*/
.aboutpage{
}
.topabtSec{
    background: #033858 url(../img/abtimg3.png) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
}
.topabtSec .title{
background: white;
padding: 13px 26px;
font-size: 43px;
}
.abtSec2{
padding: 80px 0 250px;
}
.abtimg23{
    
width: 640px;
}
.abtSec2 .title{
        font-size: 43px;
        margin: -1px 0 25px;
}
.abtSec3{
    padding: 70px 0;
    background: white
}
.abtProdBox{
text-align: center;
border: 2px solid #e5e5e5;
padding: 10px;
margin: 30px 12px 0;
border-radius: 10px;
z-index: 1;
position: relative;
background: white;
}
.abtProdBox img{
width: 100%;
height: 240px;
object-fit: cover;
border-radius: 7px;
}
.abtProdBox h2{
margin: 20px 0 10px;
font-size: 25px;
}
.abtProdBox .inner{
padding: 15px 20px 20px;
}
.abtProdBox p{
    
margin: 0 0 27px;
}
.bt2{
background: #c4e4f7;
padding: 10px 27px;
display: inline-block;
border-radius: 120px;
font-weight: 500;
transition: 0.4s ease;
color: #033858;
}
.bt2:hover,
.bt2:focus{
background: #0b5786;
color: white;
}
.abtProdrow{
    
margin-top: 24px;
}
.abtSec4{
    
padding: 230px 0 80px;
    
background: #c4e4f7;
    
margin: -230px 0 0;
}
.statAbtBox{
background: white;
padding: 50px 30px;
border-radius: 10px;
border: 2px solid #e5e5e5;
text-align: center;
margin: 42px 0 0;
}
.statAbtBox p{
letter-spacing: -1px;
font-size: 51px;
margin: -18px 0 17px;
font-weight: bold;
line-height: 1;
}
.statAbtBox img{
display: none;
width: 60px;
}
.statAbtBox h3{
    
font-size: 16px;
    
font-weight: 500;
}
.abtSec5{
    
background: white;
    
padding: 70px 0;
}
.abtCustFeedBack{
position: relative;
margin: 60px 0 0;
border-radius: 11px;
}
.abtCustFeedBack .feedimg{
width: 100%;
height: 380px;
object-fit: cover;
border-radius: 11px;
}
.abtCustFeedBack .innerBox{
    
position: absolute;
    
background: white;
    
top: -30px;
    
width: 360px;
    
padding: 31px 33px;
    
left: -100px;
    
border: 1px solid #c1c1c1;
}
.abtCustFeedBack .innerBox .name{
    
font-weight: bold;
    
font-size: 21px;
}
.abtCustFeedBack .innerBox .starBack1{
    
margin: 7px 0 20px;
}
.abtCustFeedBack .innerBox .starBack1 .fa{
    
background: var(--first);
    
color: white;
    
font-size: 15px;
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 22px;
    
height: 22px;
    
margin-right: 5px;
    
border-radius: 7px;
}
.abtCustFeedBack .innerBox .starBack1 .star2{
    
background: #d7d7d7;
}
.abtCustFeedBack .innerBox .comment{
    
font-size: 14px;
    
font-weight: 500;
}
.abtSec5 .box_2 .innerBox{
    
left: initial;
    
right: -100px;
    
top: initial;
    
bottom: -30px;
}
.missVissBlock{
    
background: #ffffff;
    
padding: 70px 50px;
    
border: 7px solid #ffffff;
    
background: #C4E4F7;
}
.missVisCont .title{
font-size: 30px;
margin: 0 0 18px;
}
.missVisCont p{
font-size: 15px;
}
.missVisCont{
    background: white
}
.outerMissVis{
    
padding: 21px;
    
margin: -180px 0 0;
}
.missBlock1{
}
@media screen and ( max-width: 992px )  {
.topabtSec{min-height: 190px;}
.topabtSec .title{
    
font-size: 33px;
}
.abtimg23{
    
width: 100%;
    
margin: 0 0 30px;
}
.abtSec2 .title{
    
font-size: 34px;
}
.abtSec2, .tac
{
    
text-align: center;
}
.outerMissVis{
    
padding: 0;
    
margin: 12px 0;
}
.abtSec2{
    
padding: 70px 0;
}
.abtProdBox{
    
margin: 15px 0;
}
.abtCustFeedBack .innerBox{
    
left: 0;
    
width: 92%;
    
padding: 20px 30px;
    
margin: auto;
    
left: 0;
    
right: 0;
    
top: 12px;
}
.abtSec5 .box_2 .innerBox{
    
margin: auto;
    
left: 0;
    
right: 0;
    
bottom: 12px;
}
.abtCustFeedBack{
    
margin: 30px 0 0;
}
.fs40{
    font-size: 30px !important
}
.statAbtBox {
    
padding: 20px 10px;
    
margin: 24px 0 0;
}
.statAbtBox p{
    
font-size: 43px;
    
margin: 0 0 11px;
}
.statAbtBox h3{
    
max-width: 110px;
    
margin: auto;
}
.abtSec4{
    
padding: 200px 0 50px;
}
}
.contactTopBg{
    background-image: url(../img/contactimg1.png);
}
.contactPage{
}
.contactBlock1{
background: white;
padding: 30px 30px;
border-radius: 10px;
text-align: center;
margin: 0 0 23px;
}
.contactBlock1 h2{
font-size: 20px;
margin: 29px 0 7px;
}
.contactBlock1 p{
font-size: 17px;
}
.contactBlock1 .icon{
    
height: 50px;
}
.contactBlock2{
background: white;
padding: 30px 40px;
padding: 40px 40px;
border-radius: 10px;
}
.contactBlock2 .title{
font-size: 22px;
}
.contactBlock2 .desc{
}
    .lokhes-faq-container {
      width: 100%;
      max-width: 700px;
      margin: 20px 0 0;
    }
    .lokhes-accordion {
    margin: 0 0 13px;
    width: 100%;
    }
    .lokhes-accordion-header {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      transition: background-color 0.3s ease;
      background: #f5f5f5;
    }
    .lokhes-accordion-header:hover {
      background-color: #eee;
    }
    .lokhes-accordion-title {
      font-size: 16px;
      font-weight: 500;
    }
    .lokhes-icon {
      font-size: 18px;
      transition: transform 0.3s ease;
    }
    .lokhes-accordion-content {
      display: none;
      padding: 15px 20px;
      background-color: #fbfbfb;
      color: #333;
    }
    .lokhes-accordion.open .lokhes-accordion-content {
      display: block;
    }
    .lokhes-accordion.open .lokhes-icon {
      content: "-";
      transform: rotate(180deg);
    }
.contactBoxBack{
background: #f5f5f5;
padding: 30px 40px;
border-radius: 10px;
}
.lbl2{
display: block;
margin: 17px 0 0;
}
.contactInp{
width: 100%;
padding: 7px 10px;
border: 1px solid #cfcfcf;
border-radius: 6px;
background: none;
margin: 2px 0 0;
}
.contactInp:hover,
.contactInp:focus{
    
border: 1px solid var(--first);
}
.txtarea2{
    
max-width: 100%;
    
min-width: 100%;
    
max-height: 370px;
    
min-height: 170px;
}
.contacTBTn{
    
margin: 10px 0 0;
    
max-width: 200px;
    
width: 100%;
}
@media screen and ( max-width: 992px ) {
    .mb30_{ margin-bottom: 30px !important }
    .mb20_{ margin-bottom: 20px !important }
    .mb10_{ margin-bottom: 10px !important }
}
/* sidebar cart toggle start */
.cartSideBarCont{
}
.blackBar1{
    background: hsl(0deg 0% 0% / 61%);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 99999;
    display: none;
}
.cartFixedBack{
position: fixed;
z-index: 999999999999;
background: white;
right: 0;
top: 0;
height: 100%;
overflow-y: auto;
width: 390px;
box-shadow: 0 0 100px hsl(0deg 0% 0% / 55%);
transition: 0.35s ease;
    transform: translateX(100%);
}
.cartFixedBack-active{
    transform: translateX(0%);
}
.cartSec1{padding: 15px 20px;border-bottom: 1px solid #ababab;}
.cartSec1 .title{
    
font-size: 18px;
}
.closeCartBtn{
    
width: 23px;
    
cursor: pointer;
}
.cartFixedBack .inner{}
.cartSec1 .num{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 25px;
    
height: 25px;
    
background: black;
    
color: white;
    
margin-right: 12px;
    
font-size: 14px;
}
.cartItemSingle{
display: flex;
padding: 15px 20px;
border-bottom: 1px solid #ababab;
}
.cartItemSingle .name{
    
font-size: 15px;
}
.cartItemSingle .amt{
    
margin: 4px 0 9px;
}
.quantityInpBack{
display: flex;
border: 1px solid #afafaf;
user-select: none;
border-radius: 100px;
overflow: hidden;
}
.quantityInpBack .fa{
    
display: flex;
    
align-items: center;
    
justify-content: center;
    
width: 27px;
    
height: 30px;
    
font-size: 14px;
    
background: #e9e9e9;
    
cursor: pointer;
}
.quantityInpBack .fa:hover{
}
.quantityInpBack .fa:active{
    background: #d1d1d1
}
.quantityInpBack .quantityinp2{
    
width: 60px;
    
border: none;
    
padding: 0 10px;
}
.quantityInpBack .quantityinp2:hover,
.quantityInpBack .quantityinp2:focus{
    
}
.removeQuantityBtn{
width: 16px;
cursor: pointer;
}
.sideCartImg{
    
width: 110px;
    
height: 110px;
    
margin-right: 18px;
    
object-fit: contain;
    
background: #e5e5e5;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.cartSec3{
padding: 10px 15px 10px;
position: sticky;
bottom: 0;
width: -webkit-fill-available;
background: white;
}
.totalAmtBack{
}
.totalAmtSingle{
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 0 3px;
}
.totalAmtSingle p{
font-size: 15px;
}
.totalAmtSingle h3{
    
font-size: 15px;
    
font-weight: 500;
}
.totalAmt2{
    
border-top: 1px solid #ababab;
    
padding: 8px 0;
}
.totalAmtBtnBack{
}
.checkoutBtnMain{
    
width: 100%;
}
.cartSec2{
}
.amtTotalBack2{
    
margin: 33px 0 13px;
}
.amtTotalBack2 h3{
    
font-weight: bold;
    
font-size: 19px;
}
.cartSideMethods{
gap: 8px;
align-items: center;
justify-content: center;
margin: 15px 0 0;
}
.cartSideMethods img{
    
height: 30px;
}
.cartSidebarCopyrightBack{
margin: 0 0 9px;
font-weight: 500;
}
.cartSideCheck{
    
margin: 4px 0 0;
    
margin-right: 10px;
}
input[type="checkbox"] {
  accent-color: #ccc; /* default color */
  height: 17px;
  width: 17px;
}
input[type="checkbox"]:checked {
  accent-color: #3396D3; /* custom color when checked */
}
a:hover{
    color: #0b466b
}
/* WebKit Browsers (Chrome, Safari, Edge) */
.cartFixedBack::-webkit-scrollbar {
  width: 8px; /* adjust as needed */
}
.cartFixedBack::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 4px;
}
.cartFixedBack::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* optional */
}
/* Firefox */
.cartFixedBack {
  scrollbar-color: #c7c7c7 #f1f1f1; /* thumb color | track color */
  scrollbar-width: thin; /* auto | thin | none */
}
.applyCouponBtn{padding: 8px 0;}
.applyBtn1{
}
.applyCouponBtn{
    border-bottom: 1px solid #ababab
}   
.btn2{
background: #e9e9e9;
padding: 4px 10px;
border-radius: 100px;
}
.btn2:hover,
.btn2:focus{
    
background: #d7d7d7;
}
.pointer{ cursor: pointer; }
.cart-items h3{
    
font-size: 16px;
}
/* sidebar cart toggle end */
.quick-add-modal{
}
.quick-add-modal h3{
    font-size: 19px;
    font-size: 20px;
    text-align: left;
    margin: 0 0 6px;
}
.quick-add-modal #modalProductThumb{
    height: 100% !important;
    min-width: 100%;
    object-fit: cover;
    margin: 0 !important;
    width: 173px;
    background: #e5e5e5;
    border-radius: 10px;
}
.quick-add-modal .modal-quantity-selector{
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    overflow: hidden;
    justify-content: flex-start !important;
    width: 160px;
}
.quick-add-modal .modal-quantity-selector button{
    border: none !important;
    height: 37px;
    width: 77px;
    background: #efefef;
    font-size: 21px;
}
.quick-add-modal .modal-quantity-selector input{
    margin: 0;
    border: none;
    width: 100%;
}
.quick-add-modal #modalAddToCartBtn{
    background: var(--first);
    color:white;
    border: none;
    width: 100%;
    border-radius: 100px;
    padding: 9px 0;
    transition: 0.35s ease;
    font-weight: 600;
    margin: 0 0 10px;
}
.quick-add-modal .modal-quantity-selector button:active{
    background: #e5e5e5
}
.quick-add-modal #modalAddToCartBtn:hover,
.quick-add-modal #modalAddToCartBtn:focus{
    background: black;
    color: white !important
}
.cartPopBack{
}
.popupSec1{display: flex;align-items: center;justify-content: space-between;border-bottom: 1px solid #c3c3c3;padding: 10px 24px;}
.popupSec1 .title{text-align: left;font-weight: 500;font-size: 22px;}
.popupSec2 .flex1{
    border-bottom: 1px solid #c3c3c3;
    padding: 18px 24px;
}
.quick-add-content{
    width: 100%;
    min-width: 520px;
}
.popupSec2 #modalProductPrice{
    text-align: left;
}
.popupSec2 .imgBack{
    margin-right: 20px
}
.close-modal{
    position: static !important;
}
.quick-add-content{
    padding: 0 !important;
}
.popupSec4{
    padding: 16px 24px;
}
.popLink1{
    font-weight: 500;
    font-size: 14px;
}
@media screen and ( max-width: 992px  ) {
    .quick-add-content{
            min-width: 88%;
    }
    .popupSec2 .flex1{
        display: block;
        text-align: center;
    }
.popupSec2 .imgBack{
    margin-right: 0
}
.quick-add-modal h3,
.popupSec2 #modalProductPrice
{
    text-align: center;
}
.quick-add-modal .modal-quantity-selector{
    width: 100%;
}
.quick-add-modal h3{
    margin: 17px 0 0;
}
.hero{
    padding: 110px 0;
}
}
  
/* blog section List start */
.blogSec1{
    padding: 70px 0 100px;
    background: white;
    border-bottom: 1px solid #b9b9b9;
}
    
.blogListBack{
width: 100%;
height: 380px;
position: relative;
margin: 20px 0 0;
overflow: hidden;
border-radius: 13px;
}
    
.blogListBack .imgThumb{
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.5s ease;
}
.blogListBack .inner{
background: hwb(0deg 100% 0% / 93%);
position: absolute;
transition: 0.4s ease;
padding: 20px 30px;
width: 70%;
bottom: 20px;
left: 20px;
border-radius: 10px;
}
.blogListBack .title{
margin: 0 0 20px;
font-size: 23px;
display: -webkit-box;
-webkit-line-clamp: 2;   /* Limit to 2 lines */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.blogListBack .link{border-bottom: 1px solid black;font-weight: 600;padding: 0 0 4px;}
.blogListBack .link:hover{
    border-color: var(--first)
}
.blogListBack:hover .imgThumb{
    transform: scale(1.1);
}
.blogListBack:hover .inner{
    box-shadow: 0 3px 21px hsl(0deg 0% 0% / 30%);
    transform: translateY(-5px);
}
@media screen and ( max-width: 992px ) {
    .blogListBack .inner{
        width: 80%;
    }
}
/* blog section List end */
.sidebar-product input[type="checkbox"]{
        margin-right: 11px;
}
.topHeadSlidTxt{
    
border-left: 2px solid hwb(0deg 0% 100% / 23%);
    
border-right: 2px solid hwb(0deg 0% 100% / 23%);
    
padding: 0px 25px;
    
display: flex;
    
align-items: center;
}
.filterHead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
}
.filterHead .fa{
            font-size: 20px;
            display: none;
            transition: 0.4s ease;
        }
.filterSearchBlock{
    display: block;
}
.filterArrow{
    transform: rotate(180deg);
}
.btn3{
    display: inline-block;
    padding: 12px 30px;
    background: #e9e9e9;
    color: var(--dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #2d2d2d !important;
}
.btn3:hover{
    background: #d1d1d1
}
.payMethodBtn{
    display: none !important;
}
@media screen and (max-width: 992px) {
        .topHeadSlidTxt{
            border: none;
            padding: 4px;
            margin: 3px 0;
            display: flex;
        }
        .topDropBack .inner{
        width: 100%;
        padding: 4px 8px;
        width: initial;
        }
        .topDropBack{
            
        width: 100%;
            
        justify-content: flex-end;
        }
        .topHeader .col1
        {
        order: 1;
        }
        .topHeader .col2
        {
        order: 3;
        }
        .topHeader .col3
        {
        order: 2;
        }
        .topDropBack .deliveryiomg1{
            display: none;
        }
        .topDropBack p{
            
        margin-left: 0;
        }
        .topDropBack-dropdown{
            
        box-shadow: 0 2px 10px #00000024;
            
        z-index: 99999;
        }
        .topDropBack .fa-angle-down{
            
            display: none;
        }
        .topDropBack .flag{
            margin: 0 !important;
        }
        .topHeadSlidTxt{
            border: none;
            padding: 4px;
            margin: 3px 0;
            display: flex;
        }
        .topDropBack .inner{
        width: 100%;
        padding: 4px 8px;
        width: initial;
        }
        .topDropBack{
            
        width: 100%;
            
        justify-content: flex-end;
        }
        .topHeader .col1
        {
        order: 1;
        }
        .topHeader .col2
        {
        order: 3;
        }
        .topHeader .col3
        {
        order: 2;
        }
        .topDropBack .deliveryiomg1{
            display: none;
        }
        .topDropBack p{
            
        margin-left: 0;
        }
        .topDropBack-dropdown{
            
        box-shadow: 0 2px 10px #00000024;
            
        z-index: 99999;
        }
        .topDropBack .fa-angle-down{
            
            display: none;
        }
        .topDropBack .flag{
            margin: 0 !important;
        }
        .shop-header h1{
            font-size: 33px;
        }
        .shop-header{
                background-color: #1f140f;
        }
        .shop-toolbar{
            display: block
        }
        .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
}
        .sort-filter select{
            width: 100%;
            margin: 15px 0 0;
        }
        .filterHead .fa{
            display: block;
        }
        .filterSearchBlock{
            display: none;
        }
        .filterHead{background: #dfd7d3;padding: 8px 10px;border-radius: 5px;border: 1px solid #c3bfbe;margin: 0;cursor: pointer;}
        .sidebar-product .mainTitle1{
            font-size: 22px;
        }
        .container{
            width: 97%;
        }
        .product-info{
            padding: 22px;
        }
        .tabs-nav li.active{
            width: 50%;
        }
        .product-info1{
            padding: 0 !important
        }
        .product-card .product-price{display: block;text-align: center;}
        .product-card .btn{
            display: block;
            margin: 8px 0 0;
        }
        .quantity-input{
            width: 100%
        }
        .quantity-btn{
            
        }
        .contactBlock2{
            padding: 25px;
        }
        .contactBoxBack{
            padding: 21px;
        }
        .checkout-section{
        }
        .emailVerBtn{
            width: 100%;
        }
        .payment-tabs{
                flex-wrap: wrap;
        }
}
.shipping-method {
}
.shipping-method .checkRadioBtn{
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 1px solid #ddd;
    margin-right: 12px;
}
.shipping-method .checkRadioBtn_active:before{
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    display: block;
    border-radius: 100px;
    background: var(--first);
}
.shipping-method .checkRadioBtn_active{
    border: 1px solid var(--first);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shipping-method .flex2{
}
.shipping-method .payImg1{
    filter: grayscale(1);
}
.shipping_methods_active .payImg1{
    filter: none !important;
}
.shipping_methods_active{
}
.shipping-method .flex2{
    width: 100%;
}
.shipping-method .innerBlock{
}
.shipping-method .shipInnerImg{
    
}
.shipping-method .innerBlock p{
}
.trackInp{
    width: 100%;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid #d9d9d9;
}
.trackInp:hover,
.trackInp:focus{
    border: 1px solid var(--first);
}
.w100{
    width: 100%;
}
.tag{background: #e7e7e7; color: #484848;}
.tag-1
{
    background: #5ab164;
    border-radius: 16px;
    padding: 4px 7px;
    font-size: 14px;
    font-weight: 500;
    color: white !important;
}
.tag-2
{
    background: #bf5656;
    border-radius: 16px;
    padding: 4px 7px;
    font-size: 14px;
    font-weight: 500;
    color: white !important;
}
.tag-3
{
    background: #9c9c9c;
    border-radius: 16px;
    padding: 4px 7px;
    font-size: 14px;
    font-weight: 500;
    color: white !important;
}
.is-invalid{border-color:#dc3545!important} .error{color:#dc3545;font-size:.8rem;margin:4px 0 0}
.checkout-form-section { display: none; }
.checkout-form-section.active { display: block; }
#email-section { display: block; }
/* Toast Notification Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}
/* Individual Toast */
.toast {
    position: relative;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Toast when visible */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
/* Toast types */
.toast.success {
    background-color: #4CAF50; /* Green */
}
.toast.error {
    background-color: #F44336; /* Red */
}
.toast.info {
    background-color: #2196F3; /* Blue */
}
.toast.warning {
    background-color: #FF9800; /* Orange */
}
/* Toast icon */
.toast-icon {
    margin-right: 12px;
    font-size: 20px;
}
/* Toast content */
.toast-content {
    flex: 1;
}
/* Toast close button */
.toast-close {
    margin-left: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.toast-close:hover {
    opacity: 1;
}
/* Progress bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}
.toast-progress-bar {
    height: 100%;
    background-color: white;
    width: 100%;
    animation: progress linear forwards;
}
@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .toast-container {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
    
    .toast {
        width: 100%;
    }
}
/* Add these styles to your CSS */
.cart-item-sidebar.removing {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.remove-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.cart-item-sidebar {
    transition: all 0.3s ease;
    overflow: hidden;
}
.cart-item-sidebar.removing {
    opacity: 0.5;
}
.toast a.undo-remove {
    color: white;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: bold;
}
.toast a.undo-remove:hover {
    text-decoration: none;
    opacity: 0.9;
}
/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open {
    right: 0;
}
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.5rem;
}
.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}
.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}
.cart-item-sidebar {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}
.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
}
.cart-item-title {
    margin: 0 0 5px;
    font-size: 1rem;
}
.cart-item-price {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
}
.cart-item-quantity input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.9rem;
}
.cart-totals {
    margin-bottom: 15px;
}
.cart-totals div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.cart-totals .total {
    font-weight: bold;
    font-size: 1.1rem;
}
.checkout-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.view-cart {
    display: block;
    width: 100%;
    background: #f8f9fa;
    color: #333;
}
.cart-empty-message {
    text-align: center;
    padding: 20px;
    display: none;
}
.cart-empty-message.show {
    display: block;
}
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        max-width: 350px;
    }
}
@media screen and ( max-width: 992px ) {
    .shipping-method .payImg1{
        display: none;
    }
    .comment-block .userimg{
        display: block;
        margin: 20px auto 0;
    }
    .prod-rev-star-back{
        justify-content: center;
    }
    .comment-block{
            background: beige;
    padding: 19px 10px;
    background: #f8f8f8;
    border-radius: 14px;
    }
    .comment-block .user-name{
        margin: 0;
    }
}
/* blog view start  */
.blogVImg{
width: 100%;
margin: 12px 0 16px;
border-radius:10px;
}
.blogvTitle{margin: 0 0 8px;font-size: 33px;}
.blogDate1{
gap: 20px;
display: flex;
}
.blogvFlex1{
    
display: flex;
    
gap: 25px;
    
border-bottom: 1px olid beige;
    
CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
}
.blogvBody{
    
padding: 12px 0 0;
    
border-top: 1px solid #b9b9b9;
    
margin: 14px 0 0;
}
.blogvBody {}
.blogvShareFlex{
gap: 17px;
}
.blogvShareFlex .fa{
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 100px;
    font-size: 18px;
    background: #e7e7e7;
    transition: 0.4s ease;
}   
  .copyLink {
    position: relative;
  }
  .tooltip-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
  }
  .copyLink.show-tooltip .tooltip-text {
    opacity: 1;
  }
.blogvShareFlex .fa:hover{
    background: var(--first);
}
.blogVSideBlogs{
}
.blogVSideBlogs .thumb3{
    
width: 100%;
border-radius:10px;
}
.blogVSideBlogs .title2{
    
font-weight: 700;
    
font-size: 20px;
    
line-height: initial;
    
letter-spacing: -1px;
    
margin: 19px 0 0;
    
display: inline-block;
}
.blogVSideBlogs .desc2{
    
font-size: 14px;
    
line-height: 1.4;
}
.blogVSideBlogs .linker2{
    
font-weight: 600;
    
font-size: 15px;
    
text-decoration: underline;
    
display: inline-block;
    
margin: 10px 0 0;
}
.limit_2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.limit_3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogVSideBlogs .single{
    
margin: 0 0 20px;
}
/* blog view end  */
.quick-add-modal {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center; justify-content: center;
        z-index: 9999;
    }
    .quick-add-content {
        background: #fff;
        padding: 30px 20px;
        border-radius: 12px;
        width: 300px;
        text-align: center;
        position: relative;
        animation: fadeInUp 0.3s ease-in-out;
    }
    .modal-quantity-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 15px 0;
    }
    .modal-quantity-selector button {
        width: 30px; height: 30px;
    }
    .modal-quantity-selector input {
        width: 60px; text-align: center;
        margin: 0 10px;
    }
    .close-modal {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }
    @keyframes fadeInUp {
        from {opacity: 0; transform: translateY(20px);}
        to {opacity: 1; transform: translateY(0);}
    }
    

.top-bar {
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #1877F2 0%, #1a5fc0 100%);
    color: white;
    
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0%;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

.promo {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo i {
    color: #ffde59;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 70px;
    }
    
    .promo {
        margin-top: 5px;
    }
}

.cut-sel {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5rem;
    font-size: 14px;
    min-width: 220px;
    cursor: pointer;
    background: #fff;
    margin-right: 3rem;
}
.cut-opt {
    border-radius: 2rem;
}

.cut-sels {
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5rem;
    font-size: 14px;
    width: 100px;
    cursor: pointer;
    background: #fff;
}