* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0efef;
}

ul {
    margin: 0 auto;
}

.bg-color {
    background-image: url('/assest/images/blog/download.png');
    background-position: center;
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    letter-spacing: .3px;
    color: #4a2d2a;

}
a{
    text-decoration: none;
}
.product-img {
    height: 358px !important;
    overflow: hidden ;
    width: 335px;
}

.section-padding {
    padding-bottom: 50px 0px;
}

.justify-items {
    justify-content: center;
    align-items: center;
}

span {
    color: #ff6600;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;              /* keeps it above page content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f7e9e4;        /* your navbar background */
    color: #4a2d2a;
}


.navbar_header {
    background-color: #f7e9e4;
    padding-top:  0px;
    padding-bottom:  0px;
    position: sticky;
    top: 0;
    z-index: 100;
}


.text-left h2 {
    text-align: left !important;
    padding-bottom: 20px;
}

/* Navbar container */
nav {

    color: #000;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #373536;
    display: flex;
    justify-content: left;
    align-items: center;
}

.logo li {
    list-style: none;
}

.info-list {
    padding: 0;
}

.logo-content {
    font-size: 26px;
    padding: 0;
    margin: 0;
}

.service-btn a {
    text-decoration: none;
    color: #ffff;
    
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #ff6600;
}

/* Navbar links */
/* nav {


    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
} */



/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ffff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    transition: 0.3s;
    background-color: #ff6600;
    border-radius: 30px;
}

.nav-links a:hover {
    color: #ffff;
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 33px;
    left: 0;
    background: #ffff;
    border-radius: 6px;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.dropdown a {
    display: block;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 0px;
}

.dropdown a:hover {
    background: #ff6600;
    color: #fff;
}

.nav-links li:hover .dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        display: none;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .dropdown {
        position: static;
        box-shadow: none;
    }
}

/* Hero Section */
.hero-section .swiper {
    width: 100%;
    height: 82vh;
}

.hero-section {
    padding: 0 !important;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Content */
.slide-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
    z-index: 2;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-content {
    transform: scale(1);
    opacity: 1;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffff;
}

.slide-content p {
    font-size: 20px;
    line-height: 1.5;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #ff6600;
    opacity: 1;
}

.content {
    padding: 40px;
    height: 2000px;
    background: linear-gradient(to bottom, #f7f7f7, #ddd);
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.explore-hero-banner {
    background-image: url(images/hero-banner-new.jpg);
    background-size: cover;
    background-attachment: scroll;
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero-banner {
    color: #ffff;
}

.shop-button {
    padding-top: 20px;
}

.hero-banner h1 {
    width: 40%;
    font-size: 42px;
    font-weight: 500;
    line-height: 60px;
    padding-bottom: 20px;
    color: #fff !important;
}

.hero-banner p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: .3px;

}

.hero-banner span {
    text-decoration: line-through;
}

.hero-banner a {
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 10px 20px;
    color: #fff;
}

.about-heading h5 {
    text-align: center;
    padding-bottom: 40px;
    color: #4a2d2a;
    font-size: 42px;
}

.about-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    border-bottom-left-radius: 200px;
}

.about-content {
    padding-left: 20px;
}

.about-content h2 {
    padding-bottom: 20px;
    text-align: left;
}

.about-content p {
    padding-bottom: 20px;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: .2px;
}

.about-content a {
    text-decoration: none;
    background-color: #ff6600;
    border: 1px solid #fff;
    padding: 10px 20px;
    color: #fff;
    font-weight: 300;
}

.trending-section {
    background-color: #fce5d7;
}

.about-section {
    background-color: #fce5d7;
}

.why-choose-us-section {
    background-color: #fce5d7;
}


.feature-heading {
    display: flex;
    justify-content: space-around;
}

.feature-heading h5 {
    text-align: center;
    padding-bottom: 40px;
    color: #4a2d2a;
    font-size: 42px;
}

.product-card {
    border-radius: 20px;

}

.product-card {
    background: #fff;
    border-radius: 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;   
 overflow: hidden;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image img {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #ff6600;
}

.product-price {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 10px 0 20px;
    text-align: center;

}

.shop-btn {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 20px;
}

.btn {
    background: #ff6600;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e05500;
    color: #ffff;
}

.about-lower-para {
    padding-top: 40px;
    letter-spacing: .5px;
    line-height: 70px;
}

.about-lower-para h4 {
    letter-spacing: .5px;
    line-height: 40px;
}

.why-choose-us-img img {
    border-bottom-right-radius: 200px;
}

.why-choose-content .buttons a {
    text-decoration: none;
    background-color: #ff6600;
    border: 1px solid #fff;
    padding: 10px 20px;
    color: #fff;
}

.why-choose-content h2 {
    padding-bottom: 20px;
}

.why-choose-content p {
    font-size: 16px;
    letter-spacing: .2px;
}

.testimonial-section {
    width: 80%;
    max-width: 700px;
}

.crousel .swiper {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.author {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

/* Footer Styles */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 0px 0px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1;
    margin: 20px;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
    padding-bottom: 5px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6600;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #e05500;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin: 15px 0;
    }
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #2c3e50;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    background: #ff6600;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s;
}

.read-more:hover {
    background: #ff6600;
}

.buttons {
    display: flex;
    gap: 25px;
    padding-top: 20px;
}

.discount-section {
    position: relative;
    background-image: url(images/w-b.png);
    background-attachment: fixed;
    background-size: cover;
}

.discount-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay */
}

.discount-offer-parent {
    position: relative;
    text-align: center;
    color: #ffff;
    z-index: 1;
}

.discount-offer-parent h3 {
    color: #fff !important;
    padding-bottom: 20px;
}

.discount-offer-parent p {
    padding-bottom: 20px;
}

.double-buttons a {
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #ffff;
    padding: 10px 20px;
    color: #fff;
}

.double-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.second-banner {
    width: 100%;

    height: 250px;
    /* adjust banner height */
    margin: 20px auto;
    background: url(images/second-b.png);
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
}

.banner-text {
    position: relative;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.banner-text h3 {
    color: #fff !important;
    padding-bottom: 10px;
}

.banner-text h2 {
    color: #fff !important;
    padding-bottom: 20px;
    font-size: 50px;
}

/* .banner-text .btn {
    padding: 10px 80px;
} */

.box {
    position: relative;
    width: 408px;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.box:hover img {
    transform: scale(1.1);
}

.img-boxes-parent .box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.box:hover .overlay {
    opacity: 1;
}

.img-boxes-parent {
    justify-content: space-between;

}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.swiper-pagination{
    margin-top: 15px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background: #ff6600 !important;
}

/*About page*/

.aboutpage-section {
    background-image: url(images/about-us-banner.jpg);
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}

.page-banner-text h2 {
    color: #ffff !important;
    font-size: 3rem;
    letter-spacing: .5px;
}

.aboutpage-content-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aboutpage-content-section {
    background-image: url(images/blog/download.png);
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}

/*product page*/

.product-boxes .product-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 30px;
    width: 100%;
}

.product-boxes .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-boxes .product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-body {
    padding: 16px;
}

.product-body h5 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.product-body p {
    font-size: 14px;
    color: #6b7280;
    min-height: 60px;
}

.price {
    font-weight: 700;
    color: #111827;
}

.btn-custom {
    border-radius: 8px;
    padding: 8px 14px;
}

.productpage-section {
    background-image: url(images/products-img/product-banner.jpg);
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}

.form-box {
    max-width: 700px;
    width: 100%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}


.field {
    margin-bottom: 16px;
}

.divided-col {
    margin-bottom: 16px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    padding: 6px;
}



@media (max-width:600px) {
    .row {
        grid-template-columns: 1fr;
    }
}

/* .btn {

    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
} */

.contact-heading {
    font-family: sans-serif;
    color: rgb(6, 6, 6);

}

.bg-orange {
    background-color: #ffb347 !important;
}

.text-orange {
    color: #ff8c00;
}

.border-orange {
    border: 1px solid #ffb347;
}

.btn-orange {
    background-color: #cc5500;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #b34700;
}

.cont {
    width: fit-content;
    padding: 5px 10px;
    background-color: orange;
    color: rgb(70, 62, 62);
    font-weight: 500;
    border-radius: 5px;
}

.order-summary-container {
    position: sticky;
    top: 0;
    height: 100vh;
}

.order-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.order-card-header {
    background-color: #ffcc80;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.45rem;
    border-bottom: 1px solid #ddd;
}

.order-card-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #fff;
}

.order-card-body h5 {
    text-align: center;
    font-weight: 600;
    color: #5c2c0c;
    margin-bottom: 1.5rem;
}

.summary-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-item strong {
    display: inline-block;
    width: 140px;
    color: #5c2c0c;
}

.order-card-footer {
    background-color: #641e16;
    color: white;
    padding: 1rem;
}

.price-row {
    /* display: flex; */
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    background-color: #ff7043;
    color: #000;
    border: none;
    font-weight: 600;
}

.add-to-cart-btn:hover {
    background-color: #f4511e;
    color: #fff;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background-color: #fff3e0;
}

.pricing-table th {
    padding: 15px;
    text-align: left;
    color: #5c2c0c;
    font-weight: 700;
}

.pricing-table td {
    padding: 15px;
    vertical-align: middle;
    color: #4a2e14;
    font-weight: 500;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.highlight-row {
    background-color: #ffa733;
    color: #000;
    font-weight: bold;
}

.highlight-row td {
    font-weight: bold;
}

.badge-offer {
    background-color: #ffcc80;
    color: #5c2c0c;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.custom-input {
    border: 1px solid orange;
    border-radius: 5px;
    padding: 8px 12px;
    width: 100%;
}

.quote-btn {
    border: 1px solid #000;
    padding: 8px 16px;
    border-radius: 5px;
    background: #fff;
    font-weight: 500;
    color: #0077b6;
    text-decoration: none;
}

.quote-btn:hover {
    background-color: #0077b6;
    color: #fff;
    text-decoration: none;
}

.table-footer td {
    background-color: #f2f2f2;
    font-weight: 500;
    color: #4a2e14;
}

.ico {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;

}

:root {
    --bg: #0f1220;
    --muted: #8d93a7;
    --text: #e7e9f3;
    --accent: #4cc9f0;
    --accent-2: #b5179e;
    --card: #151933;
    --ring: rgba(76, 201, 240, .35);
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    background: #f5f7fb;
}

/* Footer wrapper */
.qlc-footer {
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(181, 23, 158, .15), transparent 60%),
        radial-gradient(1000px 600px at -10% 110%, rgba(76, 201, 240, .12), transparent 60%),
        var(--bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.qlc-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px 28px;
}

/* Top badges */
.top-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.badge i {
    font-size: 18px;
    color: #fff;
}

.badge span {
    font-weight: 600;
    color: #eaf2ff;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 28px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .3px;
}

.logo i {
    color: var(--accent-2);
}

.brand p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    letter-spacing: .4px;
    color: #f2f4ff;
    text-transform: uppercase;
}

.list a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 6px 8px;
    transition: .18s ease;
}

.list a i {
    font-size: 14px;
    opacity: .9;
}

.list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    transform: translateX(4px);
}

/* Contact cards */
.contact-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
}

.contact-row i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    flex: 0 0 28px;
}

.contact-row span {
    line-height: 1.45;
}

.contact-row strong {
    color: #fff;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.newsletter input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: #0e1124;
    color: #fff;
    outline: none;
}

.newsletter button {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #e05500;
    color: white;
    font-weight: 700;
    letter-spacing: .3px;
    transition: filter .2s, transform .15s;
    box-shadow: 0 6px 18px var(--ring);
}

.newsletter button:hover {
    filter: brightness(1.05);
}

.newsletter button:active {
    transform: translateY(1px);
}

/* Divider */
.divider {
    margin: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Bottom bar */
.bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .06);
    transition: .18s ease;
}

.social a:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .top-badges {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

/* Top Header */
.top-header {
    background: #0f1220;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
}

.top-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* Left side */
.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffd43b;
}

.top-left .rating span {
    color: #fff;
    font-weight: 500;
}

.top-left a {
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.top-left a:hover {
    color: #4cc9f0;
}

/* Right side */
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-right a,
.top-right span {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.top-right a:hover {
    color: #e05500;
}

@media (max-width:768px) {
    .top-header .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Page Wrapper */
.cart-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #0f1220;
}

/* Cart Layout */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Cart Table */
.cart-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cart-header,
.cart-item {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 120px 120px 120px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.cart-header {
    font-weight: 600;
    background: #f0f2f7;
    text-transform: uppercase;
    font-size: 14px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 14px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-name {
    font-weight: 600;
    color: #0f1220;
}

.product-meta {
    font-size: 13px;
    color: #777;
}

/* Quantity */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.qty-control button {
    width: 28px;
    height: 28px;
    border: none;
    background: #0f1220;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: .2s;
}

.qty-control button:hover {
    background: #ff7043;
}

.qty-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px;
}

/* Price & remove */
.price,
.subtotal {
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    color: #000;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

.remove-btn:hover {
    color: #ff7043;
}

/* Summary */
.cart-summary {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.cart-summary h2 {
    font-size: 20px;
    margin: 0 0 20px;
    color: #0f1220;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 15px;
}

.summary-row.total {
    font-weight: 700;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 16px;
}

.checkout-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
    background: #ff7043;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

.checkout-btn:hover {
    filter: brightness(1.05);
}

/* Responsive */
@media(max-width:900px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-header,
    .cart-item {
        grid-template-columns: 1fr 80px 80px 80px;
        font-size: 14px;
    }
}

.account-page {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0f1220;
    margin-bottom: 30px;
}

.account-container {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
}

/* Left panel with tabs */
.account-tabs {
    background: #ff7043;
    padding: 40px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account-tabs h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.tabs {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #fff;
    color: #0f1220;
    font-weight: 600;
}

/* Right panel with forms */
.account-forms {
    padding: 40px 30px;
}



form.active {
    display: flex;
}

label {
    font-size: 14px;
    font-weight: 600;
    color: #0f1220;
}

input {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: .2s;
}

input:focus {
    border-color: #4cc9f0;
    box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.form-options a {
    color: #4cc9f0;
    text-decoration: none;
}

button.submit-btn {
    padding: 14px;
    border: none;
    background: #ff7043;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

button.submit-btn:hover {
    filter: brightness(1.05);
}

.social-login {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.social-login button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.google {
    background: #db4437;
    color: #fff;
}

.facebook {
    background: #1877f2;
    color: #fff;
}

/* Responsive */
@media(max-width:800px) {
    .account-container {
        grid-template-columns: 1fr;
    }

    .account-tabs {
        padding: 20px;
    }

    .tabs {
        justify-content: center;
    }
}


.blog-page {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}



/* Layout */
.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Blog Posts */
.blog-post {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    transition: .2s;
}

.blog-post:hover {
    transform: translateY(-4px);
}

.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f1220;
    text-align: left;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: .2s;
}

.read-more:hover {
    filter: brightness(1.05);
}

/* Sidebar */
.sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    height: fit-content;
}

.sidebar h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f1220;
}

.latest-blog {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.latest-blog:last-child {
    border-bottom: none;
}

.latest-blog img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.latest-blog-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #0f1220;
}

.latest-blog-meta {
    font-size: 12px;
    color: #777;
}

/* Responsive */
@media(max-width:900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 20px;
    }

}

.product-content p {
    text-align: justify;
}

.blog-page-section {
    background-image: url('images/blog/blog-banner.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}

iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.career-form {
    max-width: 1100px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.career-form .row {
    display: flex;
    flex-wrap: wrap;
}

.career-form .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.career-form .form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.career-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #222;
}

.career-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.career-form .form-row .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-form label {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.career-form input,
.career-form select,
.career-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.career-form textarea {
    resize: vertical;
    min-height: 100px;
}

.career-form button {

    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
}



.career-form .image-box img {
    width: 100%;
    border-radius: 10px;
    height: 554px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .career-form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .career-form .form-row {
        flex-direction: column;
    }
}

/* .design-btn a {
    color: #fff;
    text-decoration: none;
} */

.design-btn {
    
    margin-bottom: 20px;
    width: 100%;
    font-size: 26px;
}



/* Container */
.my-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.my-account-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}


/* Row / Col system */
.my-account-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.my-account-col {
    padding: 10px;
    flex: 1;
    min-width: 0;
}

.my-account-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.my-account-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}


/* Left side (visual) */
.my-account-visual {
    background: linear-gradient(135deg, #e8f4ff, #f9fbff);
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.my-account-logo {
    font-size: 32px;
    font-weight: 700;
    color: #0b76ef;
    margin-bottom: 20px;
}

.my-account-hero {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.my-account-sub {
    color: #666;
    font-size: 14px;
    max-width: 280px;
}


/* Right side (form) */
.my-account-panel {
    padding: 40px;
}

.my-account-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.my-account-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}


.my-account-form .my-account-row {
    margin-bottom: 16px;
}

.my-account-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.my-account-label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.my-account-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.my-account-input:focus {
    outline: none;
    border-color: #0b76ef;
    box-shadow: 0 0 0 3px rgba(11, 118, 239, 0.15);
}


.my-account-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: #0b76ef;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.my-account-btn:hover {
    background: #095ec2;
}


.my-account-btn-ghost {
    background: #f5f7fa;
    color: #444;
    border: 1px solid #ccc;
}


.my-account-foot {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}


/* Responsive */
@media(max-width:900px) {
    .my-account-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .my-account-visual {
        padding: 20px;
    }

    .my-account-panel {
        padding: 20px;
    }
}

.product-image-crousel{
    padding-top: 20px;
}
.product-pagination{
    padding-top: 30px;
    top: 7px !important;
}

.hamburger-ul li a{
    color: #ff6600;
    text-decoration: none;
}

.buttons-blogs a{
        text-decoration: none;
    background-color: #ff6600;
    border: 1px solid #fff;
    padding: 10px 20px;
    color: #fff;
    
    width: fit-content;
}

/* Section styling */
.clothing-label-section{
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.clothing-label-section h2{
  font-size: 28px;
  margin-bottom: 20px;
  color: #442f2f;
}

/* Grid layout */
.clothing-label-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card */
.clothing-label-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clothing-label-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.clothing-label-card h3{
  font-size: 18px;
  margin: 12px 0 6px;
  color: #333;
}
.clothing-label-price{
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}
.clothing-label-btn{
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.clothing-label-btn:hover{
  background: #e55a00;
}

/* Hover effect on card */
.clothing-label-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px){
  .clothing-label-grid{
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}
@media (max-width: 500px){
  .clothing-label-grid{
    grid-template-columns: 1fr; /* 1 per row on very small screens */
  }
}


/* Cart Page Styles */
/* Cart Page Styles */


.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    font-weight: bold;
    border-bottom: 1px solid #dee2e6;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.product-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.product-image {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.product-meta span {
    display: block;
    margin-bottom: 0.2rem;
}

.remove-btn {
    color: #dc3545;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.remove-btn:hover {
    color: #c82333;
}

.price, .subtotal {
    font-weight: bold;
    color: #333;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-control button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #e76609;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
    padding-right: 2px;
}

.qty-control button:hover {
    background: #f8f9fa;
    color: #000;
}

.qty-control input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.3rem;
}

.cart-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    border-bottom: none;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: #218838;
}

.continue-shopping {
    text-align: center;
    margin-top: 1rem;
}

.continue-shopping a {
    color: #6c757d;
    text-decoration: none;
}

.continue-shopping a:hover {
    color: #333;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.empty-cart h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
    }
    
    .qty-control {
        justify-content: center;
    }
}
.cart-count {
    font-size: 0.7rem;
    min-width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}