* {
    margin: 0;
    padding: 0;
}

/* =========================
   THEME
========================= */
:root {
    --footer: #4b4f5b;
    --cart-color: #c8ddff;
    --disabled-color: #939594;
    --primary-dark-color: #1a1a1a;
    --text-color: #111827;
    --muted-color: #f4f4f4;
    --border-color: rgba(0, 0, 0, .08);
    --shadow: 0 10px 25px rgba(16, 24, 40, .08);
    --shadow-sm: 0 2px 18px rgba(0, 0, 0, .04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, .05);
    --shadow-lg: 0 18px 40px rgba(0, 0, 0, .18);
    --radius-2: 15px;
    --t: .15s ease;
    --sidebar-w: 280px;
}

/* =========================
   BASE
========================= */
body {
    font-family: "Poppins", sans-serif;
}

#toast-container > div{
    opacity: 1 !important;
}

.dynamic_radius {
    border-radius: var(--radius-1);
}

a {
    color: inherit;
    text-decoration: none;
}

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

:focus-visible {
    outline: none !important;
}

html,
body {
    overflow-x: hidden;
    overflow-y: visible;
}

.required::after {
    content: " *";
    color: red;
}

.offer_text_style {
	font-size: 18px;
	font-weight: 700;
}

.padding-right-20 {
    padding-right: 20px;
}

.primary-bg-app {
    background: var(--primary-color);
}

.secondary-bg-app {
    background: var(--secondary-color);
}

.primary-bg-app:hover {
    filter: brightness(.95);
}

.secondary-bg-app:hover {
    filter: brightness(.95);
}

.page-link {
    color: var(--primary-color) !important;
}

.page-link:focus {
    box-shadow: none !important;
}

.active>.page-link,
.page-link.active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.nav-btn {
    background: white;
    border: 1px solid #eee;
    color: var(--primary-dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 5px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

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


.modal-content {
    border-radius: 0px !important;
}

.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}



/* =========================
   SECTION TITLES
========================= */

.section_container {
    text-align: center;
    position: relative;
}

.section-title {
    text-align: center;
    margin: 28px 0 30px;
    font-weight: 500;
    font-size: clamp(22px, 2.5vw, 34px);
}

.section-sub {
    text-align: center;
    color: var(--muted-color);
    font-weight: 500;
    margin-bottom: 18px;
}

.breadcrumb-section{
    background: var(--breadcrumb-bg-color);
}



/* =========================
   CART
========================= */

#offcanvasCartRight , #menusOffcanvas {
    max-width: 370px;
}

.btn-close:focus {
	box-shadow: none !important;
}

#offcanvasCartRight .offcanvance-content {
    width: 185px;
}

#offcanvasCartRight .card-body {
    flex-wrap: wrap;
}

#offcanvasCartRight .product_cart_image_main {
    width: 45px;
}

#offcanvasCartRight .product_cart_image_main img {
    width: 100%;
    object-fit: cover;
}

#offcanvasCartRight .delete_btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
}

#offcanvasCartRight .product_name {
    max-width: 160px;
}

#offcanvasCartRight .deciment_btn,
#offcanvasCartRight .increment_btn {
    width: 24px;
    height: 24px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#offcanvasCartRight .deciment_btn:hover {
    background: var(--secondary-color);
    transition: var(--t);
    border: none;
}

#offcanvasCartRight .increment_btn:hover {
    background: var(--primary-color);
    transition: var(--t);
    border: none;
}

#cart-btn {
	font-size: 18px;
}

.main_logo {
    width: 180px;
}

.main_logo img {
    width: 100%;
}

.shop-section {
    margin-top: 10px;
    margin-bottom: 40px;
}

/* =========================
   BACK TO TOP
========================= */
#back_to_top {
    position: fixed;
    bottom: 5%;
    right: 1%;
    z-index: 999;
}

#back_to_top .back_to_top {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}



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

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

/* --- UTILITIES --- */
.text-purple {
    color: var(--primary-color) !important;
}

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

/* Buttons */
.btn-primary-theme {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-1);
    padding: 8px 10px;
    font-weight: 500;
    font-size: 0.85rem;
    width: 100%;
    transition: 0.3s;
}

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

.btn-outline-theme {
	background-color: var(--primary-color);
	color: #fff;
	border: 1px solid var(--primary-color) !important;
	border-radius: var(--radius-1);
	padding: 8px 10px;
	font-weight: 700;
	font-size: 0.85rem;
	width: 100%;
	transition: 0.3s;
}

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

/* --- HEADER --- */
#header .top-bar {
    background-color: var(--primary-dark-color);
    color: #ccc;
    font-size: 0.9rem;
    padding: 6px 0;
}

#header .header-main {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    background: var(--logo-with-menu-bg-_color);
}

#header .search-wrapper {
    position: relative;
    max-width: 100%;
}

#header .search-input {
    border-radius: var(--radius-1);
    border: 1px solid #e1e1e1;
    padding: 10px 20px;
    padding-right: 50px;
    background: var(--muted-color);
}

#header .search-input:focus {
    background: var(--muted-color);
    box-shadow: none;
    border-color: #e1e1e1;
}

#header .search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: white;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .navbar-custom {
    background: var(--menu-bg-color);
    padding: 0;
}

#header .navbar-custom .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.98rem;
    padding: 15px 25px 10px 25px !important;
    color: var(--menu-color) !important;
    position: relative;
}

#header .navbar-custom .nav-link {
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

#header .navbar-custom .nav-link:hover {
    border-bottom: 3px solid var(--primary-color);
}

#header .navbar-custom .nav-link.active_menu {
    border-bottom: 3px solid var(--primary-color);
}

/* --- CART DROPDOWN --- */
#header .cart-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    margin-top: 10px;
}
#header .header-small-menu {
	font-size: 22px;
	cursor: pointer;
}

#header .cart-dropdown.active {
    display: block;
}

#header .cart-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#header .cart-header h6 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-dark-color);
}

#header .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

#header .cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

#header .item-details {
    flex-grow: 1;
    line-height: 1.2;
}

#header .item-details .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

#header .item-details .price {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

#header .remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
}

#header .remove-item:hover {
    color: red;
}

#header .mega-dropdown {
    position: static;
}

#header .mega-menu {
    width: min(980px, 92vw);
    left: 50%;
    transform: translateX(-50%);
    top: 83%;
    border: 0;
    background: transparent;
    margin-top: 10px;
    padding: 0;
}


#header .mega-inner {
    background: #fff;
    border-radius: 4px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

#header .mega-col {
    display: grid;
    gap: 10px;
}

#header .mega-title {
    display: block;
    font-weight: 500;
    background: #f1f1f1;
    color: #111;
    padding: 5px 10px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 15px;
}

#header .mega-image {
    display: flex;
    align-items: center;
}

#header .mega-image .image {
    width: 20px;
    height: 20px;
}

#header .mega-image .image img {
    width: 100%;
    height: 100%;
}

#header .mega-link {
    display: block;
    color: #111;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 15px;
}

#header .mega-title:hover,
#header .mega-link:hover {

    opacity: .85;
}

.search_dynamic_content {
    position: absolute;
    background: #e6e6e6;
    width: 100%;
    border-radius: var(--radius-1);
    z-index: 99999;
}

.search_dynamic_content .content {
    height: 50vh;
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-color: var(--primary-color) white;
    scrollbar-width: thin;
}

.search_dynamic_content ul li {
    list-style: none;
    padding: 5px 25px;
    border-bottom: 2px solid #fff;
}

.search_dynamic_content #product_image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 10px;
}

.search_dynamic_content .product_search_price h4 {
    font-size: 14px;
}


/* --- HERO SLIDER --- */
.hero-carousel .carousel-item {
    background-color: #f0f0f0;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Custom Dots Style */
.hero-carousel .carousel-indicators {
    bottom: 20px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}


/* --- PRODUCT SECTIONS --- */
.section-padding {
    padding: 10px 0;
}

.section-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-dark-color);
    margin: 0;
    position: relative;
    text-align: start;
}


/* Nav Buttons for sliders */

/* --- PRODUCT CARD DESIGN --- */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-1);
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Image Area */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-1);
    background: #f9f9f9;
    width: 100%;
    padding-bottom: 100%;
    /* square */
    margin-bottom: 15px;
}

/* make imgbox cover full image wrap */
.imgbox {
    position: absolute;
    inset: 0;
}

/* both images same position */
.imgbox img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* cover চাইলে cover করে দাও */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* default */
.main-img {
    opacity: 1;
    z-index: 1;
}

.hover-img {
    opacity: 0;
    z-index: 2;
}

/* hover swap */
.product-img-wrap:hover .main-img {
    opacity: 0;
}

.product-img-wrap:hover .hover-img {
    opacity: 1;
}

/* zoom effect */
.product-img-wrap:hover img {
    transform: scale(1.05);
}

/* Card Body */
.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-dark-color);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Rating Row */
.rating-wrap {
    font-size: 0.9rem;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}

.stars {
    color: #ffc107;
    margin-right: 5px;
}

.rating-count {
    color: #999;
    font-size: 0.75rem;
}

.price-wrap {
    margin-bottom: 15px;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--product-discount-price-color);
    margin-right: 7px;
}

/* Visible Buttons Row */
.btn-row {
    margin-top: auto;
}




/* Countdown specific */
.countdown-timer {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-family: monospace;
    font-size: 1rem;
    display: inline-block;
    margin-left: 15px;
}

/* Footer */
footer {
    background: var(--footer);
    color: #bbb;
    padding: 70px 0 20px;
}

footer .footer_logo {
    width: 220px;
    display: block;
}

footer .footer_logo img {
    width: 100%;
}


/* =========================
   USER DASHBOARD
========================= */
.user-dashboard {
    padding: 30px 0;
}

.user-dashboard .app-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    border-radius: var(--radius-2);
    background: #fff;
}

.user-dashboard .sidebar {
    background: var(--secondary-color);
    color: #e5e7eb;
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    border-top-left-radius: var(--radius-2);
    border-bottom-left-radius: var(--radius-2);
    position: sticky;
    top: 0;
    overflow-y: auto;
    align-self: flex-start;
    min-height: 590px;
}

.user-dashboard .content {
    flex: 1 1 auto;
    min-width: 0;
    padding: 24px;
}

.user-dashboard .brand {
    letter-spacing: .2px;
}

.user-dashboard .nav-pills .nav-link {
    color: #d1d5db;
    border-radius: var(--radius-1);
    padding: .7rem .9rem;
    margin-bottom: .35rem;
}

.user-dashboard .nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.user-dashboard .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25);
}

.user-dashboard .card {
    border: 0;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
}

.user-dashboard .stat {
    border-radius: var(--radius-1);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.user-dashboard .avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.user-dashboard .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-dashboard .table thead th {
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
}

.user-dashboard .badge-soft {
    background: rgba(37, 99, 235, .12);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, .2);
}

.user-dashboard .form-control,
.user-dashboard .form-select {
    border-radius: var(--radius-1);
}

.user-dashboard .btn {
    border-radius: var(--radius-1);
    border: 1px solid var(--primary-color);
    color: var(--secondary-app-color);
    font-weight: 500;
}

.user-dashboard .section-titled {
    font-weight: 700;
    color: #111827;
}

.user-dashboard .muted {
    color: #6b7280;
}

@media (max-width: 991.98px) {
    .user-dashboard .app-shell {
        flex-wrap: wrap;
    }

    .user-dashboard .sidebar {
        position: relative;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        height: auto;
    }

    .user-dashboard .content {
        padding: 16px;
        flex: 0 0 100%;
        width: 100%;
    }
}



/* =========================
   BOTTOM NAV
========================= */

#mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .06);
    z-index: 1045;
    height: 70px;
}

#mobile-bottom-nav .wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 6px;
}

#mobile-bottom-nav .b-item {
    width: 20%;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
}

#mobile-bottom-nav .b-item i {
    font-size: 15px;
}

#mobile-bottom-nav .b-item.active {
    color: var(--secondary-color);
}

#mobile-bottom-nav .b-cart-badge {
    position: absolute;
    top: -13px;
    right: 26%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* =========================================
    3. LOGIN PAGE SPECIFIC STYLES
 ========================================= */
.login-section {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.login-section .login-card {
    background: white;
    border-radius: var(--radius-2);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Left Side: Image */
.login-section .login-banner {
    background: no-repeat center center;
    background-size: cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.login-section .login-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 26, 24, 0.1), rgba(44, 26, 24, 0.7));
}

.login-section .banner-text {
    position: relative;
    z-index: 2;
    color: white;
}

.login-section .login-form-wrap {
    padding: 50px;
}

.login-section .form-floating>.form-control {
    border-radius: var(--radius-1);
    border: 1px solid #eee;
    background: #fdfdfd;
}

.login-section .form-floating>.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(196, 94, 232, 0.1);
}

.login-section .form-floating label {
    color: #999;
}

.login-section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.login-section .divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #aaa;
    font-size: 0.85rem;
}

.login-section .divider::before,
.login-section .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.login-section .divider span {
    padding: 0 10px;
}

.login-section .social-btn {
    width: 100%;
    border: 1px solid #eee;
    background: white;
    padding: 10px;
    border-radius: var(--radius-1);
    color: #555;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.login-section .social-btn:hover {
    background: #f9f9f9;
    border-color: #ddd;
    color: var(--primary-dark-color);
}

.login-section .login-banner {
    display: none;
}

.login-section .login-form-wrap {
    padding: 30px;
}



/* =========================================
    3. REGISTER PAGE STYLES
 ========================================= */
.auth-section {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.auth-section .auth-card {
    background: white;
    border-radius: var(--radius-2);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.auth-section .auth-banner {
    background: no-repeat center center;
    background-size: cover;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.auth-section .auth-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 26, 24, 0.1), rgba(44, 26, 24, 0.8));
}

.auth-section .banner-text {
    position: relative;
    z-index: 2;
    color: white;
}

/* Right Side: Form */
.auth-section .auth-form-wrap {
    padding: 50px;
}

.auth-section .form-floating>.form-control {
    border-radius: var(--radius-1);
    border: 1px solid #eee;
    background: #fdfdfd;
}

.auth-section .form-floating>.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(196, 94, 232, 0.1);
}

.auth-section .form-floating label {
    color: #999;
}

.auth-section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-section .divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #aaa;
    font-size: 0.85rem;
}

.auth-section .divider::before,
.auth-section .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.auth-section .divider span {
    padding: 0 10px;
}

.auth-section .social-btn {
    width: 100%;
    border: 1px solid #eee;
    background: white;
    padding: 10px;
    border-radius: var(--radius-1);
    color: #555;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.auth-section .social-btn:hover {
    background: #f9f9f9;
    border-color: #ddd;
    color: var(--primary-dark-color);
}

.auth-section .auth-banner {
    display: none;
}

.auth-section .auth-form-wrap {
    padding: 30px;
}




/* REVIEW SECTION  */
.review-card .review-img {
	height: 300px;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
    border-radius: var(--radius-1);
}


.review-card .review-img img {
    height: 100%;
}


/* =========================================
    3. SINGLE PRODUCT PAGE SPECIFIC STYLES
========================================= */

/* Image Gallery */
.product-details-section .main-image-box {
    border: 1px solid #eee;
    border-radius: var(--radius-1);
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.product-details-section .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: none !important;
}

.product-details-section .thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: var(--radius-1);
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.product-details-section .thumb-img:hover,
.product-details-section .thumb-img.active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Product Info Area */
.product-details-section .product-highlights {
    background: #fdfdfd;
    border: 1px dashed #ddd;
    border-radius: var(--radius-1);
    padding: 15px;
}

.product-details-section .product-highlights li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.product-details-section .product-highlights li i {
    margin-top: 4px;
}

/* Variations (Hidden Radio Styling) */
.product-details-section .color-radio input,
.product-details-section .size-radio input {
    display: none;
}

.product-details-section .color-radio img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid #eee;
    cursor: pointer;
    transition: 0.2s;
    object-fit: cover;
}

.product-details-section .color-radio input:checked+img {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(196, 94, 232, 0.3);
}

.product-details-section .size-radio span {
    display: inline-block;
    min-width: 45px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-details-section .size-radio input:checked+span {
    background-color: var(--primary-dark-color);
    color: white;
    border-color: var(--primary-dark-color);
}

/* Quantity Box */
.product-details-section .quantity-box {
    max-width: 200px;
    border: 1px solid #ddd;
    border-radius: var(--radius-1);
    overflow: hidden;
}

.product-details-section .quantity-box .btn {
    font-size: 1.2rem;
    padding: 5px 15px;
    color: #555;
    background: #f9f9f9;
    border-radius: 0;
}

.product-details-section .quantity-box .btn:hover {
    background: #eee;
}

.product-details-section .quantity-box input {
    font-weight: bold;
    color: var(--primary-dark-color);
    border: none;
    background: transparent;
}

.product-details-section .btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: var(--radius-1);
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
    border: none;
    display: block;
    text-align: center;
    margin-top:20px;
}

.product-details-section .btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

/* Tabs Section */
.tabs-section {
    background-color: #fcfcfc;
}

.nav-tabs .nav-link {
	color: #666;
	border: none;
	border-bottom: 3px solid transparent;
	transition: 0.3s;
	padding: 4px 25px;
	font-family: 'Playfair Display', serif;
	letter-spacing: 1px;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
    font-weight: normal;
}

/* Review Styling */
.review-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.review-img-upload {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 10px;
    border: 1px solid #eee;
}


#reviewCreateForm .rating-stars .star {
    font-size: 17px;
    color: #ddd;
    cursor: pointer;
    margin-right: 7px;
}

#reviewCreateForm .rating-stars .star.active {
    color: #ffc107;
}

#reviewCreateForm #imagePreview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin: 5px;
}

.price-save-badge {
    animation: pulseZoom 1.2s infinite ease-in-out;
    background: var(--primary-color);
}

/* Animation */
@keyframes pulseZoom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 var(--primary-color);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 15px var(--primary-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 var(--primary-color);
    }
}

.review_main {
    padding: 20px 10px;
    border-radius: var(--radius-1);
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
}


/* =========================================
3. CART PAGE SPECIFIC STYLES
========================================= */
.cart-section {
    padding: 10px 0;
    background-color: #fcfcfc;
}

/* Cart Table */
.cart-table-wrap {
    background: white;
    padding: 20px;
    border-radius: var(--radius-1);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.cart-table thead {
    background-color: #f9f9f9;
}

.cart-table th {
    border: none;
    padding: 15px;
    font-weight: 400;
    color: var(--primary-dark-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    border: 1px solid #eee;
}

.cart-product-name {
    font-weight: 400;
    color: var(--primary-dark-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.cart-remove-btn {
    color: #999;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    background: none;
}

.cart-remove-btn:hover {
    color: #dc3545;
}


/* Cart Summary Card */
.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 20px;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

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

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-dark-colork);
}

.coupon-box {
    margin-bottom: 25px;
}

.coupon-box .input-group {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.coupon-box input {
    border: none;
    box-shadow: none;
    font-size: 0.9rem;
}

.coupon-box button {
    border-radius: 0;
    background-color: var(--primary-dark-color);
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.coupon-box button:hover {
    background-color: #333;
}


/* =========================================
           3. SHOP PAGE SPECIFIC STYLES
           ========================================= */

/* Sidebar Styling */
.sidebar-widget {
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
	padding-bottom: 0px;
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* Category List */
.cat-list li {
    margin-bottom: 10px;
}

.cat-list a {
    color: #666;
    font-size: 1em;
    display: flex;
    justify-content: space-between;
}

.cat-list a.active {
    color: var(--primary-color);
}

.cat-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.count {
    color: #999;
    font-size: 0.8rem;
}

/* Price Filter Range Styles */
.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
}

.price-display {
    font-weight: 600;
    color: var(--primary-dark-color);
    font-size: 0.95rem;
}

/* ===== Dual range slider (single line) ===== */
.product-filter .range-wrap {
    position: relative;
    height: 18px;
    margin: 6px 6px 2px;
}

.product-filter .range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #cfd7e6;
    border-radius: 99px;
}

.product-filter .range-progress {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    background: var(--primary-color);
    border-radius: 99px;
    left: 0%;
    right: 0%;
}

/* overlayed inputs */
.product-filter .range-input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 18px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.product-filter .range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 12px rgba(47, 170, 70, .25);
}

.product-filter .range-input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 12px rgba(47, 170, 70, .25);
}

.product-filter .range-input::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
}

.product-filter .range-input::-moz-range-track {
    height: 3px;
    background: transparent;
}

.product-filter .price-row {
    display: flex;
    justify-content: space-between;
    color: #828282;
    font-weight: 500;
    font-size: 12px;
    margin: 2px 4px 12px;
}


.brands-section .brand-image img {
    width: 100%;
}


.shop-toolbar {
    border-radius: var(--radius-1);
}

/* =========================================
           3. CHECKOUT PAGE SPECIFIC STYLES
           ========================================= */
.checkout-section {
    padding: 10px 0;
    background-color: #f9f9f9;
}

.checkout-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark-color);
    margin-bottom: 8px;
}

.form-control {
	padding: 10px 14px;
	border-radius: var(--radius-1);
	border: 1px solid #ddd;
	font-size: 0.95rem;
}

.form-select {
    padding: 4px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 94, 232, 0.1);
}

/* Custom District Dropdown (AJAX Simulator) */
.district-wrapper {
    position: relative;
}

.district-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    z-index: 100;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.district-list.show {
    display: block;
}

.district-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
}

.district-item:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

/* Shipping Radio Cards */
.shipping-radio {
    display: block;
    position: relative;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: var(--radius-1);
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.shipping-radio:hover {
    background-color: #fcfcfc;
    border-color: #ccc;
}

.shipping-radio input {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.shipping-radio input:checked~.shipping-info {
    color: var(--primary-color);
    font-weight: 600;
}

/* Order Summary */
.order-summary-box {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-1);
    padding: 20px;
    position: sticky;
    top: 20px;
}

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

.summary-item.total {
    border-top: 2px dashed #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-dark-color);
}

/* Payment Options */
.payment-methods {
    margin-top: 20px;
}

.payment-label {
    display: block;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.payment-label:hover {
    border-color: var(--primary-color);
}

.payment-input:checked+.payment-label {
    border-color: var(--primary-color);
    background-color: rgba(196, 94, 232, 0.05);
}

.payment-input {
    display: none;
}


/* =========================================
           3. ORDER SUCCESS SPECIFIC STYLES
           ========================================= */
.success-section {
    background-color: #f9f9f9;
    padding: 10px 0;
    min-height: 80vh;
}

.success-header {
    text-align: center;
    margin-bottom: 15px;
}

.success-icon-box {
	width: 80px;
	height: 80px;
	background-color: #fff;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	animation: pulse 2s infinite;
	margin-top: 1rem;
}

.success-icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 94, 232, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(196, 94, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 94, 232, 0);
    }
}

/* Order Details Card */
.order-card {
    background: white;
    border-radius: var(--radius-1);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.order-card-header {
    background-color: #fdfdfd;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 20px;
  font-weight: 700;
}

/* Product Item Row */
.order-product-item {
	padding: 10px 20px;
	border-bottom: 2px dashed #eee;
	display: flex;
	align-items: center;
	gap: 20px;
}

.order-product-item:last-child {
    border-bottom: none;
}

.op-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.op-details {
    flex-grow: 1;
}

.op-name {
    font-weight: 400;
    color: var(--primary-dark-color);
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.op-meta {
    font-size: 0.9rem;
    color: #888;
}

.op-price {
	font-weight: 400;
	color: var(--primary-dark-color);
	font-size: 0.9rem;
	white-space: nowrap;
}

/* Summary Footer */
.order-summary-footer {
    background-color: #fdfdfd;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

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

.summary-row.total {
    border-top: 2px dashed #ddd;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Customer Info Grid */
.customer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.info-block h6 {
    font-weight: 500;
    color: var(--primary-dark-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.info-block p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .order-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .customer-info-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================
   CONTACT PAGE
========================= */
/* map top */
#contact-section .map-wrap {
    margin: 18px auto 10px;
    border-radius: var(--radius-1);
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
    background: #fff;
}

#contact-section .map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

/* content section */
#contact-section .contact-area {
    padding: 0 0 30px;
}
#contact-section .form-card {
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#contact-section .contact-title {
    text-align: center;
    font-weight: 1000;
    color: #0f172a;
    font-size: 25px;
    margin-top: 35px;
    position: relative;
    display: inline-block;
    padding: 0 10px;

}

#contact-section .title-line {
    width: 180px;
    height: 2px;
    background: var(--primary-color);
    margin: 0px auto 8px;
    border-radius: 99px;
}

#contact-section .contact-sub {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #334155;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
}

#contact-section .form-control.custom-input {
    border: 1px solid #ddd;
    border-radius: var(--radius-1);
    padding: 12px 18px;
    box-shadow: none !important;
    font-size: 13px;
}

#contact-section .custom-textarea {
    border: 1px solid #ddd;
    border-radius: var(--radius-1);
    padding: 12px 18px;
    box-shadow: none !important;
    font-size: 13px;
    resize: none;
    min-height: 150px;
}

#contact-section .form-label {
    font-weight: 800;
    font-size: 16px;
    color: #1f2937;
    margin-left: 10px;
}


#contact-section .send-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 12px 18px rgba(47, 111, 219, .20);
}

#contact-section .send-btn:hover {
    opacity: .92;
    color: #fff;
}

/* right side */
#contact-section .right-box {
    text-align: center;
    padding-top: 18px;
}

#contact-section .right-img {
    max-width: 230px;
    width: 100%;
    margin: 0 auto 14px;
}

#contact-section .info-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    margin-top: 8px;
}

#contact-section .info-row a {
    color: #0f172a;
    text-decoration: none;
}

#contact-section .socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

#contact-section .social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    font-weight: 1000;
    font-size: 15px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

#contact-section .social-btn:hover {
    opacity: .7;
    color: #fff;
}
