﻿/**
 * Consolidated Main Stylesheet - All Frontend Styles
 *
 * This file contains all frontend CSS styles consolidated from:
 * - Global styles (variables, reset, typography, utilities)
 * - Layout styles (grid system, containers)
 * - Component styles (header, footer, products, forms, etc.)
 * - Page-specific styles (home, campaign, about, checkout, etc.)
 *
 * Organization:
 * 1. Global Styles (variables, reset, typography, utilities)
 * 2. Layout Styles (grid system, containers)
 * 3. Component Styles (header, navigation, footer, products, forms, buttons, etc.)
 * 4. Page Styles (home, campaign, about, checkout, product, reviews, invoice, etc.)
 * 5. Utilities & Overrides
 */

/* ========================================
   GLOBAL STYLES
   ======================================== */

@import url("https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800");

/* CSS Variables */
:root {
    --primary: #5fb2bd;
    --secondary: #21444d;
    --dark: #333;
    --light: #ccc;
    --gray: #f4f5f8;

    /* Unified Scrollbar Variables */
    --scrollbar-width: 4px;
    --scrollbar-track-bg: rgba(95, 178, 189, 0.05);
    --scrollbar-thumb-bg: linear-gradient(180deg, var(--primary) 0%, rgba(95, 178, 189, 0.8) 100%);
    --scrollbar-thumb-hover-bg: linear-gradient(180deg, rgba(95, 178, 189, 0.9) 0%, var(--primary) 100%);
    --scrollbar-thumb-active-bg: var(--primary);
    --scrollbar-border-radius: 10px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size-adjust: 100%;
}

html,
body {
    height: 100%;
}

body {
    font: normal 300 1.4rem/1.86 "Poppins", sans-serif;
    background-color: #f0f2f5 !important;
    margin: 0;
    color: #222;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   UNIFIED SCROLLBAR SYSTEM
   ======================================== */

/* Global scrollbar styles - applies to all scrollable elements */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--scrollbar-track-bg);
}

/* WebKit scrollbar styles (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
    width: var(--scrollbar-width);
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track-bg);
    border-radius: var(--scrollbar-border-radius);
    margin: 8px 0;
}

*::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-bg);
    border-radius: var(--scrollbar-border-radius);
    border: none;
    transition: all 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover-bg);
    box-shadow: 0 0 8px rgba(95, 178, 189, 0.4);
}

*::-webkit-scrollbar-thumb:active {
    background: var(--scrollbar-thumb-active-bg);
    box-shadow: 0 0 12px rgba(95, 178, 189, 0.6);
}

/* Selection */
::-moz-selection {
    color: #fff;
    background-color: var(--primary);
}

::selection {
    color: #fff;
    background-color: var(--primary);
}

/* Typography */
a {
    font-family: 'Poppins';
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
}

p {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: 'Poppins';
    letter-spacing: 0;
    color: #777;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

b,
strong {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    color: #333;
    letter-spacing: -.03em;
}

h1, .h1 {
    font-size: 4rem;
}

h2, .h2 {
    font-size: 3.6rem;
}

h3, .h3 {
    font-size: 2.6rem;
}

h4, .h4 {
    font-size: 2.2rem;
}

h5, .h5 {
    font-size: 2rem;
    letter-spacing: -.025em;
}

h6, .h6 {
    font-size: 1.4rem;
    letter-spacing: -.01em;
}

@media screen and (min-width: 768px) {
    h1, .h1 {
        font-size: 5rem;
    }
    h2, .h2 {
        font-size: 4rem;
    }
    h3, .h3 {
        font-size: 3rem;
    }
    h4, .h4 {
        font-size: 2.4rem;
    }
}

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

hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 3rem auto 2.5rem;
}

sub,
sup {
    position: relative;
    font-size: 70%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

.text-dark {
    color: #333 !important;
}

.lead {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
    margin-bottom: 1.2rem;
}

/* Background Utilities */
.bg-light {
    background-color: #f8f8f8 !important;
}

.bg-light-2 {
    background-color: #f9f9f9 !important;
}

.bg-lighter {
    background-color: #fafafa !important;
}

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

.bg-secondary {
    background-color: #a6c76c !important;
}

.bg-image {
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: relative;
}

.bg-overlay:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: .3;
    background-color: #333;
}

.bg-overlay .container,
.bg-overlay .container-fluid {
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Grid Utilities */
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Layout Base */
.page-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.4s ease;
}

.mmenu-active .page-wrapper {
    transform: translateX(200px);
}

.main {
    flex: 1;
    width: 100%;
}

.page-content {
    padding-bottom: 5rem;
}

/* Global Button Style */
.btn-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem 3rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: -.01em;
    color: #fff;
    background-color: var(--primary);
    border: none;
    border-radius: 8px;
    white-space: normal;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 178, 189, 0.2);
    text-decoration: none;
    cursor: pointer;
}

.btn-global:hover,
.btn-global:focus {
    color: #fff;
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 178, 189, 0.3);
    text-decoration: none;
}

.btn-global:active,
.btn-global.active {
    color: #fff;
    background-color: var(--secondary);
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(95, 178, 189, 0.2);
}

.btn-global:disabled,
.btn-global.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-global span {
    line-height: 1;
}

.btn-global i:first-child {
    margin-right: 1rem;
}

.btn-global i:last-child {
    margin-left: 1rem;
}

.btn-global.btn-block {
    display: flex;
    width: 100%;
}

/* ========================================
   LAYOUT STYLES
   ======================================== */

@media screen and (min-width: 1200px) {
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px
	}
}

@media screen and (min-width: 1600px) {
	.container-fluid {
		padding-left: 70px;
		padding-right: 70px
	}

	.col-xxl-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%
	}

	.col-xxl-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%
	}

	.col-xxl-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%
	}

	.col-xxl-12 {
		flex: 0 0 100%;
		max-width: 100%
	}

	.col-xxl-5col {
		flex: 0 0 20%;
		max-width: 20%
	}

	.col-xxl-4-5col {
		flex: 0 0 80%;
		max-width: 80%
	}
}

@media screen and (min-width: 1920px) {
	.container-fluid {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto
	}
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

/* Header Base */
.header {
	width: 100%;
	background-color: #fff;
}

.header-icon{
    font-size: 3rem;
}

.header .container,
.header .container-fluid {
	position: relative;
	display: flex;
	align-items: center;
}

.header-left,
.header-center,
.header-right {
	display: flex;
	align-items: center;
}

.header-right {
	margin-left: auto;
	align-self: stretch;
	justify-content: flex-end;
}

.header-center {
	margin-left: auto;
	margin-right: auto;
}


.logo img {
	display: block;
	max-width: 100%;
    width: 80px;
	height: 80px;
    position: relative;
}

.logo-text{
    font-size: 2.1rem;
    font-weight: 600;
    color: #21444d !important;
}

@media screen and (max-width: 768px) {

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo-text{
        font-size: 1.7rem;
    }
}

/* Top header right menu */

.top-right-menu {
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin: 0;
}

.top-right-menu>li {
	position: relative;
}

.top-right-menu>li>a {
	display: block;
	cursor: pointer;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
}

.top-right-menu .menus {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.top-right-menu ul {
	display: flex;
	align-items: center
}

.top-right-menu li+li {
	margin-left: 3rem
}

.top-right-menu a {
	display: inline-flex;
	align-items: center
}

.top-right-menu i {
	font-size: 1.5rem;
	margin-right: .8rem;
	line-height: 1
}

.top-right-menu i.icon-heart-o {
	margin-top: -.2rem
}

.top-right-menu span {
	color: var(--primary);
	margin-left: .3rem
}

/* Moved to .header .header-dropdown below for consistency */

.header-dropdown {
	position: relative;
}

.header-dropdown>a,
.header-dropdown>span {
	position: relative;
	display: inline-flex;
	padding-top: .2rem;
	padding-bottom: .2rem;
	padding-right: 2.2rem;
	align-items: center;
	text-transform: uppercase;
}


.header-dropdown a:hover,
.header-dropdown a:focus {
	text-decoration: none;
}

.header-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0px);
    z-index: 20;
    padding: .6rem 0;
    min-width: 150px;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    transition: all .25s;
    border-radius: 4px;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-dropdown:first-child .header-menu {
	left: 0;
	right: auto;
}

.header-menu:before {
	content: '';
	display: block;
	width: 100%;
	height: .1rem;
	position: absolute;
	top: -1px;
	left: 0
}

.header-dropdown:hover>.header-menu,
.header-dropdown:focus>.header-menu,
.header-dropdown.active>.header-menu {
	visibility: visible;
	opacity: 1;
	display: block;
}

/* Mobile click support for header dropdowns */
@media screen and (max-width: 991px) {
	.header-dropdown.active>.header-menu {
		visibility: visible !important;
		opacity: 1 !important;
		z-index: 1000;
		display: block !important;
		margin-top: 0 !important;
		top: calc(100% + 0px) !important;
	}

	/* Ensure only one dropdown shows at a time */
	.header-dropdown:not(.active)>.header-menu {
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none;
	}

	/* Prevent hover from interfering on mobile - disable hover behavior */
	.header-dropdown:hover:not(.active)>.header-menu {
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none;
	}

	/* Ensure proper positioning for mobile dropdowns */
	.header-right .header-dropdown .header-menu {
		right: 0;
		left: auto;
		min-width: 120px;
	}

	/* First dropdown (currency) positioning */
	.header-right .header-dropdown:first-child .header-menu {
		right: 0;
		left: auto;
	}

	/* Second dropdown (language) positioning */
	.header-right .header-dropdown:last-child .header-menu {
		right: 0;
		left: auto;
	}
}

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

.header-menu ul li {
	margin: 0
}

.header-menu ul a {
	padding: .3rem 1.5rem;
	display: flex;
	align-items: center;
	white-space: nowrap
}

.header-menu a {
	color: inherit
}

.header-menu a:hover,
.header-menu a:focus {
	color: var(--primary)
}

.header-right .header-menu,
.header-right .header-dropdown:first-child .header-menu {
	left: auto;
	right: 0
}

.header-right .top-right-menu+.header-dropdown {
	margin-left: 2.5rem
}

.header-top {
	border-bottom: .1rem solid #f4f4f4;
    background: #afd8dee7;
}

.header-top .menu>li>a {
	letter-spacing: .01em
}

.header-top .menu.sf-arrows>li>.sf-with-ul {
	padding-right: 1.5rem
}

.cart-dropdown {
	display: flex;
	align-self: stretch;
	align-items: center
}

.cart-dropdown .dropdown-toggle {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	line-height: 1;
	color: #333;
}

.cart-dropdown .dropdown-toggle .header-icon {
	color: var(--primary);
	font-size: 2.5rem;
}

/* Common text styling for cart and wishlist */
.cart-dropdown .dropdown-toggle .cart-txt,
.wishlist-link .wishlist-txt {
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff !important;
	margin-top: 0.3rem;
	white-space: nowrap;
	text-align: center;
	width: 100%;
	display: block;
	opacity: 1 !important;
	visibility: visible !important;
	text-shadow: none !important;
	transition: none !important;
}

/* Keep text color consistent on hover/focus */
.cart-dropdown:hover .dropdown-toggle .cart-txt,
.cart-dropdown.show .dropdown-toggle .cart-txt,
.cart-dropdown:focus .dropdown-toggle .cart-txt {
	color: #fff !important;
}

.cart-dropdown .dropdown-toggle::after {
	display: none
}

.cart-dropdown .dropdown-menu {
	display: block;
	width: 300px;
	z-index: 1001;
	font-size: 1.3rem;
	border: none;
	margin: 1px 0 0;
	padding: 2.2rem 3rem 2.5rem;
	border-radius: 0;
	box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05), -5px 10px 16px rgba(51, 51, 51, 0.05);
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .25s
}

.cart-dropdown .dropdown-menu:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 1px
}

.cart-dropdown .dropdown-menu.dropdown-menu-right {
	right: -1px
}

.cart-dropdown .btn-remove {
	position: absolute;
	top: 50%;
	right: -.55rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	color: #cccccc;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	margin-top: -1.2rem
}

.cart-dropdown .btn-remove:hover,
.cart-dropdown .btn-remove:focus {
	color: #333
}

.cart-dropdown:hover .dropdown-toggle,
.cart-dropdown.show .dropdown-toggle {
	color: var(--primary)
}

.cart-dropdown:hover .dropdown-menu,
.cart-dropdown.show .dropdown-menu {
	visibility: visible;
	opacity: 1
}

.cart-dropdown .dropdown-toggle {
	font-size: 3.2rem
}

.cart-dropdown .dropdown-toggle i {
	display: inline-block;
	margin-top: -3px
}

.cart-dropdown .cart-count {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 1;
	position: absolute;
	top: -0.6rem;
	right: -1.1rem;
	color: #fff;
	background-color: var(--primary) !important;
	z-index: 10;
}

.cart-dropdown .dropdown-cart-products {
	margin-top: -1rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-dropdown .product {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 1.6rem 2.4rem 1.6rem 0;
	box-shadow: none;
	margin: 0 !important;
	border: none;
	border-bottom: 1px solid #ebebeb;
	box-shadow: none !important
}

.cart-dropdown .product-image-container {
	position: relative;
	max-width: 60px;
	margin: 0;
	margin-left: auto
}

.cart-dropdown .product-title {
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.3;
	color: #666;
	text-align: left;
	margin-bottom: .4rem
}

.cart-dropdown .product-title a {
	color: inherit
}

.cart-dropdown .product-title a:hover,
.cart-dropdown .product-title a:focus {
	color: var(--primary)
}

.cart-dropdown .product-cart-details {
	font-weight: 400;
	max-width: 150px;
	font-size: 1.3rem;
	color: #999;
	text-align: left
}

.dropdown-cart-total {
	padding: 1rem 0 .5rem;
	display: flex;
	align-items: flex-end;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 1.1rem
}

.dropdown-cart-total .cart-total-price {
	font-size: 1.5rem;
	margin-left: auto
}

.dropdown-cart-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 .5rem;
	gap: 0.5rem
}

.dropdown-cart-action .btn {
	font-size: 1.3rem;
	min-width: 110px;
	padding-top: .75rem;
	padding-bottom: .75rem
}

.dropdown-cart-action .btn-global {
	font-size: 1.3rem !important;
	padding: 0.75rem 1.2rem !important;
	min-width: 110px !important;
	font-weight: 400 !important;
}

.dropdown-cart-action .btn-global i {
	margin-left: 0.5rem !important;
	font-size: 1.2rem !important;
	display: inline-block !important;
	visibility: visible !important;
}

.wishlist-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin-left: 1.4rem;
	position: relative;
	color: #333;
	text-decoration: none;
}

.wishlist-link .header-icon {
	color: var(--primary);
	font-size: 2.5rem;
}

.wishlist-link .wishlist-count {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 1;
	position: absolute;
	top: -0.3rem;
	right: -0.3rem;
	color: #fff;
	background-color: var(--primary) !important;
	z-index: 10;
}

.wishlist-link:hover,
.wishlist-link:focus {
	color: var(--primary);
	text-decoration: none;
}

.wishlist-link:hover .header-icon,
.wishlist-link:focus .header-icon {
	color: var(--secondary);
}

/* Keep text color consistent on hover/focus */
.wishlist-link:hover .wishlist-txt,
.wishlist-link:focus .wishlist-txt {
	color: #fff !important;
}

.search-toggle {
	position: relative;
	display: block;
	font-size: 2.4rem;
	line-height: 1;
	min-width: 2.5rem;
	padding: .3rem .2rem;
	font-weight: 400;
	color: #333;
	text-align: center;
	z-index: 11
}

.search-toggle:hover,
.search-toggle:focus,
.search-toggle.active {
	color: var(--primary);
	outline: none !important
}

.header-search {
	position: relative;
	margin: 0;
	font-size: 0;
	line-height: 1;
	padding: 0;
	border: none
}

.header-search .header-search-wrapper {
	position: absolute;
	right: -1.4rem;
	top: 50%;
	margin-top: -20px;
	display: none;
	align-items: stretch;
	overflow: visible;
	border-radius: 20px;
	width: 100%;
	min-width: 270px;
	background-color: #fff;
	border: .1rem solid #ebebeb;
	z-index: 10
}

.header-search .header-search-wrapper.show {
	display: flex
}

.header-search .search-wrapper-wide {
	width: 570px
}

.header-search form {
	margin: 0
}

.header-search .select-custom {
	flex: 0 0 200px;
	max-width: 200px;
	padding-right: 0;
	margin: 0;
	align-self: center
}

.header-search .select-custom:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: .1rem;
	height: 2.6rem;
	margin-top: -1.3rem;
	background-color: #ebebeb
}

.header-search .select-custom::after {
	right: 2rem;
	color: #999;
	font-size: 1.2rem
}

.header-search .form-control,
.header-search select {
	line-height: 1;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: 0;
	background-color: #fff;
	margin: 0
}

.header-search .form-control {
	flex: 1 1 auto;
	padding: .9rem 5rem .9rem 2.3rem;
	width: 100%;
	margin: 0;
	height: 38px;
	line-height: 20px;
	border: none;
	border-radius: 20px;
	box-shadow: none
}

.header-search select {
	width: 100%;
	border: none;
	line-height: 38px;
	height: 38px;
	color: #777;
	padding: .1rem 4rem .1rem 2rem;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none
}

.header-search select:focus {
	outline: none !important
}

.header-search option {
	font-size: 1.3rem;
	padding: .1rem .3rem
}

.header-search .btn {
	flex: 0 0 40px;
	max-width: 40px;
	min-width: 0;
	height: 40px;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1;
	border: 0;
	padding: 0;
	margin: 0;
	min-width: 0;
	cursor: pointer;
	margin-top: -1px;
	margin-right: -1px;
	margin-bottom: -1rem;
	border-radius: 0 20px 20px 0
}

.header-search .btn i {
	margin: 0 !important
}

.header-search-extended {
	margin-right: 19rem;
	width: 100%;
	max-width: 570px;
	margin-top: 2.2rem;
	margin-bottom: 2.2rem
}

.header-search-extended .header-search-wrapper {
	border-radius: 30px
}

.header-search-extended .form-control,
.header-search-extended select {
	font-weight: 300
}

.header-search-extended .form-control {
	height: 44px;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	padding-right: 2.4rem;
	border-radius: 30px 0 0 30px
}

.header-search-extended select {
	line-height: 44px;
	height: 44px
}

.header-search-extended .btn {
	flex: 0 0 70px;
	max-width: 70px;
	height: 46px;
	font-size: 2rem;
	border-radius: 0 30px 30px 0
}

.header-search-visible .search-toggle {
	display: none
}

.header-search-visible .header-search-wrapper {
	position: static;
	left: auto;
	right: auto;
	top: auto;
	margin-top: 0;
	display: flex
}

.header-search-no-radius .header-search-wrapper,
.header-search-no-radius .form-control,
.header-search-no-radius .btn {
	border-radius: 0
}

.header-search-no-round .header-search-wrapper {
	border-radius: .3rem
}

.header-search-no-round .form-control {
	border-radius: .3rem 0 0 .3rem
}

.header-search-no-round .btn {
	border-radius: 0 .3rem .3rem 0
}

.mobile-menu-toggler {
	border: none;
	background: transparent;
	color: #666;
	padding: .2rem .25rem;
	font-size: 2.8rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-left: 1rem;
	margin-right: 1rem;
}

.header-bottom .mobile-menu-toggler {
	margin-top: .55rem;
	margin-bottom: .55rem;
	margin-left: -.4rem;
}

@media screen and (min-width: 992px) {
	.mobile-menu-toggler {
		display: none
	}
}

@media screen and (min-width: 1600px) {
	.header .container-fluid .megamenu-container {
		position: relative
	}

	.header .container-fluid .megamenu-container .megamenu {
		right: auto;
		width: 1170px
	}
}

@media screen and (max-width: 1199px) {
	.header-search .search-wrapper-wide {
		width: 480px
	}

	.header-search-extended {
		margin-right: 10rem
	}

	.header-search-extended .btn {
		flex: 0 0 50px;
		max-width: 50px
	}
}

@media screen and (max-width: 991px) {

	.top-right-menu:not(.top-link-menu) {
		display: flex;
		align-items: center;
		align-self: stretch
	}

	.top-right-menu:not(.top-link-menu)>li {
		display: flex;
		align-items: center;
		align-self: stretch;
		padding-right: 1rem
	}

	.top-right-menu:not(.top-link-menu)>li>a {
		display: block;
		padding-left: 0;
		padding-right: 0;
        color: #21444d
	}

	.top-right-menu:not(.top-link-menu) ul {
		display: block;
		position: absolute;
		right: 0;
		top: 100%;
		z-index: 20;
		padding-top: .6rem;
		padding-bottom: .6rem;
		min-width: 180px;
		visibility: hidden;
		opacity: 0;
		margin-top: 1px;
		background-color: #fff;
		box-shadow: 2px 5px 8px rgba(51, 51, 51, 0.05), -2px 5px 8px rgba(51, 51, 51, 0.05);
		text-transform: capitalize
	}

	.top-right-menu:not(.top-link-menu) ul:before {
		content: '';
		display: block;
		width: 100%;
		height: .1rem;
		position: absolute;
		top: -1px;
		left: 0
	}

	.top-right-menu:not(.top-link-menu):hover ul,
	.top-right-menu:not(.top-link-menu):focus ul {
		visibility: visible;
		opacity: 1
	}

	.top-right-menu:not(.top-link-menu) li+li {
		margin-left: 0 !important
	}

	.top-right-menu:not(.top-link-menu) a {
		padding: .3rem 1.5rem
	}

	.header-left .top-right-menu ul {
		right: auto;
		left: 0
	}

	.header-search {
		display: none
	}

	.header-search-extended {
		margin-right: 0
	}

	.header-search-extended .btn {
		height: 40px
	}

	.header-search-extended .form-control {
		height: 38px;
		padding-top: .9rem;
		padding-bottom: .9rem
	}

	.header-search-extended select {
		height: 38px;
		line-height: 38px
	}

	.header-search-visible .search-toggle {
		display: block
	}

	.header-search-visible .header-search-wrapper {
		position: absolute;
		right: -10rem;
		top: 100%;
		margin-top: .8rem;
		display: none;
		border-width: .4rem
	}

	.header-search-visible .header-search-wrapper:before {
		content: '';
		display: block;
		width: 0;
		height: 0;
		position: absolute;
		right: 10rem;
		bottom: 100%;
		border-style: solid;
		border-width: 0 11px 13px 11px;
		border-color: transparent transparent #ebebeb transparent
	}

	.header-bottom {
		display: none
	}
}

@media screen and (max-width: 767px) {
	.header-search .search-wrapper-wide {
		width: 420px
	}

	.header-search .select-custom {
		flex: 0 0 180px;
		max-width: 180px
	}
}

@media screen and (max-width: 575px) {
	.header-search .search-wrapper-wide {
		width: 300px
	}

	.header-search .select-custom {
		display: none
	}

	.wishlist-link {
		display: none
	}

	.cart-dropdown {
		padding-left: 1.4rem
	}
}

@media (max-width: 340px) {
	.header-search .search-wrapper-wide {
		width: 260px
	}

	.wishlist,
	.account,
	.wishlist-link {
		display: none !important
	}
}

@media screen and (max-width: 991px) {
    .header-middle-right{
        display: flex;
        justify-content: end
    }

    /* Ensure header-top elements stay on one line in mobile */
    .header-top .row {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .header-top .col-auto {
        flex: 0 0 auto !important;
        min-width: 0;
        max-width: none;
    }

    .header-top .header-middle-right {
        flex: 1 1 auto !important;
        min-width: 0;
        display: flex !important;
        align-items: center !important;
    }

    .header-top .header-middle-right > .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100%;
        margin: 0;
    }

    .header-top .col-lg-4 {
        flex: 0 0 auto !important;
        max-width: none !important;
    }

    .header-top .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem;
        flex-wrap: nowrap !important;
    }

    .header-top .top-right-menu {
        margin: 0;
        display: flex;
        align-items: center;
    }

    .header-top .top-right-menu > li {
        padding: 0;
    }

    .header-top .top-right-menu > li > a {
        display: flex;
        align-items: center;
        padding: 0.5rem;
        font-size: 1.4rem;
        white-space: nowrap;
    }

    .header-top .mobile-menu-toggler {
        margin: 0 !important;
        padding: 0.5rem !important;
        flex-shrink: 0;
    }

    /* Reduce logo text size if needed for very small screens */
    @media screen and (max-width: 575px) {
        .header-top .logo-text {
            font-size: 1.4rem !important;
        }

        .header-top .logo img {
            width: 40px !important;
            height: 40px !important;
        }

        .header-top .top-right-menu > li > a {
            font-size: 1.2rem;
            padding: 0.4rem;
        }
    }
}

.main-nav {
	margin-left: 2rem;
	display: none
}

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

.menu {
	display: flex;
	align-items: center;
	line-height: 1.5
}

.menu li {
	position: relative
}

.menu li:hover>ul,
.menu li:hover>.megamenu,
.menu li.show>ul,
.menu li.show>.megamenu {
	display: block
}

.menu .megamenu-container {
	position: static
}

.menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 1002
}

.menu ul ul {
	top: -1.6rem;
	left: 100%
}

.menu .megamenu {
	display: none;
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	top: 100%;
	z-index: 1002
}

.menu .megamenu.megamenu-sm {
	left: 0;
	right: auto;
	width: 456px
}

.menu .megamenu.megamenu-md {
	left: -10rem;
	right: auto;
	width: 694px
}

.menu .megamenu>ul,
.menu .megamenu div>ul {
	display: block;
	position: static;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	box-shadow: none;
	margin-top: 0;
	padding: 0;
	min-width: 0
}

.menu ul,
.menu .megamenu {
	margin-top: 1px
}

.menu ul:before,
.menu .megamenu:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	height: 1px;
	left: 0;
	right: 0
}

.menu ul ul,
.menu .megamenu ul {
	margin-top: 0
}

.menu a:not(.btn) {
	display: block;
	position: relative;
	text-decoration: none
}

.menu a:not(.btn):focus {
	outline: none !important
}

.menu li>a {
	color: #999999;
	font-weight: 300;
	font-size: 1.3rem;
	letter-spacing: 0;
	padding-top: .5rem;
	padding-bottom: .5rem;
	padding-left: 3rem;
	padding-right: 3rem
}

.menu li>a span:not(.tip) {
	position: relative
}

.menu>li>a {
	color: #333;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	padding: 3.95rem 3rem;
	text-transform: uppercase
}

.menu>li+li {
	margin-left: 0
}

.menu.sf-arrows>li>.sf-with-ul {
	padding-right: 2rem
}

.menu.sf-arrows .sf-with-ul {
	position: relative
}

.menu.sf-arrows ul .sf-with-ul {
	padding-right: 4rem
}

.menu.sf-arrows ul .sf-with-ul:after {
	content: '\f112';
	right: 3rem
}

.menu .megamenu,
.menu ul {
	background-color: #fff;
	box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05), -5px 10px 16px rgba(51, 51, 51, 0.05)
}

.menu ul {
	min-width: 218px;
	padding: 1.6rem 0 2rem
}

.menu .megamenu .banner>a {
	display: block;
	padding: 0;
	margin: 0
}

.menu .megamenu li a {
	padding-right: 0;
	padding-left: 0
}

.menu .megamenu .btn {
	min-width: 210px;
	text-transform: uppercase
}


.menu .menu-col {
	padding-left: 3rem;
	padding-right: 3rem;
	margin-top: 2.2rem;
	padding-bottom: 2rem
}

.menu .menu-title {
	color: #333;
	font-weight: 400;
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-bottom: .6rem
}

.menu .megamenu-action {
	padding-bottom: 2rem
}

.menu ul+.menu-title {
	margin-top: 1.5rem
}

.menu .banner-content {
	padding-top: 0
}

.menu .banner-content.banner-content-bottom {
	left: 2.4rem;
	bottom: 2.4rem
}

.menu .banner-content.banner-content-top {
	left: 2rem;
	top: 2.4rem;
	transform: translateY(0)
}

.menu .banner-title {
	margin: 0;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0
}

.menu .banner-title span {
	font-size: 2.4rem
}

.menu .banner-content-top .banner-title span {
	line-height: 1.05;
	font-size: 3.1rem
}

.menu li:hover>a,
.menu li.show>a,
.menu li.active>a {
	color: var(--primary)
}

.tip {
	color: #fff;
	display: block;
	position: absolute;
	left: 100%;
	bottom: 1.1rem;
	text-align: center;
	font-weight: 400;
	font-size: .8rem;
	line-height: 1;
	letter-spacing: 0;
	padding: .3rem .1rem .1rem;
	min-width: 23px;
	z-index: 1;
	border-radius: 0;
	margin-left: .5rem;
	text-transform: uppercase;
	background-color: var(--primary)
}

.tip.tip-new {
	background-color: #a6c76c
}

.tip.tip-hot {
	background-color: #ef837b
}

.header-bottom .main-nav {
	margin-left: 0
}

.header-bottom .menu .megamenu.megamenu-md {
	left: 0
}

.header-bottom .menu>li+li {
	margin-left: 1rem
}

.header-bottom .menu>li>a {
	padding: 1.65rem 1rem
}

.header-bottom .menu>li>.sf-with-ul {
	padding-right: 3rem
}

.header-bottom .menu>li>a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: .1rem;
	background-color: var(--primary);
	transform-origin: right center;
	transform: scale(0, 1);
	transition: transform .3s ease
}

.header-bottom .menu li:hover>a:before,
.header-bottom .menu li.show>a:before,
.header-bottom .menu li.active>a:before {
	transform-origin: left center;
	transform: scale(1, 1)
}

@media screen and (min-width: 992px) {
	.main-nav {
		display: block
	}
}

/* Header Bottom Section */
.header-bottom {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1040;
}

/* Category Dropdown */
.category-dropdown {
  position: relative;
  height: 100%;
}

.category-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1.5rem 2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.category-dropdown .dropdown-menu {
  width: 270px;
  border-radius: 0;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Vertical Menu */
.menu-vertical {
  width: 100%;
}

.menu-vertical > li > a {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #666;
  font-size: 1.4rem;
  border-bottom: 1px solid #ebebeb !important;
  transition: all 0.2s ease;
}

.menu-vertical > li > a i {
  margin-right: 1rem;
  font-size: 1.6rem;
  min-width: 20px;
  color: #ccc;
}

.menu-vertical > li:hover > a {
  color: var(--primary);
  background: #f9f9f9;
}

/* Submenu Styles */
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 800px;
  background: #fff;
  box-shadow: 5px 10px 16px rgba(51,51,51,0.05);
  padding: 2rem;
  display: none;
  z-index: 1001;
}

.menu-item:hover > .submenu {
  display: flex;
  flex-wrap: wrap;
}

.menu-col {
  flex: 1;
  min-width: 250px;
  padding: 0 1rem;
}

.category {
  margin-bottom: 2rem;
}

.category-link {
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products li a {
  display: block;
  padding: 0.6rem 0;
  color: #666;
  font-size: 1.3rem;
  transition: all 0.2s ease;
}

.products li a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Main Navigation */
.main-nav .menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .menu > li {
  position: relative;
}

.main-nav .menu > li > a {
  display: block;
  padding: 2rem 1.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.2s ease;
}

.main-nav .menu > li:hover > a {
  color: #5fb2bd;
}

/* Megamenu */
.megamenu {
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 2rem;
  display: none;
  z-index: 1000;
}

.megamenu-container:hover .megamenu {
  display: block;
}

.menu-title {
  font-weight: 600;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

/* Header Right */
.header-right p {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .submenu {
    width: 700px;
  }
}

@media (max-width: 991px) {
  .submenu {
    width: 500px;
  }

  .main-nav .menu > li > a {
    padding: 2rem 1rem;
  }
}

/*--------------------------------------------------------------
02. => mobile menu
--------------------------------------------------------------*/

.mobile-menu-container {
	position: fixed;
	left: -280px;
	top: 0;
	bottom: 0;
	z-index: 1001;
	background-color: #333;
	width: 100%;
	max-width: 280px;
	overflow-y: scroll;
	box-shadow: 0.1rem 0 0.6rem 0 rgba(51, 51, 51, 0.5);
	will-change: transform;
	visibility: hidden;
	font-size: 1.2rem;
	line-height: 1.5;
	transition: all 0.4s ease
}

.mmenu-active .mobile-menu-container {
	visibility: visible;
	transform: translateX(280px)
}

.mobile-menu-container .social-icons {
	justify-content: center;
	margin-bottom: 0
}

.mobile-menu-container .social-icon {
	width: 3rem;
	height: 3rem;
	font-size: 1.2rem;
	background-color: transparent;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.45);
	border-color: rgba(255, 255, 255, 0.45)
}

.mobile-menu-container .social-icon+.social-icon {
	margin-left: .8rem
}

.mobile-menu-container .social-icon:hover,
.mobile-menu-container .social-icon:focus {
	background-color: transparent
}

.mobile-menu-wrapper {
	position: relative;
	padding: 4.2rem 0
}

.mobile-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: .7rem;
	right: 1rem;
	padding: 0;
	z-index: 9;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
	color: #fff;
	transition: color .35s
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
	color: var(--primary)
}

.mobile-menu-overlay {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(25, 25, 25, 0.25);
	z-index: 1000;
	transition: all 0.4s;
	visibility: hidden;
	opacity: 0
}

.mmenu-active .mobile-menu-overlay {
	visibility: visible;
	opacity: 1
}

.mobile-nav {
	padding: 0;
	margin: 0 0 2.5rem
}

.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none
}

.mobile-menu>li>a {
	text-transform: uppercase
}

.mobile-menu li {
	display: block;
	position: relative
}

.mobile-menu li a {
	position: relative;
	display: block;
	padding: 1rem 4.5rem 1rem 2rem;
	color: #fff;
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08)
}

.mobile-menu li a:hover,
.mobile-menu li a:focus {
	color: var(--primary);
	text-decoration: none;
	outline: none !important
}

.mobile-menu li.open>a,
.mobile-menu li.active>a {
	color: var(--primary)
}

.mobile-menu li ul {
	margin: 0;
	padding: .7rem 0 .9rem;
	display: none;
	margin-bottom: 0;
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08)
}

.mobile-menu li ul li a {
	padding-top: .6rem;
	padding-bottom: .6rem;
	padding-left: 3.5rem;
	border-bottom: none
}

.mobile-menu li ul li a:not(:hover):not(:focus) {
	color: rgba(255, 255, 255, 0.8)
}

.mobile-menu li ul li:last-child ul {
	border-bottom: none;
	padding-bottom: 0
}

.mobile-menu li ul ul {
	border-top: 0.1rem solid rgba(255, 255, 255, 0.08)
}

.mobile-menu li ul ul li a {
	padding-left: 5rem
}

.mobile-menu span:not(.mmenu-btn):not(.tip) {
	position: relative
}

.mmenu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 1rem;
	top: 60%;
	z-index: 10;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 1rem;
	color: #fff;
	margin-top: -1.5rem;
	border-radius: 0;
	background-color: transparent;
	cursor: pointer;
	outline: none;
	transition: color 0.35s
}


.mmenu-btn:hover,
.mmenu-btn:focus {
	color: #21444d
}

.open>a>.mmenu-btn::after {
	content: '\e802'
}

.mobile-search-area {
    display: none;
    background-color: #333;
}

@media screen and (max-width: 991px) {
    .mobile-search-area {
        display: block
    }
}

.mobile-search {
	margin: 1rem 0 1.5rem;
	padding: 0 2rem;
	display: flex;
	align-items: center
}

.mobile-search .form-control {
	height: 36px;
	margin-bottom: 0;
	-webkit-appearance: none;
	appearance: none;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: .8rem 1.5rem;
	max-width: calc(100% - 36px);
	border: 2px solid var(--primary);
	border-right-width: 0
}

.mobile-search .form-control:focus {
	color: #fff;
	border-color: var(--primary);
	background-color: #333
}

.mobile-search .btn {
	font-size: 1.2rem;
	min-width: 3.6rem;
	padding: .8rem .2rem;
    border-radius: 0 ;
}

.mobile-menu-container .tab-content {
	padding: 0;
	margin: 0 0 2.5rem;
	border: none
}

.mobile-menu-container .tab-content .mobile-nav,
.mobile-menu-container .tab-content .mobile-cats-nav {
	margin-bottom: 0
}

.mobile-menu-container .tab-pane {
	padding: 0
}

.nav.nav-pills-mobile {
	display: flex;
	align-items: center;
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
	margin: 0 0 .2rem
}

.nav.nav-pills-mobile .nav-item {
	flex-grow: 1;
	flex-basis: 0;
	margin: 0 0 -.1rem
}

.nav.nav-pills-mobile .nav-link {
	color: #fff;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.5;
	text-transform: uppercase;
	border-bottom: .2rem solid transparent;
	background: none;
	padding: .8rem 2rem;
	transition: all .35s ease
}

.nav.nav-pills-mobile .nav-link.active,
.nav.nav-pills-mobile .nav-link:hover,
.nav.nav-pills-mobile .nav-link:focus {
	color: var(--primary);
	border-bottom-color: var(--primary)
}

.mobile-cats-nav .mobile-menu>li>a {
	text-transform: capitalize
}

.mobile-cats-menu li a {
	position: relative;
	display: block;
	padding: 1rem 4.5rem 1rem 2rem;
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08)
}

.mobile-cats-menu li a.mobile-cats-lead {
	font-weight: 500;
	color: #fff
}

.mobile-cats-menu li a:hover,
.mobile-cats-menu li a:focus {
	color: var(--primary);
	text-decoration: none;
	outline: none !important
}

@media screen and (max-width: 991px) {
	.header-top .header-center {
		display: none
	}

	.top-right-menu:not(.top-link-menu) ul {
		min-width: 141px
	}

	.top-right-menu>li {
		padding-top: .75rem;
		padding-bottom: .75rem;
        padding-left: 0
	}

	.top-right-menu .header-dropdown {
		padding: 0
	}

	.top-right-menu .header-dropdown ul {
		left: -100%;
		right: 100%
	}

	.top-right-menu .header-menu {
		padding: 0
	}
}
/* Merged into .header above */

.header .header-top .container,
.header .header-top .container-fluid,
.header .header-bottom .container,
.header .header-bottom .container-fluid {
	display: block
}

.header .header-bottom .container::after,
.header .header-bottom .container-fluid::after {
	content: '';
	position: absolute;
	top: 1.95rem;
	bottom: 1.95rem;
	right: 20%;
	width: .1rem;
	background-color: #fff
}

.header .header-dropdown {
	padding-top: .8rem;
	padding-bottom: .8rem
}

.header .header-dropdown+.header-dropdown {
	margin-left: 2rem
}

.header .header-dropdown>a,
.header .header-dropdown>span {
	padding-right: 1.8rem;
	text-transform: none;
    color:#333;
}

.header .header-dropdown>a:after,
.header .header-dropdown>span:after {
	font-size: 1rem;
	margin-top: -.6rem
}

.header .login {
	text-transform: none
}

.header .top-right-menu {
	text-transform: uppercase
}

.header .top-right-menu ul {
	display: block
}

.header .top-right-menu .menus {
	display: flex;
	align-items: center
}

.header .top-right-menu .menus>li+li {
	margin-left: 4rem
}

.header .top-right-menu li+li {
	margin-left: 0
}

.header .header-top {
	border-bottom: none
}

.header .cart-dropdown,
.header .cart-dropdown .dropdown-menu {
	margin-top: 0
}

.header .cart-dropdown:hover .dropdown-toggle,
.header .cart-dropdown.show .dropdown-toggle {
	color: #5FB2BD
}

.header .mobile-menu-toggler {
	margin-left: 0;
	color: #333
}

.header .header-search-extended {
	margin-right: 0;
	max-width: 100%;
	margin-top: 2.05rem;
	margin-bottom: 2.05rem
}

.header .header-search .header-search-wrapper {
	border-radius: .3rem;
	border-color: var(--primary)
}

.header .header-search .search-wrapper-wide {
	width: 100%
}

.header .header-search .btn {
	border-radius: 0 .3rem .3rem 0
}

.header .header-bottom {
	color: #fff;
	background-color: #333
}

.header .header-bottom .menu ul,
.header .header-bottom .menu .megamenu {
	margin-top: 0
}

.header .header-bottom .menu>li:not(:hover):not(.active):not(.show)>a {
	color: #fff
}

.header .header-bottom .menu>li>a {
	padding-left: 0;
	padding-top: 1rem;
	padding-bottom: .6rem
}

.header .header-bottom .menu>li>a::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: -.5rem;
	width: 80%;
	bottom: 0;
	height: .2rem;
	background-color: #5FB2BD;
	transform-origin: right center;
	transform: scale(0, 1);
	transition: transform .3s ease
}

.header .header-bottom .menu>li:hover>a::before,
.header .header-bottom .menu>li:focus>a::before,
.header .header-bottom .menu>li.active>a::before {
	transform-origin: left center;
	transform: scale(1, 1)
}

.header .main-nav {
	margin-left: 0
}

.header .menu>li>a:before {
	display: none
}

.header .dropdown.category-dropdown .dropdown-toggle {
	min-width: 0;
	width: 100%;
	position: relative;
	color: #333 !important;
	background-color: var(--primary);
	font-size: 1.6rem;
	text-transform: capitalize;
	padding: 1.45rem 1rem 1.45rem 5rem
}

.header .dropdown.category-dropdown .dropdown-toggle:before {
	display: none
}

.header .dropdown.category-dropdown .dropdown-menu {
	box-shadow: none
}

.header .menu-vertical ul li>a {
	padding-top: .5rem;
	padding-bottom: .5rem
}

.header .menu-vertical>li:not(:last-child)>a {
	border-bottom: none
}

.header .menu-vertical>li>a {
	font-weight: 400;
}

.header .menu-vertical>li:not(:hover):not(.show):not(.active)>a {
	color: #333
}

.header .menu-vertical .megamenu:not(.megamenu-sm):not(.megamenu-md) {
	min-height: 0
}

.header .menu-vertical i {
	font-size: 1.4rem;
	display: inline-flex;
	justify-content: center;
	margin-right: 1rem
}

.header .menu-vertical .sf-with-ul::after {
	right: 1.3rem
}

.header .menu-brands.menu-col {
	padding-bottom: 2rem
}

.header .header-bottom .header-left .category-dropdown {
	width: 100%
}

.header .header-bottom .header-center {
	display: flex;
	justify-content: center
}

.header .header-bottom .header-center .main-nav {
	margin-left: 0
}

.header .header-bottom .header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 5rem
}

.header .header-bottom .header-right p {
	font-weight: 500;
	letter-spacing: -.01em;
	color: #fff
}

.header .header-bottom .header-right i {
	font-size: 2rem;
	color: #5FB2BD
}

.header .header-dropdown-link {
	display: flex;
	align-items: flex-end
}

.header .wishlist-link {
	position: relative;
	flex-direction: column;
	font-size: 3rem;
	color: #5FB2BD
}

.header .wishlist-link .wishlist-count {
	right: 0;
	top: -.5rem
}

.header .cart-dropdown {
	font-size: 3.2rem;
	margin-left: 2.4rem;
	align-items: flex-end
}


.header .cart-dropdown [class*='count'],
.header .wishlist-link [class*='count'] {
	min-width: 1.6rem;
	height: 1.6rem;
	position: absolute
}

.header .cart-dropdown .dropdown-toggle,
.header .wishlist-link .dropdown-toggle {
	position: relative;
	flex-direction: column
}

.header .select-custom::before {
	right: 0;
	left: unset;
	background-color: #dadada
}

@media screen and (max-width: 991px) {
	.header .header-search-visible .header-search-wrapper:before {
		border-bottom-color: #dadada
	}

	.header .header-top-right {
		display: flex;
		align-items: stretch;
		justify-content: flex-end
	}
}

@media screen and (min-width: 1200px) {
	.header .main-nav {
		margin-left: 2rem
	}
}

@media screen and (min-width: 1600px) {
	.header .container-fluid .megamenu-container {
		position: static
	}

	.header .main-nav {
		margin-left: 3rem
	}

	.header .header-bottom .menu>li+li {
		margin-left: 3rem
	}
}

@media screen and (max-width: 1500px) {
	.header .header-bottom .col-lg-9 {
		position: static
	}

	.header .menu .megamenu {
		left: 3rem;
		right: 3rem
	}
}

@media screen and (max-width: 1199px) {
	.header .menu .megamenu {
		left: 1.5rem;
		right: 1.5rem
	}
}

@media screen and (max-width: 992px) {
	.header .top-right-menu .menus {
		display: block
	}

    .wishlist-link,
    .cart-dropdown > a {
        position: relative;
        display: inline-block;
    }

    .wishlist-count,
    .cart-count {
        position: absolute;
        top: -6px;
        right: -8px;
        background: red;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 50%;
        line-height: 1;
    }

    .account-dropdown{
        margin-left: 12px;
    }
}

@media screen and (max-width: 1700px) {
	.header .header-bottom .container::after,
	.header .header-bottom .container-fluid::after {
		right: 22%
	}
}

@media screen and (max-width: 1200px) {
	.header .header-bottom .header-right {
		padding-right: 1rem
	}

	.header .header-bottom .menu>li>a {
		font-size: 1.3rem
	}

	.header .header-bottom .menu>li+li {
		margin-left: 0
	}
}

/*--------------------------------------------------------------
03. => Slider
--------------------------------------------------------------*/
.intro-slider-container:before,
.intro-slider .slide-image:before {
    padding-top: 42.3728813559%;
}
@media screen and (max-width: 479px) {
    .intro-slider-container:before,
    .intro-slider .slide-image:before {
        padding-top: 83.3333333333%;
    }
}
.intro-slide .intro-content {
    padding-bottom: 1rem;
}

.intro-slider.owl-nav-inside .owl-dots {
    right: auto;
    left: 14px;
    bottom: 20px;
}

.intro-content {
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%)
}

.intro-content .btn {
    color: #333;
    border-radius: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0;
}
.intro-subtitle {
    color: #777;
    font-weight: 300;
    margin-bottom: 0.8rem;
}
.intro-title {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}
.intro-title span {
    font-weight: 300;
}
.intro-text {
    color: #333;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
    margin-bottom: 1.6rem;
}
.intro-price {
    color: #333333;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-top: -0.2rem;
    margin-bottom: 1.7rem;
}
.intro-price sup {
    top: -.2em;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
}

/*--------------------------------------------------------------
04. => Banner
--------------------------------------------------------------*/
.banner {
    overflow: hidden;
    background-color: #f1f1f1;
}
.banner,
.banner img {
    border-radius: 0.2rem;
}
.banner-content-stretch .banner-content {
    top: 10rem;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner-content-stretch .banner-content .banner-link {
    background-color: rgba(153, 153, 153, 0.2);
    color: #333;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.banner-content-stretch .banner-content .banner-link:hover,
.banner-content-stretch .banner-content .banner-link:focus {
    background-color: #5fb2bd;
}
.banner-content-stretch a::after {
    display: none;
}
.banner-content {
	display: inline-block;
	position: absolute;
	padding-top: .4rem;
	left: 2rem;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%)
}

.banner-content .price {
	padding-right: 1.3rem;
	line-height: 2.4em;
}

.banner-content .price sup {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	top: -0.4em;
}

.banner-content .price span {
	margin-left: 0.3rem;
	font-size: 2.4rem;
	letter-spacing: -0.01em;
}

.banner-content .price strong {
	font-weight: 600;
}

.banner-content a:hover,
.banner-content a:focus {
	text-decoration: underline
}

.widget-banner .banner-content {
	left: 3rem;
}

.widget-banner .banner-content-right {
	right: 3rem;
}

.widget-banner .banner-content-top {
	top: 3.5rem;
	transform: translateY(0);
}

.banner-title {
	color: #333333;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
	letter-spacing: -.03em
}

.banner-title span {
	font-weight: 300;
}

.banner-title a {
	color: inherit
}

.banner-title a:hover,
.banner-title a:focus {
	text-decoration: none
}

.banner-title.text-white a {
	color: #fff
}

.banner-link {
	width: auto;
	min-width: 150px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: -0.01em;
	border-radius: 0.3rem;
	padding: 0.7rem 1rem 0.6rem;
	background-color: rgba(255, 255, 255, 0.2);
	transition: all 0.35s;
	display: inline-block
}

.banner-link i {
	display: inline-block;
	width: 0;
	line-height: 1;
	overflow: hidden;
	margin-left: 0;
	margin-bottom: -1px;
	transition: width 0.35s, margin 0.35s, color 0s;
}

.banner-link.banner-link-dark:not(:hover):not(:focus) {
	background-color: rgba(51, 51, 51, 0.2);
}

.banner-link:hover,
.banner-link:focus {
	color: #333;
	text-decoration: none !important;
	background-color: #5fb2bd;
}

.banner-link:hover i,
.banner-link:focus i {
	width: auto;
	margin-left: 0.7rem;
}

.banner-text a {
	color: inherit;
}

.banner-text a:hover,
.banner-text a:focus {
	text-decoration: none;
}

.banners-group {
	margin-bottom: 1.9rem
}

.banner>a {
	position: relative;
	display: block;
	outline: none !important
}

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

.banner.banner-menu img {
	height: 100%
}


@media screen and (min-width: 768px) {
	.banner-content {
		left: 3rem
	}

}

@media screen and (min-width: 992px) {
	.banner-content {
		left: 4rem
	}

}


.btn.banner-link {
	font-size: 1.4rem;
	line-height: 1;
	padding: .8rem 1.4rem;
	min-width: 0;
	text-transform: uppercase;
	text-decoration: none !important
}

.btn.banner-link i {
	margin-right: 0;
	margin-left: 0
}

.btn.banner-link i:first-child {
	margin-right: 0
}

.btn.banner-link i:last-child {
	margin-left: .9rem
}

.banner-overlay>a {
	position: relative
}

.banner-overlay>a:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(51, 51, 51, 0.25);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease
}

.banner-overlay.banner-overlay-light>a:after {
	background-color: rgba(255, 255, 255, 0.3)
}

.banner-overlay:hover>a:after,
.banner-overlay:focus>a:after {
	visibility: visible;
	opacity: 1
}

@media screen and (min-width: 1199px) {
	.home-top-Right-banner a img {
		height: 480px;
	}
}
@media screen and (max-width: 1550px) {
	.home-top-Right-banner a img {
		height: 400px;
	}
}
@media screen and (max-width: 1300px) {
	.home-top-Right-banner a img {
		height: 380px;
	}
}

/*--------------------------------------------------------------
044. => brand
--------------------------------------------------------------*/
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    overflow: hidden;
    margin: 5px auto;
}

.brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Center brands carousel items */
.brands-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brands-carousel .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brands-carousel .owl-item .brand {
    margin-left: auto;
    margin-right: auto;
}


.brand:focus {
	outline: none !important
}

/*--------------------------------------------------------------
04. => Category
--------------------------------------------------------------*/
.category-title {
    font-size: 3rem !important;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    margin:80px 0;
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: 60px;
    height: 3px;
    background-color: #5FB2BD;
    border-radius: 2px;
}


.category-circle {
    width: 150px;
    height:150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category-item:hover {
    scale: 1;
    transform: translateY(-15px);
    transition: all 0.3s ease;
}

.category-circle img {

    padding: 20px;
    object-fit: cover;
}

.category-name{
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

@media screen and (max-width: 767px) {
    .category-title {
        font-size: 2.4rem !important;
        margin-bottom: 2rem;
    }
    .category-circle {
        width: 140px;
        height: 140px;
    }
    .category-name{
        font-size: 1.2rem;
    }

}

/*--------------------------------------------------------------
045. => brand
--------------------------------------------------------------*/

.trending-products {
    padding: 20px 50px;
}
.trending-products .owl-simple .owl-nav .owl-prev {
    left: -40px;
}
.trending-products .owl-simple .owl-nav .owl-next {
    right: -40px;
}
.trending-products .owl-dots {
    margin-top: 0.5rem;
}
.trending-products .product-media {
    padding: 2rem 2rem;
    background-color: #fff;
}
.trending-products .product-body {
    padding-top: 0;
    padding-bottom: 2.8rem;
}

/*--------------------------------------------------------------
10. => login/Register Modal
--------------------------------------------------------------*/
#loginForm input,
#registerForm input {
    height: 50px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
11. => wishlist / Cart
--------------------------------------------------------------*/
.table-wishlist td,
.table-cart td{
    vertical-align: middle;
}

.table-wishlist .product,
.table-cart .product {
    background-color: #f0f2f5 !important;
}

/*--------------------------------------------------------------
12. => chat
--------------------------------------------------------------*/
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-button {
    background-color: var(--primary);
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(95, 178, 189, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10000;
    flex-shrink: 0;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(95, 178, 189, 0.5);
    background-color: var(--secondary);
}

.chat-button:focus {
    outline: 3px solid rgba(95, 178, 189, 0.3);
    outline-offset: 2px;
}

.chat-button.active {
    transform: rotate(180deg);
}

.chat-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
    visibility: hidden;
    width: 56px;
}

.chat-options.show {
    pointer-events: auto;
    visibility: visible;
}

.chat-option {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    flex-shrink: 0;
}

.chat-option:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.chat-option:focus {
    outline: 3px solid rgba(95, 178, 189, 0.3);
    outline-offset: 2px;
}

.chat-option.whatsapp {
    background-color: #ffffff;
}

.chat-option.whatsapp i {
    color: #25D366;
    font-size: 24px;
}

.chat-option.whatsapp:hover {
    background-color: #25D366;
}

.chat-option.whatsapp:hover i {
    color: #ffffff;
}

.chat-option.messenger {
    background-color: #ffffff;
}

.chat-option.messenger i {
    color: #0084FF;
    font-size: 24px;
}

.chat-option.messenger:hover {
    background-color: #0084FF;
}

.chat-option.messenger:hover i {
    color: #ffffff;
}

.chat-options.show .chat-option {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-options.show .chat-option:nth-child(1) {
    transition-delay: 0.1s;
}

.chat-options.show .chat-option:nth-child(2) {
    transition-delay: 0.15s;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .chat-options {
        bottom: 65px;
        width: 50px;
    }

    .chat-option {
        width: 44px;
        height: 44px;
    }

    .chat-option.whatsapp i,
    .chat-option.messenger i {
        font-size: 20px;
    }
}

/* Ensure chat widget doesn't overlap with scroll-top button */
@media (min-width: 768px) {
    .chat-widget {
        bottom: 20px;
    }
}


/*--------------------------------------------------------------
14. => Contact us
--------------------------------------------------------------*/
/* Legacy contact form styles removed - contact form now uses universal modern form styles */

.page-header {
	padding: 4.6rem 0 5rem;
	background-color: #ebebeb;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat
}

.page-header h1 {
	color: #333;
	font: normal 400 3.2rem/1.1 "Poppins", sans-serif;
	letter-spacing: -.025em;
	margin-bottom: 0
}

.page-header h1 span {
	display: block;
	color: var(--primary);
	font-size: 1.6rem;
	margin-top: .8rem
}

.page-header.page-header-big {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	margin-bottom: 5rem
}

.page-header.page-header-big h1 span {
	font-size: 1.6rem;
	margin-top: .4rem;
	letter-spacing: 0
}

@media screen and (min-width: 768px) {
	.page-header h1 {
		font-size: 3.6rem
	}

	.page-header h1 span {
		font-size: 1.8rem
	}

	.page-header.page-header-big {
		min-height: 350px
	}
}

@media screen and (min-width: 992px) {
	.page-header h1 {
		font-size: 4rem
	}

	.page-header h1 span {
		font-size: 2rem
	}

	.page-header.page-header-big {
		min-height: 450px
	}
}

.title {
	font-size: 2.2rem;
	letter-spacing: -.03em
}


.heading {
	margin-bottom: 1.6rem
}

.heading.heading-flex {
	display: flex;
	flex-direction: column;
	text-align: center
}

.heading .title {
	margin-bottom: 0
}

.heading.heading-center {
	text-align: center
}

.heading.heading-center .title {
	margin-bottom: 1.5rem
}


.heading-right {
	margin-top: .5rem
}

@media screen and (min-width: 768px) {
	.title {
		font-size: 2.4rem
	}

}

@media screen and (min-width: 992px) {
	.heading.heading-flex {
		align-items: center;
		flex-direction: row;
		text-align: left
	}

	.heading-right {
		margin-top: 0;
		margin-left: auto
	}
}

.icon-box {
	color: #777;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 2rem
}

.icon-box-title {
	color: #333333;
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: .9rem
}

.icon-box-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 4rem;
	line-height: 1;
	margin-bottom: 2rem
}

.icon-box-content p:last-child {
	margin-bottom: 0
}


.icon-boxes-container {
	background-color: #f7f7f7;
	padding-top: 2.8rem;
	padding-bottom: 2.8rem;
	margin-bottom: 0
}

.icon-boxes-container.bg-dark .icon-box-icon {
	color: #666
}

.icon-boxes-container.bg-dark .icon-box-title {
	color: #fff
}

.icon-box-side {
	display: flex;
	align-items: center;
	width: 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 0
}

.icon-box-side p {
	margin-bottom: 0
}

.icon-box-side .icon-box-icon {
	display: inline-block;
	line-height: 0;
	min-width: 7rem;
	text-align: center;
	margin-bottom: 0
}

.icon-box-side .icon-box-title {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	margin-top: .2rem;
	margin-bottom: 0
}

@media screen and (min-width: 768px) {
	.icon-box {
		margin-bottom: 4rem
	}

	.icon-box-side {
		margin-bottom: 0
	}
}


/* ========================================
   COMPONENTS: CARDS & ACCORDIONS
   ======================================== */

.accordion {
	margin-bottom: 3rem
}

.card {
	border-radius: 0;
	margin-bottom: 0;
	border: none;
	border-top: .1rem solid #ebebeb
}

.card:last-child {
	border-bottom: .1rem solid #ebebeb
}

.card-header {
	position: relative;
	padding: 0;
	border: none;
	font-weight: 700;
	line-height: 1.5;
	background-color: transparent;
	margin: 0
}

.card-header::after {
	display: block;
	clear: both;
	content: ''
}

.card-title {
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 0
}

.card-title a {
	display: block;
	padding: 1.7rem 4rem 1.7rem 1.2rem;
	position: relative;
	color: var(--primary);
	border: none;
	background-color: transparent;
	outline: none !important
}

.card-title a i {
	min-width: 17px;
	margin-right: 2.4rem
}

.card-title a:before {
	content: '\e802';
	display: inline-block;
	position: absolute;
	right: 1.2rem;
	top: 50%;
	color: var(--primary);
	font-family: "molla";
	line-height: 1;
	transform: translateY(-50%);
	transition: all 0.3s
}

.card-title a.collapsed {
	color: #333
}

.card-title a.collapsed:hover,
.card-title a.collapsed:focus {
	color: var(--primary)
}

.card-title a.collapsed:before {
	content: '\f110';
	color: #8c8c8c;
	transform: translateY(-50%)
}

.card-body {
	padding: .4rem 4rem 1.8rem 1.2rem;
	border: none;
	border-radius: 0
}


.accordion-rounded .card:first-child {
	border-radius: .3rem .3rem 0 0
}

.accordion-rounded .card:last-child {
	border-radius: 0 0 .3rem .3rem
}

.card.card-box .card-title a {
	padding-left: 2rem
}

.card.card-box .card-title a:before {
	right: 2rem
}

.card.card-box .card-title a i {
	margin-right: 1.4rem
}

.card.card-box .card-body {
	padding: 1rem 2rem 2rem
}

.card.card-sm .card-title {
	font-size: 1.6rem;
	letter-spacing: -.01em
}

.card.card-sm .card-title a {
	padding-top: 2.1rem;
	padding-bottom: 2.1rem
}

.card.card-sm .card-title a:before {
	right: 2rem
}

.card.card-sm .card-body {
	padding: 1rem 2rem 2rem
}

.card.bg-light,
.card.bg-white {
	background-color: #fff !important;
	border: .1rem solid #ebebeb
}

.card.bg-light .card-title a,
.card.bg-white .card-title a {
	background-color: #fff
}

.card.bg-light .card-title a.collapsed {
	background-color: #fafafa
}

@media screen and (min-width: 992px) {
	.card-title {
		font-size: 2rem
	}
}

.nav-link:focus {
	outline: none !important
}

.nav.nav-tabs {
	border-bottom-right-radius: .3rem;
	border: .1rem solid #d7d7d7;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0
}

.nav.nav-tabs .nav-link {
	color: #777;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.025em;
	padding: .85rem 2.2rem;
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem;
	text-align: center;
	transition: all .35s ease
}

.nav.nav-tabs .nav-link:hover,
.nav.nav-tabs .nav-link:focus {
	color: var(--primary);
	border-color: transparent
}

.nav.nav-tabs .nav-item+.nav-item {
	margin-left: .1rem
}

.nav.nav-tabs .nav-item.show .nav-link,
.nav.nav-tabs .nav-item .nav-link.active {
	color: var(--primary);
	border-color: #d7d7d7;
	border-bottom-color: transparent
}


.nav.nav-tabs.justify-content-center {
	border-bottom-left-radius: .3rem;
	border-bottom-right-radius: .3rem
}


.tab-pane {
	padding: 1.4rem 2.2rem
}

.tab-pane p:last-child {
	margin-bottom: 0
}

.nav.nav-pills .nav-link {
	color: #777;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	padding: .45rem 1rem;
	border-radius: 0;
	text-align: center;
	text-transform: uppercase;
	border: none;
	border-bottom: .1rem solid transparent;
	background-color: transparent;
	transition: all .35s ease
}

.nav.nav-pills .nav-link:hover,
.nav.nav-pills .nav-link:focus {
	color: var(--primary)
}

.nav.nav-pills .nav-link:focus {
	outline: none !important
}

.nav.nav-pills .nav-item+.nav-item {
	margin-left: 1rem
}

.nav.nav-pills .nav-item.show .nav-link,
.nav.nav-pills .nav-item .nav-link.active {
	color: var(--primary);
	border-color: #d7d7d7;
	border-bottom-color: var(--primary)
}

.nav-pills+.tab-content .tab-pane {
	padding: 1.4rem 0
}

.nav-pills+.tab-content .tab-pane p:last-child {
	margin-bottom: 0
}

.tab-content.tab-content-carousel>.tab-pane {
	display: block;
	visibility: hidden;
	height: 0 !important
}

.tab-content.tab-content-carousel>.tab-pane:not(.active) {
	overflow: hidden !important
}

.tab-content.tab-content-carousel>.active {
	height: auto !important;
	visibility: visible
}

@media screen and (min-width: 992px) {
	.nav-pills+.tab-content .tab-pane {
		padding-left: 1rem;
		padding-right: 1rem
	}
}

/*--------------------------------------------------------------
17. => btn
--------------------------------------------------------------*/

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center ;
	padding: .85rem 1.5rem;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	min-width: 150px;
	border-radius: 0;
	white-space: normal;
	transition: all 0.3s
}

.btn span {
	line-height: 1
}

.btn i:first-child {
	margin-right: 1rem
}

.btn i:last-child {
	margin-left: 1rem
}

.btn:focus {
	box-shadow: none
}

.btn:focus,
.btn:active {
	outline: none !important
}

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

.btn:active {
	outline: none
}

.btn-primary {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--secondary);
	box-shadow: none;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--secondary);
	border-color: var(--primary);
	box-shadow: none
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary)
}



/* ========================================
   PRODUCTS
   ======================================== */

.product {
	position: relative;
	margin-bottom: 1rem;
	transition: box-shadow .35s ease;
	background-color: #fff;
}

.owl-carousel .product {
	margin-bottom: 0 !important
}

.product:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05)
}

.product-media {
	position: relative;
	display: block;
	background-color: #d7d7d7;
	margin-bottom: 0;
	overflow: hidden
}

.product-media>a {
	display: block
}

.product-image {
	display: block;
	width: 100%;
	height: auto
}

.product-image-hover {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: auto;
	transition: all .4s ease
}

.product:hover .product-image-hover {
	opacity: 1
}

.product-countdown {
	position: absolute;
	left: .8rem;
	right: .8rem;
	bottom: 1.3rem;
	z-index: 6;
	transition: all .4s ease;
	visibility: visible;
	opacity: 1
}

.product-countdown .countdown-show4 .countdown-section {
	width: calc(25% - 10px)
}

.product-countdown .countdown-section {
	font-size: 1rem;
	line-height: 1;
	padding: 1.4rem 0 1.2rem;
	margin-left: .5rem;
	margin-right: .5rem;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: .4rem
}

.product-countdown .countdown-section:not(:last-child):after {
	color: #fff;
	content: ':';
	display: inline-block;
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	position: absolute;
	left: 100%;
	margin-left: 3px;
	margin-top: -1px;
	top: 50%;
	transform: translateY(-50%)
}

.product-countdown .countdown-period {
	display: block;
	font-weight: 400;
	color: #333333;
	text-transform: lowercase;
	width: 100%;
	padding-left: .2rem;
	padding-right: .2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.product-countdown .countdown-amount {
	display: inline-block;
	color: #ef837b;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: -.03em;
	margin-bottom: .6rem
}

.product-countdown.countdown-primary .countdown-amount {
	color: var(--primary)
}

.product-countdown-container {
	position: absolute;
	left: 1.4rem;
	right: 1.4rem;
	bottom: 1.3rem;
	z-index: 6;
	padding-top: .9rem;
	padding-bottom: .9rem;
	border-radius: .3rem;
	background-color: rgba(255, 255, 255, 0.95);
	letter-spacing: -.01em;
	transition: all .4s ease;
	visibility: visible;
	opacity: 1
}

.product-countdown-container .product-contdown-title {
	display: block;
	color: #333;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: .3rem;
	text-align: center
}

.product-countdown-container .product-countdown {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 6;
	line-height: 1;
	opacity: 1
}

.product-countdown-container .product-countdown .countdown-amount {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase
}

.product:hover .product-countdown,
.product:hover .product-countdown-container {
	opacity: 0;
	visibility: hidden
}

.product-body {
	position: relative;
	padding: 1.6rem 2rem;
	transition: all .35s ease;
	background-color: #fff
}

.product-body.product-action-inner {
	padding-right: 4rem
}

.product-title {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: #333333;
	margin-bottom: .2rem
}

.product-title a {
	color: inherit
}

.product-title a:hover,
.product-title a:focus {
	color: var(--primary)
}

.product-cat {
	color: #777;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: -.01em;
	margin-bottom: .3rem
}

.product-cat a {
	color: inherit
}

.product-cat a:hover,
.product-cat a:focus {
	color: #666
}

.product-price {
	display: flex;
	align-items: center;
	flex-flow: wrap;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.25;
	color: var(--primary);
	margin-bottom: 1.3rem
}

.new-price {
	color: var(--primary);
	margin-right: .8rem
}

.old-price {
	color: #cccccc;
	text-decoration: line-through
}

.out-price {
	color: #cccccc
}

.out-text {
	display: block;
	width: 100%;
	font-size: 1.3rem;
	margin-top: .2rem
}
.product-discount-label{
    position: absolute;
	z-index: 1;
	bottom:0;
	right: 0;
    padding: 5px;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.6rem;
	letter-spacing: -.01em;
	padding: .5rem .9rem;
	min-width: 45px;
	text-align: center;
	color: #fff;
	background-color: #ef837b
}
.product-label {
	position: absolute;
	z-index: 1;
	top: 1rem;
	left: 1rem;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.6rem;
	letter-spacing: -.01em;
	padding: .5rem .9rem;
	min-width: 45px;
	text-align: center;
	color: #333333;
	background-color: #fff
}

.product-label+.product-label {
	top: 5rem
}

.product-label.label-sale {
	color: #fff;
	background-color: #ef837b
}

.product-label.label-new {
	color: #fff;
	background-color: #a6c76c
}

.product-label.label-top {
	color: #fff;
	background-color: #7dd2ea
}

.product-label.label-out {
	color: #fff;
	background-color: #ccc
}

.product-label.label-primary {
	color: #fff;
	background-color: var(--primary)
}

.product-label.label-secondary {
	color: #fff;
	background-color: #a6c76c
}

.product-label-text {
	color: var(--primary);
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: -.01em;
	margin-top: -.1rem
}

.label-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.6rem;
	height: 4.6rem;
	min-width: 0;
	border-radius: 50%;
	line-height: 1
}

.label-circle+.label-circle {
	top: 5.6rem
}

.label-circle.label-out {
	font-size: 1.1rem
}

.ratings-container {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	margin-bottom: 1.7rem;
	line-height: 1;
	white-space: nowrap
}

.ratings {
	position: relative;
	color: #cccccc
}

.ratings,
.ratings-val {
	display: inline-block;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1;
	font-family: "molla";
    color: #5fb2bd;
}

.ratings:before,
.ratings-val:before {
	content: "\f318""\f318""\f318""\f318""\f318"
}

.ratings-val {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	color: #5FB2BD
}

.ratings-primary .ratings-val {
	color: var(--primary)
}

.ratings-text {
	color: #cccccc;
	letter-spacing: -.01em;
	margin-left: .8rem
}

.ratings-text a {
	color: inherit
}

/* Bootstrap Icons Star Rating Display */
.star-rating-display {
	display: inline-flex;
	gap: 3px;
	align-items: center;
}

.star-rating-display i {
	font-size: 1.1rem;
}

.star-rating-display .bi-star-fill {
	color: #5fb2bd;
}

.star-rating-display .bi-star {
	color: #ddd;
}

.ratings-text a:hover,
.ratings-text a:focus {
	color: var(--primary)
}

.product-action {
    width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
    margin: 0 auto;
    justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 10;
	transition: all .35s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%)
}

.product:hover .product-action,
.product:focus .product-action {
	visibility: visible;
	opacity: 1;
	transform: translateY(0)
}

.action-icon-top {
	padding-top: .8rem;
	padding-bottom: .8rem
}

.action-icon-top .btn-product {
	padding-top: 1rem;
	padding-bottom: 1rem;
	flex-direction: column
}

.action-icon-top .btn-product span {
	margin-top: .9rem
}

.action-icon-top:before {
	margin-right: 0
}

.btn-product {
	color: var(--white);
    background-color: var(--primary);
    border: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	line-height: 1;
	transition: all .35s ease;
	padding: 1rem 0;
	flex-grow: 1;
	flex-basis: 0
}

.btn-product i{
    padding: 0 10px;
}

.btn-product+.btn-product {
	border-left: .1rem dotted #e5e5e5
}

.btn-product:before {
	font-family: "molla";
	margin-right: .9rem
}

.btn-product span {
	color: var(--white);
	font-weight: 400;
	font-size: 1.3rem;
	letter-spacing: -.01em;
	transition: all .35s ease
}

.btn-product:hover,
.btn-product:focus {
    background: none !important;
    border: 1px solid var(--primary);
	color: var(--primary);
}

.btn-product:hover span,
.btn-product:focus span {
	color: var(--primary);
 	box-shadow: none
}

.product-action-dark {
	background-color: #333333
}

.product-action-dark .btn-product:not(:hover):not(:focus) span {
	color: #fff
}

.product-action-dark .btn-product+.btn-product {
	border-left-color: #4b4b4b
}

.product-action-vertical {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 2rem;
	top: 2rem;
	background-color: transparent;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	transition: all .35s ease;
	transform: translateX(-15px)
}

.product:hover .product-action-vertical {
	visibility: visible;
	opacity: 1;
	transform: translateX(0)
}

.btn-product-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	font-size: 1.4rem;
	line-height: 1;
	transition: all .35s ease;
	padding: 0;
	border-radius: 50%;
	color: var(--primary);
	background-color: #fff
}

.btn-product-icon:before {
	font-family: "molla"
}

.btn-product-icon span {
	display: none
}

.btn-product-icon:hover,
.btn-product-icon:focus {
	color: #fff;
	background-color: var(--primary)
}

.btn-product-icon+.btn-product-icon {
	margin-top: 1rem
}

.btn-wishlist {
	font-size: 1.6rem;
    color: var(--white);
    background-color: var(--primary);
	border: none !important;
	box-shadow: none !important;
}

.btn-wishlist:hover,
.btn-wishlist:focus {
    background-color: var(--white);
    border: 1px solid var(--primary) !important;
    color: var(--primary);
}

.btn-wishlist:before {
	content: '\f234'
}

.product-body .btn-wishlist {
	position: absolute;
	top: 3.4rem;
	right: 2rem;
	color: #ccc;
	padding: 0;
	margin: 0;
	background: none;
}

.product-body .btn-wishlist:before {
	margin-right: 0
}

.product-body .btn-wishlist span {
	display: none
}

.product-body .btn-wishlist:hover,
.product-body .btn-wishlist:focus {
	color: var(--primary);
	background: none
}

.product-size {
	display: flex;
	align-items: center;
	padding-top: .2rem;
	margin-bottom: 1.6rem
}

.product-size a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 2.1rem;
	height: 2.1rem;
	font-weight: 400;
	font-size: 1.2rem;
	padding-top: .1rem;
	line-height: 1;
	color: #666666;
	background-color: #f7f8fa;
	border-radius: .2rem;
	transition: all .35s ease;
	margin-right: .5rem
}

.product-size a:last-child {
	margin-right: 0
}

.product-size a:hover,
.product-size a:focus,
.product-size a.active {
	color: #fff;
	background-color: #333
}

.product-size a.disabled {
	color: #cccccc;
	pointer-events: none
}

.product-nav {
	display: flex;
	align-items: center
}

.product-nav-dots {
	margin-bottom: .5rem
}

.product-nav-dots a,
.product-nav-dots span {
	display: block;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	border: .2rem solid #fff;
	margin-right: .5rem;
	transition: box-shadow .35s ease;
	background-repeat: no-repeat;
	background-position: center center;
    box-shadow: 0 0 0 0.1rem #cccccc;
}

.product-nav-dots a.active,
.product-nav-dots a:hover,
.product-nav-dots a:focus,
.product-nav-dots span.active,
.product-nav-dots span:hover,
.product-nav-dots span:focus {
	box-shadow: 0 0 0 0.1rem var(--primary);
}

.product-nav-dots a:last-child,
.product-nav-dots span:last-child {
	margin-right: 0
}

.product-nav-thumbs {
	padding-top: .2rem;
	margin-bottom: 1.6rem
}

.product-nav-thumbs a,
.product-nav-thumbs span {
	display: flex;
	align-items: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: .2rem;
	border: .2rem solid #fff;
	margin-right: .4rem;
	transition: box-shadow .35s ease
}

.product-nav-thumbs a.active,
.product-nav-thumbs a:hover,
.product-nav-thumbs a:focus,
.product-nav-thumbs span.active,
.product-nav-thumbs span:hover,
.product-nav-thumbs span:focus {
	box-shadow: 0 0 0 0.1rem #cccccc
}

.product-nav-thumbs a:last-child,
.product-nav-thumbs span:last-child {
	margin-right: 0
}

.product-nav-thumbs img {
	border-radius: .2rem
}

.product-disabled {
	pointer-events: none
}

.product-disabled .btn-product,
.product-disabled .btn-product-icon {
	pointer-events: none;
	color: #fff;
	background-color: #ccc !important
}

.product.text-center .product-price,
.product.text-center .ratings-container,
.product.text-center .product-nav,
.product.text-center .product-size {
	justify-content: center
}

.product.product-list .product-list-action {
	padding: 3.4rem 0 0
}

.product.product-list .product-content {
	color: #777;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.43;
	padding-top: 1rem;
	margin-bottom: 3.4rem
}

.product.product-list .product-content p {
	margin-bottom: 0
}

.product.product-list .product-action {
	position: static;
	left: auto;
	right: auto;
	bottom: auto;
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	margin-bottom: 1.2rem
}

.product.product-list .ratings-container {
	margin-bottom: 2.6rem
}

/* .product.product-list .btn-product removed - use .btn-global instead */

.product.product-list .product-nav {
	margin-bottom: 0
}



@media screen and (max-width: 991px) {
	.sticky-wrapper {
		z-index: 1
	}
}






/*--------------------------------------------------------------
05. => Social icons
--------------------------------------------------------------*/
.social-icons {
	display: flex;
	align-items: center;
	flex-flow: row wrap
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	width: 4rem;
	height: 4rem;
	color: #777;
	margin: 0;
	background-color: transparent;
	border: .1rem solid #e1e2e6;
	border-radius: 50%;
	text-decoration: none;
	opacity: 1;
	transition: all .35s ease
}

.social-icon:not(:last-child) {
	margin-right: 1rem
}

.social-icon:hover,
.social-icon:focus {
	color: var(--primary);
	border-color: var(--primary);
	background-color: transparent
}

.social-icon.social-facebook {
	color: #8f79ed
}

.social-icon.social-twitter {
	color: #79c8ed
}

.social-icon.social-instagram {
	color: #dd6d9a
}

.social-icon.social-youtube {
	color: #e66262
}

.social-icon.social-pinterest {
	color: #e66262
}

.social-icon.social-linkedin {
	color: #3399cc
}

.social-icons-color,
.social-icons-simple {
	line-height: 1
}

.social-icons-color .social-icon,
.social-icons-simple .social-icon {
	width: auto;
	height: auto;
	border: none
}

.social-icons-color .social-icon:not(:last-child),
.social-icons-simple .social-icon:not(:last-child) {
	margin-right: 2rem
}

.social-label {
	margin-bottom: 0;
	margin-right: 2rem
}

.social-icons-sm .social-icon {
	font-size: 1.2rem;
	width: 3rem;
	height: 3rem
}

.social-icons-sm .social-icon:not(:last-child) {
	margin-right: .5rem
}

.social-icons-sm .social-label {
	margin-right: 1rem
}

/* Social Login Buttons (Login/Register Pages) */
.social-login-buttons {
	width: 100%;
}

.btn-social-login {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	padding: 1.2rem 1.5rem;
    margin: 5px 0;
	background-color: #fff;
	border: 2px solid var(--primary, #5fb2bd);
	border-radius: 30px;
	color: var(--primary, #5fb2bd);
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.btn-social-login .social-logo {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.btn-social-login .social-text {
	flex: 0 0 auto;
	text-align: center;
	color: var(--primary, #5fb2bd);
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0;
	white-space: nowrap;
}

.btn-social-login:hover,
.btn-social-login:focus {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(95, 178, 189, 0.2);
}

.btn-social-login:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(95, 178, 189, 0.15);
}

/* Google Button - Keep Google logo colors */
.btn-social-google .social-logo {
	width: 30px;
	height: 30px;
}

/* Facebook Button - Keep Facebook logo color */
.btn-social-facebook .social-logo {
	width: 30px;
	height: 30px;
}

/* Responsive adjustments */
@media (max-width: 575px) {
	.btn-social-login {
		padding: 1rem 1.2rem;
		font-size: 1.4rem;
	}

	.btn-social-login .social-logo {
		width: 18px;
		height: 18px;
	}
}


/*--------------------------------------------------------------
06. => Testimonial
--------------------------------------------------------------*/

.form-group {
	margin-bottom: 2rem
}

.form-group .form-control,
.form-group .select-custom {
	margin-bottom: 0
}

.form-control {
	height: 40px;
	padding: .85rem 2rem;
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 300;
	color: #777;
	background-color: #fafafa;
	border: 1px solid #ebebeb;
	border-radius: 0;
	transition: all 0.3s;
	box-shadow: none
}

select.form-control:not([size]):not([multiple]) {
	height: 40px
}

.form-control-white {
	border-color: #fff
}

.form-control:focus {
	color: #777;
	background-color: #fff;
	border-color: var(--primary);
	box-shadow: none;
	outline: none !important
}

.form-control::placeholder {
	color: #777
}

textarea.form-control {
	min-height: 130px;
	padding-top: 1.1rem;
	padding-bottom: 1.1rem
}


label {
	color: #666;
	font-weight: 300;
	font-size: 1.4rem;
	margin: 0 0 1.1rem
}

.form-text {
	color: #999;
	line-height: 1.5;
	margin-top: 0
}

.form-control+.form-text {
	margin-top: -.5rem;
	margin-bottom: .6rem
}

small.form-text {
	font-size: 85%
}

.required-field>label::after {
	content: '*';
	color: #e02b27;
	font-size: 1.2rem;
	margin: 0 0 0 .45rem
}

.required {
	color: #e02b27;
	font-size: 1.2rem
}

.required+.form-footer {
	margin-top: 0.8rem
}

.form-footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: .6rem
}

.select-custom {
	position: relative;
	margin-bottom: 1rem
}

.select-custom select {
	-webkit-appearance: none;
	appearance: none
}

.select-custom .form-control,
.select-custom .form-control-sm {
	padding-right: 4rem
}

.form-group-custom-control {
	margin-top: 2rem
}

.form-group-custom-control .custom-control {
	margin-top: 0;
	margin-bottom: 2rem
}

.form-group-custom-control+.form-group-custom-control {
	margin-top: -.5rem
}

.form-group-custom-control .custom-control-label {
	text-transform: initial;
	letter-spacing: 0;
	font-weight: 400
}

.custom-control {
	position: relative;
	padding-left: 2.6rem;
	margin-top: 1rem;
	margin-bottom: 1rem
}

.custom-control-label {
	position: static;
	margin-bottom: 0;
	margin-top: .1rem;
	font-size: 1.4rem;
	padding-left: 2.6rem;
	margin-left: -2.6rem
}

.custom-control-label::before {
	left: 0;
	top: .6rem;
	width: 1.6rem;
	height: 1.6rem;
	background-color: #f9f9f9;
	border: 1px solid #dadada;
	box-shadow: none !important
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #dadada
}

.custom-control-label::after {
	left: 0;
	top: .6rem;
	width: 1.6rem;
	height: 1.6rem
}

.custom-checkbox .custom-control-label::before {
	border-radius: 0
}

.custom-checkbox .custom-control-label::after {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-image: none;
	font-size: 1rem;
	font-family: 'molla';
	content: '\ec2d';
	line-height: 1;
	text-align: center;
	opacity: 0;
	margin-top: .1rem;
	visibility: hidden;
	transition: opacity .01s
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: #333;
	background-color: #333
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
	background-color: #333
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
	background-color: rgba(51, 51, 51, 0.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
	background-color: rgba(51, 51, 51, 0.5)
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image: none;
	opacity: 1;
	visibility: visible
}

.custom-control.custom-radio .custom-control-label::before {
	top: .4rem;
	background-color: #f9f9f9;
	border-color: #dadada;
	border-radius: 50%
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::before {
	border-color: var(--primary);
	background-color: #fff
}

.custom-control.custom-radio .custom-control-label::after {
	border-radius: 50%;
	width: .6rem;
	height: .6rem;
	top: .9rem;
	left: .5rem
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::after {
	background-image: none !important;
	z-index: 2;
	background-color: var(--primary)
}

.cta .input-group {
	margin-bottom: 0
}

.cta .form-control {
	height: 46px;
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	background-color: #fff
}

.cta .form-control:not(:focus):not(.form-control-white) {
	border-color: #dadada
}

/* .cta .btn removed - use .btn-global instead */

.cta-title {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -.03em;
	margin-bottom: 0
}

.cta-desc {
	margin-bottom: 1.5rem
}


@media screen and (max-width: 575px) {
	.cta .input-group {
		flex-direction: column
	}

	.cta .input-group .form-control {
		width: 100%;
		margin-right: 0
	}

	.cta .input-group .btn {
		margin-left: 0;
		margin-top: 1rem
	}

	.cta .input-group .input-group-append,
	.cta .input-group .input-group-prepend {
		justify-content: center
	}

	.cta .input-group-round .form-control,
	/* .cta .input-group-round .btn removed - use .btn-global instead */

	.cta .input-group-round .input-group-append {
		justify-content: center
	}
}

/*--------------------------------------------------------------
07. => pagination
--------------------------------------------------------------*/

.pagination {
	border-radius: 0;
	align-items: center;
	margin-bottom: 2rem
}

.page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3rem;
	height: 4rem;
	font-weight: 400;
	font-size: 1.4rem;
	padding: 0 .3rem;
	line-height: 1;
	color: #706f6c;
	border-radius: .3rem;
	background-color: transparent;
	border: .1rem solid transparent
}

.page-link i {
	font-size: 1.5rem
}

.page-link.page-link-prev {
	margin-right: 1.7rem
}

.page-link.page-link-prev i {
	margin-left: 0;
	margin-right: 1rem
}

.page-link.page-link-next {
	margin-left: 1.8rem
}

.page-link.page-link-next i {
	margin-left: 1rem;
	margin-right: 0
}

.page-link.page-link-prev,
.page-link.page-link-next {
	padding-left: 1rem;
	padding-right: 1rem;
	min-width: 70px
}

.page-link:hover,
.page-link:focus {
	box-shadow: none;
	color: var(--primary);
	border-color: #ebebeb;
	text-decoration: none;
	background-color: transparent;
	outline: none !important
}

.page-item-total {
	color: #cccccc;
	font-size: 1.4rem;
	font-weight: 400;
	margin-left: 1.2rem
}

.page-item+.page-item {
	margin-left: .4rem
}

.page-item:first-child .page-link {
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}

.page-item:last-child .page-link {
	border-top-right-radius: .3rem;
	border-bottom-right-radius: .3rem
}

.page-item.active .page-link {
	color: var(--primary);
	background-color: transparent;
	border-color: #ebebeb
}

.page-item.disabled .page-link {
	border-color: transparent;
	color: #eaeaea
}


.intro-slider-container,
.intro-slide {
	background-color: #cccccc
}

.intro-slider-container,
.intro-slide .slide-image {
	position: relative
}

.intro-slider-container:before,
.intro-slide .slide-image:before {
	display: block;
	content: '';
	width: 100%
}

.slider-container-ratio .intro-slider,
.slide-image>picture,
.slide-image>img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%
}

.slide-image img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto
}

.slider-loader {
	color: #333
}

.slider-loader::after {
	content: '\f311';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	margin-top: -2.5rem;
	margin-left: -2.5rem;
	font-family: "molla";
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 4rem;
	transform-origin: center center;
	animation: rotating 3s linear infinite;
	z-index: 20
}

.owl-loaded+.slider-loader {
	display: none
}

button:focus {
	outline: none
}

@keyframes rotating {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(360deg)
	}
}

.intro-subtitle {
	color: #fff;
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	margin-bottom: .5rem
}

.intro-title {
	color: #fff;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
	letter-spacing: -.03em;
	margin-bottom: 1.2rem;
	text-indent: -.2rem
}

.nav.nav-pills .nav-link {
	font-size: 1.6rem
}

.mt-v3 {
	margin-top: -3rem
}

.categories.container {
	position: relative
}

.categories.container::before {
	content: '';
	position: absolute;
	left: 1rem;
	right: 1rem;
	height: .1rem;
	top: 0;
	background-color: #ebebeb
}

.more-container {
	margin-bottom: 7rem
}


.icon-box-icon {
	color: #333;
	font-size: 3.4rem
}

.carousel-with-shadow .owl-stage-outer {
	padding: 0 1rem 2rem;
	margin-left: -1rem;
	margin-right: -1rem;
	margin-top: -3rem;
	padding-top: 3rem
}

.carousel-with-shadow.owl-simple .owl-nav [class*='owl-'] {
	margin-top: -31px
}


.cta-display .cta-title {
	font-weight: 600;
	font-size: 2.6rem;
	letter-spacing: -.01em
}

.cta-display .cta-desc {
	font-size: 1.6rem;
	margin-bottom: 0
}

.cta-display-content {
	max-width: 630px;
	margin-left: auto;
	margin-right: auto
}




.mfp-ready.mfp-bg {
	opacity: .6
}

.mfp-wrap .mfp-content {
	transition: all .35s;
	opacity: 0
}

.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1
}

@media screen and (min-width: 576px) {
	.intro-content {
		left: 50px
	}

	.intro-content .btn {
		font-size: 1.2rem;
		min-width: 110px;
		padding-top: .75rem;
		padding-bottom: .75rem
	}

	.intro-subtitle {
		font-size: 1.6rem
	}

	.intro-title {
		font-size: 3.6rem;
		margin-bottom: 1.3rem
	}
}

@media screen and (min-width: 768px) {
	.intro-content {
		left: 70px
	}

	.intro-content .btn {
		font-size: 1.3rem;
		min-width: 130px;
		padding: .95rem 1.5rem
	}

	.intro-subtitle {
		font-size: 1.8rem
	}

	.intro-title {
		font-size: 4.2rem;
		margin-bottom: 1.7rem
	}
}

@media screen and (min-width: 992px) {
	.cta-display .cta-title {
		font-size: 3rem
	}
}

@media screen and (min-width: 1200px) {
	.intro-content {
		left: 100px
	}

	.intro-content .btn {
		font-size: 1.4rem;
		min-width: 150px;
		padding-top: 1.15rem;
		padding-bottom: 1.15rem
	}

	.intro-subtitle {
		font-size: 2rem
	}

	.intro-title {
		font-size: 5.2rem
	}
}

@media screen and (max-width: 575px) {
	.cta-display .cta-desc {
		margin-bottom: 2rem
	}

	/* .cta-display .btn removed - use .btn-global instead */
}

@media screen and (min-width: 992px) {

	.banners-sm .row {
		margin-left: 0;
		margin-right: 0
	}
}

.toolbox {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 0;
	margin-bottom: 2rem
}

.toolbox::after {
	display: block;
	clear: both;
	content: ''
}

.toolbox .select-custom {
	margin-bottom: 0
}

.toolbox .select-custom::after {
	right: .9rem;
	font-size: 1rem
}

.toolbox .select-custom .form-control {
	font-size: 1.3rem;
	padding-right: 2rem;
	max-width: 140px;
	min-width: 140px;
	background-color: #fff;
	border-color: #e4e4e4
}

.toolbox label {
	font-weight: 400;
	color: #333;
	font-size: 1.2rem;
	letter-spacing: -.01em;
	margin: 0
}

.toolbox .form-control {
	color: #999;
	font-weight: 300;
	font-size: 1.2rem;
	padding: .45rem 1rem;
	height: 30px;
	margin-bottom: 0
}

.toolbox .form-control:not(:focus) {
	border-color: #d7d7d7
}

.toolbox select.form-control:not([size]):not([multiple]) {
	height: 30px
}

.toolbox-left,
.toolbox-right {
	display: flex;
	align-items: center;
	flex: 1 1 0;
	flex-wrap: wrap
}

.toolbox-center {
	margin-top: 1rem;
	flex: 0 1 auto
}

.toolbox-right {
	margin-top: 1rem;
	flex-direction: column
}

.toolbox-info {
	color: #ccc
}

.toolbox-info span {
	color: #333
}

.toolbox-sort {
	display: flex;
	align-items: center
}

.toolbox-sort label {
	margin-right: 1.6rem
}

.toolbox-layout {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-layout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border: 1px solid #d7d7d7;
	background-color: #fff;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
}

.btn-layout svg {
	display: block;
}

.btn-layout svg rect {
	fill: #999;
	transition: fill 0.3s ease;
}

.btn-layout:hover {
	border-color: var(--primary, #5fb2bd);
	background-color: #f8f9fa;
}

.btn-layout:hover svg rect {
	fill: var(--primary, #5fb2bd);
}

.btn-layout.active {
	border-color: var(--primary, #5fb2bd);
	background-color: var(--primary, #5fb2bd);
}

.btn-layout.active svg rect {
	fill: #fff;
}


.products>.row>[class*=col-] {
	display: flex;
	align-items: stretch;
	align-content: stretch
}

.products .product {
	width: 100%
}

.product {
	overflow: hidden
}

.carousel-equal-height .owl-stage,
.carousel-equal-height .owl-item {
	display: flex;
	align-items: stretch
}

.carousel-equal-height .product {
	width: 100%
}

.owl-carousel .entry {
	margin-bottom: 0
}

.load-more-container {
	margin-top: 4rem;
	margin-bottom: 2rem
}

/* .btn.btn-load-more removed - use .btn-global instead */

/* Sidebar Sticky */
.sidebar-shop {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Scrollable Products Section */
.shop-products-scroll {
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 10px;
    scroll-behavior: smooth;
}

/* Scrollbar styling removed - using unified system */


/* Sidebar Filter Box */
.shop-filter {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Hover effect for polish */
.shop-filter:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Scrollbar styling removed - using unified system */

.sidebar-shop .widget {
	color: #333;
	margin: 0;
    padding: 10px;
	border-bottom: .1rem solid #ebebeb
}

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

.sidebar-shop .widget-title {
	color: #333;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.15;
	letter-spacing: -.01em;
	margin-bottom: .7rem
}

.sidebar-shop .custom-control {
	padding-left: 2.7rem;
	margin: 0
}

.sidebar-shop .custom-control-label {
	font-weight: 400;
	color: #333;
	cursor: pointer
}

.sidebar-shop .custom-control-label::before {
	border-radius: 0.2rem
}

.widget-clean {
	display: flex;
	align-items: center;
	padding-top: .6rem;
	padding-bottom: 2.1rem
}

.widget-clean label {
	color: inherit;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	margin: 0
}

.widget-clean a {
	display: inline-block;
	font-weight: 400;
	font-size: 1.2rem;
	margin-left: auto
}

.widget-collapsible .widget-title a {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: none;
	padding-right: 3rem
}

.widget-collapsible .widget-title a:after {
	color: #333;
	content: '\f110';
	display: block;
	font-family: 'molla';
	font-size: 1.4rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 1.6rem;
	margin-top: -.7rem
}

.widget-collapsible .widget-title a.collapsed:after {
	content: '\e802'
}

.widget-collapsible .widget-title a:focus {
	outline: none !important
}

.widget-collapsible .widget-body {
	padding-top: 1rem;
	padding-bottom: 2rem
}

.filter-item {
	position: relative;
	margin-bottom: .3rem
}

.filter-items-count .filter-item {
	padding-right: 4rem
}

.filter-items-count .item-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 1rem;
	top: 50%;
	min-width: 2.5rem;
	height: 2rem;
	margin-top: -1rem;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1;
	border-radius: .6rem;
	color: #777;
	background-color: #f8f8f8
}

.sidebar-toggler {
	display: inline-flex;
	align-items: center;
	color: #333;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: -.01em;
	text-transform: uppercase;
	margin-right: 3rem
}

.sidebar-toggler i {
	font-size: 1.6rem;
	margin-right: .9rem
}

.sidebar-toggler:hover,
.sidebar-toggler:focus {
	color: var(--primary)
}

.sub-filter-items {
	padding-left: 2.7rem
}

.filter-colors {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: .7rem;
	padding-bottom: .5rem
}

.filter-colors a {
	position: relative;
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	border: .2rem solid #fff;
	margin: 0 .3rem .3rem;
	transition: box-shadow .35s ease
}

.filter-colors a:after {
	color: #fff;
	font-family: 'molla';
	content: '\ec2d';
	font-size: 1rem;
	line-height: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .01s;
	margin-top: -.4rem;
	margin-left: -.5rem
}

.filter-colors a.selected,
.filter-colors a:hover,
.filter-colors a:focus {
	box-shadow: 0 0 0 .1rem #cccccc
}

.filter-colors a.selected:after {
	visibility: visible;
	opacity: 1
}

.filter-price {
	padding-top: .2rem;
	padding-bottom: 3rem
}

.filter-price-text {
	margin-bottom: 2rem;
	letter-spacing: -.01em
}

#filter-price-range {
	color: var(--primary)
}

@media screen and (min-width: 576px) {
	.toolbox-right {
		flex-direction: row
	}

	.toolbox-layout {
		margin-top: 0;
		margin-right: -.5rem;
		margin-left: 1rem
	}
}

@media screen and (min-width: 768px) {
	.toolbox {
		flex-direction: row
	}

	.toolbox-center {
		margin-top: 0
	}

	.toolbox-right {
		margin-top: 0;
		justify-content: flex-end
	}

}


/*--------------------------------------------------------------
13. => PRODUCT DETAILS
--------------------------------------------------------------*/

/* 1. PRODUCT VARIATION STATES */
.variation-image.disabled {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.variation-image .out-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 16px;
    color: var(--red);
}

.size-out-of-stock {
    color: var(--primary);
}

/* 2. PRODUCT LAYOUT CONTAINERS */
.product-details-top {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    padding-top: 1rem;
}

.product-gallery {
    margin-bottom: 2rem;
}

/* 3. MAIN PRODUCT IMAGE */
.product-main-image {
	position: relative;
    margin-bottom: 1rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.no-main-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: #6c757d;
    text-align: center;
}

.no-main-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-main-image p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}


/* 5. GALLERY ZOOM BUTTON */
.btn-product-gallery {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	z-index: 49;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 4rem;
	height: 4rem;
	color: #777;
	font-weight: normal;
	font-size: 2rem;
	line-height: 1;
	background-color: #fff;
	box-shadow: 2px 6px 16px rgba(51, 51, 51, 0.05);
    transition: all .35s ease;
    border-radius: 50%;
}

.btn-product-gallery:hover,
.btn-product-gallery:focus {
	color: #fff;
    background-color: var(--primary);
}

/* 6. IMAGE GALLERY CONTAINER */
.product-image-gallery {
	display: flex;
	flex-flow: row wrap;
	margin-left: -.5rem;
	margin-right: -.5rem;
    min-height: 100px
}

.no-images-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-style: italic;
}

/* 10. GALLERY ITEM BASE STYLES */
.product-gallery-item {
	position: relative;
	display: block;
	flex: 0 0 25%;
	max-width: 25%;
	padding-left: .5rem;
	padding-right: .5rem;
    margin-bottom: 1rem;
}

.max-col-6 .product-gallery-item {
	flex: 0 0 16.66%;
    max-width: 16.66%;
}

.product-gallery-item img {
	max-width: none;
    width: 100%;
}

.product-gallery-item:before,
.product-gallery-item:after {
	content: '';
	display: block;
	position: absolute;
	left: .5rem;
	right: .5rem;
	top: 0;
	bottom: 0;
	transition: all .35s ease
}

.product-gallery-item:before {
	opacity: 0;
	visibility: hidden;
	border: 1px solid var(--primary)
}

.product-gallery-item:after {
	visibility: visible;
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.4)
}

.product-gallery-item.active:before {
	visibility: visible;
	opacity: 1
}

.product-gallery-item:hover:after,
.product-gallery-item.active:after {
	opacity: 0;
	visibility: hidden
}





.product-details {
	margin-bottom: 2rem
}

.product-details .product-title {
	font-weight: 400;
	font-size: 2.4rem;
	letter-spacing: -.025em;
	margin-bottom: 1.2rem;
	margin-top: -.5rem;
	padding-right: 1rem
}

.product-details .ratings-container {
	margin-bottom: 1.3rem
}

.product-details .product-price {
	font-size: 2.4rem
}

.product-details .new-price {
	margin-right: 1rem
}

.product-details .product-content {
	margin-bottom: 1.6rem
}

.product-details .product-content p:last-child {
	margin-bottom: 0
}

.product-details .product-countdown {
	position: static;
	left: auto;
	right: auto;
	bottom: auto;
	top: auto;
	max-width: 260px;
	margin-left: -5px;
	margin-bottom: 2rem
}

.product-details .product-countdown .countdown-section {
	background-color: #fafafa
}

.product-details .product-nav-dots a,
.product-details .product-nav-dots span {
	width: 2rem;
	height: 2rem
}

.product-details .product-cat {
	font-weight: 400;
	font-size: 1.4rem
}

.product-details .product-cat span {
	margin-right: .7rem
}

.product-details .product-cat a {
	color: #666;
	box-shadow: none;
	transition: all .35s ease
}

.product-details .product-cat a:hover,
.product-details .product-cat a:focus {
	color: var(--primary);
	box-shadow: 0 1px 0 var(--primary)
}

.product-details .product-size {
	flex-flow: row wrap;
	padding-top: 0;
	margin-bottom: 0
}

.product-details .product-size a {
	color: #666;
	width: 4rem;
	height: 4rem;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	border: .1rem solid #d7d7d7;
	background-color: transparent;
	border-radius: 0;
	margin-right: 1rem
}

.product-details .product-size a.active,
.product-details .product-size a:hover,
.product-details .product-size a:focus {
	color: var(--primary);
	border-color: var(--primary);
	background-color: transparent
}

.product-details .product-size a.disabled {
	color: #dadada;
	border-color: #ebebeb;
	background-color: transparent
}

.details-filter-row {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	margin-bottom: 2rem
}

.details-filter-row .form-control {
	font-weight: 400;
	margin-bottom: 0;
	padding-left: 1rem;
	padding-right: 1rem;
	background-color: #fff;
	border-color: #d7d7d7;
	min-width: 131px
}

.details-filter-row .select-custom {
	margin-bottom: 0;
	margin-right: 3.9rem
}

.details-filter-row .select-custom .form-control {
	padding-right: 3rem
}

.details-filter-row .select-custom::after {
	font-size: 1rem;
	right: .9rem
}

.details-filter-row label {
	display: inline-block;
	width: 67px;
	font-weight: 400;
	font-size: 1.4rem;
	margin-bottom: 0
}

.details-filter-row .product-nav {
	margin-bottom: 0
}

.details-filter-row .product-nav-thumbs {
	padding-top: 0
}

.product-details-quantity {
	max-width: 131px
}

.product-details-quantity .form-control {
	padding-left: 2.6rem;
	padding-right: 2.6rem;
	text-align: center;
	margin-bottom: 0
}

.product-details-action {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	margin: 3rem 0
}

/* * Variation (Color thumbnail) active state */
.variation-image.active {
    border: 1px solid var(--primary) !important;
    padding: 4px;
}

.variation-image {
    border: none;
    outline: none;
    padding: 2px;
    display: inline-block;
    transition: none;
}

/* product size */
.product-size-nav .size-option {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 6px 6px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.product-size-nav .size-option:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-size-nav .size-option.active {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* qty */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
    min-width: 28px !important;
    height: 28px !important;
}
.qty-btn {
    padding: 5px 12px;
    font-size: 18px;
    line-height: 1;
    border: 1px solid #ccc;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.qty-btn:hover {
    background: #e2e6ea;
}
.qty-input {
    height: 30px;
    width: 100px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    margin: 0
}

.details-action-wrapper {
	display: flex;
	align-items: center;
	margin-left: 4rem
}

/* .details-action-wrapper .btn-product removed - use .btn-global instead */

.product-details-footer {
	color: #777;
	display: flex;
	font-weight: 400;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 1.7rem;
	border-top: .1rem solid #ebebeb;
	padding-bottom: 1.7rem
}

.product-details-footer .social-icons {
	margin-left: auto
}

.product-details-footer .social-icon {
	margin-bottom: 0
}

@media screen and (min-width: 992px) {
	.container-fluid .product-details-top .col-lg-7 {
		flex: 0 0 56.5%;
		max-width: 56.5%
	}

	.container-fluid .product-details-top .col-lg-5 {
		flex: 0 0 43.5%;
		max-width: 43.5%
	}
}

@media screen and (min-width: 1700px) {
	.container-fluid .details-filter-row .form-control {
		min-width: 171px
	}
}

.product-details-tab {
	margin-bottom: 5rem
}

.product-details-tab .nav.nav-pills .nav-link {
	color: #333333;
	font-size: 1.6rem;
	padding: .55rem 3rem;
	border-bottom-width: .2rem;
	text-transform: capitalize
}

.product-details-tab .nav.nav-pills .nav-link:hover,
.product-details-tab .nav.nav-pills .nav-link:focus {
	color: var(--primary);
	border-bottom-color: var(--primary)
}

.product-details-tab .nav.nav-pills .nav-item+.nav-item {
	margin-left: 2rem
}

.product-details-tab .tab-content {
	border: .1rem solid #dadada;
	margin-top: -.1rem;
	border-radius: .3rem
}

.product-details-tab .tab-content .tab-pane {
	padding: 2.7rem 3rem
}

.product-desc-content h2 {
	font-weight: 400;
	font-size: 2.4rem;
	letter-spacing: -.01em;
	margin-bottom: 1.8rem
}

.product-desc-content h3 {
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	margin-bottom: 1.8rem
}

.product-desc-content ul {
	color: #333333
}

.product-desc-content ul li {
	position: relative;
	padding-left: 1.3rem
}

.product-desc-content ul li:before {
	content: '•';
	position: absolute;
	display: block;
	top: 0;
	left: .2rem
}

.product-desc-content a {
	color: #333;
	border-bottom: .1rem solid #b8b8b8;
	transition: all .35s ease
}

.product-desc-content a:hover,
.product-desc-content a:focus {
	color: var(--primary);
	border-bottom-color: var(--primary)
}








.product-details-sidebar .details-action-col {
	width: 100%
}

/* .product-details-sidebar .details-action-col .btn-product removed - use .btn-global instead */

.product-details-sidebar .product-details-action {
	margin-bottom: 2.6rem
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
	.details-action-wrapper {
		margin-left: 1rem
	}

	.product-details-sidebar .product-details-quantity {
		max-width: 91px
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.product-details-action {
		flex-direction: column;
		align-items: flex-start
	}

	.details-action-wrapper {
		margin-left: 0;
		margin-top: 1.5rem
	}


	.product-details-tab .nav.nav-pills .nav-item+.nav-item {
		margin-left: 1rem
	}

	.product-details-tab .nav.nav-pills .nav-item .nav-link {
		padding-left: 1.5rem;
		padding-right: 1.5rem
	}
}

@media screen and (max-width: 767px) {
	.product-details .product-title {
		font-size: 2.2rem
	}
}

@media screen and (max-width: 575px) {
	.product-details-tab .nav.nav-pills .nav-item+.nav-item {
		margin-left: 0
	}
}

@media screen and (max-width: 580px) {
	.product-details-action {
		flex-direction: column;
		align-items: flex-start
	}



	.details-filter-row .select-custom {
		margin-right: 1.5rem
	}

	.product-details-action .btn-cart {
		min-width: 168px
	}
}

.widget {
	margin-bottom: 4.5rem
}

.sidebar {
	margin-top: 3rem
}

.sidebar .widget:last-child {
	margin-bottom: 1.5rem
}

.widget-title {
	color: #333;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.1;
	letter-spacing: -.01em;
	margin-bottom: 2rem
}

@media screen and (min-width: 992px) {
	.sidebar {
		margin-top: -.3rem
	}
}


#map {
	background-color: #ccc
}

.gm-style .gm-style-iw-c {
	border-radius: 0 !important
}

#map address {
	color: #666;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 1rem;
	font-size: 1.4rem;
	padding: .5rem .75rem .2rem .75rem;
	line-height: 1.5;
	margin: 0
}


.contact-info {
	margin-bottom: 3rem
}

.contact-info h3 {
	margin-top: .5rem;
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: 1.5rem
}

.contact-list {
	max-width: 270px;
	list-style: none;
	padding-left: 0
}

.contact-list li {
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1.4rem
}

.contact-list a {
	color: inherit
}

.contact-list a:hover,
.contact-list a:focus {
	color: var(--primary)
}

.contact-list i {
	display: inline-block;
	position: absolute;
	left: 0;
	top: .3rem;
	font-size: 2rem;
	line-height: 1;
	color: var(--primary)
}

@media screen and (min-width: 768px) {
	#map {
		height: 380px;

	}
}

@media screen and (min-width: 992px) {
	#map {
		height: 492px
	}
}

.sidebar-filter-overlay {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(25, 25, 25, 0.25);
	z-index: 1000;
	transition: all 0.4s;
	visibility: hidden;
	opacity: 0
}

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

.sidebar-filter {
	position: fixed;
	left: -350px;
	top: 0;
	bottom: 0;
	z-index: 1001;
	background-color: #fff;
	width: 100%;
	max-width: 350px;
	overflow-y: scroll;
	box-shadow: 0.1rem 0 0.6rem 0 rgba(51, 51, 51, 0.5);
	will-change: transform;
	visibility: hidden;
	transition: all 0.35s
}

.sidebar-filter-active .sidebar-filter {
	visibility: visible;
	transform: translateX(350px)
}

.sidebar-filter .widget {
	padding-left: 1rem;
	padding-right: 1rem
}

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

.sidebar-filter .widget-clean {
	color: #333;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	border-bottom: .1rem solid #ebebeb;
	padding: 0 1rem 2.4rem;
	margin-bottom: 2rem
}

.sidebar-filter .widget-clean i {
	font-size: 1.6rem;
	line-height: 1;
	margin-right: 1rem
}

.sidebar-filter .widget-clean a {
	font-size: 1.4rem
}

.sidebar-filter-banner.sidebar-shop .widget:not(.widget-clean) {
	border-bottom: none;
	margin-bottom: 4rem
}

.sidebar-filter-banner.sidebar-shop .widget-title {
	margin-bottom: 1.7rem
}

.sidebar-filter-wrapper {
	position: relative;
	padding: 3.5rem 2.7rem 1.5rem
}

.sidebar-filter-clear {
	text-transform: capitalize;
	margin-left: auto
}

@media screen and (max-width: 380px) {
	.sidebar-filter {
		left: -300px;
		max-width: 300px
	}

	.sidebar-filter-active .sidebar-filter {
		transform: translateX(300px)
	}

	.sidebar-filter-wrapper {
		padding-left: 1.7rem;
		padding-right: 1.7rem
	}
}

@media screen and (min-width: 992px) {
	.checkout .col-lg-3 {
		flex: 0 0 30%;
		max-width: 30%
	}

	.checkout .col-lg-9 {
		flex: 0 0 70%;
		max-width: 70%
	}
}


.summary {
	padding: 2.5rem 3rem 3rem;
	border: .1rem dashed #d7d7d7;
	background-color: #f9f9f9;
	border-radius: .3rem;
	margin-top: 2rem;
	margin-bottom: 2rem
}

.summary-title {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0;
	padding-bottom: 1.7rem;
	border-bottom: .1rem solid #cccccc;
	margin-bottom: 2.1rem
}

.table.table-summary {
	line-height: 1.43;
	color: #666;
	border: none;
	margin-bottom: 0
}

.table.table-summary a {
	color: inherit
}

.table.table-summary a:hover,
.table.table-summary a:focus {
	color: var(--primary)
}

.table.table-summary thead th,
.table.table-summary .summary-subtotal td {
	color: #333;
	font-weight: 400;
	font-size: 1.6rem
}

.table.table-summary thead th {
	border-bottom: none;
	padding: 0 0 .3rem
}

.table.table-summary tbody td {
	padding: 0;
	height: 40px;
	border-bottom: .1rem solid #ebebeb
}

.table.table-summary thead th,
.table.table-summary tbody td {
	vertical-align: middle;
	border-top: none
}

.table.table-summary thead th:last-child,
.table.table-summary tbody td:last-child {
	text-align: right;
	min-width: 100px
}

.table.table-summary .summary-total td {
	font-weight: 400;
	font-size: 1.6rem;
	color: var(--primary);
	border-bottom: none
}



@media screen and (min-width: 992px) {
	.summary {
		margin-top: 0
	}
}

.table .action-col {
	width: 202px
}

/* .table .action-col .btn removed - use .btn-global instead */

.table .action-col .btn.disabled {
	opacity: 1 !important;
	color: #cccccc !important;
	cursor: default;
	pointer-events: none;
	background-color: #fafafa !important;
	border-color: #ebebeb !important
}

.table .remove-col {
	padding-right: 0;
	padding-left: 0;
	width: 38px;
	text-align: right
}

.table .remove-col .btn-remove {
	margin-right: -.7rem
}

.product-col .product {
	display: flex;
	align-items: center;
	margin: 0;
	padding-right: 2rem;
	box-shadow: none
}

.product-col .product-media {
	display: inline-block;
	margin: 0;
	margin-right: 2.8rem;
	flex-shrink: 0;
	max-width: 60px
}

.product-col .product-title {
	display: inline-block;
	color: #333;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.25;
	margin: 0
}

.product-col .product-title a {
	color: inherit
}

.product-col .product-title a:hover,
.product-col .product-title a:focus {
	color: var(--primary)
}

.in-stock {
	color: #a6c76c
}

.out-of-stock {
	color: #ef837b
}

.btn-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	color: #cccccc;
	background-color: transparent;
	font-size: 1.7rem;
	line-height: 1;
	border: none;
	outline: none;
	transition: all .35s
}

.btn-remove:hover,
.btn-remove:focus {
	color: #333
}

.action-col .dropdown-menu {
	color: #666;
	border-radius: 0;
	width: 100%;
	font-size: 1.3rem;
	padding-top: .5rem;
	padding-bottom: .5rem
}

.action-col .dropdown-item {
	padding: .5rem 1.5rem;
	transition: background .35s ease, color .1s ease
}

.action-col .dropdown-item.active,
.action-col .dropdown-item:active,
.action-col .dropdown-item:hover,
.action-col .dropdown-item:focus {
	color: #fff;
	background-color: var(--primary)
}



@media screen and (min-width: 992px) {
	.cart .col-lg-3 {
		flex: 0 0 30%;
		max-width: 30%
	}

	.cart .col-lg-9 {
		flex: 0 0 70%;
		max-width: 70%
	}
}


/* ========================================
   PAGES: CART
   ======================================== */

.cart-product-quantity {
	width: 100px
}

.cart-product-quantity .form-control {
	padding: .85rem 2.6rem;
	height: 40px;
	max-width: 100%;
	border-color: #dadada;
	background-color: #fff;
	margin: 0
}


.cart-bottom {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.cart-bottom .cart-discount .btn {
	margin-top: 0
}

.cart-bottom .btn {
	margin-left: 0 !important;
	margin-top: 1rem
}

.cart-discount {
	width: 100%;
}

.coupon-input-wrapper {
	display: flex;
	align-items: stretch;
	border: 1px solid #ced4da;
	border-radius: 5px;
    padding: 0;
	overflow: hidden;
}

.coupon-input {
	flex: 1;
	border: none;
	border-radius: 5px 0 0 5px;
	padding: 0.75rem 1rem;
	font-size: 1.2rem;
	height: auto;
}

.coupon-input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.coupon-apply-btn {
	background-color: var(--primary);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 0 5px 5px 0;
}

.coupon-apply-btn:hover {
	background-color: var(--secondary);
}


/* .cart-discount .btn removed - use .btn-global instead */

.summary.summary-cart {
	margin-bottom: 3rem
}

.summary.summary-cart .summary-title {
	margin-bottom: 0
}


.summary-cart .table.table-summary thead th:last-child,
.summary-cart .table.table-summary tbody td:last-child {
	min-width: 0
}

@media screen and (min-width: 992px) {
}


/*--------------------------------------------------------------
16. => Icon
--------------------------------------------------------------*/
@font-face {
	font-family: 'molla';
	src: url("../fonts/molla0ab2.eot?74273691");
	src: url("../fonts/molla0ab2.eot?74273691#iefix") format("embedded-opentype"), url("../fonts/molla0ab2.woff2?74273691") format("woff2"), url("../fonts/molla0ab2.woff?74273691") format("woff"), url("../fonts/molla0ab2.ttf?74273691") format("truetype"), url("../fonts/molla0ab2.svg?74273691#molla") format("svg");
	font-weight: normal;
	font-style: normal
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: "molla";
	font-style: normal;
	font-weight: normal;
	/* speak: none; - deprecated, removed for compatibility */
	display: inline-block;
	text-decoration: inherit;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon-life-ring:before {
	content: '\e803'
}

.icon-phone:before {
	content: '\e806'
}

.icon-info-circle:before {
	content: '\e80c'
}

.icon-cart-plus:before {
	content: '\e812'
}

.icon-refresh:before {
	content: '\e813'
}

.icon-map-marker:before {
	content: '\e815'
}

.icon-rotate-left:before {
	content: '\e81c'
}

.icon-arrows:before {
	content: '\f123'
}

.icon-calendar:before {
	content: '\f15c'
}

.icon-clock-o:before {
	content: '\f18f'
}

.icon-close:before {
	content: '\f191'
}

.icon-envelope:before {
	content: '\f1c6'
}

.icon-facebook-f:before {
	content: '\f39e'
}

.icon-instagram:before {
	content: '\f16d'
}

.icon-long-arrow-left:before {
	content: '\f273'
}

.icon-long-arrow-right:before {
	content: '\f274'
}

.icon-rocket:before {
	content: '\f2df'
}

.icon-thumbs-down:before {
	content: '\f33d'
}

.icon-thumbs-up:before {
	content: '\f340'
}

.icon-twitter:before {
	content: '\f099'
}

/*# sourceMappingURL=style.css.map */

/* account css start */


.account-dropdown {
    position: relative;
    max-width: 150px;
    overflow: visible !important;
}

.account-dropdown .wishlist-link {
    max-width: 100%;
    overflow: visible !important;
    position: relative;
}

.account-dropdown .wishlist-link .wishlist-txt {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.account-dropdown .wishlist-link .wishlist-count {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    left: auto;
    margin-left: 0;
    overflow: visible !important;
}

.account-dropdown:hover .dropdown-menu {
    display: block;
}

.account-dropdown.active .dropdown-menu {
    display: block !important;
}

.account-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 200px;
    max-width: calc(100vw - 20px);
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 999;
    margin-top: 5px;
    border-radius: 4px;
}

@media screen and (min-width: 992px) {
    .account-dropdown .dropdown-menu {
        right: auto;
        left: -100px;
        max-width: 300px;
    }
}

@media screen and (max-width: 575px) {
    .account-dropdown .dropdown-menu {
        right: 0;
        left: auto;
        min-width: 180px;
        max-width: calc(100vw - 30px);
        transform: translateX(0);
    }
}

@media screen and (max-width: 340px) {
    .account-dropdown .dropdown-menu {
        max-width: calc(100vw - 20px);
        right: -10px;
    }
}

.account-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.account-dropdown .dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.account-dropdown .dropdown-menu hr {
    margin: 5px 0;
    border-color: #ddd;
}


/* Legacy form styles removed - all forms now use universal modern form styles */
/* See "Universal Modern Form Styles" section for current form styling */
/*--------------------------------------------------------------
18. => alert
--------------------------------------------------------------*/
.alert-container {
    position: fixed !important;
    top: 80px ;
    right: 20px ;
    z-index: 1100;
    max-width: 400px;
    width: auto;
}

.alert {
    border-radius: 8px;
    border: 1px solid;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.alert-success {
    background-color: #d1f2eb;
    border-color: #a3e4d7;
    color: #0e6251;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}


.alert i {
    font-size: 1.1rem;
}

/* Mobile Responsive Alerts */
@media (max-width: 768px) {
    .alert-container {
        top: 100px !important;
        right: 10px !important;
        max-width: 300px;
        width: auto;
    }

    .alert {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .alert i {
        font-size: 1rem;
    }

    .alert strong {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .alert-container {
        top: 100px !important;
        right: 5px !important;
        max-width: 280px;
    }

    .alert {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .alert i {
        font-size: 0.9rem;
    }

    .alert strong {
        font-size: 0.85rem;
    }
}

/* ========================================
   COMPONENT STYLES
   ======================================== */

/* ========================================
   Navbar Component
   ======================================== */

.header-bottom.sticky-wrapper {
    position: static;
}

.header-icon {
    font-size: 3rem;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.category-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
}

#google_translate_element {
    display: none;
}

/* Google Translate Banner Hiding Styles */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame.skiptranslate iframe,
.goog-te-banner-frame iframe,
.goog-te-banner,
.goog-te-banner-frame.skiptranslate .goog-te-banner,
body > .goog-te-banner-frame,
body > .skiptranslate,
.goog-te-banner-frame.skiptranslate .goog-te-banner-content,
.goog-te-banner-content,
.goog-te-banner-frame.skiptranslate .goog-te-banner-message,
.goog-te-banner-message {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent body shift when banner is hidden */
body {
    top: 0 !important;
    position: static !important;
}

/* Hide any Google Translate iframes */
iframe[src*="translate.google.com"],
iframe[name*="google_translate"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* Additional hiding for Google Translate elements */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-combo,
.goog-te-menu-frame,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}

/* ========================================
   Footer Component
   ======================================== */

.footer {
	width: 100%;
	font-weight: 300;
	font-size: 1.4rem;
	color: #777;
	background-color: #fff
}

.footer a {
	color: inherit
}

.footer a:hover,
.footer a:focus {
	color: var(--primary)
}

.footer .widget {
	margin-bottom: 4rem
}

.footer .widget a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.footer-brand:hover {
	transform: translateX(5px);
	text-decoration: none;
}

.footer-brand img {
	transition: transform 0.3s ease;
}

.footer-brand:hover img {
	transform: scale(1.05);
}

.brand-text {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: -0.02em;
}

.footer-description {
	color: #b0b0b0;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	font-size: 1.4rem;
}

.footer-social {
	margin-top: 2rem;
	gap: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-bottom .footer-social {
	margin-top: 0;
}

.footer-social .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	font-size: 1.8rem;
	line-height: 1;
	position: relative;
}

.footer-social .social-icon i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	margin: 0;
	padding: 0;
}

.trustpilot-item {
	margin-top: 1.5rem;
}

.trustpilot-item a {
	display: inline-block;
	transition: transform 0.3s ease;
}

.trustpilot-item a:hover {
	transform: scale(1.05);
}

/* Payment Methods Section */
.payment-methods-section {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods-title {
	color: #b0b0b0;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0;
}

.payment-methods-list {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.payment-methods-image {
	max-width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
}

@media screen and (min-width: 576px) {
	.payment-methods-image {
		max-width: 250px;
	}
}

.footer .widget-title {
	color: #333333;
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	margin-top: 0;
	margin-bottom: 1.9rem
}

.footer-middle {
	padding: 6rem 0 4rem;
	border-top: .1rem solid #ebebeb
}

.footer-logo {
	margin-bottom: 2rem;
	margin-top: -.8rem;
    width: 100px;
    height: auto;
}

.widget-about p {
	max-width: 100%;
	line-height: 1.8;
	margin-bottom: 0;
}

.widget-list {
	margin-bottom: 0
}

.widget-list li:not(:last-child) {
	margin-bottom: .4rem
}

.footer-bottom .container,
.footer-bottom .container-fluid {
	position: relative;
	padding-top: 2.1rem;
	padding-bottom: 2.9rem
}

.footer-bottom .container:before,
.footer-bottom .container-fluid:before {
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	top: 0;
	left: 10px;
	right: 10px;
	background-color: #ebebeb
}

.footer-bottom-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.footer-copyright {
	margin-bottom: 0;
	text-align: center;
}

.footer-copyright a{color: #5fb2bd}

#scroll-top {
	width: 5rem;
	height: 5rem;
	position: fixed;
	right: 50px;
	bottom: 90px;
	z-index: 999;
	color: #5fb2bd;
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	visibility: hidden;
	opacity: 0;
	border-radius: 0;
	border: none;
	background-color: #fafafa;
	font-size: 3rem;
	transition: all 0.4s ease;
	transform: translateY(60px)
}

#scroll-top:hover,
#scroll-top:focus {
	color: #777;
	background-color: #eaeaea
}

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

@media screen and (min-width: 768px) {
	#scroll-top {
		display: flex
	}
}

@media screen and (min-width: 992px) {
	.footer-bottom-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer-copyright {
		margin-bottom: 0;
		text-align: left;
		flex: 1;
	}

	.footer-bottom .footer-social {
		margin-top: 0;
		flex-shrink: 0;
	}
}

@media screen and (min-width: 1200px) {
	.footer-bottom .container-fluid:before {
		left: 30px;
		right: 30px
	}
}

@media screen and (min-width: 1600px) {
	.footer-bottom .container-fluid:before {
		left: 70px;
		right: 70px
	}
}


.footer-dark {
	background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
	position: relative;
	overflow: hidden;
}

.footer-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-dark .footer-middle {
	border-top-width: 0;
	padding: 6rem 0 4rem;
	position: relative;
}

.footer-dark .widget-title {
	color: #fff;
	font-weight: 600;
	font-size: 1.7rem;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 1rem;
}

.footer-dark .widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
}

.footer-dark .widget-list a {
	color: #b0b0b0;
	transition: all 0.3s ease;
	padding: 0.3rem 0;
	display: inline-block;
	text-decoration: none;
}

.footer-dark .widget-list a:hover,
.footer-dark .widget-list a:focus {
	color: var(--primary);
	padding-left: 0.5rem;
	text-decoration: none;
}

.footer-dark .social-icon {
	background-color: rgba(95, 178, 189, 0.1);
	border: 2px solid rgba(95, 178, 189, 0.3);
	color: var(--primary);
	transition: all 0.3s ease;
}

.footer-dark .social-icon:hover,
.footer-dark .social-icon:focus {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(95, 178, 189, 0.4);
}

.footer-dark .footer-bottom {
	color: #999;
	background-color: rgba(0, 0, 0, 0.3);
}

.footer-dark .footer-bottom .container:before {
	background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
	opacity: 0.3;
}

.footer-dark .footer-copyright {
	color: #b0b0b0;
}

.footer-dark .footer-copyright a {
	color: var(--primary);
	transition: color 0.3s ease;
}

.footer-dark .footer-copyright a:hover {
	color: #fff;
}


/* ========================================
   Product Card Component
   ======================================== */

.product-card .new-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2em;
}

.product-card .old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-card .campaign-badge {
    font-size: 0.75em;
    color: var(--primary);
}

.product-color-swatch {
    background: var(--color);
}

/* ========================================
   Dashboard Component
   ======================================== */

.dashboard-section {
    display: none;
}

.dashboard-section.show {
    display: block;
}

.tracking-step-circle {
    width: 50px;
    height: 50px;
    z-index: 2;
}

.tracking-step-line {
    width: calc(100% - 50px);
    height: 2px;
    z-index: 1;
    margin-top: 25px;
    margin-left: 25px;
}

.tracking-step-line-success {
    background: #28a745;
}

.tracking-step-line-default {
    background: #dee2e6;
}

.order-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

.order-expired-text {
    font-size: 0.75rem;
}

.user-menu-header {
    padding: 10px 20px;
    font-weight: bold;
}

/* Dashboard Page Styles */
.dashboard label {
    margin-bottom: .2rem;
}

.dashboard .form-control {
    margin-bottom: 1.3rem;
}

.dashboard .form-control+.form-control {
    margin-top: 2rem;
}

.dashboard .form-control:not(:focus) {
    background-color: #f9f9f9;
}

.dashboard .tab-pane {
    padding: 0;
    border: none;
    line-height: 2.15;
    padding-bottom: 2rem;
}

.dashboard .tab-pane p {
    margin-bottom: 1rem;
}

.dashboard .btn {
    min-width: 123px;
}

@media screen and (min-width: 992px) {
    .dashboard .col-lg-3 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .dashboard .col-lg-9 {
        flex: 0 0 70%;
        max-width: 70%;
    }
}

/* Dashboard Custom Utilities */
.text-dashboard-primary {
    color: #5fb2bd !important;
}

.min-w-200 {
    min-width: 200px;
}

.max-w-250 {
    max-width: 250px;
}

.max-h-800 {
    max-height: 800px;
}

/* Dashboard Buttons */
.btn-primary-custom {
    background-color: #5fb2bd;
    border-color: #5fb2bd;
}

.btn-outline-primary-custom {
    border-color: #5fb2bd;
    color: #5fb2bd;
}

/* Profile Phone Input - Removed: Use phone-code-input and phone-number-input instead */

/* Dashboard Header & User Info */
.dashboard-header h1,
.notification-header h1 {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 1px;
  margin: 0;
  user-select: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.user-info img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Notification card styles */
.notification-card {
  border-radius: 8px;
  padding: 1.25rem;
}

.notification-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: flex-start;
}

/* Notification card responsive styles */
@media (max-width: 991px) {
  .notification-content-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .notification-content {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .notification-actions {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .notification-actions form {
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }

  .notification-actions .btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 575px) {
  .notification-card {
    padding: 0.75rem !important;
  }

  .notification-actions .btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
}

/* List Group Active State */
.list-group-item.active{
    background-color: #5fb2bd !important;
    border: none !important;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    outline: 0;
    z-index: 1057 !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055 !important;
    display: none !important;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    pointer-events: none;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
}

.modal.show .modal-dialog {
    pointer-events: auto !important;
    z-index: 1056 !important;
}

.modal:not(.show) {
    display: none !important;
    visibility: hidden !important;
}

.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    pointer-events: auto !important;
    touch-action: none !important;
}

.modal-backdrop.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.modal-backdrop.show {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Enhanced backdrop blur for all modals - Full page overlay */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
    position: relative !important;
}

body.modal-open .modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1050 !important;
    pointer-events: auto !important;
}

body.modal-open > *:not(.modal):not(.modal-backdrop) {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

body.modal-open header,
body.modal-open nav,
body.modal-open main,
body.modal-open footer,
body.modal-open .container,
body.modal-open .row,
body.modal-open [class*="col-"] {
    pointer-events: none !important;
    user-select: none !important;
}

/* Only modals and their content are interactive */
body.modal-open .modal {
    pointer-events: auto !important;
    z-index: 1055 !important;
}

body.modal-open .modal.show {
    pointer-events: auto !important;
    z-index: 1055 !important;
}

body.modal-open .modal-content {
    pointer-events: auto !important;
    z-index: 1057 !important;
}

body.modal-open .modal-dialog {
    pointer-events: auto !important;
    z-index: 1056 !important;
}

.modal-header {
    padding: 1.25rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}

/* Cancellation Modal Header - Matching Tracking Modal */
.cancellation-modal-header {
    background: linear-gradient(135deg, #5fb2bd 0%, #4a9ba5 100%) !important;
    color: white !important;
    border-bottom: none !important;
    padding: 1.5rem !important;
}

.cancellation-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    color: white;
    flex-shrink: 0;
}

.cancellation-modal-header .modal-title {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Return Modal Header - Matching Tracking Modal */
.return-modal-header {
    background: linear-gradient(135deg, #5fb2bd 0%, #4a9ba5 100%) !important;
    color: white !important;
    border-bottom: none !important;
    padding: 1.5rem !important;
}

.return-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    color: white;
    flex-shrink: 0;
}

.return-modal-header .modal-title {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-header .btn-close {
    opacity: 1 !important;
    font-size: 1.5rem !important;
    padding: 0.5rem !important;
    margin: -0.5rem -0.5rem -0.5rem auto !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1056 !important;
    background: transparent !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 1em !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0;
    width: 2.5rem !important;
    height: 2.5rem !important;
    min-width: 2.5rem !important;
    min-height: 2.5rem !important;
    line-height: 1 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.modal-header .btn-close:hover,
.modal-header .btn-close:focus {
    opacity: 0.75 !important;
    outline: none !important;
    box-shadow: none !important;
}

.modal-header .btn-close:active {
    opacity: 0.5 !important;
}

/* Hide any minimize icons in modal headers */
.modal-header .bi-dash,
.modal-header .bi-minus,
.modal-header [class*="minimize"],
.modal-header [class*="dash"]:not(.btn-close) {
    display: none !important;
}

/* Hide refresh icons in modal headers if not needed (but keep the main icon in title) */
.modal-header > .bi-arrow-clockwise,
.modal-header > .bi-arrow-repeat,
.modal-header button .bi-arrow-clockwise,
.modal-header button .bi-arrow-repeat {
    display: none !important;
}

/* Hide any button or element with refresh/minimize in class name (except the main title icon) */
.modal-header button[class*="refresh"]:not(.btn-close),
.modal-header button[class*="minimize"]:not(.btn-close),
.modal-header > i[class*="refresh"]:not(.bi-arrow-counterclockwise.text-primary),
.modal-header > i[class*="minimize"] {
    display: none !important;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #212529;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    font-size: 1.0625rem;
}

/* Scrollbar styling removed - using unified system */

.modal-footer {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Alert Styles in Modals */
.modal-body .alert {
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.modal-body .alert-heading {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.modal-body .alert p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-body .alert ul {
    font-size: 1.125rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-body .alert i {
    font-size: 1.5rem;
}

/* Form Controls in Modals */
.modal-body .form-control-lg {
    font-size: 1.125rem;
    padding: 0.875rem 1.125rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    resize: vertical;
}

.modal-body .form-control-lg:focus {
    border-color: #5fb2bd;
    box-shadow: 0 0 0 0.2rem rgba(95, 178, 189, 0.25);
}

.modal-body .form-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-body .form-text {
    font-size: 1.0625rem;
    color: #6c757d;
    margin-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

/* Small text and muted text in modals */
.modal-body .small,
.modal-body small {
    font-size: 1rem !important;
}

.modal-body .text-muted {
    font-size: 1.0625rem;
}

/* Modal Buttons */
.modal-footer .btn {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 44px;
}

.modal-footer .btn i {
    font-size: 1.1875rem;
}

.modal-footer .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.modal-footer .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #ffffff;
    border-color: #6c757d;
}

.modal-footer .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
}

.modal-footer .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.modal-footer .btn-primary {
    background-color: #5fb2bd;
    border-color: #5fb2bd;
    color: #ffffff;
}

.modal-footer .btn-primary:hover {
    background-color: #4a9ba5;
    border-color: #4a9ba5;
}

/* Badge Styles in Modals */
.modal-body .badge {
    font-size: 1.125rem;
    padding: 0.5rem 0.875rem;
    font-weight: 600;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-content {
        border-radius: 8px;
        max-height: calc(100vh - 1rem);
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        max-height: calc(100vh - 250px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        padding: 1rem;
        flex-wrap: nowrap;
    }

    .modal-header     .modal-title {
        font-size: 1.375rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        min-width: 0;
    }

    .modal-header .btn-close {
        font-size: 1.25rem !important;
        padding: 0.5rem !important;
        margin: -0.5rem -0.5rem -0.5rem 0.5rem !important;
        flex-shrink: 0;
    }

    /* Responsive modal headers */
    .cancellation-modal-header,
    .return-modal-header {
        padding: 1.25rem !important;
    }

    .cancellation-header-icon,
    .return-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .cancellation-modal-header .modal-title,
    .return-modal-header .modal-title {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .modal-footer {
        padding: 0.75rem 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        min-height: 38px;
        flex: 1;
        white-space: nowrap;
    }

    .modal-body .alert {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .modal-body .alert-heading {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .modal-body .alert p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .modal-body .alert ul {
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 1.25rem;
    }

    .modal-body .form-label {
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
    }

    .modal-body .form-control-lg {
        font-size: 1.0625rem;
        padding: 0.75rem 1rem;
        line-height: 1.5;
    }

    .modal-body .form-text {
        font-size: 0.9375rem;
        margin-top: 0.5rem;
    }

    .modal-footer .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        min-height: 38px;
        flex: 1;
        white-space: nowrap;
    }

    .modal-body .badge {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .modal-dialog {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
    }

    .modal-content {
        max-height: calc(100vh - 0.5rem);
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        padding: 0.875rem;
        flex-wrap: wrap;
    }

    .modal-header .modal-title {
        font-size: 1.125rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .modal-header .modal-title i {
        font-size: 1.125rem;
        margin-right: 0.5rem !important;
        margin-left: 0 !important;
    }

    .modal-header .btn-close {
        font-size: 1.125rem !important;
        padding: 0.375rem !important;
        margin-left: auto !important;
        flex-shrink: 0;
    }

    /* Responsive modal headers - mobile */
    .cancellation-modal-header,
    .return-modal-header {
        padding: 1rem 0.875rem !important;
    }

    .cancellation-header-icon,
    .return-header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .cancellation-modal-header .modal-title,
    .return-modal-header .modal-title {
        font-size: 1.125rem;
    }

    .cancellation-modal-header .mx-2,
    .return-modal-header .mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .modal-body {
        padding: 1rem 0.875rem;
    }

    .modal-footer {
        padding: 0.625rem 0.875rem;
        flex-direction: row;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        flex: 1;
        min-width: 0;
        margin: 0;
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .modal-footer .btn i {
        font-size: 0.875rem;
    }

    .modal-body .alert {
        padding: 0.875rem;
    }

    .modal-body .alert .d-flex {
        flex-wrap: nowrap;
    }

    .modal-body .alert i {
        font-size: 1.25rem !important;
        margin-right: 0.75rem !important;
        margin-left: 0 !important;
        flex-shrink: 0;
    }

    .modal-body .alert-heading {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .modal-body .alert-heading i {
        display: none;
    }

    .modal-body .alert p,
    .modal-body .alert ul {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .modal-body .alert ul {
        padding-left: 1rem;
    }

    .modal-body .form-label {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .modal-body .form-control-lg {
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
        line-height: 1.5;
    }

    .modal-body .form-text {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }

    .modal-body .form-text i {
        font-size: 0.875rem;
        margin-right: 0.375rem !important;
        margin-left: 0 !important;
    }

    .modal-footer .btn {
        font-size: 0.9375rem;
        padding: 0.625rem 1rem;
    }

    .modal-body .badge {
        font-size: 0.875rem;
        padding: 0.375rem 0.625rem;
    }

    .modal-body .d-flex.gap-2 {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }
}


/* ========================================
   more-questions.css
   ======================================== */


/**
 * More Questions CTA Component
 */

.cta-display {
    background-image: url('/frontend/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center center;
}

.cta-button {
    color: #fff;
    background: #333;
}

@media (max-width: 767px) {
    .cta.cta-display {
        background-size: cover !important;
        background-position: center center !important;
        position: relative;
        min-height: 300px;
    }

    .cta.cta-display .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 200px;
    }

    .cta.cta-display .row {
        width: 100%;
    }

    .cta.cta-display .row.no-gutters {
        flex-direction: column;
        align-items: center;
    }

    .cta.cta-display .col {
        text-align: center;
        padding: 1.5rem !important;
    }

    .cta.cta-display .col-auto {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: auto;
        padding-bottom: 2rem;
    }

    .cta.cta-display .col-auto .btn {
        width: auto;
    }
}




/* ========================================
   order-table.css
   ======================================== */


/**
 * Order Table Component Styles
 * Professional responsive design using Bootstrap CSS
 */

/* Order History Container */
.order-history-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-history-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.order-history-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.order-history-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Desktop Table Styles */
.d-none.d-lg-block .table {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.d-none.d-lg-block .table thead th {
    padding: 16px 18px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #5fb2bd !important;
    color: #ffffff !important;
    border: none;
}

.d-none.d-lg-block .table-primary {
    --bs-table-bg: #5fb2bd;
    --bs-table-color: #ffffff;
    background-color: #5fb2bd !important;
    color: #ffffff !important;
}

.d-none.d-lg-block .table tbody td {
    padding: 18px;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
}

/* Order Cell Text Styles */
.order-cell-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Date Cell - No Wrapping */
.d-none.d-lg-block .table tbody td:nth-child(2) {
    white-space: nowrap;
}

.order-total-cell {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Product Links */
.order-product-cell {
    max-width: 350px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.order-product-links {
    line-height: 1.7;
}

.order-product-link {
    color: #212529;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    display: inline;
    word-break: break-word;
    text-decoration: none;
}

.order-product-link:hover {
    color: #5fb2bd;
    text-decoration: underline !important;
}

.order-product-text {
    color: #212529;
    font-weight: 500;
    font-size: 1.05rem;
    word-break: break-word;
}

.d-none.d-lg-block .table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.d-none.d-lg-block .table tbody tr:last-child td {
    border-bottom: none;
}

/* Desktop Action Icons */
.d-none.d-lg-block .action-icon {
    font-size: 1.5rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0 8px;
}

.d-none.d-lg-block .action-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.d-none.d-lg-block .action-icon i {
    display: inline-block;
    line-height: 1;
    font-size: 1.5rem;
}

/* Mobile Card Styles */
.d-lg-none .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.d-lg-none .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.d-lg-none .card-body {
    padding: 1.25rem;
}

.d-lg-none .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.d-lg-none .card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Mobile Text Sizes */
.order-mobile-id {
    font-size: 1.1rem;
}

.order-mobile-date {
    font-size: 0.95rem;
}

.order-mobile-status {
    font-size: 0.95rem;
}

.order-mobile-product {
    font-size: 1rem;
}

.order-mobile-total {
    font-size: 1.2rem;
}

.d-lg-none .order-product-link {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
    text-decoration: none;
}

.d-lg-none .order-product-link:hover {
    color: #5fb2bd;
    text-decoration: underline !important;
}

.d-lg-none .order-product-text {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
}

.d-lg-none .action-icon {
    font-size: 1.4rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0 6px;
}

.d-lg-none .action-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.d-lg-none .action-icon i {
    display: inline-block;
    line-height: 1;
    font-size: 1.4rem;
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 8px 14px;
    font-size: 0.95rem;
}

.order-status-badge {
    font-size: 1rem;
    padding: 8px 16px;
}

.order-sub-badge {
    font-size: 0.9rem;
    padding: 6px 12px;
}

.badge i {
    font-size: 0.85rem;
    margin-right: 4px;
}

/* Icon Visibility and Styling */
.badge i {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
}

.action-icon {
    text-decoration: none;
}

.action-icon i {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .order-history-container {
        padding: 16px;
    }

    .order-history-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .order-history-container {
        padding: 14px;
    }

    .order-history-title {
        font-size: 1.3rem;
    }

    .order-history-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .order-history-container {
        padding: 12px;
    }

    .order-history-title {
        font-size: 1.2rem;
    }

    .order-history-subtitle {
        font-size: 0.85rem;
    }

    .d-lg-none .card-body {
        padding: 1rem;
    }

    .d-lg-none .btn-group .btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .order-history-container {
        padding: 10px;
    }

    .order-history-title {
        font-size: 1.1rem;
    }

    .d-lg-none .card-body {
        padding: 0.875rem;
    }

    .d-lg-none .card-title {
        font-size: 0.95rem;
    }

    .d-lg-none .card-text {
        font-size: 0.85rem;
    }

    .d-lg-none .btn-group .btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .d-lg-none .btn-group .btn i {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .d-lg-none {
        display: none !important;
    }

    .d-none.d-lg-block {
        display: block !important;
    }

    .btn-group {
        display: none !important;
    }
}



/* ========================================
   tracking-modal.css
   ======================================== */


/**
 * Order Tracking Modal Styles
 * Professional, modern design for order tracking system
 */

/* Modal Dialog - Fixed width to prevent shrinking */
.tracking-modal-dialog {
    max-width: 900px !important;
    min-width: 600px !important;
    width: 90% !important;
    margin: 1rem auto !important;
}

/* Modal Container */
#trackingModal {
    z-index: 1055 !important;
}

#trackingModal .modal-dialog {
    z-index: 1056 !important;
    pointer-events: auto !important;
}

.tracking-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 100%;
    z-index: 1057 !important;
    pointer-events: auto !important;
}

/* Modal Header */
.tracking-modal-header {
    background: linear-gradient(135deg, #5fb2bd 0%, #4a9ba5 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.tracking-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.tracking-modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.tracking-modal-header small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Modal Body */
.tracking-modal-body {
    padding: 2rem;
    background: #f8f9fa;
    min-height: 300px;
}

/* Ensure content doesn't shrink */
#tracking-content {
    min-width: 100%;
}

/* Info Card */
.tracking-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.status-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 1.25rem;
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0d6efd;
    flex-shrink: 0;
}

.alert-warning .alert-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.alert-info .alert-icon {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.alert-heading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


/* Detail Cards */
.tracking-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.detail-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #212529;
    font-size: 0.95rem;
}

.detail-card-header i {
    color: #5fb2bd;
}

.detail-card-body {
    padding: 1.25rem;
    flex: 1;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #495057;
}

.tracking-number-text {
    font-size: 1.1rem;
    color: #212529;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.tracking-button {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.tracking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 178, 189, 0.4);
}

#no-tracking-message {
    font-size: 0.95rem;
    padding: 1rem;
}

/* Modal Footer */
.tracking-modal-footer {
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 0.75rem 1.5rem;
}

.tracking-modal-footer .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-modal-dialog {
        max-width: 95% !important;
        min-width: auto !important;
        width: 95% !important;
        margin: 0.5rem auto !important;
    }

    .tracking-modal-content {
        margin: 0;
    }

    .tracking-modal-body {
        padding: 1.25rem;
    }

    .tracking-info-card {
        padding: 1.25rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .info-label {
        font-size: 0.7rem;
    }

    .tracking-modal-header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
    }

    .tracking-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .tracking-modal-header .modal-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .tracking-modal-header small {
        font-size: 0.8rem;
    }

    .tracking-modal-footer {
        padding: 0.75rem 1rem;
    }

    .tracking-modal-footer .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .tracking-button {
        min-width: auto;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .detail-card-header {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .detail-card-body {
        padding: 1rem;
    }

    .alert-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .alert {
        padding: 1rem;
    }

    .alert-heading {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tracking-modal-dialog {
        max-width: calc(100% - 0.5rem) !important;
        min-width: auto !important;
        width: calc(100% - 0.5rem) !important;
        margin: 0.25rem auto !important;
    }

    .tracking-modal-content {
        margin: 0;
        border-radius: 12px;
    }

    .tracking-modal-body {
        padding: 1rem;
    }

    .tracking-info-card {
        padding: 1rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .info-label {
        font-size: 0.65rem;
        margin-bottom: 0.375rem;
    }

    .tracking-modal-header {
        padding: 0.875rem 1rem;
    }

    .tracking-header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .tracking-modal-header .modal-title {
        font-size: 1rem;
    }

    .tracking-modal-header small {
        font-size: 0.75rem;
    }

    .tracking-modal-header .mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .tracking-modal-footer {
        padding: 0.625rem 0.875rem;
    }

    .tracking-modal-footer .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .detail-card-header {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }

    .detail-card-body {
        padding: 0.875rem;
    }

    .address-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .tracking-number-text {
        font-size: 1rem;
    }

    .tracking-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .row.g-4 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .row.g-4 > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1rem;
    }

    .alert {
        padding: 0.875rem;
    }

    .alert-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-right: 0.75rem !important;
    }

    .alert-heading {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .alert p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-modal-content {
    animation: fadeIn 0.3s ease;
}




/* ========================================
   home.css
   ======================================== */


/**
 * Home Page Styles
 */




/* ========================================
   campaign.css
   ======================================== */


/**
 * Campaign Page Styles
 * Styles for campaign listing page, including banners, countdown timers, and product cards
 */

/* Campaign Header */
.campaign-header{
    height: 350px;
}

/* =======================================================
   Campaign Product Styles
   ======================================================= */

/* Campaign Product Card Styling */
.campaign-product {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.campaign-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b6b 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.campaign-product .product-media {
    position: relative;
}

.campaign-product .product-discount-label {
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.campaign-product .product-price .new-price {
    position: relative;
}

.campaign-product .campaign-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
    font-weight: 600;
    margin-top: 4px;
}

.campaign-product .btn-product.campaign-cart-btn {
    position: relative;
    overflow: hidden;
}

.campaign-product .btn-product.campaign-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.campaign-product .btn-product.campaign-cart-btn:hover::after {
    width: 300px;
    height: 300px;
}

.campaign-product .btn-product.campaign-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Campaign product hover effect */
.campaign-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Campaign alert banner styling */
.alert[style*="background: linear-gradient"] {
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

/* =======================================================
   CAMPAIGN PAGE STYLES
   =======================================================
   This section contains all CSS styles for the campaign
   listing page, including banners, countdown timers,
   and product cards.
   All inline styles from campaign.blade.php are moved here.
   ======================================================= */

/* Campaign Container - Main wrapper for all campaigns */
.campaign-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

/* Campaign Event Section - Individual campaign card */
.campaign-event {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Campaign Banner - Base Styles with Fixed Heights */
.campaign-banner {
    position: relative;
    height: 200px; /* Fixed height for mobile */
}

@media (min-width: 768px) {
    .campaign-banner {
        height: 400px; /* Fixed height for desktop/laptop */
    }
}

.campaign-banner-with-image {
    position: relative;
    overflow: hidden;
}

.campaign-banner-desktop,
.campaign-banner-mobile {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Campaign Banner Content Wrapper - Contains text and products count */
.campaign-banner-content-wrapper {
    position: relative;
    color: #ffffff;
    padding: 1rem 1.25rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .campaign-banner-content-wrapper {
        padding: 3rem;
    }
}

/* Campaign Banner Title - With image background */
.campaign-banner-title-with-image {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Campaign Banner Description - With image background */
.campaign-banner-description-with-image {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.campaign-banner-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3rem;
}

.campaign-banner-content {
    position: relative;
    color: #ffffff;
    padding: 1rem 1.25rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .campaign-banner-content {
        padding: 3rem;
    }
}

/* Campaign Banner Title */
.campaign-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.campaign-banner-title-gradient {
    text-shadow: none;
}

/* Campaign Banner Description */
.campaign-banner-description {
    color: #333;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.campaign-banner-description-gradient {
    opacity: 0.95;
    text-shadow: none;
}

/* Campaign Products Count Badge - Bottom Left Position */
.campaign-products-count-top-right {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 3;
}

@media (min-width: 768px) {
    .campaign-products-count-top-right {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

/* Campaign Products Count Box */
.campaign-products-count {
    display: inline-block;
    text-align: center;
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.campaign-products-count-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.campaign-products-count-gradient {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.campaign-products-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.campaign-products-count-gradient .campaign-products-number {
    font-size: 3rem;
}

.campaign-products-label {
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Campaign Countdown Timer */
.campaign-countdown-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.campaign-countdown-header {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.campaign-countdown-icon {
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.campaign-countdown-label {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.campaign-countdown-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .campaign-countdown-items {
        gap: 0.75rem;
    }
}

.campaign-countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
}

.campaign-countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* Campaign Countdown Unit - Days, Hours, Min, Sec labels */
.campaign-countdown-unit {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Campaign Countdown Separator - Colon between time units */
.campaign-countdown-separator {
    color: #ffffff;
    font-weight: 700;
}

/* Campaign Products Carousel - Owl carousel wrapper */
.campaign-products-carousel {
    padding: 1rem 0;
}

/* Campaign Product Card - Individual product in carousel */
.campaign-product-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    margin: 0.5rem;
}

.campaign-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Campaign Product Price */
.campaign-product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2em;
}

.campaign-product-old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Campaign Rating Width */
.campaign-rating-width {
    width: 60%;
}

/* Campaign Event Product Cards (Legacy Support) */
.campaign-event .product {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.campaign-event .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Campaign banner on product details page */
.campaign-banner {
    transition: all 0.3s ease;
}

.campaign-banner:hover {
    border-color: rgba(95, 178, 189, 0.4) !important;
    box-shadow: 0 2px 8px rgba(95, 178, 189, 0.15);
    transform: translateY(-2px);
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .campaign-banner {
        padding: 1.15rem 1.35rem !important;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .campaign-banner {
        padding: 1.1rem 1.3rem !important;
    }

    .campaign-banner-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .campaign-countdown-section {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        width: 100%;
        text-align: left !important;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(95, 178, 189, 0.15);
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 44px !important;
        height: 44px !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.2rem !important;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .campaign-banner {
        padding: 1rem 1.15rem !important;
        border-radius: 10px !important;
    }

    .campaign-banner-content {
        flex-direction: row;
        align-items: center !important;
        gap: 0.75rem;
    }

    .campaign-banner-content > div:first-child {
        width: auto;
        flex: 1;
        margin-bottom: 0;
    }

    .campaign-countdown-section {
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: auto;
        text-align: right !important;
        padding-top: 0 !important;
        border-top: none !important;
        flex-shrink: 0;
        min-width: 100px;
    }

    .campaign-banner-content .d-flex > div:first-child {
        margin-right: 0.875rem;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 42px !important;
        height: 42px !important;
        margin-right: 1rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.15rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.8rem !important;
    }

    .campaign-countdown-section > div:first-child {
        font-size: 0.7rem !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.9rem !important;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .campaign-banner {
        padding: 1.1rem 1.15rem !important;
        border-radius: 8px !important;
    }

    .campaign-banner-content {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.875rem;
    }

    .campaign-banner-content > div:first-child {
        width: 100%;
        margin-bottom: 0;
    }

    .campaign-countdown-section {
        width: 100% !important;
        text-align: left !important;
        margin-left: 0 !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(95, 178, 189, 0.15) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .campaign-banner-content .d-flex > div:first-child {
        margin-right: 0.875rem;
        width: 100%;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 44px !important;
        height: 44px !important;
        margin-right: 1rem !important;
        flex-shrink: 0;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.25rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child {
        flex: 1;
        min-width: 0;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.95rem !important;
        margin-bottom: 0.35rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .campaign-countdown-section > div:first-child {
        font-size: 0.75rem !important;
        margin-bottom: 0 !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.95rem !important;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    .campaign-banner {
        padding: 1rem 1.05rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 40px !important;
        height: 40px !important;
        margin-right: 0.875rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.15rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.9rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.85rem !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.9rem !important;
    }
}




/* ========================================
   about.css
   ======================================== */


/**
 * About Page Styles
 *
 * This file contains styles for the About Us page including:
 * - Vision & Mission sections
 * - Team member cards
 * - Who We Are section
 * - About images
 *
 * Ready for professional texture effects and design enhancements.
 */

/* ========================================
   VISION & MISSION SECTIONS
   ======================================== */

.about-vision-mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vision-mission-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(95, 178, 189, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #21444d 100%);
    transition: width 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vision-mission-card:hover::before {
    width: 6px;
}

.vision-mission-card .title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #21444d;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vision-mission-card .title i {
    font-size: 2.8rem;
    color: var(--primary);
    background: rgba(95, 178, 189, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.vision-mission-card p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ========================================
   TEAM MEMBER CARDS
   ======================================== */

.member {
    position: relative;
    margin-bottom: 2rem;
}

.member-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.member-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member:hover .member-overlay {
    opacity: 1;
}

.member:hover .member-media img {
    transform: scale(1.1);
}

.member-overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.member-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.member-title span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ccc;
    margin-top: 0.5rem;
}

.member-overlay-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* Social Icons - Centered with text content */
.member-overlay-content .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
    width: 100%;
}

.member-overlay-content .social-icons .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.member-overlay-content .social-icons .social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(95, 178, 189, 0.4);
}

.member-content {
    padding: 1.5rem 0;
    text-align: center;
}

.member-content .member-title {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-content .member-title span {
    color: #777;
    font-size: 1.3rem;
}

/* ========================================
   ABOUT IMAGES
   ======================================== */

.about-images {
    position: relative;
    text-align: right;
    padding-top: 4rem;
}

.about-img-front {
    position: relative;
    z-index: 2;
    border: 2rem solid #f9f9f9;
    width: 380px;
    height: auto;
    /* Add texture effects here */
}

.about-img-back {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    /* Add texture effects here */
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */

.about-who-we-are {
    background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.who-we-are-content {
    position: relative;
    z-index: 1;
}

.who-we-are-content .title {
    font-size: 3rem;
    font-weight: 700;
    color: #21444d;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.who-we-are-content .title i {
    font-size: 3.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(95, 178, 189, 0.1) 0%, rgba(95, 178, 189, 0.2) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(95, 178, 189, 0.2);
}

.who-we-are-content .lead {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.who-we-are-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Button styles removed - use .btn-global instead */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .vision-mission-card {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }

    .vision-mission-card .title {
        font-size: 2rem;
    }

    .vision-mission-card .title i {
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
    }

    .who-we-are-content .title {
        font-size: 2.4rem;
    }

    .who-we-are-content .title i {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }

    .who-we-are-content .lead {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .about-vision-mission {
        padding: 3rem 0;
    }

    .vision-mission-card {
        padding: 2rem;
    }

    .vision-mission-card .title {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .about-who-we-are {
        padding: 3rem 0;
    }

    .who-we-are-content .title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .member-overlay-content {
        padding: 1.5rem;
    }

    .member-overlay-content .social-icons {
        gap: 1rem;
    }

    .member-overlay-content .social-icons .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
}





/* ========================================
   checkout.css
   ======================================== */


/**
 * Checkout Page Styles
 */

.payment-option-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 16px;
    min-height: 60px;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.payment-option-wrapper:hover {
    background-color: #f0f0f0;
}

.payment-option-wrapper .custom-control.custom-radio {
    margin: 0;
    padding-left: 2.6rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.payment-option-wrapper .custom-control-label {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding-left: 0;
    cursor: pointer;
}

.payment-option-wrapper .custom-control-label::before {
    top: 50% !important;
    transform: translateY(-50%);
    left: 0 !important;
    margin-top: 0;
}

.payment-option-wrapper .custom-control-label::after {
    top: 50% !important;
    transform: translateY(-50%);
    left: 0.5rem !important;
    margin-top: 0;
}

.payment-label-content {
    margin-left: 2.3rem;
    line-height: 1.4;
}

.payment-label-content strong {
    color: #333;
    display: block;
}

.payment-label-content .small {
    color: #666;
}

/* ========================================
   Universal Modern Form System
   Used across ALL forms: Checkout, Edit Profile, Login, Register, Contact, Change Password, Reset Password, etc.
   Maintain consistency - DO NOT duplicate these styles elsewhere
   ======================================== */

/* Card & Layout Components */
.checkout-modern {
	padding: 3rem 0 5rem;
}

.checkout-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.checkout-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.checkout-card-header {
	background: var(--primary);
	padding: 2rem 2.5rem;
	border-bottom: none;
}

.checkout-card-title {
	font-size: 2rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.checkout-card-title i {
	font-size: 2.2rem;
}

.checkout-card-body {
	padding: 2.5rem;
}

.checkout-summary-card {
	position: sticky;
	top: 2rem;
}

/* Form Components */

.form-group-modern {
	margin-bottom: 2.5rem;
}

.form-label-modern {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 1rem;
}

.label-text {
	font-size: 1.5rem;
}

.label-required {
	color: #e74c3c;
	font-size: 1.6rem;
	font-weight: 600;
}

.label-optional {
	color: #95a5a6;
	font-size: 1.3rem;
	font-weight: 400;
	font-style: italic;
}

.form-control-modern {
	width: 100%;
	height: 56px;
	padding: 1.2rem 1.8rem;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #333;
	background-color: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-weight: 400;
}

.form-control-modern:focus {
	background-color: #ffffff;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(95, 178, 189, 0.1);
	outline: none;
}

.form-control-modern::placeholder {
	color: #adb5bd;
	font-size: 1.5rem;
}

textarea.form-control-modern {
	min-height: 140px;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	resize: vertical;
}

select.form-control-modern {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.8rem center;
	background-size: 12px;
	padding-right: 4rem;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-row-spaced {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 0;
}

.form-row-spaced .form-group-modern {
	margin-bottom: 2.5rem;
}

/* Form Error Messages - Consistent styling across all forms */
.form-control-modern.is-invalid,
.form-control-modern:invalid {
	border-color: var(--primary);
}

.form-control-modern.is-invalid:focus,
.form-control-modern:invalid:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(95, 178, 189, 0.1);
}

/* Form Success Messages */
.form-control-modern.is-valid {
	border-color: var(--secondary);
}

.form-control-modern.is-valid:focus {
	border-color: var(--secondary);
	box-shadow: 0 0 0 4px rgba(33, 68, 77, 0.1);
}

/* Responsive Form Row */
@media (max-width: 768px) {
	.form-row-spaced {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* Phone Input */
.phone-input-wrapper {
	display: flex;
	gap: 1rem;
	align-items: stretch;
}

.phone-code-input {
	flex: 0 0 100px;
	text-align: center;
	font-weight: 600;
	background-color: #e9ecef;
}

.phone-number-input {
	flex: 1;
}

/* Form Helper Text & Error Messages */
.form-error-message {
	font-size: 1.3rem;
	margin-top: 0.5rem;
	display: block;
	color: #e74c3c;
}

.form-help-text {
	font-size: 1.3rem;
	margin-top: 0.5rem;
	display: block;
	color: #6c757d;
}

.form-link-wrapper {
	margin-top: 0.8rem;
}

.form-link {
	font-size: 1.4rem;
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.form-link:hover {
	color: var(--secondary);
	text-decoration: underline;
}

/* Form Buttons */
.btn-form-submit {
	width: 100%;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 1.2rem 3rem;
}

.btn-form-submit-inline {
	font-size: 1.6rem;
	font-weight: 500;
	padding: 1.2rem 3rem;
}

/* Form Sections */
.form-social-section {
	margin: 2rem 0;
}

.form-extra-links {
	margin-top: 2rem;
	font-size: 1.5rem;
}

.form-extra-links a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.form-extra-links a:hover {
	color: var(--secondary);
	text-decoration: underline;
}

/* Form Alerts */
.form-alert {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

/* Form Description Text */
.form-description {
	font-size: 1.5rem;
	color: #6c757d;
}

/* Checkout Option */
.checkout-option-wrapper {
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background-color: #f8f9fa;
	border-radius: 8px;
	border: 2px solid #e9ecef;
}

.checkout-option-wrapper .custom-control-label {
	font-size: 1.5rem;
	font-weight: 500;
	color: #333;
	cursor: pointer;
}

/* Coupon Collapsible Section */
.coupon-collapsible-wrapper {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.coupon-collapsible-wrapper:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.coupon-toggle-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.8rem 2.5rem;
	background: #ffffff;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
}

.coupon-toggle-header:hover {
	background: #f8f9fa;
}

.coupon-toggle-header:focus {
	outline: none;
	background: #f8f9fa;
}

.coupon-toggle-text {
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
	display: flex;
	align-items: center;
	gap: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.coupon-toggle-text i {
	font-size: 2rem;
	color: var(--primary);
}

.coupon-chevron {
	font-size: 1.4rem;
	color: #666;
	transition: transform 0.3s ease;
	margin-left: auto;
	font-weight: 600;
}

.coupon-toggle-header.active .coupon-chevron {
	transform: rotate(180deg);
}

.coupon-collapsible-content {
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	max-height: 0;
	opacity: 0;
	display: none;
}

.coupon-collapsible-content.show {
	max-height: 500px;
	opacity: 1;
	display: block;
}

.coupon-collapsible-content .checkout-card {
	margin: 0;
	border-radius: 0;
	box-shadow: none;
	border-top: 1px solid #e9ecef;
}

.coupon-collapsible-content .checkout-card-body {
	padding: 2rem 2.5rem;
}

/* Coupon Section */
.coupon-input-group {
	display: flex;
	gap: 1rem;
}

.coupon-input {
	flex: 1;
}

.btn-coupon-apply {
	height: 56px;
	padding: 0 2.5rem;
	background: var(--primary);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	white-space: nowrap;
}

.btn-coupon-apply:hover {
	transform: translateY(-2px);
	background: var(--secondary);
	box-shadow: 0 4px 12px rgba(95, 178, 189, 0.4);
}

.coupon-success-message {
	margin-top: 1.5rem;
	padding: 1.2rem 1.5rem;
	background-color: #d4edda;
	border: 2px solid #c3e6cb;
	border-radius: 8px;
	color: #155724;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.coupon-success-message i {
	font-size: 1.8rem;
	color: #28a745;
}

.coupon-remove-link {
	margin-left: auto;
	color: #dc3545;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.coupon-remove-link:hover {
	color: #c82333;
	text-decoration: underline;
}

.coupon-error-message {
	margin-top: 1.5rem;
	padding: 1.2rem 1.5rem;
	background-color: #f8d7da;
	border: 2px solid #f5c6cb;
	border-radius: 8px;
	color: #721c24;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.coupon-error-message i {
	font-size: 1.8rem;
	color: #dc3545;
}

/* Order Summary */
.order-products-list {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	padding-right: 1.2rem;
	border-bottom: 2px solid #e9ecef;
	/* Scrollbar styling removed - using unified system */
}

.order-product-item {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
}

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

/* Ensure product image links are clickable */
.order-product-item .product-image-link {
	position: relative;
	z-index: 10;
}

.order-product-item .product-image-link,
.order-product-item .product-image-link * {
	pointer-events: auto !important;
}

.product-image-link {
	flex: 0 0 60px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	z-index: 10;
	transition: all 0.3s ease;
}

.product-image-link:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.order-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	pointer-events: auto;
	display: block;
}

.product-image-link:hover .order-product-image {
	transform: scale(1.1);
}

.product-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 0;
}

.product-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.3;
}

.product-name:hover {
	color: var(--primary);
}

.product-variant,
.product-quantity {
	font-size: 1.1rem;
	color: #6c757d;
	line-height: 1.4;
}

.product-price {
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
}

.product-price .original-price {
	text-decoration: line-through;
	color: #999;
	font-size: 1.2rem;
	font-weight: 400;
}

.product-price .discounted-price {
	color: var(--primary);
	font-weight: 600;
	font-size: 1.4rem;
}

.empty-cart-message {
	text-align: center;
	padding: 4rem 2rem;
	color: #6c757d;
}

.empty-cart-message i {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: block;
}

.empty-cart-message p {
	font-size: 1.6rem;
	margin: 0;
}

/* Order Totals */
.order-totals {
	margin-bottom: 2.5rem;
}

.order-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 0;
	font-size: 1.5rem;
}

.order-total-row .total-label {
	color: #6c757d;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.order-total-row .total-label i {
	font-size: 1.4rem;
}

.order-total-row .total-value {
	color: #333;
	font-weight: 600;
	font-size: 1.6rem;
}

.discount-row .total-label {
	color: #28a745;
}

.discount-row .total-value {
	color: #28a745;
}

.coupon-discount-row {
	background-color: #d4edda;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin: 0.5rem 0;
	border: 2px solid #c3e6cb;
}

.final-total {
	border-top: 2px solid #e9ecef;
	margin-top: 1rem;
	padding-top: 1.5rem;
}

.final-total .total-label {
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;
}

.final-total .total-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
}

/* Shipping Section */
.shipping-section {
	margin: 2rem 0;
}

.shipping-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.2rem;
}

.shipping-option-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	position: relative;
	cursor: pointer;
}

.shipping-option-item:last-child {
	margin-bottom: 0;
}

.shipping-radio-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	cursor: pointer;
}

.shipping-option-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
	font-size: 1.5rem;
	font-weight: 400;
	color: #333;
	padding: 0.5rem 0;
	margin: 0;
	user-select: none;
	position: relative;
	padding-left: 2.5rem;
}

.shipping-option-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #adb5bd;
	background-color: #ffffff;
	border-radius: 50%;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.shipping-radio-input:checked + .shipping-option-label::before {
	border-color: var(--primary);
	background-color: var(--primary);
}

.shipping-option-label::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-color: transparent;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.shipping-radio-input:checked + .shipping-option-label::after {
	background-color: #ffffff;
}

.shipping-name {
	flex: 1;
	font-weight: 400;
}

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

/* Payment Section */
.payment-section {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 2px solid #e9ecef;
}

.payment-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.payment-section-title i {
	font-size: 2rem;
	color: var(--primary);
}

.payment-method-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.payment-option-card {
	position: relative;
	background-color: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 10px;
	padding: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.payment-option-card:hover {
	border-color: var(--primary);
	box-shadow: 0 2px 8px rgba(95, 178, 189, 0.15);
}

.payment-option-card.selected {
	border-color: var(--primary);
	background-color: #f8f9fa;
	box-shadow: 0 0 0 3px rgba(95, 178, 189, 0.1);
}

.payment-radio-hidden {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.payment-card-label {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.payment-icon {
	flex: 0 0 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	border-radius: 8px;
	color: #ffffff;
	font-size: 2rem;
}

.payment-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.payment-info strong {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	display: block;
}

.payment-info .small {
	font-size: 1.3rem;
	color: #6c757d;
	display: block;
}

/* Place Order Button */
.btn-place-order {
	width: 100%;
	height: 64px;
	margin-top: 2.5rem;
	background: var(--primary);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(95, 178, 189, 0.3);
}

.btn-place-order:hover {
	transform: translateY(-2px);
	background: var(--secondary);
	box-shadow: 0 6px 20px rgba(95, 178, 189, 0.4);
}

.btn-place-order:active {
	transform: translateY(0);
}

.btn-place-order i {
	font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
	.checkout-modern {
		padding: 2rem 0 3rem;
	}

	.checkout-card-header {
		padding: 1.5rem 2rem;
	}

	.checkout-card-title {
		font-size: 1.8rem;
	}

	.checkout-card-body {
		padding: 2rem;
	}

	.checkout-summary-card {
		position: static;
		margin-top: 3rem;
	}

	.form-row-spaced {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.phone-input-wrapper {
		flex-direction: row;
		gap: 0.8rem;
	}

	.phone-code-input {
		flex: 0 0 100px;
	}
}

@media (max-width: 767px) {
	.checkout-card-header {
		padding: 1.5rem;
	}

	.checkout-card-title {
		font-size: 1.6rem;
	}

	.checkout-card-body {
		padding: 1.5rem;
	}

	.form-control-modern {
		height: 50px;
		font-size: 1.5rem;
		padding: 1rem 1.5rem;
	}

	.form-label-modern {
		font-size: 1.4rem;
	}

	.order-product-item {
		flex-wrap: wrap;
	}

	.product-image-link {
		flex: 0 0 60px;
		height: 60px;
	}

	.btn-place-order {
		height: 56px;
		font-size: 1.6rem;
	}

	.coupon-toggle-header {
		padding: 1.5rem;
	}

	.coupon-toggle-text {
		font-size: 1.6rem;
	}

	.coupon-collapsible-content .checkout-card-body {
		padding: 1.5rem;
	}
}



/* ========================================
   product.css
   ======================================== */


/**
 * Product Page Styles
 */

/* Fixed Main Image Container */
.product-main-image-wrapper {
    width: 100%;
    position: relative;
}

.product-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-main-image {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .product-main-image {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }
}

/* Horizontal Thumbnail Gallery Styles */
.product-thumbnail-gallery-wrapper {
    margin-top: 1rem;
}

/* Product Gallery */
.product-image-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

.product-image-gallery .product-gallery-item {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    max-width: 80px;
    padding: 0;
    margin: 0;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.product-image-gallery .product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-gallery .product-gallery-item.active {
    border-color: var(--primary, #007bff);
    box-shadow: 0 0 0 2px var(--primary, #007bff);
}

@media (max-width: 768px) {
    .product-image-gallery .product-gallery-item {
        width: 60px;
        height: 60px;
        max-width: 60px;
    }
}

@media (max-width: 576px) {
    .product-image-gallery .product-gallery-item {
        width: 50px;
        height: 50px;
        max-width: 50px;
    }
}

/* Product Image Gallery Enhanced Styles */
.product-image-gallery .product-gallery-item {
    position: relative;
}

.product-image-gallery .product-gallery-item:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.product-image-gallery .product-gallery-item:before,
.product-image-gallery .product-gallery-item:after {
    display: none;
}

/* Variation indicator for horizontal gallery */
.product-image-gallery .variation-gallery-item::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--primary, #007bff);
    border-radius: 50%;
    z-index: 2;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Color Variation Gallery */
#product-color-gallery .variation-image {
    border: 2px solid #e9ecef !important;
    padding: 0 !important;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    border-radius: 0.2rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

#product-color-gallery .variation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none !important;
    padding: 0;
}

#product-color-gallery .variation-image.active {
    border: 2px solid var(--primary, #007bff) !important;
    box-shadow: 0 0 0 1px var(--primary, #007bff);
    padding: 0 !important;
}

#product-color-gallery .variation-image:hover:not(.disabled) {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#product-color-gallery .variation-image.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

#product-color-gallery .variation-image:not(.disabled) {
    cursor: pointer;
    pointer-events: auto;
}

#product-color-gallery.product-nav-thumbs a {
    border: none !important;
}

/* Star Rating Display */
.star-rating-display {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.star-rating-display i {
    font-size: 1.2rem;
}

.star-rating-display .bi-star-fill {
    color: #5fb2bd;
}

.star-rating-display .bi-star {
    color: #ddd;
}

/* Product Price */
#selected-price {
    color: var(--primary);
}

#selected-price.campaign-price {
    font-size: 1.3em;
}

#selected-price.normal-price {
    font-size: 1.5em;
}

.campaign-badge {
    font-size: 0.75em;
    color: var(--primary);
}

.campaign-badge .badge {
    font-size: 0.6em;
    background-color: var(--primary);
    color: white;
}

/* Campaign Banner */
.campaign-banner {
    background: linear-gradient(135deg, rgba(95, 178, 189, 0.08) 0%, rgba(95, 178, 189, 0.03) 100%);
    border: 1px solid rgba(95, 178, 189, 0.25);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.campaign-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campaign-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    box-shadow: 0 3px 10px rgba(95, 178, 189, 0.25);
    flex-shrink: 0;
}

.campaign-icon-wrapper i {
    font-size: 1.3rem;
}

.campaign-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.campaign-details {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

.campaign-details .campaign-name {
    font-weight: 500;
}

.campaign-details .separator {
    margin: 0 0.4rem;
    color: #ccc;
}

.campaign-details .discount-text {
    color: var(--primary);
    font-weight: 600;
}

.campaign-countdown-section {
    text-align: right;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.campaign-countdown-label {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-countdown-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(95, 178, 189, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.campaign-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(95, 178, 189, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Login/Register Forms */
#loginForm,
#registerForm {
    display: none;
}

#loginForm.show,
#registerForm.show {
    display: block;
}
/* ========================================
   reviews.css
   ======================================== */
.star-rating-container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.star-rating-container input[type="radio"] {
    display: none;
}

.star-rating-label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.star-rating-label:hover {
    transform: scale(1.1);
}

.star-rating-label i {
    display: block;
    font-size: 2rem;
    transition: all 0.2s ease;
}

/* Default empty stars (outline) */
.star-rating-label i.bi-star {
    color: #ddd;
}

/* Filled stars (solid) */
.star-rating-label i.bi-star-fill {
    color: #5fb2bd;
}

/* Hover effect - preview rating */
.star-rating-label:hover i,
.star-rating-label:hover ~ .star-rating-label i {
    color: #5fb2bd;
}

/* Active stars (selected rating) */
.star-rating-label.active i {
    color: #5fb2bd;
}

.rating-section {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.rating-text {
    font-size: 0.95rem;
}

/* ========================================
   more-questions.css
   ======================================== */

/**
 * More Questions CTA Component
*/

.cta-display {
    background-image: url('/frontend/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center center;
}

.cta-button {
    color: #fff;
    background: #333;
}

@media (max-width: 767px) {
    .cta.cta-display {
        background-size: cover !important;
        background-position: center center !important;
        position: relative;
        min-height: 300px;
    }

    .cta.cta-display .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 200px;
    }

    .cta.cta-display .row {
        width: 100%;
    }

    .cta.cta-display .row.no-gutters {
        flex-direction: column;
        align-items: center;
    }

    .cta.cta-display .col {
        text-align: center;
        padding: 1.5rem !important;
    }

    .cta.cta-display .col-auto {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: auto;
        padding-bottom: 2rem;
    }

    .cta.cta-display .col-auto .btn {
        width: auto;
    }
}



/* ========================================
   order-table.css
   ======================================== */

/**
 * Order Table Component Styles
 * Professional responsive design using Bootstrap CSS
 */

/* Order History Container */
.order-history-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-history-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.order-history-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.order-history-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Desktop Table Styles */
.d-none.d-lg-block .table {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.d-none.d-lg-block .table thead th {
    padding: 16px 18px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #5fb2bd !important;
    color: #ffffff !important;
    border: none;
}

.d-none.d-lg-block .table-primary {
    --bs-table-bg: #5fb2bd;
    --bs-table-color: #ffffff;
    background-color: #5fb2bd !important;
    color: #ffffff !important;
}

.d-none.d-lg-block .table tbody td {
    padding: 18px;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
}

/* Order Cell Text Styles */
.order-cell-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Date Cell - No Wrapping */
.d-none.d-lg-block .table tbody td:nth-child(2) {
    white-space: nowrap;
}

.order-total-cell {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Product Links */
.order-product-cell {
    max-width: 350px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.order-product-links {
    line-height: 1.7;
}

.order-product-link {
    color: #212529;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    display: inline;
    word-break: break-word;
    text-decoration: none;
}

.order-product-link:hover {
    color: #5fb2bd;
    text-decoration: underline !important;
}

.order-product-text {
    color: #212529;
    font-weight: 500;
    font-size: 1.05rem;
    word-break: break-word;
}

.d-none.d-lg-block .table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.d-none.d-lg-block .table tbody tr:last-child td {
    border-bottom: none;
}

/* Desktop Action Icons */
.d-none.d-lg-block .action-icon {
    font-size: 1.5rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0 8px;
}

.d-none.d-lg-block .action-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.d-none.d-lg-block .action-icon i {
    display: inline-block;
    line-height: 1;
    font-size: 1.5rem;
}

/* Mobile Card Styles */
.d-lg-none .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.d-lg-none .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.d-lg-none .card-body {
    padding: 1.25rem;
}

.d-lg-none .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.d-lg-none .card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Mobile Text Sizes */
.order-mobile-id {
    font-size: 1.1rem;
}

.order-mobile-date {
    font-size: 0.95rem;
}

.order-mobile-status {
    font-size: 0.95rem;
}

.order-mobile-product {
    font-size: 1rem;
}

.order-mobile-total {
    font-size: 1.2rem;
}

.d-lg-none .order-product-link {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
    text-decoration: none;
}

.d-lg-none .order-product-link:hover {
    color: #5fb2bd;
    text-decoration: underline !important;
}

.d-lg-none .order-product-text {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
}

.d-lg-none .action-icon {
    font-size: 1.4rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0 6px;
}

.d-lg-none .action-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.d-lg-none .action-icon i {
    display: inline-block;
    line-height: 1;
    font-size: 1.4rem;
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 8px 14px;
    font-size: 0.95rem;
}

.order-status-badge {
    font-size: 1rem;
    padding: 8px 16px;
}

.order-sub-badge {
    font-size: 0.9rem;
    padding: 6px 12px;
}

.badge i {
    font-size: 0.85rem;
    margin-right: 4px;
}

/* Icon Visibility and Styling */
.badge i {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
}

.action-icon {
    text-decoration: none;
}

.action-icon i {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .order-history-container {
        padding: 16px;
    }

    .order-history-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .order-history-container {
        padding: 14px;
    }

    .order-history-title {
        font-size: 1.3rem;
    }

    .order-history-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .order-history-container {
        padding: 12px;
    }

    .order-history-title {
        font-size: 1.2rem;
    }

    .order-history-subtitle {
        font-size: 0.85rem;
    }

    .d-lg-none .card-body {
        padding: 1rem;
    }

    .d-lg-none .btn-group .btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .order-history-container {
        padding: 10px;
    }

    .order-history-title {
        font-size: 1.1rem;
    }

    .d-lg-none .card-body {
        padding: 0.875rem;
    }

    .d-lg-none .card-title {
        font-size: 0.95rem;
    }

    .d-lg-none .card-text {
        font-size: 0.85rem;
    }

    .d-lg-none .btn-group .btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .d-lg-none .btn-group .btn i {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .d-lg-none {
        display: none !important;
    }

    .d-none.d-lg-block {
        display: block !important;
    }

    .btn-group {
        display: none !important;
    }
}


/* ========================================
   tracking-modal.css
   ======================================== */

/**
 * Order Tracking Modal Styles
 * Professional, modern design for order tracking system
 */

/* Modal Dialog - Fixed width to prevent shrinking */
.tracking-modal-dialog {
    max-width: 900px !important;
    min-width: 600px !important;
    width: 90% !important;
    margin: 1rem auto !important;
}

/* Modal Container */
#trackingModal {
    z-index: 1055 !important;
}

#trackingModal .modal-dialog {
    z-index: 1056 !important;
    pointer-events: auto !important;
}

.tracking-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 100%;
    z-index: 1057 !important;
    pointer-events: auto !important;
}

/* Modal Header */
.tracking-modal-header {
    background: linear-gradient(135deg, #5fb2bd 0%, #4a9ba5 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.tracking-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.tracking-modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.tracking-modal-header small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Modal Body */
.tracking-modal-body {
    padding: 2rem;
    background: #f8f9fa;
    min-height: 300px;
}

/* Ensure content doesn't shrink */
#tracking-content {
    min-width: 100%;
}

/* Info Card */
.tracking-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.status-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 1.25rem;
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0d6efd;
    flex-shrink: 0;
}

.alert-warning .alert-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.alert-info .alert-icon {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.alert-heading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


/* Detail Cards */
.tracking-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.detail-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #212529;
    font-size: 0.95rem;
}

.detail-card-header i {
    color: #5fb2bd;
}

.detail-card-body {
    padding: 1.25rem;
    flex: 1;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #495057;
}

.tracking-number-text {
    font-size: 1.1rem;
    color: #212529;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.tracking-button {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.tracking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 178, 189, 0.4);
}

#no-tracking-message {
    font-size: 0.95rem;
    padding: 1rem;
}

/* Modal Footer */
.tracking-modal-footer {
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 0.75rem 1.5rem;
}

.tracking-modal-footer .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-modal-dialog {
        max-width: 95% !important;
        min-width: auto !important;
        width: 95% !important;
        margin: 0.5rem auto !important;
    }

    .tracking-modal-content {
        margin: 0;
    }

    .tracking-modal-body {
        padding: 1.25rem;
    }

    .tracking-info-card {
        padding: 1.25rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .info-label {
        font-size: 0.7rem;
    }

    .tracking-modal-header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
    }

    .tracking-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .tracking-modal-header .modal-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .tracking-modal-header small {
        font-size: 0.8rem;
    }

    .tracking-modal-footer {
        padding: 0.75rem 1rem;
    }

    .tracking-modal-footer .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .tracking-button {
        min-width: auto;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .detail-card-header {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .detail-card-body {
        padding: 1rem;
    }

    .alert-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .alert {
        padding: 1rem;
    }

    .alert-heading {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tracking-modal-dialog {
        max-width: calc(100% - 0.5rem) !important;
        min-width: auto !important;
        width: calc(100% - 0.5rem) !important;
        margin: 0.25rem auto !important;
    }

    .tracking-modal-content {
        margin: 0;
        border-radius: 12px;
    }

    .tracking-modal-body {
        padding: 1rem;
    }

    .tracking-info-card {
        padding: 1rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .info-label {
        font-size: 0.65rem;
        margin-bottom: 0.375rem;
    }

    .tracking-modal-header {
        padding: 0.875rem 1rem;
    }

    .tracking-header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .tracking-modal-header .modal-title {
        font-size: 1rem;
    }

    .tracking-modal-header small {
        font-size: 0.75rem;
    }

    .tracking-modal-header .mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .tracking-modal-footer {
        padding: 0.625rem 0.875rem;
    }

    .tracking-modal-footer .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .detail-card-header {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }

    .detail-card-body {
        padding: 0.875rem;
    }

    .address-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .tracking-number-text {
        font-size: 1rem;
    }

    .tracking-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .row.g-4 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .row.g-4 > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1rem;
    }

    .alert {
        padding: 0.875rem;
    }

    .alert-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-right: 0.75rem !important;
    }

    .alert-heading {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .alert p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-modal-content {
    animation: fadeIn 0.3s ease;
}



/* ========================================
   home.css
   ======================================== */

/**
 * Home Page Styles
 */



/* ========================================
   campaign.css
   ======================================== */

/**
 * Campaign Page Styles
 * Styles for campaign listing page, including banners, countdown timers, and product cards
 */

/* Campaign Header */
.campaign-header{
    height: 350px;
}

/* =======================================================
   Campaign Product Styles
   ======================================================= */

/* Campaign Product Card Styling */
.campaign-product {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.campaign-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b6b 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.campaign-product .product-media {
    position: relative;
}

.campaign-product .product-discount-label {
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.campaign-product .product-price .new-price {
    position: relative;
}

.campaign-product .campaign-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
    font-weight: 600;
    margin-top: 4px;
}

.campaign-product .btn-product.campaign-cart-btn {
    position: relative;
    overflow: hidden;
}

.campaign-product .btn-product.campaign-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.campaign-product .btn-product.campaign-cart-btn:hover::after {
    width: 300px;
    height: 300px;
}

.campaign-product .btn-product.campaign-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Campaign product hover effect */
.campaign-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Campaign alert banner styling */
.alert[style*="background: linear-gradient"] {
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

/* =======================================================
   CAMPAIGN PAGE STYLES
   =======================================================
   This section contains all CSS styles for the campaign
   listing page, including banners, countdown timers,
   and product cards.
   All inline styles from campaign.blade.php are moved here.
   ======================================================= */

/* Campaign Container - Main wrapper for all campaigns */
.campaign-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

/* Campaign Event Section - Individual campaign card */
.campaign-event {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Campaign Banner - Base Styles with Fixed Heights */
.campaign-banner {
    position: relative;
    height: 200px; /* Fixed height for mobile */
}

@media (min-width: 768px) {
    .campaign-banner {
        height: 400px; /* Fixed height for desktop/laptop */
    }
}

.campaign-banner-with-image {
    position: relative;
    overflow: hidden;
}

.campaign-banner-desktop,
.campaign-banner-mobile {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Campaign Banner Content Wrapper - Contains text and products count */
.campaign-banner-content-wrapper {
    position: relative;
    color: #ffffff;
    padding: 1rem 1.25rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .campaign-banner-content-wrapper {
        padding: 3rem;
    }
}

/* Campaign Banner Title - With image background */
.campaign-banner-title-with-image {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Campaign Banner Description - With image background */
.campaign-banner-description-with-image {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.campaign-banner-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3rem;
}

.campaign-banner-content {
    position: relative;
    color: #ffffff;
    padding: 1rem 1.25rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .campaign-banner-content {
        padding: 3rem;
    }
}

/* Campaign Banner Title */
.campaign-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.campaign-banner-title-gradient {
    text-shadow: none;
}

/* Campaign Banner Description */
.campaign-banner-description {
    color: #333;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.campaign-banner-description-gradient {
    opacity: 0.95;
    text-shadow: none;
}

/* Campaign Products Count Badge - Bottom Left Position */
.campaign-products-count-top-right {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 3;
}

@media (min-width: 768px) {
    .campaign-products-count-top-right {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

/* Campaign Products Count Box */
.campaign-products-count {
    display: inline-block;
    text-align: center;
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.campaign-products-count-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.campaign-products-count-gradient {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.campaign-products-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.campaign-products-count-gradient .campaign-products-number {
    font-size: 3rem;
}

.campaign-products-label {
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Campaign Countdown Timer */
.campaign-countdown-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.campaign-countdown-header {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.campaign-countdown-icon {
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.campaign-countdown-label {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.campaign-countdown-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .campaign-countdown-items {
        gap: 0.75rem;
    }
}

.campaign-countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
}

.campaign-countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* Campaign Countdown Unit - Days, Hours, Min, Sec labels */
.campaign-countdown-unit {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Campaign Countdown Separator - Colon between time units */
.campaign-countdown-separator {
    color: #ffffff;
    font-weight: 700;
}

/* Campaign Products Carousel - Owl carousel wrapper */
.campaign-products-carousel {
    padding: 1rem 0;
}

/* Campaign Product Card - Individual product in carousel */
.campaign-product-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    margin: 0.5rem;
}

.campaign-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Campaign Product Price */
.campaign-product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2em;
}

.campaign-product-old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Campaign Rating Width */
.campaign-rating-width {
    width: 60%;
}

/* Campaign Event Product Cards (Legacy Support) */
.campaign-event .product {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.campaign-event .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Campaign banner on product details page */
.campaign-banner {
    transition: all 0.3s ease;
}

.campaign-banner:hover {
    border-color: rgba(95, 178, 189, 0.4) !important;
    box-shadow: 0 2px 8px rgba(95, 178, 189, 0.15);
    transform: translateY(-2px);
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .campaign-banner {
        padding: 1.15rem 1.35rem !important;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .campaign-banner {
        padding: 1.1rem 1.3rem !important;
    }

    .campaign-banner-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .campaign-countdown-section {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        width: 100%;
        text-align: left !important;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(95, 178, 189, 0.15);
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 44px !important;
        height: 44px !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.2rem !important;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .campaign-banner {
        padding: 1rem 1.15rem !important;
        border-radius: 10px !important;
    }

    .campaign-banner-content {
        flex-direction: row;
        align-items: center !important;
        gap: 0.75rem;
    }

    .campaign-banner-content > div:first-child {
        width: auto;
        flex: 1;
        margin-bottom: 0;
    }

    .campaign-countdown-section {
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: auto;
        text-align: right !important;
        padding-top: 0 !important;
        border-top: none !important;
        flex-shrink: 0;
        min-width: 100px;
    }

    .campaign-banner-content .d-flex > div:first-child {
        margin-right: 0.875rem;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 42px !important;
        height: 42px !important;
        margin-right: 1rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.15rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.8rem !important;
    }

    .campaign-countdown-section > div:first-child {
        font-size: 0.7rem !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.9rem !important;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .campaign-banner {
        padding: 1.1rem 1.15rem !important;
        border-radius: 8px !important;
    }

    .campaign-banner-content {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.875rem;
    }

    .campaign-banner-content > div:first-child {
        width: 100%;
        margin-bottom: 0;
    }

    .campaign-countdown-section {
        width: 100% !important;
        text-align: left !important;
        margin-left: 0 !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(95, 178, 189, 0.15) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .campaign-banner-content .d-flex > div:first-child {
        margin-right: 0.875rem;
        width: 100%;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 44px !important;
        height: 44px !important;
        margin-right: 1rem !important;
        flex-shrink: 0;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.25rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child {
        flex: 1;
        min-width: 0;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.95rem !important;
        margin-bottom: 0.35rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .campaign-countdown-section > div:first-child {
        font-size: 0.75rem !important;
        margin-bottom: 0 !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.95rem !important;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    .campaign-banner {
        padding: 1rem 1.05rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child {
        width: 40px !important;
        height: 40px !important;
        margin-right: 0.875rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:first-child i {
        font-size: 1.15rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:first-child {
        font-size: 0.9rem !important;
    }

    .campaign-banner-content .d-flex > div:first-child > div:last-child > div:last-child {
        font-size: 0.85rem !important;
    }

    .campaign-countdown-section > div:last-child {
        font-size: 0.9rem !important;
    }
}



/* ========================================
   about.css
   ======================================== */

/**
 * About Page Styles
 *
 * This file contains styles for the About Us page including:
 * - Vision & Mission sections
 * - Team member cards
 * - Who We Are section
 * - About images
 *
 * Ready for professional texture effects and design enhancements.
 */

/* ========================================
   VISION & MISSION SECTIONS
   ======================================== */

.about-vision-mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vision-mission-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(95, 178, 189, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #21444d 100%);
    transition: width 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vision-mission-card:hover::before {
    width: 6px;
}

.vision-mission-card .title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #21444d;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vision-mission-card .title i {
    font-size: 2.8rem;
    color: var(--primary);
    background: rgba(95, 178, 189, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.vision-mission-card p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ========================================
   TEAM MEMBER CARDS
   ======================================== */

.member {
    position: relative;
    margin-bottom: 2rem;
}

.member-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.member-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member:hover .member-overlay {
    opacity: 1;
}

.member:hover .member-media img {
    transform: scale(1.1);
}

.member-overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.member-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.member-title span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ccc;
    margin-top: 0.5rem;
}

.member-overlay-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* Social Icons - Centered with text content */
.member-overlay-content .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
    width: 100%;
}

.member-overlay-content .social-icons .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.member-overlay-content .social-icons .social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(95, 178, 189, 0.4);
}

.member-content {
    padding: 1.5rem 0;
    text-align: center;
}

.member-content .member-title {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-content .member-title span {
    color: #777;
    font-size: 1.3rem;
}

/* ========================================
   ABOUT IMAGES
   ======================================== */

.about-images {
    position: relative;
    text-align: right;
    padding-top: 4rem;
}

.about-img-front {
    position: relative;
    z-index: 2;
    border: 2rem solid #f9f9f9;
    width: 380px;
    height: auto;
    /* Add texture effects here */
}

.about-img-back {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    /* Add texture effects here */
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */

.about-who-we-are {
    background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.who-we-are-content {
    position: relative;
    z-index: 1;
}

.who-we-are-content .title {
    font-size: 3rem;
    font-weight: 700;
    color: #21444d;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.who-we-are-content .title i {
    font-size: 3.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(95, 178, 189, 0.1) 0%, rgba(95, 178, 189, 0.2) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(95, 178, 189, 0.2);
}

.who-we-are-content .lead {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.who-we-are-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Button styles removed - use .btn-global instead */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .vision-mission-card {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }

    .vision-mission-card .title {
        font-size: 2rem;
    }

    .vision-mission-card .title i {
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
    }

    .who-we-are-content .title {
        font-size: 2.4rem;
    }

    .who-we-are-content .title i {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }

    .who-we-are-content .lead {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .about-vision-mission {
        padding: 3rem 0;
    }

    .vision-mission-card {
        padding: 2rem;
    }

    .vision-mission-card .title {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .about-who-we-are {
        padding: 3rem 0;
    }

    .who-we-are-content .title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .member-overlay-content {
        padding: 1.5rem;
    }

    .member-overlay-content .social-icons {
        gap: 1rem;
    }

    .member-overlay-content .social-icons .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
}




/* ========================================
   checkout.css
   ======================================== */

/**
 * Checkout Page Styles
 */

.payment-option-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 16px;
    min-height: 60px;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.payment-option-wrapper:hover {
    background-color: #f0f0f0;
}

.payment-option-wrapper .custom-control.custom-radio {
    margin: 0;
    padding-left: 2.6rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.payment-option-wrapper .custom-control-label {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding-left: 0;
    cursor: pointer;
}

.payment-option-wrapper .custom-control-label::before {
    top: 50% !important;
    transform: translateY(-50%);
    left: 0 !important;
    margin-top: 0;
}

.payment-option-wrapper .custom-control-label::after {
    top: 50% !important;
    transform: translateY(-50%);
    left: 0.5rem !important;
    margin-top: 0;
}

.payment-label-content {
    margin-left: 2.3rem;
    line-height: 1.4;
}

.payment-label-content strong {
    color: #333;
    display: block;
}

.payment-label-content .small {
    color: #666;
}

/* Legacy checkout styles - kept for backward compatibility only */
/* Note: New forms should use form-control-modern, form-label-modern classes */
.checkout .custom-control {
	margin-top: 2.5rem
}

.checkout .custom-control+.custom-control {
	margin-top: 1.8rem
}

.checkout .custom-control+label {
	margin-top: 1rem
}

.checkout .custom-control .custom-control-label {
	font-weight: 400;
	color: #333
}

/* Legacy checkout-title and checkout-discount styles removed - no longer used */

.checkout-qty-input {
    max-width: 100px;
    text-align: center;
}

.checkout-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 992px) {
	.checkout .col-lg-3 {
		flex: 0 0 30%;
		max-width: 30%
	}

	.checkout .col-lg-9 {
		flex: 0 0 70%;
		max-width: 70%
	}
}


/* ========================================
   product.css
   ======================================== */

/**
 * Product Page Styles
 */

/* Fixed Main Image Container */
.product-main-image-wrapper {
    width: 100%;
    position: relative;
}

.product-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-main-image {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .product-main-image {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }
}

/* Horizontal Thumbnail Gallery Styles */
.product-thumbnail-gallery-wrapper {
    margin-top: 1rem;
}

/* Product Gallery */
.product-image-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

.product-image-gallery .product-gallery-item {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    max-width: 80px;
    padding: 0;
    margin: 0;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.product-image-gallery .product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-gallery .product-gallery-item.active {
    border-color: var(--primary, #007bff);
    box-shadow: 0 0 0 2px var(--primary, #007bff);
}

@media (max-width: 768px) {
    .product-image-gallery .product-gallery-item {
        width: 60px;
        height: 60px;
        max-width: 60px;
    }
}

@media (max-width: 576px) {
    .product-image-gallery .product-gallery-item {
        width: 50px;
        height: 50px;
        max-width: 50px;
    }
}

/* Product Image Gallery Enhanced Styles */
.product-image-gallery .product-gallery-item {
    position: relative;
}

.product-image-gallery .product-gallery-item:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.product-image-gallery .product-gallery-item:before,
.product-image-gallery .product-gallery-item:after {
    display: none;
}

/* Variation indicator for horizontal gallery */
.product-image-gallery .variation-gallery-item::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--primary, #007bff);
    border-radius: 50%;
    z-index: 2;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Color Variation Gallery */
#product-color-gallery .variation-image {
    border: 2px solid #e9ecef !important;
    padding: 0 !important;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    border-radius: 0.2rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

#product-color-gallery .variation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none !important;
    padding: 0;
}

#product-color-gallery .variation-image.active {
    border: 2px solid var(--primary, #007bff) !important;
    box-shadow: 0 0 0 1px var(--primary, #007bff);
    padding: 0 !important;
}

#product-color-gallery .variation-image:hover:not(.disabled) {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#product-color-gallery .variation-image.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

#product-color-gallery .variation-image:not(.disabled) {
    cursor: pointer;
    pointer-events: auto;
}

#product-color-gallery.product-nav-thumbs a {
    border: none !important;
}

/* Star Rating Display */
.star-rating-display {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.star-rating-display i {
    font-size: 1.2rem;
}

.star-rating-display .bi-star-fill {
    color: #5fb2bd;
}

.star-rating-display .bi-star {
    color: #ddd;
}

/* Product Price */
#selected-price {
    color: var(--primary);
}

#selected-price.campaign-price {
    font-size: 1.3em;
}

#selected-price.normal-price {
    font-size: 1.5em;
}

.campaign-badge {
    font-size: 0.75em;
    color: var(--primary);
}

.campaign-badge .badge {
    font-size: 0.6em;
    background-color: var(--primary);
    color: white;
}

/* Campaign Banner */
.campaign-banner {
    background: linear-gradient(135deg, rgba(95, 178, 189, 0.08) 0%, rgba(95, 178, 189, 0.03) 100%);
    border: 1px solid rgba(95, 178, 189, 0.25);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.campaign-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campaign-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    box-shadow: 0 3px 10px rgba(95, 178, 189, 0.25);
    flex-shrink: 0;
}

.campaign-icon-wrapper i {
    font-size: 1.3rem;
}

.campaign-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.campaign-details {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

.campaign-details .campaign-name {
    font-weight: 500;
}

.campaign-details .separator {
    margin: 0 0.4rem;
    color: #ccc;
}

.campaign-details .discount-text {
    color: var(--primary);
    font-weight: 600;
}

.campaign-countdown-section {
    text-align: right;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.campaign-countdown-label {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-countdown-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(95, 178, 189, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.campaign-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(95, 178, 189, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Login/Register Forms */
#loginForm,
#registerForm {
    display: none;
}

#loginForm.show,
#registerForm.show {
    display: block;
}



/* ========================================
   reviews.css
   ======================================== */

/**
 * Reviews Page Styles
 * Styles for the reviews page in dashboard
 */

.star-rating-display {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.star-rating-display i {
    font-size: 1.1rem;
}

.star-rating-display .bi-star-fill {
    color: #5fb2bd !important;
}

.star-rating-display .bi-star {
    color: #ddd !important;
}

.nav-tabs .nav-link.active {
    color: #5fb2bd;
    border-bottom-color: #5fb2bd;
}

.nav-tabs .nav-link {
    color: #6c757d;
}

.nav-tabs .nav-link:hover {
    color: #5fb2bd;
    border-color: transparent;
}

/* Review Styles */
.review {
	padding-bottom: 1.3rem;
	margin-bottom: 2rem;
	border-bottom: .1rem solid #ebebeb
}

.review:last-child {
	margin-bottom: 0
}

.review .col-auto {
	width: 120px;
	padding-right: 2rem
}

.review h4 {
	color: #333;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.25;
	letter-spacing: -.01em;
	margin-bottom: .8rem
}

.review h4 a {
	color: inherit
}

.review h4 a:hover,
.review h4 a:focus {
	color: var(--primary)
}

.review .ratings-container {
	padding-top: .7rem;
	margin-bottom: .5rem
}

.review .review-date {
	color: #ccc
}

.review-content {
	margin-bottom: .8rem
}

.review-action {
	font-size: 1.2rem
}

.review-action a {
	color: #777;
	transition: all .35s ease
}

.review-action a:hover,
.review-action a:focus {
	color: var(--primary);
	box-shadow: 0 1px 0 var(--primary)
}

.review-action a+a {
	margin-left: 1.6rem
}

.review-action i {
	font-size: 1.4rem;
	margin-right: .6rem
}

@media screen and (min-width: 768px) {
	.review .row {
		flex-direction: row
	}
}

/* Edit Review Button Positioning */
.review-card {
    position: relative;
}

.edit-review-btn-container {
    /* Web view: Right center */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/* Mobile view: Bottom center */
@media (max-width: 768px) {
    .edit-review-btn-container {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e9ecef;
    }
}

/* Tablet and smaller desktop: Adjust positioning */
@media (max-width: 992px) {
    .edit-review-btn-container {
        right: 15px;
    }
}

/* Review Images */
.review-image,
.review-image-large {
    max-width: 100px;
    height: auto;
}

.review-image-large {
    object-fit: cover;
}

.review-image-placeholder {
    width: 100px;
    height: 100px;
}


/* ========================================
   invoice.css
   ======================================== */

/**
 * Invoice Page Styles
 * Styles for invoice display and printing
 */

/* Print Styles */
@media print {
    @page {
        margin: 0;
        size: auto;
        marks: none;
    }

    body * {
        visibility: hidden !important;
    }

    .invoice-print-container,
    .invoice-print-container * {
        visibility: visible !important;
    }

    .no-print,
    .navbar,
    .sidebar,
    footer,
    .action-buttons,
    .btn {
        display: none !important;
    }

    .invoice-print-container {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 15mm !important;
        background: white !important;
    }

    .invoice-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
        box-shadow: none !important;
        border: none !important;
    }
}

/* Screen Styles */
.invoice-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.invoice-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .invoice-container {
        max-width: 100%;
        width: 100%;
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
    }

    .invoice-print-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .invoice-box {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .invoice-box h2 {
        font-size: 1.5rem;
    }

    .invoice-box .row {
        margin-left: 0;
        margin-right: 0;
    }

    .invoice-box .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .invoice-box .col-md-6.text-end {
        text-align: left !important;
    }

    .logo-container {
        text-align: left !important;
    }

    .logo-container img {
        margin-left: 0 !important;
        margin-right: auto;
    }

    .logo-container p {
        text-align: left !important;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .invoice-table {
        font-size: 12px;
    }

    .invoice-table th,
    .invoice-table td {
        padding: 8px 5px;
        font-size: 11px;
    }

    .invoice-table th:first-child,
    .invoice-table td:first-child {
        padding-left: 5px;
    }

    .invoice-table th:last-child,
    .invoice-table td:last-child {
        padding-right: 5px;
    }

    .product-img {
        max-height: 35px;
    }

    .summary-table {
        font-size: 13px;
    }

    .summary-table th,
    .summary-table td {
        padding: 8px 10px;
    }

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

    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .invoice-container {
        padding: 5px;
    }

    .invoice-box {
        padding: 10px;
    }

    .invoice-box h2 {
        font-size: 1.25rem;
    }

    .invoice-table {
        font-size: 10px;
    }

    .invoice-table th,
    .invoice-table td {
        padding: 6px 3px;
        font-size: 10px;
    }

    .table-responsive {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
    }

    .invoice-table {
        min-width: 600px;
    }

    .invoice-table th:nth-child(2),
    .invoice-table td:nth-child(2) {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .invoice-table th:first-child,
    .invoice-table td:first-child {
        width: 50px;
        min-width: 50px;
    }

    .summary-table {
        font-size: 12px;
    }

    .summary-table th,
    .summary-table td {
        padding: 6px 8px;
    }
}

.section-title {
    color: #2c3e50;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    font-size: 14px;
}

.invoice-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
    text-align: left;
}

.invoice-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.summary-table th,
.summary-table td {
    padding: 10px 15px;
    text-align: left;
}

.summary-table tr:last-child th,
.summary-table tr:last-child td {
    border-top: 2px solid #dee2e6;
    font-weight: bold;
}

.product-img {
    max-height: 45px;
    width: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.status-badge {
    background: #f8f9fa;
    color: #000;
    border: 1px solid #999;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
}

/* Invoice Utility Styles */
.invoice-logo-container {
    text-align: right;
}

.invoice-logo {
    max-height: 50px;
    display: block;
    margin-left: auto;
}

.invoice-text-right {
    text-align: right;
}

.invoice-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.invoice-table {
    min-width: 100%;
}

.invoice-product-img {
    height: 30px;
    width: 30px;
    margin: 0 auto;
}

.invoice-product-img small {
    font-size: 8px;
}

/* =======================================================
   REDESIGNED CAMPAIGN STYLES - PROFESSIONAL & CENTERED
   ======================================================= */

/* Override Campaign Container */
.campaign-container {
    background-color: #f0f2f5 !important;
    padding: 2rem 1rem !important;
}

@media (min-width: 768px) {
    .campaign-container {
        padding: 3rem 2rem !important;
    }
}

/* Override Campaign Event */
.campaign-event {
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 4rem !important;
}

@media (min-width: 768px) {
    .campaign-event {
        margin-bottom: 5rem !important;
    }
}

/* Campaign Banner Card */
.campaign-banner-card {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(95, 178, 189, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(95, 178, 189, 0.25) !important;
}

/* Override Campaign Banner - Centered & Beautiful */
.campaign-banner {
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .campaign-banner {
        min-height: 500px !important;
    }
}

.campaign-banner-with-image {
    border-radius: 20px !important;
}

.campaign-banner-desktop,
.campaign-banner-mobile {
    background-position: center center !important;
    transition: transform 0.5s ease;
}

.campaign-banner-card:hover .campaign-banner-desktop,
.campaign-banner-card:hover .campaign-banner-mobile {
    transform: scale(1.05);
}

/* Overlay for better text readability - Professional with better contrast */
.campaign-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Override Campaign Banner Content Wrapper - Centered */
.campaign-banner-content-wrapper {
    padding: 2rem 1.5rem !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .campaign-banner-content-wrapper {
        padding: 3rem 4rem !important;
    }
}

.campaign-banner-content-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .campaign-banner-content-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Product count badge on the right side */
@media (min-width: 768px) {
    .campaign-banner-content-inner {
        flex-direction: row-reverse;
    }
}

.campaign-banner-text {
    flex: 1;
    max-width: 100%;
    position: relative;
    z-index: 4;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
    .campaign-banner-text {
        max-width: 60%;
        padding: 1.5rem 2rem;
        background: rgba(0, 0, 0, 0.25);
    }
}

/* Override Campaign Banner Title - Professional with better visibility */
.campaign-banner-title-with-image {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5) !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

@media (min-width: 768px) {
    .campaign-banner-title-with-image {
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
        text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6) !important;
    }
}

.campaign-banner-description-with-image {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5) !important;
    font-weight: 400 !important;
}

@media (min-width: 768px) {
    .campaign-banner-description-with-image {
        font-size: 1.2rem !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6) !important;
    }
}

.campaign-banner-gradient {
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .campaign-banner-gradient {
        padding: 4rem 3rem !important;
    }
}

.campaign-banner-content {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.campaign-banner-title {
    font-size: 2rem !important;
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .campaign-banner-title {
        font-size: 3rem !important;
    }
}

.campaign-banner-description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

@media (min-width: 768px) {
    .campaign-banner-description {
        font-size: 1.2rem !important;
    }
}

/* Override Campaign Products Count Badge - Centered */
.campaign-products-count-badge {
    flex-shrink: 0;
    z-index: 3;
}

.campaign-products-count-top-right {
    position: static !important;
}

.campaign-products-count {
    border-radius: 20px !important;
    padding: 1.5rem 2rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}

.campaign-products-count:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

.campaign-products-count-image {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.campaign-products-count-image .campaign-products-number,
.campaign-products-count-image .campaign-products-label {
    color: var(--primary) !important;
    text-shadow: none !important;
}

.campaign-products-count-gradient {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.campaign-products-count-gradient .campaign-products-number,
.campaign-products-count-gradient .campaign-products-label {
    color: var(--primary) !important;
    text-shadow: none !important;
}

.campaign-products-number {
    font-size: 2.5rem !important;
    color: var(--primary) !important;
    text-shadow: none !important;
    line-height: 1 !important;
}

@media (min-width: 768px) {
    .campaign-products-number {
        font-size: 3.5rem !important;
    }
}

.campaign-products-label {
    color: var(--primary) !important;
    text-shadow: none !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
}

@media (min-width: 768px) {
    .campaign-products-label {
        font-size: 0.85rem !important;
    }
}

/* Override Campaign Countdown Timer - Primary color background, large numbers */
.campaign-countdown-container {
    background: var(--primary) !important;
    padding: 1.5rem 2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(95, 178, 189, 0.2) !important;
    gap: 1rem !important;
}

@media (min-width: 768px) {
    .campaign-countdown-container {
        padding: 2rem 3rem !important;
    }
}

/* Large countdown numbers */
.campaign-countdown-value {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}

@media (min-width: 768px) {
    .campaign-countdown-value {
        font-size: 3.5rem !important;
    }
}

/* Hide countdown unit labels */
.campaign-countdown-unit {
    display: none !important;
}

/* Larger separator */
.campaign-countdown-separator {
    font-size: 2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 700 !important;
}

@media (min-width: 768px) {
    .campaign-countdown-separator {
        font-size: 3rem !important;
    }
}

/* Larger countdown items */
.campaign-countdown-item {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    min-width: 80px;
}

@media (min-width: 768px) {
    .campaign-countdown-item {
        padding: 1.5rem 2rem !important;
        min-width: 120px;
    }
}

/* ========================================
   PROFESSIONAL MOBILE RESPONSIVE TABLE STYLES
   ======================================== */

/* Professional mobile table styles - Card-based layout */
@media screen and (max-width: 991px) {
    /* Hide original table headers on mobile */
    .table-cart thead,
    .table-wishlist thead {
        display: none;
    }

    /* Convert table rows to cards */
    .table-cart,
    .table-wishlist {
        display: block;
        border: none;
    }

    .table-cart tbody,
    .table-wishlist tbody {
        display: block;
    }

    .table-cart tr,
    .table-wishlist tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: white;
        padding: 1rem;
        position: relative;
    }

    .table-cart td,
    .table-wishlist td {
        display: block;
        padding: 0.5rem 0;
        border: none;
        text-align: left;
        position: relative;
        padding-left: 120px;
        min-height: 2.5rem;
    }

    /* Add data labels for mobile */
    .table-cart td:before,
    .table-wishlist td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 110px;
        font-weight: 600;
        font-size: 1.2rem;
        color: #666;
        text-align: left;
    }

    /* Product column - full width */
    .table-cart .product-col,
    .table-wishlist .product-col {
        padding-left: 0 !important;
        min-height: auto !important;
    }

    .table-cart .product-col:before,
    .table-wishlist .product-col:before {
        display: none;
    }

    .table-cart .product,
    .table-wishlist .product {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .table-cart .product-media,
    .table-wishlist .product-media {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .table-cart .product-media img,
    .table-wishlist .product-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .table-cart .product-title,
    .table-wishlist .product-title {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.4;
        flex: 1;
    }

    /* Price column */
    .table-cart .price-col:before,
    .table-wishlist .price-col:before {
        content: "Price:";
    }

    .table-cart .new-price,
    .table-wishlist .new-price {
        font-weight: 600;
        font-size: 1.5rem;
        display: block;
    }

    .table-cart .old-price,
    .table-wishlist .old-price {
        font-size: 1.2rem;
        margin-top: 0.2rem;
        display: block;
    }

    /* Size column */
    .table-cart td:nth-child(3):before,
    .table-wishlist td:nth-child(3):before {
        content: "Size:";
    }

    /* Quantity column */
    .table-cart td:nth-child(4):before {
        content: "Quantity:";
    }

    .table-cart .qty-control {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }

    .table-cart .cart-qty-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .table-cart .cart-qty-input {
        width: 70px;
        height: 36px;
        font-size: 1.4rem;
        text-align: center;
        margin: 0 0.5rem;
    }

    /* Total column */
    .table-cart .total-col:before {
        content: "Total:";
    }

    .table-cart .total-col {
        font-weight: 600;
        font-size: 1.5rem;
    }

    /* Stock status column */
    .table-wishlist td:nth-child(4):before {
        content: "Stock:";
    }

    .table-wishlist .in-stock {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .table-wishlist .out-of-stock {
        font-weight: 600;
        font-size: 1.3rem;
    }

    /* Action column */
    .table-wishlist .action-col {
        padding-left: 0 !important;
        min-height: auto !important;
        margin-top: 1rem;
    }

    .table-wishlist .action-col:before {
        display: none;
    }

    .table-wishlist .action-col .btn-global {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Remove button - positioned top right */
    .table-cart .remove-col,
    .table-wishlist .remove-col {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0 !important;
        min-height: auto !important;
    }

    .table-cart .remove-col:before,
    .table-wishlist .remove-col:before {
        display: none;
    }

    .table-cart .btn-remove,
    .table-wishlist .btn-remove {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
    }

    /* Cart summary adjustments */
    .summary-cart {
        margin-top: 2rem;
        padding: 1.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: white;
    }

    .summary-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .table-summary td {
        padding: 0.8rem 0;
        font-size: 1.4rem;
    }

/* Extra small mobile adjustments */
@media screen and (max-width: 575px) {
    .table-cart tr,
    .table-wishlist tr {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .table-cart .product-media,
    .table-wishlist .product-media {
        width: 60px;
        height: 60px;
    }

    .table-cart .product-title,
    .table-wishlist .product-title {
        font-size: 1.3rem;
    }

    .table-cart .qty-control {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .table-cart .cart-qty-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .table-cart .cart-qty-input {
        width: 60px;
        height: 32px;
        font-size: 1.2rem;
    }

    .table-cart td:before,
    .table-wishlist td:before {
        font-size: 1.1rem;
        width: 80px;
    }

    .table-cart td,
    .table-wishlist td {
        padding-left: 90px;
        font-size: 1.3rem;
    }

    .summary-cart {
        padding: 1rem;
    }

    .summary-title {
        font-size: 1.6rem;
    }

    .table-summary td {
        font-size: 1.3rem;
        padding: 0.6rem 0;
    }
}

}
