/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #2f4f2f;
    --dark-color: #253d4e;
    --text-color: #7e7e7e;
    --border-color: #ececec;
    --light-bg: #f9f9f9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}





button {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */


@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }
}

section {
    padding: 60px 0;
}



/* PRELOADER STYLES */
#gp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gp-loader-logo {
    width: 160px;
    animation: gpPulse 1.5s infinite ease-in-out;
}

@keyframes gpPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* FLOATING CONTROLS CONTAINER */
.gp-fixed-controls {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* WHATSAPP BUTTON */
.gp-whatsapp-btn {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.gp-whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* SCROLL TO TOP BUTTON */
.gp-scroll-top {
    width: 50px;
    height: 50px;
    background-color: #2f4f2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(88, 195, 139, 0.4);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.gp-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gp-scroll-top:hover {
    background-color: #333;
    transform: translateY(-5px);
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 576px) {
    .gp-fixed-controls {
        right: 15px;
        bottom: 15px;
    }

    .gp-whatsapp-btn,
    .gp-scroll-top {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* top bar start new */

        /* Unique Bar Styling */
        .top-promo-slider-bar {
            background-color: #1a1a1a; /* Proper Black Color */
            color: #ffffff;
            padding: 5px 0;
            overflow: hidden;
            border-bottom: 1px solid #333;
        }

        /* Center Text Styling */
        .promo-content-item {
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.8px;
            margin: 0;
            /* display: flex;
            align-items: center;
            justify-content: center; */
            gap: 10px;
        }

        .promo-content-item span {
            color: #d9a548; /* Theme Green for Highlights */
            font-weight: 700;
        }

        /* Smooth Fade Animation Speed */
        .carousel-fade .carousel-item {
            transition-duration: 1.5s; /* Aram se change hone ke liye */
        }

        /* Responsive Fix */
        @media (max-width: 576px) {
            .promo-content-item {
                font-size: 8px;
                letter-spacing: 0.3px;
            }
        }




/* ============================================
   NAVBAR / HEADER STYLING
   ============================================ */
/* INITIAL HEADER STYLE */
.unq-top-header {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* STICKY CLASS APPLIED VIA JS */
.unq-top-header.unq-sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: unqHeaderSlideDown 0.4s ease;
    padding: 0px 0;
    /* Slight shrink effect */
}

/* SMOOTH SLIDE DOWN ANIMATION */
@keyframes unqHeaderSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.unq-top-header {
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.unq-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 3px 0px;
}
.unq-logo img{
    width: 130px;
}
/* Search Box Styling */
.unq-search-box {
    display: flex;
    align-items: center;
    border:2px solid #2f4f2fb8;
    border-radius: 100px;
    padding: 6px;
    background: #fff;
    max-width: 570px;
    margin: 0 auto;
    transition: var(--transition);
    overflow: hidden;
    margin-right: 0;
}

.unq-search-box:focus-within {
    box-shadow: none;
}

.unq-search-box .cata_wrap1 {
    position: relative;
}

.unq-search-box .cata_wrap1 i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 13px;
    color: #959595;
    pointer-events: none;
}

.unq-search-category {
    border: none;
    border-right: 1px solid #eee;
    padding: 5px 30px 5px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    outline: none;
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.unq-search-input {
    border: none;
    padding: 5px 15px;
    width: 100%;
    font-size: 15px;
    outline: none;
   
}

.unq-search-btn {
    background: transparent;
    border: none;
    padding: 0 15px;
    color: var(--text-color);
    cursor: pointer;
    line-height: normal;
    font-size: 18px;
    transition: var(--transition);
}

.unq-search-btn:hover {
    color: var(--primary-color);
}

/* Header Icons List */
.unq-action-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.unq-action-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    cursor: pointer;
    position: relative;
    color: #181818;
    text-decoration: none;
    transition: var(--transition);
}

.unq-action-item:hover {
    color: var(--primary-color);
}

.unq-action-item i {
    font-size: 26px;
}

.unq-badge {
    position: absolute;
    top: -8px;
    left: 13px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: normal;
}

.unq-action-text {
    font-size: 15px;
    font-weight: 600;
    color: #181818;
}

/* ============================================
   MOBILE SEARCH DROPDOWN
   ============================================ */

/* --- 2. MOBILE SEARCH DROPDOWN --- */
.unq-search-dropdown{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);

    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--unq-border);

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
    z-index: 999;
}

/* Active state */
.unq-search-dropdown.active{
    max-height: 200px;
    padding: 15px 0;

    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.unq-dropdown-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* ============================================
   GREEN NAV BAR
   ============================================ */

/* --- 3. GREEN NAV BAR --- */
.unq-green-bar {
    background: var(--primary-color);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.unq-nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}

.unq-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.unq-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.unq-nav-link:hover {
    color: #fff;
}

.unq-nav-link:hover::after {
    width: 100%;

}

/* ============================================
   CONTACT SECTION
   ============================================ */

/* Desktop Call Section */
.unq-contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.unq-contact-icon {
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
}

.unq-contact-info {
    line-height: 1.1;
}

.unq-contact-num a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: #fff;
    text-decoration: none;
}

.unq-contact-sub {
    font-size: 11px;
    opacity: 0.9;
}

/* ============================================
   SIDEBAR DRAWERS
   ============================================ */

/* --- 4. SIDEBAR DRAWERS --- */
.unq-side-popup {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transition: var(--unq-transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.unq-side-popup.active {
    right: 0;
}

.unq-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 10000;
}

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

.unq-drawer-header {
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    background: var(--primary-color) !important;
}

.unq-side-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.unq-side-link {
    display: block;
    padding: 10px 25px;
    color: #181818;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #dbdbdb;
    transition: var(--transition);
    font-size: 18px;
}

.unq-side-link:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* ============================================
   MOBILE SIDEBAR FOOTER
   ============================================ */

/* Mobile Sidebar Footer (Call Support) */
.unq-side-footer {
    padding: 20px;
    background: #f4f4f4;
    border-top: 1px solid #ddd;
}

.unq-side-call-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #2d8659;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.3);
}

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d8659 100%);
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background-color: var(--light-bg);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* ============================================
   RESPONSIVE DESIGN (Mobile First)
   ============================================ */

/* Tablet (768px and down) */
/* Responsive UI Mobile */
@media (max-width: 991px) {

    .unq-green-bar,
    .unq-header-search-desktop,
    .unq-action-text {
        display: none !important;
    }

    .unq-mobile-trigger {
        display: block !important;
    }

    .unq-action-list {
        gap: 13px;
    }

    .unq-action-item i {
        font-size: 22px;
    }

    section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about h2,
    .services h2 {
        font-size: 2rem;
    }

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

    .hero {
        min-height: 350px;
    }
}

.unq-mobile-trigger {
    display: none;
    cursor: pointer;
    color: #181818;
    font-size: 22px;
}

.unq-close-search-dropdown {
    cursor: pointer;
}

/* Mobile (768px and down) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }



    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 0.8rem;
    }

    .unq-logo {
        font-size: 1.4rem;
    }

    .unq-search-box {
        max-width: 100%;
    }

    .unq-action-list {
        gap: 12px;
    }

    .unq-action-item i {
        font-size: 22px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    section {
        padding: 30px 0;
    }

    .about p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Extra Small (480px and down) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    .unq-top-header {
        padding: 5px 0;
    }

    .unq-logo {
        font-size: 1.2rem;
    }

    .unq-action-list {
        gap: 13px;
    }

    .unq-search-box {
        padding: 4px;
    }

    .unq-search-category,
    .unq-search-input {
        padding: 5px 10px;
        font-size: 15px;
    }

    .hero {
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .about h2,
    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section {
        text-align: center;
    }

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

    .unq-side-popup {
        width: 100%;
        right: -100%;
    }

    .unq-side-popup.active {
        right: 0;
    }
}


/* ============================================
   AUTH MODAL STYLING
   ============================================ */

/* login morderl css start */

/* Unique Classes for Auth Modal */
.auth-mod-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.auth-mod-overlay.active {
    display: flex;
    animation: authFadeIn 0.3s ease;
}

.auth-mod-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: authSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-mod-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.auth-mod-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.auth-mod-body {
    padding: 40px 30px;
}

.auth-mod-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-mod-header h2 {
    font-weight: 700;
    color: #181818;
    margin-bottom: 5px;
    font-size: 26px;
}

.auth-mod-header p {
    color: #181818;
    font-size: 16px;
}

/* Input Fields */
.auth-mod-group {
    position: relative;
    margin-bottom: 20px;
}

.auth-mod-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2f4f2f;
    font-size: 18px;
}

.auth-mod-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    outline: none;
   
    transition: 0.3s;
    font-size: 16px;
}

.auth-mod-input:focus {
    border-color: #2f4f2f;
    box-shadow: 0 0 8px rgba(59, 183, 126, 0.1);
}

/* Buttons */
.auth-mod-btn {
    width: 100%;
    padding: 13px;
    background: #2f4f2f;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.auth-mod-btn:hover {
    background: #2f4f2f;
    transform: translateY(-2px);
}

/* Footer Links */
.auth-mod-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #181818;
}

.auth-mod-link {
    color: #2f4f2f;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.auth-mod-link:hover {
    text-decoration: underline;
}

/* Hide/Show sections */
.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
    animation: authFadeIn 0.4s;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes authSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

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

@media (max-width: 480px) {
    .auth-mod-card {
        margin: 15px;
        border-radius: 10px;
    }

    .auth-mod-body {
        padding: 30px 20px;
    }
}

/* cart popup start  */
/* Unique CSS for Cart Items */
.crt-items-container {
    padding: 10px 0;
}

.crt-single-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.crt-single-item:hover {
    background: #fdfdfd;
}

.crt-img-box {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
}

.crt-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image dimension control */
}

.crt-details {
    flex: 1;
}

.crt-title {
    font-size: 14px;
    font-weight: 700;
    color: #253d4e;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crt-title a{
    font-size: 14px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
.crt-meta {
    font-size: 13px;
    color: #7e7e7e;
    font-weight: 600;
}

.crt-price {
    color: #2f4f2f;
    font-weight: 700;
}

.crt-remove-btn {
    background: none;
    border: none;
    color: #c70000;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
}

.crt-remove-btn:hover {
    color: #c70000;
    transform: scale(1.1);
}

/* Cart Footer Styling */
.crt-footer-box {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02);
}

.crt-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    
}

.crt-total-lbl {
    font-weight: 700;
    color: #181818;
    font-size: 15px;
}

.crt-total-val {
    font-weight: 800;
    color: #2f4f2f;
    font-size: 18px;
}

.crt-action-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crt-btn {
    display: block;
    width: 100%;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 17px;
    transition: 0.3s;
}

.crt-btn-view {
    background: #fff;
    color: #2f4f2f;
    border: 2px solid #2f4f2f;
}

.crt-btn-view:hover {
    background: #2f4f2f;
    color: #fff;
}

.crt-btn-checkout {
    background: #2f4f2f;
    color: #fff;
    border: 2px solid #2f4f2f;
}

.crt-btn-checkout:hover {
    background: #2f4f2f;
    border-color: #2f4f2f;
    transform: translateY(-2px);
}

/* Responsive Mobile Fixes */
@media (max-width: 480px) {
    .unq-side-popup {
        width: 100% !important;
        max-width: 320px;
    }

    .crt-single-item {
        padding: 12px 15px;
    }

    .crt-img-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}

/* home sldier start */

/* Unique Hero Section Styling */
.anv-hero-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0px;
}

.anv-hero-slide {
    height: 550px;
    /* Adjust height as per need */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

/* Gradient overlay for text readability (optional but recommended) */
.anv-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(218 238 253 / 97%) 45%, rgba(218, 238, 253, 0) 60%);
    z-index: 1;
}

.anv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.anv-hero-badge {
    color: #2f4f2f;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    animation: fadeInUp 0.8s ease forwards;
}

.anv-hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.anv-hero-title span {
    font-weight: 400;
    color: #181818;
}

.anv-hero-btn {
    background: transparent;
    color: #2f4f2f;
    border: 1px solid #2f4f2f;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-top: 0px;
    animation: fadeInUp 1.2s ease forwards;
}

.anv-hero-btn:hover {
    background: #2f4f2f;
    color: #fff;
    transform: translateY(-3px);
}

/* Swiper Pagination Styling */
.anv-hero-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #2f4f2f;
    opacity: 1;
}

.anv-hero-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* Navigation Arrows (Commented by default in HTML) */
.anv-hero-prev,
.anv-hero-next {
    color: #2f4f2f !important;
    background: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.anv-hero-prev::after,
.anv-hero-next::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .anv-hero-title {
        font-size: 40px;
    }

    .anv-hero-slide {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .anv-hero-slide::before {
        background: rgba(218, 238, 253, 0.8);
    }

    .anv-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .anv-hero-title {
        font-size: 32px;
    }
}


/* top catagoery start  */

.cat-sl-section {
    padding: 60px 0;
    background-color: #fff;
   
}

.cat-sl-title {
    text-align: center;
    font-size: 32px;
    color: #181818;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Slider Container */
.cat-sl-container {
    padding: 10px 5px;
}

/* Individual Card Styling */
.cat-sl-item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}



.cat-sl-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square shape */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.cat-sl-card img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

.cat-sl-name a {
    font-size: 18px;
    font-weight: 700;
    color: #253d4e;
    margin: 0;
    text-decoration: none;
}


.cat-sl-name {
    font-size: 18px;
    font-weight: 700;
    color: #253d4e;
    margin: 0;
}

/* Background Colors for Cards (Based on your image) */
.bg-blue {
    background-color: #f2f5ff;
}

.bg-peach {
    background-color: #fff2ef;
}

.bg-green {
    background-color: #ecffec;
}

.bg-cyan {
    background-color: #f1faff;
}

.bg-beige {
    background-color: #fffceb;
}

.bg-pink {
    background-color: #fff3eb;
}

/* Custom Navigation Buttons (Bottom Center) */
.cat-sl-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.cat-sl-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #2f4f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f4f2f;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.cat-sl-btn:hover {
    background: #2f4f2f;
    color: #fff;
}

/* Swiper Default Nav Hide */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

@media (max-width: 767px) {
    .cat-sl-section{
        padding: 40px 0px;
    }
    .cat-sl-title {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .cat-sl-name {
        font-size: 15px;
    }
}



/* three box css start */

/* --- ST GROCERY SECTION STYLES --- */
.st-grocery-promo-wrapper {
    padding: 0px;
}

.st-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
}

.st-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Colors & Backgrounds (Defined in classes as requested) */
.st-bg-mint {
    background-color: #e1ffdc;
    padding: 30px;
    min-height: 280px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.st-bg-pink {
    background-color: #fedcdc;
    padding: 30px;
    min-height: 375px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
}

.st-bg-peach {
    background-color: #fff1dc;
    padding: 40px 20px 0 20px;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Typography */
.st-tag-mint {
    color: #2ba6b4;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.st-tag-pink {
    color: #d81b60;
    font-weight: 700;
    font-size: 24px;
}

.st-tag-peach {
    color: #ff4500;
    font-weight: 700;
    font-size: 24px;
}

.st-sub-title {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
}

.st-main-heading {
    font-size: 30px;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 10px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
}

.st-main-heading a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.st-main-heading a:hover {
    color: #000;
}

/* Button Links */
.st-btn-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-block;
    transition: 0.3s ease;
}

.st-link-mint {
    color: #2ba6b4;
}

.st-link-pink {
    color: #d81b60;
}

.st-price-info {
    color: #444;
    font-size: 24px;
    margin-top: 10px;
}

.st-price-info span {
    font-weight: 700;
}

/* Images Alignment */
.st-img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.st-card:hover .st-img-fluid {
    transform: scale(1.05);
}
.st-bg-mint .offer_mob1{
    display: none;
}
/* Custom Responsive Adjustments */
@media (max-width: 991px) {
    .st-bg-mint {
        
                background-image: none !important;
    }
    .st-bg-mint .offer_mob1{
                display: block;
        width: 200px;
        margin-bottom: 20px;
    }
    
    .st-bg-peach {
        margin-top: 24px;
        min-height: 500px;
    }

    .st-main-heading {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .st-bg-pink{
        min-height: 300px;
    }
    .st-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        background-position: bottom;
        
    }

    .st-card .col-6 {
        width: 100%;
    }

    .st-img-box {
        margin-bottom: 20px;
        order: 2;
    }

    .st-content-box {
        order: 1;
    }
.st-tag-mint{
    font-size: 18px;
}
    .st-bg-mint {
        flex-direction: column-reverse;
                justify-content: center;
    }

    /* Cart below text on mobile */
}

/* Simple FadeIn Animation for boxes */
.st-animate {
    animation: stFadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes stFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* new product slider */

/* --- NEW PRODUCTS SECTION STYLES --- */
.np-section-wrapper {

    padding: 60px 0;
    background-color: #fff;
}

.np-section-title {
    text-align: center;
    font-size: 32px;
    color: #181818;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 30px;
}

/* Swiper Container Padding to show shadows */
.np-swiper-container {
    padding: 10px 0px 0px 0px;
    position: relative;
}

/* Product Card Style */
.np-product-card {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

/* Image Box with Border */
.np-img-box {
    position: relative;
    border: 1px solid #2f4f2f;
    /* Soft Green Border */
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    transition: 0.3s;
}

.np-product-card:hover .np-img-box {
    box-shadow: 0 10px 20px rgba(88, 195, 139, 0.15);
    transform: translateY(-5px);
}

.np-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Discount Badge */
.np-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2f4f2f;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    line-height: normal;
}

/* Content Styles */
.np-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.np-category {
    color: #2f4f2f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.np-rating {
    color: #ffcc00;
    font-size: 12px;
}

.np-product-name {
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    margin: 5px 0 6px;
    display: block;
    text-decoration: none;
    line-height: normal;
}

.np-desc {
    font-size: 13px;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Price Row */
.np-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0px 10px;
}

.np-current-price {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.np-old-price {
    font-size: 16px;
    color: #bbb;
    text-decoration: line-through;
}

/* Add to Cart Button */
.np-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 8px;
    border: 1px solid #2f4f2f;
    background: transparent;
    color: #2f4f2f;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.np-add-btn:hover {
    background-color: #2f4f2f;
    color: #fff;
}

/* Navigation Arrows at Bottom */
.np-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.np-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #2f4f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f4f2f;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.np-arrow:hover {
    background-color: #2f4f2f;
    color: #fff;
}

.np-arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Mobile adjustments */
@media (max-width: 576px) {
    .np-add-btn{
        font-size: 13px;
    }
    .np-img-box {
        height: 200px;
    }

    .np-section-title {
        font-size: 24px;
    }
}


/* --- FD (Fresh Dryfruits) SECTION STYLES --- */
.fd-main-wrapper {
    padding: 0px;
    background-color: #fff;
}

.fd-section-title {
    text-align: center;
    margin-bottom: 0px;
    background-color: #f8f9f5;
    padding: 22px 0px;
        font-size: 32px;
    color: #181818;
  
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Card Container */
.fd-item-card {
    position: relative;
    height: 280px;
    /* Fixed height for consistency */
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

/* Overlapping Image */
.fd-product-img-box {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 55%;
    transition: transform 0.5s ease;
}

.fd-item-card:hover .fd-product-img-box {
    transform: translateY(-55%) scale(1.05);
}

.fd-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* U-Shaped Content Box */
.fd-content-box {
    width: 65%;
    height: 100%;
    margin-left: auto;
    border-radius: 0 0 150px 150px;
    /* Creating the U-shape from bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

/* Unique Background Colors */
.fd-bg-blue {
    background-color: #e3f2fd;
}

.fd-bg-green {
    background-color: #f1f8e9;
}

.fd-bg-pink {
    background-color: #fce4ec;
}

.fd-prod-name {
    font-size: 22px;
    font-weight: 700;
    color: #444;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
}

/* Price Circle */
.fd-price-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Individual Circle Colors */
.fd-circle-blue {
    background-color: #3b6695;
}

.fd-circle-green {
    background-color: #2f4f2f;
}

.fd-circle-pink {
    background-color: #a35d88;
}

.fd-price-val {
    font-size: 30px;
    line-height: 1;
}

.fd-weight {
    font-size: 15px;
    font-weight: 400;
}

.fd-market-label {
    font-size: 16px;
    color: #777;
    margin-bottom: 0px;
    font-weight: 500;

}

.fd-market-price {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    text-decoration: line-through;
}

/* Responsive Layout */
@media (max-width: 1199px) {
    .fd-content-box {
        width: 75%;
    }

    .fd-product-img-box {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .fd-section-title {
        font-size: 26px;
        padding: 25px 10px;
    }

    .fd-item-card {
        height: 250px;
    }

}

@media (max-width: 767px) {
    .fd-item-card {
        height: auto;
        flex-direction: column;
        padding-top: 20px;
        text-align: center;
        margin-bottom: 0px;
    }

    .fd-product-img-box {
        position: relative;
        top: 0;
        transform: none;
        margin: 0 auto -50px auto;
    }

    .fd-content-box {
        width: 100%;
        margin-left: 0;
        padding: 60px 20px 40px 20px;
        border-radius: 40px;
    }

    .fd-item-card:hover .fd-product-img-box {
        transform: scale(1.1);
    }
}


.top_selling_section1 {
    padding: 60px 0px;
    background-color: #deedff;
}

.top_selling_section1 .np-product-card {
    background-color: transparent;
}

.top_selling_section1 .np-img-box {
    background-color: #fff;
}

.top_selling_section1 .np-add-btn {
    background-color: #fff;
}

.top_selling_section1 .np-add-btn:hover {
    background-color: #2f4f2f;
    color: #fff;
}

.top_selling_section1 .np-arrow {
    background-color: transparent;
}

.top_selling_section1 .np-arrow:hover {
    background-color: #2f4f2f;
    color: #fff;
}


/* --- OB (Organic Banner) SECTION STYLES --- */
.ob-promo-section {
    padding: 60px 0;
    background-color: #fff;
}

.ob-promo-card {
    position: relative;
    height: 250px;
    /* Adjust height as needed */
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-top: 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    display: block;
    /* To make entire area clickable */
    text-decoration: none !important;

    /* Background Settings */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}

/* Pure Box Link Hover Animation */
.ob-promo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Individual Card Background Colors (Colors Kept Same) */
.ob-bg-pink {
    background-color: #d12a4e;
}

.ob-bg-yellow {
    background-color: #e4ab26;
}

.ob-bg-orange {
    background-color: #f85934;
}

/* Text Content */
.ob-card-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
    width: 100%;
    padding: 0 15px;
    transition: transform 0.4s ease;
}

.ob-promo-card:hover .ob-card-content {
    transform: scale(1.05);
    /* Slight text zoom on hover */
}

.ob-top-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: normal;
}

.ob-offer-txt {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.ob-offer-txt span {
    font-size: 32px;
    vertical-align: baseline;
    font-weight: 800;
}

/* Animation class for page load */
.ob-fade-up {
    animation: obFadeEffect 0.8s ease forwards;
    opacity: 0;
}

@keyframes obFadeEffect {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .ob-promo-card {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .ob-promo-card {
        margin-bottom: 15px;
        height: 290px;
    }

    .ob-offer-txt {
        font-size: 18px;
    }

    .ob-offer-txt span {
        font-size: 28px;
    }
}

/* --- BL (Blog) SECTION STYLES --- */
.bl-blog-wrapper {
    padding: 0px 0 60px;
    background-color: #ffffff;
}

.bl-section-title {
    text-align: center;
    font-size: 32px;
    color: #181818;
    margin-bottom: 30px;
}

/* Card Styling */
.bl-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    display: block;
    text-decoration: none !important;
}

.bl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image Box */
.bl-img-box {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.bl-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bl-card:hover .bl-blog-img {
    transform: scale(1.1);
}

/* Content Part */
.bl-content {
    padding: 25px;
}

/* Meta Info (Admin & Date) */
.bl-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.bl-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bl-meta-item i {
    color: #2f4f2f;
    /* Teal color like icons in image */
    font-size: 16px;
}

/* Blog Heading/Description */
.bl-desc {
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.bl-card:hover .bl-desc {
    color: #2f4f2f;
}

/* Responsive */
@media (max-width: 991px) {
    .bl-img-box {
        height: 250px;
    }

    .bl-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .bl-section-title {
        font-size: 26px;
    }

    .bl-card {
        margin-bottom: 10px;
    }
}



/* blog inner start */


        /* --- Main Blog Card --- */
        .blog-detail-unique-card {
            /* background: #fff;
            border: 1px solid #ececec;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02); */
            animation: slideUpFade 0.7s ease;
        }

        @keyframes slideUpFade {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Image Aspect Ratio Handling */
        .blog-featured-img-wrapper {
            width: 100%;
            height: 480px; /* Fixed height */
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            border: 1px solid #f1f1f1;
        }

        .blog-featured-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Proper image display regardless of size */
            transition: transform 0.8s ease;
        }

        .blog-detail-unique-card:hover .blog-featured-img-wrapper img {
            transform: scale(1.04);
        }

        /* Meta & Text Info */
        .blog-detail-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 15px;
            color: #2f4f2f;
            font-weight: 600;
        }

        .blog-detail-h1 {
            font-weight: 700;
            font-size: 38px;
            color: #253d4e;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .blog-detail-body-text {
            color: #181818;
            line-height: 28px;
            font-size: 17px;
        }

        .blog-detail-body-text p {
            margin-bottom: 20px;
        }

        /* Blockquote Styling */
        .blog-custom-quote {
            background-color: #f7f8f9;
            padding: 30px;
            border-left: 5px solid #2f4f2f;
            border-radius: 10px;
            font-style: italic;
            font-size: 18px;
            font-weight: 600;
            margin: 30px 0;
            color: #253d4e;
        }

        /* --- Sidebar Widgets --- */
        .blog-sidebar-unique-widget {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .blog-widget-title {
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 12px;
            color: #181818;
        }

       

        /* Sidebar Categories (Matching Shop Sidebar) */
        .sidebar-cat-list {
            list-style: none;
            padding: 0;
        }

        .sidebar-cat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 18px;
            border: 1px solid #f1f1f1;
            border-radius: 10px;
            text-decoration: none;
            color: #333333;
            font-weight: 600;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .sidebar-cat-item:hover {
            border-color: #2f4f2f;
            background-color: #f8f9fa;
            color: #2f4f2f;
            transform: translateX(8px);
        }

        .sidebar-cat-item i {
            font-size: 14px;
            color: #2f4f2f;
        }

        /* Recent Posts Small */
        .recent-post-mini {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .mini-post-img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            border: 1px solid #ececec;
        }

        .mini-post-title {
            font-weight: 700;
            font-size: 15px;
            color: #253d4e;
            line-height: 1.4;
            transition: 0.3s;
        }

        .recent-post-mini:hover .mini-post-title {
            color: #2f4f2f;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .blog-featured-img-wrapper { height: 320px; }
            .blog-detail-h1 { font-size: 28px; }
            .blog-sidebar-unique-widget { margin-top: 30px; padding: 20px; }
        }



/* --- FT (Footer) SECTION STYLES --- */
.ft-footer-wrapper {
    background-color: #f9fbf7;
    padding: 60px 0 0 0;
    background-image: radial-gradient(circle at top right, #f1f8e9 0%, transparent 40%);
}

/* Logo & About Column */
.ft-about-col .ft-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.ft-about-col p {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Icons */
.ft-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.ft-social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ft-social-icon:hover {
    background-color: #2f4f2f;
    border-color: #2f4f2f;
    color: #fff;
    transform: translateY(-3px);
}

/* Titles */
.ft-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

/* Lists */
.ft-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ft-list li {
    margin-bottom: 12px;
}

.ft-list li a {
    text-decoration: none;
    color: #181818;
    font-size: 15px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Green Chevron Icon */
.ft-list li a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #2f4f2f;
}

.ft-list li a:hover {
    color: #2f4f2f;
    padding-left: 5px;
}

/* Contact Info Column */
.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ft-contact-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f4f2f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 18px;
    flex-shrink: 0;
}

.ft-contact-text span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.ft-contact-text p {
    margin: 0;
    font-size: 18px;
    color: #181818;
    font-weight: 500;
}

.ft-contact-text p a {
    margin: 0;
    font-size: 18px;
    color: #181818;
    text-decoration: none;
    font-weight: 500;
}

/* Copyright Bar (Always Centered) */
.ft-copyright-bar {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.ft-copyright-bar p {
    margin: 0px;
}

.ft-copyright-bar strong {
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .ft-footer-wrapper {
        padding-top: 50px;
    }

    .ft-title {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {

    /* Mobile View specifically left aligned */
    .ft-footer-wrapper {
        text-align: left;
    }

    .ft-contact-item {
        justify-content: flex-start;
    }

    .ft-social-links {
        justify-content: flex-start;
    }
}


/* wishlist start css  */

/* WISHLIST INNER ITEM STYLES */
.unq-wish-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s ease;
}

.unq-wish-item:hover {
    background-color: #fdfdfd;
}

.unq-wish-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.unq-wish-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.unq-wish-details {
    flex-grow: 1;
    padding-left: 15px;
}

.unq-wish-title {
    margin: 0 0 3px 0;
    font-size: 15px;
    font-weight: 600;
}

.unq-wish-title a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.unq-wish-title a:hover {
    color: #2f4f2f;
}

.unq-wish-pricing {
    margin-bottom: 3px;
}

.unq-wish-new {
    font-size: 16px;
    font-weight: 700;
    color: #2f4f2f;
    margin-right: 8px;
}

.unq-wish-old {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

.unq-wish-cart-btn {
    border: none;
    background: #2f4f2f;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    transition: 0.3s;
    cursor: pointer;
}

.unq-wish-cart-btn:hover {
    background: #2f4f2f;
}

.unq-wish-remove-icon {
    background: #c70000;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    transition: 0.3s;
    height: 30px;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unq-wish-remove-icon:hover {
    color: #fff;
}

/* Responsive adjustment for small drawers */
@media (max-width: 400px) {
    .unq-wish-title {
        font-size: 13px;
    }

    .unq-wish-new {
        font-size: 14px;
    }
}


/* about page section 1*/

/* --- AB (About) SECTION STYLES --- */
.ab-section-wrapper {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

/* Left Side Vertical Image */
.ab-img-vertical-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.ab-img-vertical-box img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ab-img-vertical-box:hover img {
    transform: scale(1.05);
}

/* Right Side Content */
.ab-content-box {
    padding-left: 20px;
}

.ab-title {
    font-size: 32px;
    color: #181818;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* The Greenish Line after Title */
.ab-title::after {
    content: "";
    height: 3px;
    width: 100px;
    background-color: #58c38b;
    display: inline-block;
    border-radius: 50px;
}

.ab-intro-bold {
    font-weight: 700;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ab-desc-text {
    font-size: 16px;
    color: #000;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: justify;
}

/* Bottom Horizontal Image */
.ab-img-horizontal-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.ab-img-horizontal-box img {
    width: 100%;
    height: 305px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ab-img-horizontal-box:hover img {
    transform: translateY(-5px);
}

/* Animations */
.ab-fade-up {
    animation: abSlideUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes abSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ab-img-vertical-box {
        height: 400px;
        margin-bottom: 40px;
    }

    .ab-content-box {
        padding-left: 0;
    }

    .ab-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .ab-section-wrapper {
        padding: 50px 0;
    }

    .ab-title::after {
        width: 60px;
    }

    .ab-intro-bold {
        font-size: 16px;
    }
}




/* faq start css */

/* Unique Classes to avoid conflict */
.sp-faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.sp-header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sp-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.sp-green-line {
    height: 2px;
    width: 80px;
    background-color: #5bbd8f;
    /* Image se match kiya gaya green color */
}

.sp-subtitle {
    color: #555;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 650px;
}

/* --- Accordion Styling --- */
.sp-custom-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px !important;
}

.sp-custom-accordion .accordion-button {
    background-color: #eff7ff;
    /* Light blue color from image */
    color: #333;
    font-weight: 600;
    padding: 12px;
    border: none;
    box-shadow: none;
    border-radius: 8px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove default bootstrap arrow */
.sp-custom-accordion .accordion-button::after {
    display: none;
}

/* Square Arrow Box - Exact Match */
.sp-arrow-box {
    width: 32px;
    height: 32px;
    background-color: #bce5f3;
    /* Arrow box light blue */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #3488a7;
    /* Icon color */
    font-size: 18px;
    flex-shrink: 0;
}

/* Arrow Logic: Down when open, Right when closed */
.accordion-button.collapsed .sp-arrow-box {
    transform: rotate(-90deg);
    /* Makes it look like Right Arrow → */
}

.accordion-button:not(.collapsed) .sp-arrow-box {
    transform: rotate(0deg);
    /* Points Down ↓ */
}

/* Content Body Styling */
.sp-custom-accordion .accordion-collapse {
    background-color: #eff7ff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sp-custom-accordion .accordion-body {
    padding: 5px 20px 25px 20px;
    color: #181818;
    font-size: 16px;
    line-height: 1.6;
}

/* Animation Smoothness */
.collapsing {
    transition: height 0.35s ease;
}

/* Right Side Image */
.sp-product-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .sp-product-image {
        margin-top: 40px;
    }
}


/* breadcame start  */

/* --- Unique Breadcrumb Styling --- */
.sp-bread-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    /* Desktop Height */
    background-color: #e6f2ff;
    /* Light Blue Fallback */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Blue Gradient Overlay for the "Fade" effect */
.sp-bread-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates the blue to transparent transition from left to right */
    background: linear-gradient(to right,
            rgba(230, 242, 255, 1) 0%,
            rgba(230, 242, 255, 1) 35%,
            rgba(230, 242, 255, 0.7) 50%,
            rgba(230, 242, 255, 0) 100%);
    z-index: 1;
}

.sp-bread-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sp-bread-title {
    font-size: 40px;
    color: #181818;
    margin: 0;
    display: inline-block;
    /* Smooth Load Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: spFadeUp 0.8s ease forwards;
    font-family: 'Plus Jakarta Sans', sans-serif;
}



.sp-bread-title .sp-light {
    font-weight: 300;
    /* Light for 'Us' */
    margin-left: 5px;
}

/* --- Animation Keyframes --- */
@keyframes spFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 991px) {
    .sp-bread-wrapper {
        height: 150px;
    }

    .sp-bread-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .sp-bread-wrapper {
        height: 100px;
        background-position: center;
    }

    /* Making gradient more solid on mobile to keep text readable */
    .sp-bread-wrapper::before {
        background: linear-gradient(to right,
                rgba(230, 242, 255, 0.9) 0%,
                rgba(230, 242, 255, 0.6) 100%);
    }

    .sp-bread-title {
        font-size: 28px;
        text-align: center;
        display: block;
    }

    .sp-bread-content .container {
        text-align: center;
    }
}


/* conatct us page first page  */

:root {
    --primary-green: #38b17b;
    --bg-light-blue: #f8fbff;
    --text-dark: #333;
    --transition-speed: 0.4s;
}


/* Unique Card Styling */
.contact-info-card {
    background-color: var(--bg-light-blue);
    border: none;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    transition: all var(--transition-speed) ease-in-out;
}

/* Hover Animation */
.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);


}

/* Icon Box Styling */
.icon-wrapper {
    width: 80px;
    height: 80px;
    border: 1.5px solid var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    background-color: #fff;
    transition: all var(--transition-speed) ease;
}

.contact-info-card:hover .icon-wrapper {
    background-color: #2f4f2f;
}

.icon-wrapper i {
        font-size: 38px;
    color: #2f4f2f;
    transition: all var(--transition-speed) ease;
}

.contact-info-card:hover i {
    color: #fff !important;
    transform: rotateY(360deg);
}

/* Text Styling */
.contact-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-detail {
    color: #000;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    text-decoration: none;
    color: inherit;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
}


/* contact form start */




/* Map Styling */
.map-container-unique {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container-unique iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Card Styling */
.comment-form-card {
    border: 1px solid #2f4f2f;
    border-radius: 20px;
    padding: 40px;
    background-color: #ffffff;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.comment-form-card:hover {
    box-shadow: 0 10px 30px rgba(59, 183, 126, 0.1);
}

/* Heading Styling */
.form-main-heading {
    font-weight: 700;
    color: #253d4e;
    font-size: 32px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-main-heading::after {
    content: "";
    height: 2px;
    width: 100px;
    background-color: #2f4f2f;
    display: inline-block;
    margin-left: 15px;
}

.form-sub-text {
    color: #7e7e7e;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Input Fields Styling */
.input-group-label {
    font-weight: 600;
    color: #253d4e;
    margin-bottom: 8px;
    display: block;
}

.custom-form-input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
    color: #7e7e7e;
    background-color: #fff;
    margin-bottom: 20px;
}

.custom-form-input:focus {
    outline: none;
    border-color: #2f4f2f;
    box-shadow: 0 0 8px rgba(59, 183, 126, 0.1);
}

.custom-textarea {
    min-height: 150px;
    resize: none;
}

/* Submit Button */
.btn-submit-comment {
    background-color: #2f4f2f;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit-comment:hover {
    background-color: #2da16d;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.3);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .map-container-unique {
        margin-bottom: 30px;
        min-height: 350px;
    }

    .comment-form-card {
        padding: 25px;
    }
}


/* shop page start */
.product-details-wrapper .size_pro34 p{
    font-size: 18px;
    color: #181818;
    font-weight: 500;
}
.size_pro34 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0px;
}

.size_pro34 p {
     margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #181818;
    line-height: normal;
}

.size_pro34 ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.size_pro34 ul li {
    min-width: 60px;
    padding: 4px 10px;
    border: 1px solid #cdcdcd;
    border-radius: 50px;
    background: #fff;
    color: #181818;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    margin-bottom: 0px;
}

.size_pro34 ul li:hover,
.size_pro34 ul li.active {
    background: #2f4f2f;
    border-color: #2f4f2f;
    color: #fff;

}

/* @media (max-width: 575px) {
    .size_pro34 {
        align-items: flex-start;
        gap: 10px;
        margin: 16px 0 20px;
    }

    .size_pro34 p {
        width: 100%;
        font-size: 16px;
    }

    .size_pro34 ul {
        width: 100%;
        gap: 8px;
    }

    .size_pro34 ul li {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 10px 12px;
        font-size: 14px;
    }
} */
/* --- Sidebar Style --- */
.unique-shop-sidebar {
    background-color: #f9fdff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #253D4E;
    margin-bottom: 5px;
}

/* Category List */
.category-wrapper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-single-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
    text-decoration: none;
    color: #181818;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.category-wrapper-list.is-open .category-single-item{
    color: #fff;
}
.category-single-item:last-child {
    border-bottom: none;
}

.category-single-item:hover {
    color: #181818;
    transform: translateX(5px);
}

.category-single-item i {
    font-size: 18px;
    color: #181818;
}

/* Price Filter */
.price-filter-box {
    margin-top: 20px;
}



.price-amount-text {
    font-size: 22px;
    font-weight: 700;
    color: #253D4E;
    margin-top: 15px;
}

/* --- Right Side Top Bar --- */
.shop-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.found-product-label {
    font-size: 16px;
    font-weight: 700;
    color: #253D4E;
}

.custom-sort-dropdown {
    border: 1px solid #ececec;
    padding: 10px;
    border-radius: 10px;
    color: #253D4E;
    font-size: 15px;
    font-weight: 600;
    min-width: 160px;
    cursor: pointer;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23253D4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    outline: none;
}



/* --- Pagination --- */
.shop-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.pagination-btn-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f4f2f;
    border-radius: 8px;
    text-decoration: none;
    color: #2f4f2f;
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.pagination-btn-item:hover,
.pagination-btn-item.active-link {
    background-color: #2f4f2f;
    color: #fff !important;
    border-color: #2f4f2f;
}

.pagination-btn-item.arrow-btn {
    color: #2f4f2f;
    border-color: #2f4f2f;
}

@media (max-width: 991px) {
    .custom-sort-dropdown{
            min-width: 120px;
    padding: 6px 10px;
    background-position: right 6px center;
    }
    .unique-shop-sidebar {
               margin-bottom: 20px;
        padding: 10px 15px;
        border-radius: 10px;
        color: #fff;
        background: #2f4f2f;
    }
}


/* price range sldier css  */

/* Wrapper Container */
.cp-range-slider-wrapper {
    width: 100%;
}

/* Slider Track Area */
.cp-range-slider-container {
    position: relative;
    width: 100%;
    height: 6px;
    margin-bottom: 15px;
}

/* Default Grey Base Track */
.cp-range-slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Active Highlighted Track (Green Line) */
.cp-range-slider-highlight {
    position: absolute;
    height: 4px;
    background-color: #2ec4b6;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Invisible Native Range Inputs overlaying each other */
.cp-range-slider-input {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 3;
}

/* Custom Handles Styling - Webkit (Chrome, Safari, Edge) */
.cp-range-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #2ec4b6;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

.cp-range-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Custom Handles Styling - Firefox */
.cp-range-slider-input::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #2ec4b6;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

.cp-range-slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Price Label Output */
.cp-range-slider-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.cp-range-slider-currency {
  
}


/* product inner page image gallery  */


/* --- Gallery Section --- */
.product-gallery-container {
    display: flex;
    gap: 20px;
}

/* Thumbnails Wrapper (Relative for arrow positioning) */
.thumb-slider-wrapper {
    position: relative;
    width: 90px;
    padding: 15px 0;
    /* Space for arrows */
}

.product-thumb-slider {
    height: 450px;
}

.thumb-item {
    border: 1px solid #ececec;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 90px !important;
    width: 90px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.swiper-slide-thumb-active .thumb-item {
    border-color: #2f4f2f;
    box-shadow: 0 0 10px rgba(59, 183, 126, 0.1);
}

/* Custom Navigation Arrows for Thumbnails */
.thumb-nav-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #2f4f2f;
    color: #2f4f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 12px;
}

.thumb-nav-btn:hover {
    background: #2f4f2f;
    color: #fff;
}

.thumb-prev {
    top: 0px;
}

.thumb-next {
    bottom: 15px;
}

/* Main Image */
.product-main-slider {
    /*flex: 1;*/
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 460px;
    width: 100%;
}

.main-img-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.main-img-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* --- Details Info --- */
.product-details-wrapper {
    padding-left: 20px;
}

.discount-badge-inner {
    background-color: #2f4f2f;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 15px;
    display: inline-block;
}

.product-main-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #253d4e;
}

.rating-stars-box {
    color: #ffb300;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-inner-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.current-price-val {
    font-size: 36px;
    font-weight: 700;
    color: #2f4f2f;
}

.old-price-val {
    text-decoration: line-through;
    color: #adadad;
    font-size: 20px;
}
.qty-label{
    font-size: 18px;
    color: #181818;
    font-weight: 500;
}
.quantity-control-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid #2f4f2f;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0px;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0px 15px;
    color: #2f4f2f;
    font-size: 25px;
    cursor: pointer;
}

.qty-input-val {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    font-weight: 600;
    outline: none;
}

.info-heading-divider {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ececec;
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #181818;
}

.additional-info-list {
    list-style: none;
    padding: 0;
    color: #181818;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.additional-info-list  li{
position: relative;
padding-left: 20px;
}
.additional-info-list li::before {
    content: "\f058"; /* Font Awesome icon code */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2f4f2f;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.btn-add-to-cart-big {
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* .btn-add-to-cart-big:hover {
    background-color: #2da16d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.3);
} */

/* Responsive Fixes */
@media (max-width: 991px) {
    .unq-logo img{
        width: 80px;
    }
    .product-gallery-container .product-thumb-slider .swiper-slide {
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .product-gallery-container {
        flex-direction: column-reverse;
    }

    .thumb-slider-wrapper {
        width: 100%;
        padding: 0 15px;
        margin-top: 0px;
    }

    .product-thumb-slider {
        height: 90px;
    }

    .thumb-nav-btn {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%);
    }

    .thumb-prev {
        left: 0;
    }

    .thumb-next {
        right: 0;
        left: auto;
    }

    .thumb-prev i {
        transform: rotate(-90deg);
    }

    .thumb-next i {
        transform: rotate(-90deg);
    }

    .product-details-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
}


/* product inner atb system start */

        :root {
            --pdt-green: #2f4f2f; /* Dark Green from your design */
            --pdt-light-grey: #f9f9f9;
            --pdt-border: #ececec;
            --pdt-text-dark: #1a2b3c;
        }

   .tab-content p{
color: #181818;
   }

        .pdt-main-wrapper {
            background: #fff;
            border-radius: 15px;
            border: 1px solid var(--pdt-border);
            padding: 30px;
         
            margin: auto;
        }

        /* Desktop Tabs Styling */
        .pdt-nav-tabs {
            border-bottom: 1px solid var(--pdt-border);
            justify-content: center; /* Centered Tabs as per design */
            gap: 20px;
            margin-bottom: 25px;
        }

        .pdt-nav-item .pdt-nav-link {
            border: none;
            background: none;
            padding: 2px 10px;
            font-weight: 600;
            color: #181818;
            font-size: 17px;
            position: relative;
            transition: 0.3s;
        }

        .pdt-nav-item .pdt-nav-link.active {
            color: #2f4f2f;
        }

        .pdt-nav-item .pdt-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--pdt-green);
            border-radius: 10px;
        }

        /* Review Section Styling */
        .pdt-section-title {
                font-size: 26px;
    color: #181818;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .pdt-review-card {
            display: flex;
            gap: 15px;
            padding: 20px;
            border: 1px solid var(--pdt-border);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .pdt-avatar {
            width: 50px;
            height: 50px;
            background: #e0e0e0;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #999;
        }
        .pdt-review-content{
            color: #000;
        }
        .pdt-review-content h6 {
            margin: 0;
            font-weight: 700;
            color: var(--pdt-text-dark);
        }

        .pdt-review-date {
            font-size: 12px;
            color: #999;
        }

        .pdt-stars {
            color: #ffb400;
            font-size: 12px;
            margin: 5px 0;
        }

        /* Review Form Styling */
        .pdt-review-form-container {
            background-color: var(--pdt-light-grey);
            padding: 30px;
            border-radius: 15px;
        }

        .pdt-form-label {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
        }

        .form-control {
               width: 100%;
    padding: 12px 15px 12px 15px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
        }
.form-control:focus{
    box-shadow: none;
    border-color: #181818;
}
        .pdt-submit-btn {
            background-color: var(--pdt-green);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 15px;
            transition: 0.3s;
        }

        .pdt-submit-btn:hover {
            background-color: #1e331b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Accordion Styling (Mobile Only) */
        .pdt-mobile-acc-btn {
            display: none;
            width: 100%;
            text-align: left;
            padding: 15px;
            background: #fff;
            border: 1px solid var(--pdt-border);
            margin-bottom: 10px;
            font-weight: 600;
            border-radius: 8px;
            position: relative;
            font-size: 18px;
            color: #181818;
        }

        .pdt-mobile-acc-btn::after {
            content: '\f067';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            float: right;
            font-size: 18px;
        }

        .pdt-mobile-acc-btn[aria-expanded="true"]::after {
            content: '\f068';
        }
 .pdt-review-row-divider {
                      

        height: 450px;
        overflow-y: auto;
            }


            /* Premium Custom Scrollbar */

.pdt-review-row-divider{
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2f4f2f #f5f1eb;
}

/* Chrome, Edge, Safari */
.pdt-review-row-divider::-webkit-scrollbar{
    width: 8px;
}

.pdt-review-row-divider::-webkit-scrollbar-track{
    background: #f5f1eb;
    border-radius: 20px;
}

.pdt-review-row-divider::-webkit-scrollbar-thumb{
    background: linear-gradient(
        180deg,
        #d8c3a5 0%,
        #2f4f2f 100%
    );
    border-radius: 20px;
    border: 2px solid #f5f1eb;
    transition: 0.3s ease;
}

.pdt-review-row-divider::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(
        180deg,
        #2f4f2f 0%,
        #2f4f2f 100%
    );
}
        /* Vertical Line between reviews and form on Desktop */
        @media (min-width: 992px) {
          
            .pdt-review-row-divider {
                        border-right: 2px solid var(--pdt-border);
        padding-right: 30px;
        height: 450px;
        overflow-y: auto;
            }
            .pdt-form-col {
                padding-left: 30px;
            }
        }

        /* Responsive Logic */
        @media (max-width: 768px) {
            .pdt-section-title{
                margin-top: 20px;
            }
              .pdt-review-card{
                flex-direction: column;
            }
            .pdt-review-form-container{
                padding: 0px;
                background-color: transparent;
            }
            .pdt-nav-tabs { display: none; }
            .pdt-mobile-acc-btn { display: block; }
            .pdt-tab-pane {
                display: none;
                padding: 15px;
                border: 1px solid var(--pdt-border);
                border-top: none;
                margin-bottom: 15px;
                border-radius: 0 0 8px 8px;
            }
            .pdt-tab-pane.collapse.show { display: block;        margin-top: -15px; }
            .pdt-main-wrapper { padding: 0px; border: none; }
        }

/* checkout  start css */

.checkout-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Billing Section Styling --- */
.checkout-form-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.section-sub-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
    color: #253d4e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #181818;
}

.return_shop1 {
    border-color: #2f4f2f;
    color: #7e7e7e;
    align-items: center;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 17px;
    color: #2f4f2f;
    border: 2px solid #2f4f2f;
    transition: 0.3s;
    background-color: #fff;
    
}

.update_cart {
    align-items: center;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 17px;
    background: #2f4f2f;
    color: #fff;
    border: 2px solid #2f4f2f;
    transition: 0.3s;
}

.checkout-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    outline: none;
  
    transition: 0.3s;
    font-size: 16px;
    margin-bottom: 20px;
}

.checkout-input:focus {
    border-color: #2f4f2f;
    box-shadow: 0 0 10px rgba(59, 183, 126, 0.1);
}

/* --- Order Summary (Right Side) --- */
.order-summary-sticky {
    position: sticky;
    top: 20px;
}

.order-summary-card {
    background: #fff;
    border: 1px solid #2f4f2f;
    /* Green border for emphasis */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(59, 183, 126, 0.05);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #181818;
}

.order-item-name {
    font-weight: 600;
    font-size: 15px;
    color: #253d4e;
}

.order-item-price {
    font-weight: 700;
    color: #2f4f2f;
}

.summary-total-row {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px dashed #ececec;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
}

/* --- Payment Methods Styling --- */
.payment-method-box {
    margin-top: 30px;
}

.custom-payment-option {
    display: block;
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-payment-option:hover {
    border-color: #2f4f2f;
}

.custom-payment-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 18px;
    left: 15px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #adadad;
    border-radius: 50%;
}

.custom-payment-option input:checked~.checkmark {
    background-color: #2f4f2f;
    border-color: #2f4f2f;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-payment-option input:checked~.checkmark:after {
    display: block;
}

.payment-text {
    font-weight: 700;
    font-size: 15px;
}

.btn-place-order {
    width: 100%;
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.2);
}

/* .btn-place-order:hover {
    background-color: #2da16d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 183, 126, 0.3);
} */

@media (max-width: 991px) {
    .checkout-form-card,
    .order-summary-card{
        padding: 20px;
    }
    .order-summary-sticky {
        margin-top: 40px;
        position: static;
    }
}


/* cart page start */

.cart-main-heading {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Left Side: Cart Table --- */
.cart-table-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cart-table-unique {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.cart-table-unique thead th {
    border: none;
    padding: 15px;
    background-color: #f7f8f9;
    color: #253d4e;
    font-weight: 700;
    font-size: 16px;
}

.cart-table-unique thead th:first-child {
    border-radius: 10px 0 0 10px;
}

.cart-table-unique thead th:last-child {
    border-radius: 0 10px 10px 0;
}

/* .cart-row-item {
            transition: all 0.3s ease;
        }

        .cart-row-item:hover {
            transform: scale(1.01);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }*/

.cart-row-item td {
    vertical-align: middle;
    padding: 15px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    color: #181818;
}

.cart-row-item td:first-child {
    border-left: 1px solid #f1f1f1;
    border-radius: 12px 0 0 12px;
}

.cart-row-item td:last-child {
    border-right: 1px solid #f1f1f1;
    border-radius: 0 12px 12px 0;
}

/* Product Detail in Cart */
.cart-prod-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 5px;
}

.cart-prod-name {
    font-weight: 700;
    font-size: 16px;
    color: #253d4e;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.cart-prod-rating {
    color: #ffb300;
    font-size: 12px;
}

/* Quantity in Cart */
.cart-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #2f4f2f;
    border-radius: 5px;
    padding: 5px;
}

.qty-btn-cart {
    background: none;
    border: none;
    color: #2f4f2f;
    font-weight: bold;
    padding: 0 10px;
    cursor: pointer;
}

.qty-input-cart {
    width: 30px;
    border: none;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.subtotal-price {
    font-weight: 700;
    color: #2f4f2f;
    font-size: 18px;
}

.remove-prod-btn {
    color: #7e7e7e;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-prod-btn:hover {
    color: #ff4d4d;
}

/* --- Right Side: Summary --- */
.cart-summary-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 30px;
    position: sticky;
    top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.summary-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: #7e7e7e;
}

.summary-total {
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #253d4e;
}

.total-amount-green {
    color: #2f4f2f;
}

/* Coupon Section */
.coupon-wrapper {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.coupon-input {
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px 15px;
    flex: 1;
    outline: none;
}

.coupon-input:focus {
    border-color: #2f4f2f;
}

.btn-apply {
    background: #253d4e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-apply:hover {
    background: #2f4f2f;
}

.btn-checkout-cart {
    width: 100%;
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    line-height: normal;
    border: 1px solid #2f4f2f;
}

/* .btn-checkout-cart:hover {
    
    background-color: #fff;
    color: #2f4f2f;
    border-color: #2f4f2f;
} */

/* Responsive */
@media (max-width: 991px) {
    .cart-summary-card {
        margin-top: 30px;
    }

    .cart-table-wrapper {
        overflow-x: auto;
    }

    .cart-table-unique {
        min-width: 600px;
    }
}


/* my account start */
.view_btn43{
    background-color: #2f4f2f;
    color: #fff;
    border-radius: 100px;
    width: 70px;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 6px 5px;
    font-size: 14px;
    line-height: normal;
}
/* --- Sidebar Unique Styling --- */
.user-dash-sidebar {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 20px;
}

/* Profile Section in Sidebar */
.user-profile-header {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
}

.user-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #2f4f2f;
    padding: 3px;
    margin: 0 auto 15px;
    overflow: hidden;
    background: #fff;
}

.user-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-dash-name {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #181818;
}

.user-dash-email {
    font-size: 14px;
    color: #4c4c4c;
    margin: 0;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #181818;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active-dash {
    background-color: #2f4f2f;
    color: #fff;
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.2);
}

.sidebar-nav-link i {
    font-size: 18px;
}

/* --- Main Content Area --- */
.dash-content-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    animation: dashFade 0.5s ease;
}
.dash-content-card label{
    color: #555555;
}
.dash-content-card h4{
    color: #181818;
}

@keyframes dashFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dash-welcome-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #181818;
}

.dash-welcome-text span {
    color: #2f4f2f;
}

/* Stats Cards */
.stat-card-unique {
    background-color: #f7f8f9;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #2f4f2f;
    transition: all 0.3s ease;
}

.stat-card-unique:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
    color: #253d4e;
}

.stat-label {
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 600;
}

/* Tables & Status Badges */
.dash-table {
    width: 100%;
    margin-top: 20px;
    white-space: nowrap;
}

.dash-table th {
    background: #f7f8f9;
    padding: 12px;
    border-radius: 5px;
    color: #253d4e;
    font-weight: 700;
}

.dash-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.status-completed {
    background: #def9ec;
    color: #2f4f2f;
}

.status-pending {
    background: #fef1e4;
    color: #f59758;
}

/* Forms in Dashboard */
.dash-input {
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    transition: 0.3s;
}

.dash-input:focus {
    border-color: #2f4f2f;
    box-shadow: 0 0 10px rgba(59, 183, 126, 0.1);
}

.btn-dash-save {
    display: block;
    padding: 8px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 17px;
    transition: 0.3s;
    background: #2f4f2f;
    color: #fff;
    border: 2px solid #2f4f2f;
}

.btn-dash-save:hover {
    background-color: #2f4f2f;
    transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .dash-content-card {
        padding: 20px;
    }

    .user-dash-sidebar {
        margin-bottom: 30px;
        position: static;
    }
}

/* thankyou page start */

/* --- Thank You Card Styling --- */
.thank-you-main-card {
    background: #fff;
    max-width: 650px;
    width: 100%;
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Icon Animation */
.success-icon-ring {
    width: 110px;
    height: 110px;
    background-color: #e8f7f0;
    color: #2f4f2f;
    font-size: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    position: relative;
    animation: iconScale 0.6s 0.3s both cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

@keyframes iconScale {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-icon-ring::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #2f4f2f;
    animation: ringRipple 1.5s infinite;
}

@keyframes ringRipple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.thank-you-h1 {
    font-weight: 700;
    font-size: 38px;
    color: #181818;
    margin-bottom: 15px;
}

.thank-you-msg {
    color: #7e7e7e;
    font-size: 17px;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Order Details Box */
.order-info-summary-box {
    background-color: #f7f8f9;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 45px;
    text-align: left;
    border: 1px dashed #ececec;
}

.info-row-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.info-label {
    color: #7e7e7e;
    font-weight: 600;
}

.info-value {
    color: #253d4e;
    font-weight: 700;
}

.divider-line {
    height: 1px;
    background-color: #ececec;
    margin: 15px 0;
}

.total-pay-text {
    font-size: 20px;
    font-weight: 700;
    color: #253d4e;
}

.total-pay-amount {
    color: #2f4f2f;
    font-size: 22px;
}

/* Action Buttons */
.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-track-order-now {
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

/* .btn-track-order-now:hover {
    background-color: #2da16d;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(59, 183, 126, 0.25);
    color: #fff;
} */

.btn-back-to-shop {
    background-color: #ec9d09;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

/* .btn-back-to-shop:hover {
    background-color: #1a2a36;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(37, 61, 78, 0.2);
    color: #fff;
} */

/* Responsive Fixes */
@media (max-width: 576px) {
    .info-row-flex{
        flex-direction: column;
    }
    .thank-you-main-card {
        padding: 40px 20px;
    }

    .thank-you-h1 {
        font-size: 30px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .btn-track-order-now,
    .btn-back-to-shop {
        width: 100%;
        justify-content: center;
    }
}


/* new why fou icon section start */

      

        /* Custom Grid for 5 Columns on Desktop */
        @media (min-width: 992px) {
            .col-lg-custom {
                flex: 0 0 20%;
                max-width: 20%;
            }
        }

        .feature-item {
            text-align: center;
            padding: 0px;
            transition: var(--transition);
            border-radius: 15px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Animated Icon Circle */
        .icon-wrapper {
                width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
        }

        /* Subtle Hover Effect (No click, just visual) */
        .feature-item:hover .icon-wrapper {
           
            color: #fff !important; 
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(45, 106, 79, 0.2);
        }

        .feature-text {
                font-size: 16px;
    font-weight: 600;
    color: #181818;
    line-height: 25px;
    transition: var(--transition);
    margin: 0px;
        }

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

        /* Entrance Animation */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        /* Responsive Alignment Fixes */
        @media (max-width: 991px) and (min-width: 768px) {
            /* Tablet: 3 items then 2 centered */
            .tablet-center {
                display: flex;
                justify-content: center;
            }
        }