/* Sleek & Elegant Design System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600&display=swap');

:root {
    --primary: #d9494c;
    --primary1: #000000;
    --secondary: #333333;
    --accent: #000000;
    --bg: #FFFFFF;
    --surface: #F9F9F9;
    --border: #E5E5E5;
    --text-main: #111111;
    --text-light: #666666;
    --footer-bg: #111111;
    --footer-text: #ffffff;
    --footer-text-light: #ffffff;

    --font-main: 'Manrope', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 300;
    font-size: 16px;
    zoom: 80%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    color: var(--primary1);
    letter-spacing: -0.02em;
    line-height: 1.2;
}


.align_item{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px
}
.main_title h2 {
    font-size: clamp(20px, 4vw, 35px);
    font-weight: 600;
    margin-bottom: 0;

}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
}


a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

/* Components */
.btn {
    display: inline-flex;
    padding: 12px 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.3s ease;
    height: 53px;

    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary) !important;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: none;
    border: 1.2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Header */
header {
    padding: 0px 0 10px;
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
   
    transition: border-color 0.3s ease;
}

header.scrolled {
    border-bottom-color: var(--border);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #ffffff;
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}
.btn-primary-1{

    background-color: #fff;
    color: var(--primary) !important;
    border-color: #fff;
}


.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: radial-gradient(circle at center, #fcfcfc 0%, #ffffff 100%);
}

.hero {
    background-image: url('visi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0;
    position: relative;
    color: #fff;


}

.hero-1 {
    background-image: url('img/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0;
    position: relative;
    color: #fff;


}

.hero-1 h1 {
    color: #ffffff;
}

.hero-2 {
    background-image: url('img/explore.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0;
    position: relative;
    color: #fff;


}

.hero-2 h1 {
    color: #ffffff;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: #fff;
}

.nav-brand img {
    height: 90px;
}

.client-user {
    display: flex;
    justify-content: center;
}

.client-user img {
    border-radius: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}

.hero p {
    font-size: 1.4rem;
    color: #F9F9F9;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.img-vector {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 90px 0px;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
}

;

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Products Grid */
.products-grid {
    display: grid;
 grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   
    gap: 40px;
    padding-bottom: var(--spacing-lg);
}

.product-card {
    position: relative;
}
.product-detail-grid {
    max-width: 100% !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 40px !important;
    align-items: start !important;
}

.detail-image {
    width: 100% !important;
    max-width: 450px !important;
    max-height: 450px !important;
}

.detail-image img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;*/
}
@media (max-width: 992px) {
    .product-detail-grid{
        display: flex !important;
        flex-wrap: wrap !important;
    }


.detail-image {
    max-width: 100% !important;
    height: 100% !important;
}
}
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr !important;
    }
    .detail-image {
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
}


.product-image {
    background-color: #F8F6F5;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    transition: transform 0.5s ease;
    padding: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
 .login-from-center{
    padding: 50px 0;

    }

.login-from-center .container{
    width: 100%;
    display: flex;
   justify-content: center;
}

.login-container{
        max-width: 600px;
        width: 100%;
        padding: 30px;
        background: #ffffff;
        border-radius: 0px;
        box-shadow: 0px 0px 8px rgba(0,0,0,0.15);
    }

.login-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 34px;
    font-weight: 800;
    color: #333;
}

    .field-box{
        margin-bottom: 18px;
        position: relative;
    }

    .field-label{
        font-size: 14px;
        color: #555;
    }

    .field-input{
        width: 100%;
        padding: 12px;
        padding-right: 40px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 0px;
        font-size: 15px;
    }

    .toggle-pass{
        position: absolute;
        right: 12px;
        top: 38px;
        cursor: pointer;
        font-size: 14px;
        color: #666;
    }

          .btn-login {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 0px;
            background: var(--primary);
            color: white;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }
    .btn-login:hover{
    }

    .forgot-text{
        display: block;
        text-align: right;
        margin-top: 10px;
        font-size: 14px;
        text-decoration: none;
        color: #333;
    }
    .forgot-text-1{
        display: block;
        text-align: center;
        margin-top: 10px;
        font-size: 14px;
        text-decoration: none;
        color: #333;
    }

    .forgot-text:hover{
        color: var(--primary);
    }

.product-image img {
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-info {
    text-align: center;
}

.product-category {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
}

/* Reviews Section (Landing Page) */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
    border-top: 1px solid var(--border);
}

.reviews-section-1 {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;

}

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

.review-card-large {
    padding: 40px;
    background: #ffffff;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    border-bottom: 5px solid var(--primary) !important;
    border: 1px solid #f3f3f3;
}

.review-card-large-1 {
    padding: 40px;
    background: #CB9BFB;
    text-align: center;
    transition: transform 0.3s ease;

}

.review-card-large-2 {
    padding: 40px;
    background: #F9FD91;
    text-align: center;
    transition: transform 0.3s ease;

}

.review-card-large:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: gold;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

.review-text-large {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #000;
}

.review-author-large {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
}

.contact-section img {
    height: 100%;
    min-height: 400px;
}

/* Explore Page */
.explore-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    padding: 30px;
}

.filters h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
}

.filter-option {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

.filter-option input {
    margin-right: 10px;
    accent-color: var(--primary);
}

/* Product Detail */
.product-detail-container {
    padding: var(--spacing-lg) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.detail-image {
    background-color: var(--surface);
    padding: 0px;
    height: 500px;
    object-fit: cover;
    padding: 10px;
    border-radius: 10px;
}

.detail-image img{
    height: 100%;
    width: 100%;
   
}

.detail-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.detail-info p{
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 34px;
    font-weight: 400;
}

.detail-price {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--primary1);
}

.detail-desc {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.spec-label {
    color: var(--text-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin: 40px 0;
    border: 1px solid var(--border);
    width: fit-content;
}

.qty-btn {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-main);
}

.qty-input {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    border: none;
}

/* Cart */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: var(--spacing-lg) 0;
}

.cart-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background-color: var(--surface);
    object-fit: contain;
    padding: 10px;
}

.cart-summary {
    background-color: var(--surface);
    padding: 40px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.total-row {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Explicitly Professional Footer */
footer {
    background-color: #000;
    color: var(--footer-text);
    padding: 100px 0 40px;
    margin-top: 0;
    /* Connected to last section */
}

.footer-brand h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.footer-brand p {
    max-width: 300px;
    margin-bottom: 40px;
    color: var(--footer-text-light);
}

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

.footer-col h4 {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    font-weight: 600;
}
.footer-col ul{
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 15px;
    list-style: none
}

.footer-col a {
    color: var(--footer-text);
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--footer-text-light);
    padding-bottom: 10px;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    flex-grow: 1;
    padding: 10px 0;
    font-family: var(--font-main);
}

.newsletter-input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--footer-text-light);
}

.newsletter-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #ebebeb;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--footer-text-light);
}

.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    background: #d9494c;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 30px;
    color: #fff !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .explore-layout,
    .product-detail-grid,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

/*    .container {
        padding: 0 30px !important;
    }*/

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.contact-box {
    width: 100%;

    display: flex;
    overflow: hidden;

}

/* Left Image */
.contact-image {
    width: 50%;
    background: url('img/contact.png') center/cover no-repeat;
    min-height: 400px;
}

/* Right Form */
.contact-form {
    width: 50%;
    padding: 40px;
    background: #ffffff;
}



.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}

.contact-form button {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0px;
    font-size: 16px;
    transition: .3s;
}

.contact-form button:hover {
    background: var(--primary);
}

/* Responsive */
@media(max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }

    .contact-image,
    .contact-form {
        width: 100%;
    }
}

.sunglasses-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    margin: auto;
    padding: 40px 0;
}

.left-box,
.right-box {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

/* IMAGE */
.left-img img,
.right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT CONTENT */
.left-content,
.right-content {
    position: absolute;
    top: 25%;
    left: 4%;
    color: #000;
}

.left-content span,
.right-content span {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.left-content h2,
.right-content h2 {
    font-size: 48px;
    margin: 10px 0;
    font-weight: 600;
}

/* BUTTON */
.btns {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    transition: 0.3s;
}

.btns:hover {
    opacity: 0.6;
}

/* Responsive */
@media(max-width: 768px) {

    .left-content h2,
    .right-content h2 {
        font-size: 32px;
    }

    .left-content,
    .right-content {
        top: 18%;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.grid-item {
    position: relative;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {

    font-size: 18px;
    font-weight: bold;
    color: #000;
    letter-spacing: .5px;
}

.text-postion {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .grid-item:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-item:first-child {
        height: 320px;
    }
}



.hero-slider {
    width: 100%;
    height: 500px;      /* You can change height */
    overflow: hidden;
    position: relative;
    display: block;
}
.hero-slider .slick-track{
    height: 100%;
}
.hero-slider .slick-list {
    height: 100%;

}
/* Each slide */
.hero-slide {
    width: 100%;
    height: 100% !important;
    background-size: cover;      /* Full image fit */
    background-position: center; /* Center crop */
    background-repeat: no-repeat;
}

.hero-slider.slick-dotted.slick-slider {
    margin-bottom: 30px !important
}
.hero-slider{
    position: relative;
}
.hero-slider .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b0;
}

.slick-dotted.slick-slider {
    margin-bottom: -34px !important;
}

.slick-dots {
    position: absolute;
    bottom: 20px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
  .hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}


/* CENTER CENTER */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 15px;
}

.hero-center p{
    font-size: 22px !important;
    color: #fff;
    margin-bottom: 20px;
}
.hero-center h1 {
    font-size: clamp(24px, 5vw, 42px) !important;
    color: #fff;
    font-weight: 600;
}
.hero-content-1 h1 {
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-content-1 p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #ffffff !important;

}

/* ---------- MODAL BACKDROP ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* ---------- MODAL BOX ---------- */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 0px;
    border-radius: 0px;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.modal-heading {
    position: relative;
}

.cross-img {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
}

.cross-img img {
    height: 60px;
}

.modal-heading @keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---------- CLOSE BTN ---------- */
.auth-wrapper {
    width: 100%;
    padding: 5% 8%;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 40px;
}

.field-group {}

.field-label {
    font-size: 14px;
    color: #555;
}

.phone-input-row {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.flag-icon img {
    width: 22px;
    margin-right: 6px;
}

.country-code {
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
}

.phone-input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.input-line {
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    margin-top: 6px;
}

.btn-primarys {
    width: 100%;
    padding: 14px 0;
    background: #000000;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    margin-top: 30px;
    cursor: pointer;
}
.btn-primary{
    background: #d9494c !important;
    border: unset !important;
    padding: 15px 40px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fff !important;
}
.btn-primary:hover{
    color:  #fff !important;
}
.auth-terms {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 30px;
    line-height: 30px;
}

.auth-terms a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.review-main {
    max-width: 100%;
    margin: auto;

}

.review-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.review-header-top h2 {
    font-size: 32px;
}

.write-review-btn {
    padding: 12px 24px;
    background: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid #d2d2d2;
}

.review-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.review-info h4 {
    margin: 0;
}

.review-stars {
    color: gold;
    margin: 5px 0;
}

.review-date {
    font-size: 13px;
    color: gray;
}

.review-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.review-actions button {
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
}

.edit-btn {
    background: #ff9800;
    color: white;
}

.delete-btn {
    background: #f44336;
    color: white;
}

.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.review-box {
    background: white;
    padding: 25px;
    border-radius: 0px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.review-box textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    padding: 10px;
}

.star-rating span {
    font-size: 26px;
    cursor: pointer;
    color: #ccc;
}

.star-rating span.active {
    color: gold;
}

.review-box button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 16px;
}

.review-box h3 {
    margin-bottom: 14px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 22px;
    cursor: pointer;
}

@media(max-width:600px) {
    .review-header-top {
        flex-direction: column;
        gap: 12px;
    }
}

.review-card img {
    object-fit: cover;
}

.infinite-slider-main {
    width: 100%;
    overflow: hidden;

    padding: 0px 0;
}

.infinite-slider-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 20s linear infinite;
}

.infinite-slide-box {
    width: 400px;
    margin: 0 15px;
    position: relative;
}

.infinite-slide-box img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    object-fit: cover;
    filter: brightness(0.7); /* 50% brightness */
  transition: filter .25s ease;
}

/* Continuous Right to Left Animation */
@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.infinite-slider-main:hover .infinite-slider-track {
    animation-play-state: paused;

}

.infinite-slider-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 45s linear infinite;

}

.postion-right {
    position: absolute;
    right: 32%;
    bottom: 24px;
    font-size: 16px;
    cursor: pointer;
}

.faq-container {
    max-width: 100%;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #d2d2d2;
    font-family: 'Manrope', sans-serif;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    font-family: 'Manrope', sans-serif;
}

.faq-answer p {
    padding: 15px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}


@media (max-width: 600px) {
    .faq-heading {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
    }
}

.feature-item {
    text-align: center;
}



.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ✅ Mobile View */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
         background: #df0207;
    }

    .nav-links a,
    .nav-links button {
        width: 100%;
        text-align: center;
        padding: 12px 0;

    }
}
.pp-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* H1 Styling (Assuming h1 is the main page title and is safe) */
.pp-heading-1{
    color: var(--primary); 
    text-align: center;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.5em;
}

/* H2 Styling using the new class */
.pp-heading-2 {
    color: #343a40;
    margin-top: 35px;
    border-left: 6px solid #28a745; /* Green border for separation */
    padding-left: 15px;
    font-size: 1.8em;
}

/* H3 Styling using the new class */
.pp-heading-3 {
    color: #6c757d;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
    border-bottom: 1px dotted #ccc; /* Subtle separation */
    padding-bottom: 5px;
}

/* Last Updated tag */
.pp-last-updated {
    font-style: italic;
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 0.95em;
}

/* Lists, Paragraphs, and Links are scoped within pp-container to prevent global conflicts */

.pp-container p {
    margin-bottom: 20px;
    text-align: justify;
}

.pp-container ul, 
.pp-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.pp-container li {
    margin-bottom: 10px;
}

/* Specific List Styling for Rights */
.pp-rights-list li {
    list-style-type: '👉 '; 
    padding-left: 5px;
}

/* Contact Info Styling */
.pp-contact-info {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.pp-container a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.pp-container a:hover {
    color: #0056b3;
    text-decoration: underline;
}
/* Container for content - NOW tc-container */
.tc-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* H1 Styling */
.tc-heading-1 {
    color: #cc0000;
    text-align: center;
    border-bottom: 3px solid #cc0000;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.5em;
}

/* H2 Styling using the new class */
.tc-heading-2 {
    color: #343a40;
    margin-top: 35px;
    border-left: 6px solid #ffc107; /* Yellow border */
    padding-left: 15px;
    font-size: 1.8em;
}

/* H3 Styling using the new class */
.tc-heading-3 {
    color: #6c757d;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
    border-bottom: 1px dotted #ccc; 
    padding-bottom: 5px;
}

/* Last Updated tag */
.tc-last-updated {
    font-style: italic;
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 0.95em;
}


.tc-paragraph {
    margin-bottom: 20px;
    text-align: justify;
}

.tc-container ul, 
.tc-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.tc-container li {
    margin-bottom: 10px;
}

/* Specific List Styling for Prohibited Activities */
.tc-prohibited-list li {
    list-style-type: '❌ '
    padding-left: 5px;
}

/* Contact Info Styling */
.tc-contact-info {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.tc-container a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.tc-container a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.sign-up{
    text-align:center;
    margin-top:20px;
}
.sign-up p a{
    color: #d9494c !important;
    font-weight: 500;
}
.settings-wrapper {
    display: flex;
    min-height: 100vh;
}

.ui-root-container {
  display: flex;
  min-height: 100vh;
}

/* LEFT MENU */
.left-menu-wrapper {
  width: 240px;
  background: #fff;
  padding: 25px;
  
}

.menu-tab-item {
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 0px;

  background: #f3f3f3;
  font-size: 13px;
  transition: 0.2s;
  text-align: left;
}


.menu-tab-active {
  background: #ffd9e8;
  color: var(--primary);
  font-weight: bold;
}

/* MAIN PANEL */
.main-panel-container {
  flex: 1;
  padding: 40px 60px;
}

/* CONTENT BOX */
.content-view-box {
  display: none;
}

.content-view-active {
  display: block;
  background: #fff;
}

/* PROFILE IMAGE */
.profile-image-wrapper {
  text-align: center;
  margin-bottom: 0px;
  display: grid;
  justify-content: center;
}

.profile-image-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff4f87;
}

.profile-image-change-btn {
  margin-top: 10px;
  font-size: 14px;
  color: #ff4f87;
  cursor: pointer;
}

/* FORM */
.profile-form-wrapper {
  max-width: 520px;
  margin: auto;
}

.form-row-split {
  display: flex;
  gap: 20px;
}

.input-block-wrapper {
  width: 100%;
  margin-top: 16px;
}

.label-first-name,
.label-last-name,
.label-email-address,
.label-job-title {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.input-first-name,
.input-last-name,
.input-email-address,
.input-job-title {
  width: 100%;
  padding: 12px;
  border-radius: 0px;
  border: 1px solid #ccc;
  font-size: 14px;
}
/* BUTTONS */
.form-button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-cancel-action {
  padding: 12px 28px;
  border-radius: 0px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.btn-save-action {
  padding: 12px 28px;
  border-radius: 0px;
  border: none;
  background:  var(--primary);
  color: #fff;
  cursor: pointer;
}


.hidden-file-input {
  display: none;
}


@media (max-width: 1024px) {
  .main-panel-container {
    padding: 30px 25px;
  }

  .profile-form-wrapper {
    max-width: 100%;
  }
}


@media (max-width: 768px) {

  .ui-root-container {
    flex-direction: column;
  }

  .left-menu-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .menu-tab-item {
    flex: 1;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
  }

  .main-panel-container {
    padding: 20px 15px;
  }

  .form-row-split {
    flex-direction: column;
    gap: 0;
  }

  .form-button-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn-cancel-action,
  .btn-save-action {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .profile-image-circle {
    width: 90px;
    height: 90px;
  }

  .menu-tab-item {
    font-size: 13px;
    padding: 10px;
  }
}
.order-page-wrapper {
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

/* EACH ORDER CARD */
.order-card-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e7e7e7;
    padding: 15px;
    margin-bottom: 18px;
    border-radius: 0px;
   background: #fff;
    transition: 0.2s;
}

/* IMAGE */
.order-image-wrap {
    flex: 0 0 110px;
}

.order-thumb-pic {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 0px;
}

/* TEXT INFO */
.order-info-wrap {
    flex: 1;
    padding-left: 15px;
    margin-top: 10px;
}

.order-title-text {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.order-price-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 0px;
}

/* STATUS */
.order-status-wrap {
    flex: 0 0 auto;
    margin-top: 10px;
}
.main-flex-1 {
    display: flex;
    justify-content: center;
}
.order-status-badge {
    padding: 8px 16px;
    font-size: 16px;
    color: #fff;
    border-radius: 0px;
    font-weight: 400;
}

/* COLORS */
.delivered-green {
    background: #118a42;
}

.delivered-yellow {
    background: #f4b400;
}

.cancelled-red {
    background: #d32f2f;
}

/* RESPONSIVE */
@media (max-width: 600px) {

    .order-card-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-image-wrap {
        flex: none;
    }

    .order-info-wrap {
        padding-left: 0;
    }

    .order-status-wrap {
        align-self: flex-end;
    }
}

.profile-menu {
  display: flex;
  gap: 10px;
  padding: 0px;
  border-radius: 0px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.menu-tab-item {
  border: none;
  padding: 10px 16px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0px;
  background: #F7F7F7;
  white-space: nowrap;   /* width content ke hisaab se */
}

/* Active style */
.menu-tab-active {
  background: #d9494c;
  color: #fff;
}



/*filter css start*/


    .filter_box {
            width: 300px;
            position: relative;
        }

        /* Trigger Button */
.filter_box .filter-btn {
    width: 100%;
    background: #ffffff;
    border: none;
    /*border-radius: 15px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 17px;
    transition: all 0.3s ease;
    height: 53px;
    padding: 12px 32px;
    border: 1px solid #eee;
}

        .filter_box .filter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .filter_box .arrow {
            width: 12px;
            height: 12px;
            border-right: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            transform: rotate(45deg);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: -5px;
        }

        /* The Dropdown Menu */
       .filter_box .filter-menu {
            position: absolute;
            top: 75px;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            overflow: hidden;
            
            /* Initially Closed */
            max-height: 0;
            opacity: 0;
            transform: scale(0.95) translateY(-20px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
            z-index: 100;
        }

        /* Open State Class */
.filter_box .filter-menu.open {
    max-height: 600px;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    padding: 20px;
}

       .filter_box .filter-btn.active .arrow {
            transform: rotate(-135deg);
            margin-top: 5px;
        }

     
.filter_box .section h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

          .filter_box .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

          .filter_box .option-item {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 15px;
            color: var(--text-dark);
            transition: 0.2s;
        }

          .filter_box .option-item:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

          .filter_box input[type="radio"] {
            accent-color: var(--primary-color);     
            width: 18px;
            height: 18px;
        }

          .filter_box .divider {
            height: 1px;
            background: rgba(0,0,0,0.05);
            margin: 10px 25px;
        }
.filter_box .apply-btn {
    width: 100%;
    margin: 20px 0 0;
    padding: 12px;
    border: none;
    background: #d9494c;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}


.filter_btn{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*filter end start*/

@media (max-width: 480px) {

.filter_box{
        width: 100%;
}
.align_item .btn-outline{
            width: 100%;
}

.filter_btn {
    width: 100%;
}

}



/*header css start*/

 /* --- HEADER PARENT --- */
        .bm-header-wrapper {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Top Bar: Logo & Main Nav */
        .bm-top-row {
            background: var( --primary);
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /*.bm-logo img { height: 50px; filter: brightness(0) invert(1); }*/

        .bm-top-nav { display: flex; list-style: none; gap: 20px; align-items: center; }
        .bm-top-nav a { color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; text-transform: uppercase; }
        
        .bm-login-btn { background: #fff; color: var( --primary) !important; padding: 6px 18px; border-radius: 4px; font-weight: 700 !important; }

        /* Bottom Bar: 10-12 Categories */
        .bm-cat-bar {
            display: flex;
            justify-content: center;
            list-style: none;
            background: #fff;
            border-bottom: 1px solid #eee;
            overflow-x: auto; /* For small desktops */
        }

        .bm-cat-item { position: static; }
        .bm-cat-link {
            padding: 15px 12px;
            display: block;
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            border-bottom: 3px solid transparent;
        }

        .bm-cat-item:hover .bm-cat-link { color: var(--meesho-pink); border-bottom-color: var(--meesho-pink); }

        /* Mega Dropdown Desktop */
        .bm-desktop-dropdown {
            position: absolute;
            left: 0; width: 100%; background: #fff;
            display: grid; grid-template-columns: repeat(6, 1fr);
            padding: 30px 6%; box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            visibility: hidden; opacity: 0; transform: translateY(15px);
            transition: var(--smooth); border-top: 1px solid #eee;
        }

        .bm-cat-item:hover .bm-desktop-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }

        .bm-col { padding: 10px; }
        .bm-col:nth-child(even) { background: #fdf7fa; border-radius: 8px; }
        .bm-col-h { color: var(--meesho-pink); font-weight: 700; font-size: 14px; margin-bottom: 10px; display: block; }
        .bm-sub-list { list-style: none; }
        .bm-sub-list a { text-decoration: none; color: #666; font-size: 12.5px; display: block; margin-bottom: 5px; }

        /* --- MOBILE MENU --- */
        .bm-hamburger { display: none; color: white; font-size: 24px; cursor: pointer; }
.bm-sidebar{
    display: none;
}
        @media (max-width: 1024px) {

.bm-cat-link {
    padding: 9px 20px;
    font-size: 16px;

}
.bm-sidebar .bm-cat-bar{
    display: block;
}

            header{
                padding: 0;
            }
            .bm-sidebar{
    display: block;
}
            .bm-hamburger { display: block; }
            .bm-cat-bar, .bm-top-nav { display: none; }

        .bm-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s;
    overflow-y: auto;
    padding-bottom: 50px;
}
            .bm-sidebar.active { left: 0; box-shadow: 5px 0 15px rgba(0,0,0,0.2); }
            .bm-sidebar-header { background: var( --primary); padding: 20px; color: white; font-weight: bold; }
            
            .bm-mob-main-links a { padding: 12px 20px; display: block; text-decoration: none; color: #333; border-bottom: 1px solid #eee; font-weight: 600; }
            .bm-mob-label { background: #f4f4f4; padding: 12px 20px; color: var(--primary); font-weight: 800; font-size: 12px; text-transform: uppercase; }

            /* Mobile Accordion */
            .bm-acc-item { border-bottom: 1px solid #eee; }
            .bm-acc-trigger { padding: 15px 20px; display: flex; justify-content: space-between; cursor: pointer; font-size: 14px; font-weight: 500; }
            .bm-acc-content { display: none; background: #fafafa; padding: 10px 35px; }
            .bm-acc-item.open .bm-acc-content { display: block; }
            .bm-acc-item.open .fa-chevron-down { transform: rotate(180deg); }
        }

        .bm-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; z-index: 1500; }
        .bm-overlay.active { display: block; }

/*header css end*/


/*pegination css start*/

.bm-pagination-container {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.bm-pagination-container .bm-pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bm-pagination-container .page-link, .page-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444 !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

/* Page Link Hover Effect */
.bm-pagination-container .page-link:hover:not(.active) {
    color: var(--primary);
    background: #fff0f0;
    transform: translateY(-3px);
}

/* Active Page Style */
.bm-pagination-container .page-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    box-shadow: 0 5px 15px rgba(211, 64, 64, 0.4);
}

/* Arrow Styles */
.bm-pagination-container .page-arrow {
    background: #fff;
    border: 1px solid #eee;
    color: var(--primary);
}

.bm-pagination-container .page-arrow:hover:not(.disabled) {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.bm-pagination-container .page-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.bm-pagination-container .page-dots {
    color: #999;
    font-weight: bold;
    letter-spacing: 2px;
}
.bm-pagination-container .page-numbers{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
   .bm-pagination-container .page-link { width: 35px; height: 35px; font-size: 12px; }
   .bm-pagination-container .bm-pagination-wrapper { padding: 8px 12px; gap: 5px; }
}

/*pegination css end*/


.login_btn{
    background: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 25px !important;
    color: #000 !important;
    border-radius: 10px;
}

.container.profile_box{
    padding: 20px;
}
.login-from-center .container {
    padding: 0 20px;
}

.myacount{
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-backdrop{
    width: 100% !important;
    height: 100% !important;
}

/*success msg css start*/

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideIn 0.5s ease-out forwards;
    gap: 11px;
    padding-right: 50px;
}
.custom-alert.alert-error-popup{
    background: red;
}
.custom-alert.alert-success-popup{
    background: green;
}

/* Success Green Styling */
.custom-alert .alert-success-popup {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-left: 6px solid #1e8449;
}

/* Error Red Styling */
.custom-alert .alert-error-popup {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-left: 6px solid #922b21;
}

/* Icons and Text */
.custom-alert .custom-alert .icon {
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.custom-alert .custom-alert .message {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
}

.custom-alert .close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.custom-alert .close-btn:hover {
    opacity: 1;
}

/* Slide-in Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/*success msg css end*/

/*category css start*/

.mb_3{
    margin-bottom: 40px;
}
        
        /* Category Card Styling */
        .category-section .item { text-align: center; padding: 10px; transition: transform 0.3s; }
        .category-section .item:hover { transform: translateY(-5px); }
        
        .category-section .cat-img-box {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .category-section .cat-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-section .category-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
        }

/*category css end*/

@media (max-width: 480px) {
    .detail-image img {
    height: 336px !important;
}
.main-product-img {
    max-width: 360px;
}

}
@media (max-width: 350px) {
        .detail-image img {
    height: 280px !important;
}
}

/*search bar css start*/

     .bm-search {
    display:flex;
    align-items:center;
    gap:10px;
}

.bm-search form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.bm-search input {
    flex: 1;
    border: none;
    padding:  10px 15px;
    outline: none;
    font-size: 14px;
    height: 53px;
}

.bm-search button {
    background: none;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    color: #555;
}


/* Mobile */
@media (max-width: 992px) {
  .bm-search.mobile {
    display: block;
    padding: 10px;
}
        .bm-search{
        display:none;
    }
}

@media (max-width: 768px) {
    .bm-search {
        max-width: 100%;
        margin: 10px 0;
    }
}


/*search bar css end*/