/* ==========================================================================
   Kashee's-style redesign — Phase 1: Foundation + Header + Footer
   Loaded AFTER style.css and dureshawar-brand.css so it takes precedence.
   Frontend presentation only — no logic/route changes.
   ========================================================================== */

:root {
	/* Kashee's-inspired palette: clean white + signature pink/magenta */
	--k-pink: #d6006e;
	--k-pink-dark: #a80457;
	--k-pink-soft: #fce4f0;
	--k-ink: #1a1a1a;
	--k-body: #4a4a4a;
	--k-muted: #8a8a8a;
	--k-line: #ececec;
	--k-bg: #ffffff;
	--k-bg-soft: #faf7f8;

	--k-font-head: 'Poppins', 'Jost', sans-serif;
	--k-font-body: 'Jost', 'Poppins', sans-serif;

	--k-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
	--k-shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09);
	--k-shadow-pink: 0 10px 28px rgba(214, 0, 110, 0.28);

	/* Re-map theme tokens used across existing components to Kashee's pink */
	--theme-color: #d6006e;
	--color-green: #1a1a1a;
}

/* ---------- Base typography ---------- */
body {
	font-family: var(--k-font-body);
	color: var(--k-body);
	background: var(--k-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--k-font-head);
	color: var(--k-ink);
	font-weight: 600;
	letter-spacing: 0.2px;
}

a {
	transition: color 0.2s ease;
}

/* ---------- Buttons ---------- */
.btn.theme-btn,
.add-to-cart-btn,
.checkout-btn,
.header-middle .search-btn,
.btn-search,
.newsletter-btn,
.subscribe_btn {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	color: #fff !important;
	border-radius: 50px !important;
	font-family: var(--k-font-head);
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
}

.btn.theme-btn:hover,
.add-to-cart-btn:hover,
.checkout-btn:hover,
.header-middle .search-btn:hover,
.btn-search:hover,
.newsletter-btn:hover,
.subscribe_btn:hover {
	background: var(--k-pink-dark) !important;
	border-color: var(--k-pink-dark) !important;
	color: #fff !important;
	box-shadow: var(--k-shadow-pink);
	transform: translateY(-1px);
}

.view-cart-btn {
	background: #fff !important;
	border: 1px solid var(--k-pink) !important;
	color: var(--k-pink) !important;
	border-radius: 50px !important;
}

.view-cart-btn:hover {
	background: var(--k-pink) !important;
	color: #fff !important;
}

/* ==========================================================================
   ANNOUNCEMENT BAR (top promo strip)
   ========================================================================== */
.kashees-announce {
	background: var(--k-ink);
	color: #fff;
	font-family: var(--k-font-head);
	font-size: 13px;
	letter-spacing: 0.3px;
}

.kashees-announce .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Left: contact */
.kashees-announce__contact {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1 1 0;
	min-width: 0;
	white-space: nowrap;
}

.kashees-announce__contact a,
.kashees-announce__contact span {
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.kashees-announce__contact a:hover {
	color: var(--k-pink-soft) !important;
}

.kashees-announce__contact i {
	color: var(--k-pink);
}

/* Center: promo */
.kashees-announce__promo {
	flex: 0 1 auto;
	text-align: center;
	font-weight: 500;
	overflow: hidden;
	white-space: nowrap;
	max-width: 50%;
}

.kashees-announce__promo span {
	display: inline-block;
	animation: kAnnounce 18s linear infinite;
}

@keyframes kAnnounce {
	0% { transform: translateX(30%); }
	100% { transform: translateX(-30%); }
}

/* Right: utility links (order tracking / account / language) */
.kashees-announce__links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.kashees-announce__links > li > a,
.kashees-announce__links > li > a.dropdown-toggle {
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.kashees-announce__links > li > a:hover {
	color: var(--k-pink-soft) !important;
}

.kashees-announce__links i {
	color: var(--k-pink);
}

.kashees-announce__links .dropdown-menu {
	min-width: 180px;
}

.kashees-announce__links .dropdown-menu a {
	color: var(--k-ink) !important;
}

.kashees-announce__links .dropdown-menu a:hover {
	color: var(--k-pink) !important;
}

/* Responsive: keep one slim bar, drop less-critical items */
@media (max-width: 991px) {
	.kashees-announce__addr { display: none !important; }
	.kashees-announce__promo { max-width: 40%; }
}

@media (max-width: 767px) {
	.kashees-announce__promo { display: none; }
	.kashees-announce .container { justify-content: space-between; }
	.kashees-announce__contact,
	.kashees-announce__links { flex: 0 0 auto; gap: 12px; }
	.kashees-announce__links .order-tracking-text { display: none; }
}

/* ==========================================================================
   HEADER — white, clean, Kashee's-style
   ========================================================================== */

/* Override the old navy gradient bars */
.top-header {
	background: var(--k-bg) !important;
	border-bottom: 1px solid var(--k-line);
}

.top-header,
.top-header a,
.top-header li {
	color: var(--k-body) !important;
}

.top-header a:hover {
	color: var(--k-pink) !important;
}

.top-header .top-list,
.top-header .top-list-1 {
	margin-bottom: 0;
}

.top-header .top-list-1 li i,
.top-header .top-list li i {
	color: var(--k-pink);
}

.header-desktop {
	background: var(--k-bg);
	padding: 18px 0;
}

.logo img {
	max-height: 76px;
	width: auto;
	object-fit: contain;
}

/* Search bar — pill with category dropdown */
/* ============================================================
   Consolidated single bar: logo + nav + search/cart
   ============================================================ */
.header-menu .kashees-bar {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 78px;
}

.kashees-bar__logo {
	flex: 0 0 auto;
	line-height: 1;
}

.kashees-bar__logo img {
	max-height: 56px;
	width: auto;
}

.kashees-bar__nav {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

/* Browse Categories sized to content inside the flex bar */
.kashees-bar__nav ul.categories-wrap {
	width: auto;
	flex: 0 0 auto;
}

.kashees-bar__nav ul.categories-wrap > li > a {
	margin: 0;
	white-space: nowrap;
}

.kashees-bar__nav .tp-mega-full {
	flex: 1 1 auto;
	min-width: 0;
}

.kashees-bar__nav .main-menu {
	justify-content: flex-start;
}

.kashees-bar__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.kashees-bar__search {
	width: 230px;
}

.kashees-bar__search .search-card {
	display: flex;
	align-items: stretch;
	border: 2px solid var(--k-pink);
	border-radius: 50px;
	overflow: hidden;
	background: #fff;
	width: 100%;
	height: auto;
	margin-top: 0;
}

.kashees-bar__search .search-card .search-box {
	flex: 1 1 auto;
	width: auto;
	float: none;
	border-right: none;
}

.kashees-bar__search .search-card .search-btn {
	width: auto;
	float: none;
	flex: 0 0 auto;
}

.kashees-bar__search .search-card .search-box .form-control {
	border: 0;
	height: 42px;
	padding-left: 18px;
	padding-right: 8px;
	box-shadow: none;
	font-family: var(--k-font-body);
	font-size: 14px;
	border-radius: 50px 0 0 50px;
	background: transparent;
}

.kashees-bar__search .search-card .search-btn .btn,
.kashees-bar__search .search-card .search-btn .btn-search {
	height: 42px;
	width: 48px;
	min-width: 48px;
	padding: 0;
	margin: 0;
	border: none !important;
	border-radius: 0 50px 50px 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

/* Tighten menu spacing so everything fits on one line */
.kashees-bar__nav .main-menu > li > a {
	padding-left: 12px;
	padding-right: 12px;
}

@media (max-width: 1199px) {
	.kashees-bar__search { width: 180px; }
	.kashees-bar { gap: 16px; }
	.kashees-bar__nav { gap: 12px; }
}

.header-desktop .search-card {
	display: flex;
	align-items: stretch;
	border: 2px solid var(--k-pink);
	border-radius: 50px;
	overflow: hidden;
	background: #fff;
}

.header-desktop .search-card .search-box {
	flex: 1 1 auto;
}

.header-desktop .search-card .search-box .form-control {
	border: 0;
	height: 48px;
	padding-left: 22px;
	box-shadow: none;
	font-family: var(--k-font-body);
}

.header-desktop .search-card .cat-select {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	border-left: 1px solid var(--k-line);
}

.header-desktop .search-card .cat-select .form-select {
	border: 0;
	height: 48px;
	background-color: transparent;
	color: var(--k-ink);
	font-family: var(--k-font-head);
	font-size: 14px;
	box-shadow: none;
	min-width: 150px;
}

.header-desktop .search-card .search-btn .btn {
	height: 48px;
	width: 56px;
	border-radius: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

/* Header round icons (wishlist / cart) */
.head-round-icon {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	margin-bottom: 0;
}

.head-round-icon > li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--k-ink) !important;
	font-family: var(--k-font-head);
	font-weight: 500;
	font-size: 14px;
	position: relative;
}

.head-round-icon > li > a:hover {
	color: var(--k-pink) !important;
}

.head-round-icon > li > a > i {
	font-size: 24px;
}

.head-round-icon .cart_count {
	position: absolute;
	top: -10px;
	left: 16px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--k-pink);
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
	border-radius: 50px;
	font-family: var(--k-font-head);
}

/* ---------- Navigation / mega menu ---------- */
.header-menu {
	background: var(--k-bg) !important;
	border-top: 1px solid var(--k-line);
	border-bottom: 1px solid var(--k-line);
}

#sticky-menu.sticky {
	box-shadow: var(--k-shadow-sm);
}

/* Browse categories button */
.categories-wrap > li > a.navCategoryListActive {
	background: var(--k-pink) !important;
	color: #fff !important;
	border-radius: 8px 8px 0 0;
	font-family: var(--k-font-head);
	font-weight: 500;
	letter-spacing: 0.3px;
}

.categories-wrap > li > a.navCategoryListActive::before {
	color: #fff !important;
}

/* Top-level nav links — dark on white, pink hover */
.tp-menu .main-menu > li > a,
.tp-menu .main-menu > li > a.tp-updown {
	color: var(--k-ink) !important;
	font-family: var(--k-font-head);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.3px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.tp-menu .main-menu > li > a:hover,
.tp-menu .main-menu > li > a.tp-updown:hover,
.tp-menu .main-menu > li:hover > a {
	color: var(--k-pink) !important;
}

/* Animated underline on hover */
.tp-menu .main-menu > li {
	position: relative;
}

.tp-menu .main-menu > li > a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 8px;
	width: 0;
	height: 2px;
	background: var(--k-pink);
	transition: width 0.25s ease, left 0.25s ease;
}

.tp-menu .main-menu > li:hover > a::after {
	width: 60%;
	left: 20%;
}

/* Submenus & mega menus — clean white cards */
.tp-menu .main-menu .submenu,
.tp-menu .main-menu .mega-menu {
	background: #fff !important;
	border: 1px solid var(--k-line);
	border-radius: 0 0 10px 10px;
	box-shadow: var(--k-shadow-md);
}

.tp-menu .main-menu .submenu a,
.tp-menu .main-menu .mega-menu a {
	color: var(--k-body) !important;
	font-family: var(--k-font-body);
}

.tp-menu .main-menu .submenu a:hover,
.tp-menu .main-menu .mega-menu a:hover,
.tp-menu .main-menu .mega-menu ul li:hover a {
	color: var(--k-pink) !important;
	background: transparent !important;
}

.tp-menu .main-menu .mega-menu ul li.mega-title {
	color: var(--k-ink) !important;
	font-family: var(--k-font-head);
	font-weight: 700;
	font-size: 15px;
	padding: 0 0 14px !important;
	margin-bottom: 6px !important;
	position: relative;
}

.tp-menu .main-menu .mega-menu ul li.mega-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	max-width: 56px;
	height: 3px;
	background: var(--k-ink) !important;
}

/* Shop mega menu — two-column Kashee's-style panel */
.tp-menu ul li .mega-menu {
	padding: 28px 20px 24px !important;
	border-radius: 0 0 12px 12px !important;
	top: 100% !important;
}

.tp-menu ul li:not(.tp-static) .mega-menu {
	left: 0;
	transform: none;
}

.tp-menu ul li .mega-menu ul.megafixed-col-2,
.tp-menu ul li .mega-menu.mega-full ul.mega-col-2 {
	width: 50% !important;
	padding: 0 18px !important;
	box-sizing: border-box;
}

.tp-menu ul li .mega-menu ul li:not(.mega-title) a {
	padding: 9px 0 !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	line-height: 1.4;
	display: block;
}

.tp-menu .main-menu > li:hover > a.tp-updown::after {
	width: 70%;
	left: 15%;
}

/* Browse-categories flyout list */
.nav-category-list {
	border: 1px solid var(--k-line);
	box-shadow: var(--k-shadow-md);
}

.nav-category-list li a:hover {
	color: var(--k-pink) !important;
}

.cat-item .cat-icon img,
.nav-category-list .cat-icon img {
	border-radius: 50%;
	border: 2px solid var(--k-pink-soft);
}

/* ---------- Mobile header ---------- */
.header-mobile {
	background: #fff;
	border-bottom: 1px solid var(--k-line);
}

.header-mobile .head-round-icon > li > a > i,
.bars-search-card .head-round-icon a i {
	color: var(--k-ink);
	font-size: 22px;
}

.header-mobile .head-round-icon > li > a:hover i {
	color: var(--k-pink);
}

/* Off-canvas mobile menu */
.mobile-menu-wrapper .offcanvas-body {
	background: #fff;
}

.mobile-navigation .mobile-menu a {
	color: var(--k-ink);
	font-family: var(--k-font-head);
}

.mobile-navigation .mobile-menu a:hover {
	color: var(--k-pink);
}

.search-for-mobile .btn.theme-btn {
	border-radius: 0 50px 50px 0 !important;
}

/* ==========================================================================
   FOOTER — Kashee's-style with social row
   ========================================================================== */
.footer-section {
	background: var(--k-ink) !important;
	background-image: none !important;
	color: #cfcfcf;
}

.footer-middle {
	padding: 60px 0 30px;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-border {
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-widget .widget-title {
	color: #fff !important;
	font-family: var(--k-font-head);
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 12px;
}

.footer-widget .widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 2px;
	background: var(--k-pink);
}

.footer-widget .info-card p,
.footer-widget .contact-desc h5,
.footer-widget .contact-desc p,
.footer-bottom .copy-right,
.footer-bottom .copy-right p {
	color: #cfcfcf !important;
}

.footer-widget .contact-desc h5,
.footer-widget .contact-desc p {
	font-family: var(--k-font-body);
	font-weight: 400;
}

.footer-widget .contact-desc h5 {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

.footer-widget ul.widget-list li a {
	color: #cfcfcf !important;
	font-family: var(--k-font-body);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-widget ul.widget-list li a:hover {
	color: var(--k-pink) !important;
	padding-left: 6px;
}

.footer-widget .info-card .info-logo {
	background: #fff;
	border-radius: 10px;
	padding: 12px 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	display: inline-block;
	margin-bottom: 18px;
}

.footer-widget ul.widget-contact li .contact-card .contact-icon {
	background: var(--k-pink) !important;
	color: #fff !important;
}

/* Footer social row */
.kashees-social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}

.kashees-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	font-size: 17px;
	transition: background 0.25s ease, transform 0.2s ease;
}

.kashees-social a:hover {
	background: var(--k-pink);
	transform: translateY(-3px);
	color: #fff !important;
}

.footer-bottom {
	background: #111;
	padding: 18px 0;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Newsletter strip (footer-top) */
.footer-top {
	position: relative;
	background-color: var(--k-pink) !important;
}

.footer-top::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(214,0,110,0.92), rgba(168,4,87,0.92));
}

.footer-top .container {
	position: relative;
	z-index: 1;
}

.newsletter-card h2 {
	color: #fff;
	font-family: var(--k-font-head);
}

.newsletter-card p {
	color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control {
	border-radius: 50px 0 0 50px;
	height: 52px;
	border: 0;
}

.newsletter-form .newsletter-btn {
	border-radius: 0 50px 50px 0 !important;
	background: var(--k-ink) !important;
	border-color: var(--k-ink) !important;
	height: 52px;
}

.newsletter-form .newsletter-btn:hover {
	background: #000 !important;
}

/* Keep WhatsApp float available again (Kashee's shows it) */
.whatsapp-left,
.whatsapp-right {
	display: block !important;
}

.whatsapp-right { right: 22px; }
.whatsapp-left { left: 22px; }

/* ==========================================================================
   SECTION HEADINGS — centered, small pink eyebrow (Kashee's style)
   ========================================================================== */
.section {
	padding: 64px 0;
}

.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-heading h5 {
	color: var(--k-pink) !important;
	font-family: var(--k-font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-heading h2 {
	font-family: var(--k-font-head) !important;
	color: var(--k-ink) !important;
	font-weight: 700 !important;
	font-size: 32px !important;
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}

.section-heading h2::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 60px;
	height: 3px;
	border-radius: 3px;
	background: var(--k-pink);
}

/* ==========================================================================
   PRODUCT CARDS — Kashee's style (badge, strikethrough, discount, hover)
   ========================================================================== */
.item-card {
	background: #fff;
	border: 1px solid var(--k-line);
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
	height: 100%;
	position: relative;
	margin-bottom: 26px;
}

.item-card:hover {
	box-shadow: var(--k-shadow-md);
	transform: translateY(-4px);
	border-color: transparent;
}

.item-card .item-image {
	position: relative;
	overflow: hidden;
	background: var(--k-bg-soft);
}

.item-card .item-image > a {
	display: block;
}

.item-card .item-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.item-card:hover .item-image img {
	transform: scale(1.06);
}

/* Sale / discount badge */
.item-card .item-label {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	background: var(--k-pink);
	color: #fff;
	font-family: var(--k-font-head);
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	padding: 7px 10px;
	border-radius: 50px;
	letter-spacing: 0.3px;
}

/* Body */
.item-card .item-title {
	padding: 14px 14px 0;
	min-height: 0;
}

.item-card .item-title a {
	font-family: var(--k-font-body);
	color: var(--k-ink) !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.item-card .item-title a:hover {
	color: var(--k-pink) !important;
}

.item-card .rating-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 14px 0;
}

.item-card .stars-outer {
	position: relative;
	font-family: 'bootstrap-icons';
	display: inline-block;
	color: #e8c8d8;
}

.item-card .stars-outer::before {
	content: "\F586\F586\F586\F586\F586";
	letter-spacing: 2px;
}

.item-card .stars-inner {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	width: 0;
}

.item-card .stars-inner::before {
	content: "\F586\F586\F586\F586\F586";
	letter-spacing: 2px;
	color: #f5a623;
}

.item-card .rating-count {
	font-size: 12px;
	color: var(--k-muted);
}

.item-card .item-sold {
	font-size: 12px;
	color: var(--k-muted);
	padding: 4px 14px 0;
}

.item-card .item-sold a {
	color: var(--k-pink) !important;
}

/* Pricing */
.item-card .item-pric-card {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	padding: 8px 14px 0;
	flex-wrap: wrap;
}

.item-card .new-price {
	color: var(--k-pink);
	font-family: var(--k-font-head);
	font-weight: 700;
	font-size: 17px;
}

.item-card .old-price {
	color: var(--k-muted);
	text-decoration: line-through;
	font-size: 14px;
}

/* Bottom actions */
.item-card .item-card-bottom {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px;
}

.item-card .item-card-bottom .add-to-cart {
	flex: 1 1 auto;
	background: var(--k-ink) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 50px !important;
	font-family: var(--k-font-head);
	font-weight: 500;
	font-size: 13px;
	padding: 10px 14px;
	letter-spacing: 0.3px;
	transition: background 0.25s ease;
}

.item-card .item-card-bottom .add-to-cart:hover {
	background: var(--k-pink) !important;
	color: #fff !important;
}

.item-card .item-card-bottom a.add-to-cart {
	float: none !important;
}

.item-card .item-card-bottom ul.item-cart-list,
.item-card .item-cart-list {
	display: flex !important;
	align-items: center;
	gap: 6px;
	margin: 0 !important;
	padding: 0;
	list-style: none;
	float: none !important;
}

.item-card .item-card-bottom ul.item-cart-list li,
.item-card .item-cart-list li {
	float: none !important;
	list-style: none;
}

/* Reset legacy icon-circle styles on <i> — button look lives on <a> only */
.item-card .item-card-bottom ul.item-cart-list li a i,
.item-card .item-cart-list li a i {
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	font-size: 16px !important;
	display: inline !important;
	background: none !important;
	color: inherit !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.item-card .item-card-bottom ul.item-cart-list li a,
.item-card .item-cart-list li a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--k-line);
	background: #fff !important;
	color: var(--k-ink) !important;
	font-size: 16px;
	transition: all 0.2s ease;
	text-decoration: none;
	flex-shrink: 0;
	overflow: hidden;
}

.item-card .item-card-bottom ul.item-cart-list li a:hover,
.item-card .item-cart-list li a:hover {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	color: #fff !important;
}

.item-card .item-card-bottom ul.item-cart-list li a:hover i,
.item-card .item-cart-list li a:hover i {
	background: none !important;
	color: #fff !important;
}

/* ==========================================================================
   HERO — clean full-bleed Kashee's-style banner
   ========================================================================== */
.home_1 .hero-slider-modern,
.home_1 .slider-section {
	margin-bottom: 0;
}

.home_1 .hero-slide {
	min-height: 560px;
}

.home_1 .hero-slide__overlay {
	background: linear-gradient(
		90deg,
		rgba(26, 26, 26, 0.55) 0%,
		rgba(26, 26, 26, 0.25) 45%,
		rgba(26, 26, 26, 0) 75%
	) !important;
}

.home_1 .hero-slide__eyebrow {
	color: #fff !important;
	background: var(--k-pink) !important;
	border: 0 !important;
	font-family: var(--k-font-head);
	letter-spacing: 2px;
	border-radius: 50px;
}

.home_1 .hero-slide__title {
	font-family: var(--k-font-head) !important;
	font-weight: 700 !important;
	text-transform: none;
}

.home_1 .hero-slide__lead {
	font-family: var(--k-font-body);
}

.home_1 .hero-slide__btn {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	box-shadow: var(--k-shadow-pink);
}

.home_1 .hero-slide__btn:hover {
	background: #fff !important;
	color: var(--k-pink) !important;
	border-color: #fff !important;
}

/* Drop the tilted framed image — Kashee's hero is full-bleed */
.home_1 .hero-slide__visual-wrap {
	display: none !important;
}

.home_1 .hero-slide__content {
	max-width: 620px;
}

/* Hero nav + dots in pink */
.home_1 .hero-slider-modern .owl-nav button:hover,
.home_1 .hero-slider-modern__track .owl-nav button:hover {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
}

.home_1 .hero-slider-modern .owl-dot.active span {
	background: var(--k-pink) !important;
}

.home_1 .hero-slider-modern__progress-bar {
	background: var(--k-pink) !important;
}

/* ==========================================================================
   FEATURED CATEGORIES — full-width square image cards
   ========================================================================== */
.featured-categories .featured-card,
.featured-categories .owl-carousel .featured-card {
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: var(--k-bg-soft) !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	height: 100%;
}

.featured-categories .featured-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--k-shadow-md);
}

.featured-categories .featured-card .featured-image {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	overflow: hidden !important;
	background: var(--k-bg-soft);
	border: none !important;
	display: block;
	position: relative;
}

.featured-categories .featured-card .featured-image img {
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 0 !important;
	position: absolute;
	inset: 0;
}

.featured-categories .featured-card .featured-title {
	padding: 14px 12px 18px !important;
}

.featured-card .featured-title a {
	font-family: var(--k-font-head);
	color: var(--k-ink) !important;
	font-weight: 500;
	font-size: 15px;
}

.featured-card .featured-title a:hover {
	color: var(--k-pink) !important;
}

/* ==========================================================================
   OWL carousel arrows for product/category rails
   ========================================================================== */
.caro-common .owl-nav button,
.featured-categories .owl-nav button,
.category-carousel .owl-nav button,
.deals-carousel .owl-nav button {
	background: #fff !important;
	border: 1px solid var(--k-line) !important;
	color: var(--k-ink) !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	box-shadow: var(--k-shadow-sm);
	transition: all 0.2s ease !important;
}

.caro-common .owl-nav button:hover,
.featured-categories .owl-nav button:hover,
.category-carousel .owl-nav button:hover,
.deals-carousel .owl-nav button:hover {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	color: #fff !important;
}

/* ==========================================================================
   TABS (What's New: Skin Care / Foundation / Makeup / Hair Care)
   ========================================================================== */
.tp-tabs.nav-pills {
	justify-content: center;
	gap: 10px;
	border-bottom: 0;
}

.tp-tabs.nav-pills .nav-link {
	background: transparent;
	color: var(--k-body);
	border: 1px solid var(--k-line);
	border-radius: 50px;
	font-family: var(--k-font-head);
	font-weight: 500;
	font-size: 14px;
	padding: 9px 22px;
	transition: all 0.2s ease;
}

.tp-tabs.nav-pills .nav-link:hover {
	border-color: var(--k-pink);
	color: var(--k-pink);
}

.tp-tabs.nav-pills .nav-link.active {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	color: #fff !important;
}

/* ==========================================================================
   OFFER / PROMO CARDS
   ========================================================================== */
.home_1 .offer-section {
	background-color: var(--k-bg-soft) !important;
}

.home_1 .offer-section::before {
	background: linear-gradient(180deg, rgba(250,247,248,0.94), rgba(250,247,248,0.9)) !important;
}

.offer-card {
	border-radius: 16px;
	box-shadow: var(--k-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--k-shadow-md);
}

.home_1 .offer-card .offer-heading h2 {
	font-family: var(--k-font-head) !important;
	color: var(--k-ink) !important;
	font-weight: 700;
}

.offer-card .offer-footer a.btn {
	background: var(--k-pink) !important;
	border-color: var(--k-pink) !important;
	color: #fff !important;
}

.offer-card .offer-footer a.btn:hover {
	background: var(--k-pink-dark) !important;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.home_1 .video-section::before {
	background: linear-gradient(90deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 60%, rgba(26,26,26,0.2) 100%) !important;
}

.home_1 .video-desc h1 {
	font-family: var(--k-font-head) !important;
}

.video-card .play-icon {
	background: var(--k-pink) !important;
	color: #fff !important;
	box-shadow: 0 0 0 12px rgba(214, 0, 110, 0.25);
}

/* ==========================================================================
   DEALS SECTION
   ========================================================================== */
.deals-card {
	border-radius: 16px;
	box-shadow: var(--k-shadow-sm);
}

.item-card .deals-countdown-card .deals-countdown .countdown-section {
	background: var(--k-ink);
	color: #fff;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact_card .heading {
	font-family: var(--k-font-head);
	font-weight: 600;
}

.contact-info p,
.contact-info .info .desc span,
.contact-info .info .desc p,
.contact-info .info .desc p a {
	font-family: var(--k-font-body);
	font-weight: 400;
}

.contact-info .info .desc span {
	font-weight: 600;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-section {
	background: var(--k-bg-soft);
}

.breadcrumb-item a {
	color: var(--k-pink) !important;
}

.item-desc {
	color: var(--k-muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 6px 0 10px;
	min-height: 40px;
}
@media (max-width: 991px) {
	.section { padding: 44px 0; }
	.section-heading h2 { font-size: 26px !important; }
	.featured-categories .featured-card .featured-title { padding: 12px 10px 16px !important; }
}

@media (max-width: 575px) {
	.item-card .item-card-bottom .add-to-cart { font-size: 12px; padding: 9px 10px; }
	.featured-categories .featured-card .featured-title { padding: 10px 8px 14px !important; }
}

/* Product detail — main image fills slider container */
.product-details-slider .item {
	display: block;
	overflow: hidden;
}
.product-details-slider .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0;
}

/* ==========================================================================
   PRODUCT DETAIL — professional layout enhancements
   ========================================================================== */
.pr_details .product_title {
	font-size: 26px !important;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 10px !important;
}

.pr_rating_row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--k-line);
}

.pr_rating_row .rating-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pr_rating_row .rating-count {
	font-size: 13px;
	color: var(--k-muted);
}

.pr_stock_pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 50px;
}

.pr_stock_pill.instock {
	color: #1a8a4a;
	background: rgba(26, 138, 74, 0.1);
}

.pr_stock_pill.stockout {
	color: #d6006e;
	background: rgba(214, 0, 110, 0.08);
}

.pr_details .product_price {
	align-items: baseline;
	margin-bottom: 16px !important;
}

.pr_details .product_price .item-price {
	font-size: 30px !important;
	color: var(--k-pink) !important;
	font-weight: 700;
}

.pr_short_desc {
	color: var(--k-body);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--k-line);
}

/* Shade swatches */
.pr_shades_widget {
	margin-bottom: 20px !important;
}

.pr_shades_widget .widget-title {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--k-ink);
	margin-bottom: 10px;
	font-family: var(--k-font-head);
}

.pr_shades_widget .selected-shade-name {
	color: var(--k-pink);
	font-weight: 600;
}

ul.product-shades {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
}

ul.product-shades li.shade-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 72px;
	padding: 8px 4px;
	border-radius: 12px;
	border: 1.5px solid var(--k-line);
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	list-style: none;
	text-align: center;
}

ul.product-shades li.shade-option:hover {
	transform: translateY(-2px);
	box-shadow: var(--k-shadow-sm);
}

ul.product-shades li.shade-option.active {
	border-color: var(--k-pink);
	box-shadow: 0 0 0 1px var(--k-pink);
}

ul.product-shades li.shade-option .shade-swatch {
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

ul.product-shades li.shade-option .shade-name {
	font-size: 11px;
	line-height: 1.3;
	color: var(--k-body);
	font-weight: 500;
}

ul.product-shades li.shade-option.active .shade-name {
	color: var(--k-pink);
	font-weight: 600;
}

/* Trust badges */
ul.pr_trust_badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 6px;
	padding: 16px 0;
	border-top: 1px solid var(--k-line);
	border-bottom: 1px solid var(--k-line);
}

ul.pr_trust_badges li {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 calc(50% - 10px);
	min-width: 140px;
	list-style: none;
}

ul.pr_trust_badges .trust-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--k-pink-soft);
	color: var(--k-pink);
	font-size: 17px;
	flex-shrink: 0;
}

ul.pr_trust_badges .trust-text {
	font-size: 13px;
	font-weight: 500;
	color: var(--k-body);
}

/* Cart shade chip */
.pro-shade {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	font-size: 12px;
	color: var(--k-body);
}

.pro-shade-swatch {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: inline-block;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

@media (max-width: 575px) {
	.pr_details .product_title { font-size: 22px !important; }
	.pr_details .product_price .item-price { font-size: 26px !important; }
	ul.pr_trust_badges li { flex: 1 1 100%; }
}

/* ==========================================================================
   PRODUCT DETAIL — brand, delivery, buy box & frequently bought together
   ========================================================================== */
.pr_brand_name {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--k-pink);
	margin-bottom: 8px;
}

.pr_brand_name i {
	font-size: 14px;
	color: var(--k-pink);
}

.pr_brand_name:hover {
	color: var(--k-pink-dark);
}

/* Delivery information */
.pr_delivery_box {
	border: 1px solid var(--k-line);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 18px;
	background: var(--k-bg-soft, #fbf7f9);
}

.pr_delivery_head {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--k-ink);
	margin-bottom: 10px;
	font-family: var(--k-font-head);
}

.pr_delivery_head i {
	color: var(--k-pink);
	font-size: 16px;
}

ul.pr_delivery_list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

ul.pr_delivery_list li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--k-body);
	list-style: none;
}

ul.pr_delivery_list li i {
	color: var(--k-pink);
	font-size: 14px;
}

.pr_meta_list {
	margin-bottom: 14px;
}

.pr_share_widget {
	margin-bottom: 0 !important;
}

/* Buy box (right rail) */
.pr_buybox {
	border: 1px solid var(--k-line);
	border-radius: 14px;
	padding: 18px;
	background: #fff;
	box-shadow: var(--k-shadow-sm);
	margin-bottom: 24px;
}

.pr_buybox_seller {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--k-line);
}

.pr_buybox_seller .seller-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--k-muted);
	margin-bottom: 4px;
}

.pr_buybox_seller .seller-name {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--k-ink);
}

.pr_buybox_seller .seller-name:hover {
	color: var(--k-pink);
}

.pr_buybox_qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.pr_buybox_qty label {
	font-size: 14px;
	font-weight: 600;
	color: var(--k-ink);
	margin: 0;
}

.pr_buybox_qty input {
	width: 84px;
	height: 42px;
	border: 1px solid var(--k-line);
	border-radius: 10px;
	text-align: center;
	font-weight: 600;
	color: var(--k-ink);
}

.pr_buybox .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-bottom: 10px;
	border-radius: 50px;
	font-weight: 600;
}

.pr_buybox .product_buy_now.buynow {
	background: #fff !important;
	color: var(--k-pink) !important;
	border: 1.5px solid var(--k-pink) !important;
}

.pr_buybox .product_buy_now.buynow:hover {
	background: var(--k-pink) !important;
	color: #fff !important;
}

.pr_buybox .pr_wishlist_btn {
	background: transparent !important;
	color: var(--k-body) !important;
	border: none !important;
	font-size: 13px;
	margin-bottom: 4px;
}

.pr_buybox .pr_wishlist_btn:hover {
	color: var(--k-pink) !important;
}

ul.pr_buybox_notes {
	margin: 12px 0 0;
	padding: 14px 0 0;
	list-style: none;
	border-top: 1px solid var(--k-line);
	display: flex;
	flex-direction: column;
	gap: 9px;
}

ul.pr_buybox_notes li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--k-body);
	list-style: none;
}

ul.pr_buybox_notes li i {
	color: #1a8a4a;
	font-size: 15px;
}

/* Frequently Bought Together */
.fbt_section {
	border: 1px solid var(--k-line);
	border-radius: 14px;
	padding: 22px 24px;
	margin-top: 28px;
	background: #fff;
	box-shadow: var(--k-shadow-sm);
}

.fbt_title {
	font-family: var(--k-font-head);
	font-size: 18px;
	font-weight: 600;
	color: var(--k-ink);
	margin-bottom: 18px;
}

.fbt_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.fbt_items {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 6px;
}

.fbt_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 120px;
	text-align: center;
}

.fbt_check_label {
	position: relative;
	display: inline-block;
	margin: 0;
}

.fbt_check {
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 2;
	width: 16px;
	height: 16px;
	accent-color: var(--k-pink);
}

.fbt_thumb {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--k-line);
	background: var(--k-bg-soft);
}

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

.fbt_name {
	font-size: 12px;
	line-height: 1.4;
	color: var(--k-ink);
	font-weight: 500;
}

a.fbt_name:hover {
	color: var(--k-pink);
}

.fbt_price {
	font-size: 13px;
	font-weight: 700;
	color: var(--k-pink);
}

.fbt_plus {
	font-size: 22px;
	font-weight: 300;
	color: var(--k-muted);
	align-self: center;
	padding: 0 2px;
	margin-top: 32px;
}

.fbt_summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 220px;
	padding-left: 24px;
	border-left: 1px solid var(--k-line);
}

.fbt_total_row {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.fbt_total_label {
	font-size: 14px;
	color: var(--k-body);
}

.fbt_total_price {
	font-size: 22px;
	font-weight: 700;
	color: var(--k-ink);
}

.fbt_summary .btn {
	border-radius: 50px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.fbt_summary {
		border-left: none;
		padding-left: 0;
		width: 100%;
	}
}

@media (max-width: 575px) {
	.fbt_item { width: 96px; }
	.fbt_thumb { width: 80px; height: 80px; }
}

/* Cart quantity controls */
.cart-qty-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
}

.mini-cart-qty {
	margin-top: 4px;
}

.cart-qty-wrap .qty-btn,
.cart-qty-wrap .mini-qty-btn {
	border: none;
	background: var(--k-pink-soft);
	color: var(--k-pink);
	border-radius: 50%;
	width: 26px;
	height: 26px;
	line-height: 1;
	font-size: 16px;
	font-weight: 600;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.cart-qty-wrap .qty-btn:hover,
.cart-qty-wrap .mini-qty-btn:hover {
	background: var(--k-pink);
	color: #fff;
}

.cart-qty-wrap .cart-qty-display,
.cart-qty-wrap .mini-qty-val {
	min-width: 22px;
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	color: var(--k-ink);
}

.shopping-cart .pro-quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.shopping-cart .pro-quantity .quantity {
	border: 1px solid var(--k-line);
	border-radius: 8px;
	padding: 6px 4px;
	text-align: center;
	width: 48px;
	font-weight: 600;
	background: #fff;
}

.shopping-cart .pro-quantity .qty-btn {
	border: none;
	background: var(--k-pink-soft);
	color: var(--k-pink);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 1;
	margin: 0;
}

.shopping-cart .pro-quantity .qty-btn:hover {
	background: var(--k-pink);
	color: #fff;
}

.checkout-qty-wrap .checkout-qty-unit {
	font-size: 12px;
	color: var(--k-muted);
	font-weight: 500;
}

/* Checkout — payment methods in order summary */
.checkout-section-title {
	font-family: var(--k-font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--k-ink);
	margin: 20px 0 12px;
	padding-top: 16px;
	border-top: 1px solid var(--k-line);
}

.checkout-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 8px;
}

.checkout-payment-option {
	border-radius: 12px;
}

.checkout-payment-label {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 1.5px solid var(--k-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkout-payment-label:hover {
	border-color: var(--k-pink);
	box-shadow: var(--k-shadow-sm);
}

.checkout-payment-label input[type="radio"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--k-pink);
}

.checkout-payment-label:has(input:checked) {
	border-color: var(--k-pink);
	background: var(--k-pink-soft);
	box-shadow: 0 0 0 1px var(--k-pink);
}

.checkout-payment-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.checkout-payment-icon.cod {
	background: rgba(26, 138, 74, 0.12);
	color: #1a8a4a;
}

.checkout-payment-icon.bank {
	background: rgba(59, 130, 246, 0.12);
	color: #2563eb;
}

.checkout-payment-icon.stripe {
	background: rgba(99, 102, 241, 0.12);
	color: #6366f1;
}

.checkout-payment-icon.paypal {
	background: rgba(0, 112, 186, 0.12);
	color: #0070ba;
}

.checkout-payment-icon.razorpay {
	background: rgba(51, 102, 255, 0.12);
	color: #3366ff;
}

.checkout-payment-icon.mollie {
	background: rgba(0, 0, 0, 0.08);
	color: #111;
}

.checkout-payment-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.checkout-payment-text strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--k-ink);
	line-height: 1.3;
}

.checkout-payment-text small {
	font-size: 12px;
	color: var(--k-muted);
	line-height: 1.4;
}

.checkout-payment-note {
	margin: 8px 0 0;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--k-body);
	background: var(--k-bg-soft);
	border-radius: 8px;
	border: 1px solid var(--k-line);
}

.checkout-payment-note .form-control {
	margin-top: 0;
}

.carttotals-card .checkout_btn {
	width: 100%;
	border-radius: 50px;
	font-weight: 600;
	margin-top: 16px !important;
}
