/* ==========================================================================
   CouponSpot — Design tokens & base
   ========================================================================== */

:root {
 --color-primary: #c31e39;
 --color-primary-dark: #9e1830;
 --color-primary-hover: #d42842;
 --color-dark: #111;
 --color-gray: #777;
 --color-gray-light: #e8e8e8;
 --color-bg: #f8f8f8;
 --color-white: #ffffff;
 --color-success: #2d8a54;
 --color-footer-bar: #1a0a0c;
 --font-family: "Josefin Sans", system-ui, sans-serif;
 --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
 --space-1: 8px;
 --space-2: 16px;
 --space-3: 24px;
 --space-4: 32px;
 --space-5: 40px;
 --space-6: 48px;
 --space-8: 64px;
 --section-y: 72px;
 --radius-sm: 8px;
 --radius-md: 12px;
 --radius-lg: 16px;
 --radius-pill: 999px;
 --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
 --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
 --shadow-card-hover: 0 10px 28px rgba(0, 0, 0, 0.1);
 --hero-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1920&q=85");
 --container: 1300px;
 --header-height: auto;
 --transition: 0.22s ease;
}
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--color-dark);
	background: var(--color-bg);
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}
a:hover {
	color: var(--color-primary-hover);
}
.text-center {
	text-align: center;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1, h2, h3, h4, p {
	margin: 0;
}
button {
	font-family: inherit;
	cursor: pointer;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-2);
}
.topbar {
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 500;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	padding-block: var(--space-1);
}
.topbar__msg {
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1rem;
	font-weight: 500;
	max-width: 70%;
	line-height: 1.35;
}
.topbar__social {
	display: flex;
	gap: var(--space-2);
}
.topbar__social a {
	color: var(--color-primary);
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	transition: background var(--transition), transform var(--transition);
}
.topbar__social a:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.08);
	color: var(--color-white);
}
.header-main {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-gray-light);
}
.header-main__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--space-3);
	padding-block: var(--space-3);
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-dark); width:250px;
}
.logo__mark {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--color-dark);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9375rem;
	flex-shrink: 0;
}
.logo__wordmark {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--color-dark);
}
.logo:hover .logo__wordmark {
	color: var(--color-primary);
}
.header-search {
	display: flex;
	align-items: stretch;
	max-width: 600px;
	width: 100%;
	margin-inline: auto;
	background: var(--color-bg);
	border: 2px solid var(--color-primary);
	border-radius: 50px;
	
	min-height: 40px;
	transition: border-color var(--transition), box-shadow var(--transition);
	position:relative;
}
 .header-search:focus-within {
 border-color: rgba(195, 30, 57, 0.35);
 box-shadow: 0 0 0 3px rgba(195, 30, 57, 0.12);
}
.header-search__input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px var(--space-3);
	font-family: inherit;
	font-size: 1rem;
	min-width: 0;
}
 .header-search__input::placeholder {
 color: var(--color-gray);
}
.header-search__input:focus {
	outline: none;
}
.header-search__submit {
	width: 48px;
	border: none;
	background: transparent;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color var(--transition), background var(--transition);
	font-size: 20px;
}
.header-search__submit:hover {
	color: var(--color-primary);
	background: rgba(195, 30, 57, 0.06);
}
.header-main__actions {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}
.header-main__login {
	white-space: nowrap;
	min-height: 44px;
	padding-inline: var(--space-4);
}
/*button*/

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	padding: var(--space-1) var(--space-3);
	transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn:hover {
	transform: translateY(-1px);
}
.btn:active {
	transform: translateY(0);
}
.btn--pill {
	border-radius: var(--radius-pill);
	padding-inline: var(--space-4);
}
.btn--primary {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}
.btn--primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: var(--color-white);
}
.btn--outline {
	background: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-primary);
}
.btn--outline:hover {
	background: rgba(195, 30, 57, 0.06);
	color: var(--color-primary-dark);
}
.btn--sm {
	padding: 10px var(--space-2);
	font-size: 0.8125rem;
}
.btn--block {
	width: 100%;
}
.btn--hero {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	padding: var(--space-2) var(--space-5);
	font-size: 1rem;
	margin-top: var(--space-3);
}
.btn--hero:hover {
	background: var(--color-white);
	color: var(--color-dark);
	border-color: var(--color-white);
}
.navbar {
	background: #FFECE5;
}
.navbar__list {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.navbar__list a {
	display: inline-block;
	color: #000;
	padding: 7px 5px;
	font-size: 18px;
}
.tabs-slider {
	position: relative;
}
.mobile-nav {
	display: none
}
@media (max-width: 767px) {
    .header-search{ display:none;
        position: absolute;
        width: 90%;
        top: 120px;
        z-index: 10001;
    }
    .header-search__submit {
        float: right;
    margin-top: 10px;
    }
    .header-main__actions{ display:none;}
    .navbar{ display:none;}
    .mobile-nav{ display:block;
        position: absolute;
        right: 10px;
        font-size: 28px;}
}
/* hide mobile button on desktop */
.mobile-nav {
	display: none;
	cursor: pointer;
	font-size: 22px;
	padding: 10px;
}
.mobile-icon-search {
    display: none;
}
/* MOBILE */
@media (max-width: 768px) {

	.mobile-nav {
		display: block;
	}

	/* hide menu by default */
	#primaryNav {
		display: none;
		width: 100%;
	}

	/* show when active */
	#primaryNav.actived {
		display: block;
	}

	.navbar__list {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
	}

	.navbar__list li {
		width: 100%;
	}

	.navbar__list a {
		display: block;
		width: 100%;
		padding: 12px;
		border-bottom: 1px solid #eee;
	}
	.mobile-icon-search {
        display: block;
        position: absolute;
        right: 3%;
        font-size: 20px;
        background: var(--color-primary);
        color: #fff;
        text-align: center;
        line-height: 40px;
        width: 40px;
        height: 40px;
        margin-right: 50px;
        border-radius: 100%;
    }
}
/* BANNER */
.tab-banner {
	position: relative;
	height: 450px;
	margin-top: 20px;
	border-radius: 15px;
	overflow: hidden;
}
.banner-link {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.banner-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-link.active {
	opacity: 1;
	z-index: 2;
}
/* TAB BUTTONS */
.tab-btns {
	display: flex;
	margin-top: 15px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	position: absolute;
	width: 80%;
	left: 10%;
	bottom: -35px;
	z-index: 1001;
	padding: 7px;
}
.tab-btn {
	flex: 1;
	padding: 12px;
	cursor: pointer;
	text-align: center;
	transition: 0.3s;
	border-right: 2px solid #fff;
	background: #FFECE5;
}
.tab-btn:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}
.tab-btn:last-child {
	border-right: none;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}
.tab-btn:hover {
	box-shadow: 0 3px 0px #C31E39;
}
.tab-btn.active {
	box-shadow: 0 3px 0px #C31E39;
}
.percentage-val {
	display: block;
	font-weight: 600;
}
.category-name {
	font-size: 13px;
	opacity: 0.8;
	color: #C31E39;
}
/* SECTION HEADER */
.web-home-thq-group392-elm {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 70px;
}
.web-home-thq-text-elm131 {
	font-size: 20px;
	font-weight: 600;
	color: #111;
}
.web-home-thq-text-elm132 {
	font-size: 14px;
	color: #C31E39;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}
.web-home-thq-text-elm132:hover {
	opacity: 0.7;
}
.ellipsistext {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .tab-banner{height: 220px;}
}
@media (max-width: 600px) {
    .tab-banner{height: 180px;}
    .tab-btns {
        width: 98%;
        left: 1%;
        bottom: -50px
    }
    .percentage-val {
        display: block;
        font-weight: 600;
        font-size: 13px;
        white-space: nowrap;
    	overflow: hidden;
    	text-overflow: ellipsis;
    }
}
/* GRID */
.recomended-deals {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 768px) {
  .recomended-deals {
    	grid-template-columns: repeat(2, 1fr);
    }  
}
@media (max-width: 600px) {
  .recomended-deals {
    	grid-template-columns: repeat(1, 1fr);
    }  
}
/* CARD */
.rec-deal {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}
.rec-deal:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
/* IMAGE */
.rec-deal img {
	max-width: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin-right: 12px;box-shadow:0 0px 3px rgba(0, 0, 0, 0.25);
}
/* DETAILS */
.rec-detail {
	flex: 1;
	display: flex;
	flex-direction: column;
}
/* DISCOUNT BADGE */
.bag-off-percentge span {
	display: inline-block;
	background: #ffe9ec;
	color: #C31E39;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	margin-bottom: 6px;
	font-weight: 600;
}
.bag-off-percentge i {
	margin-right: 4px;
}
/* TITLE */
.rec-detail a {
	font-size: 14px;
	color: #111;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 8px;
	transition: 0.3s;
}
.rec-detail a:hover {
	color: #C31E39;
}
/* BUTTON */
a.cta-get-deal {
	align-self: flex-start;
	background: #C31E39;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	padding: 6px 14px;
	border-radius: 20px;
	text-decoration: none;
	transition: 0.3s;
	text-align: right;
}
.cta-get-deal:hover {
	background: #a81830;
}
/* GRID */
.topstores {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 15px;
}

/* STORE ITEM */
.topstores a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	height: 120px;
	width: 120px;
	border-radius: 100%;
	transition: all 0.3s ease;
}
@media (max-width: 1100px) {
	.topstores {
		display: flex;
		overflow-x: auto;
		scroll-behavior: smooth;
		gap: 12px;
		padding-bottom: 10px;
	}

	.topstores a {
		flex: 0 0 auto;
		width: 110px;
		height: 110px;
	}
}
/* IMAGE */
.topstores img {
	max-width: 100%;
	transition: 0.3s; box-shadow:0 0 4px rgba(0, 0, 0, 0.25); border-radius:100%;
}
/* HOVER EFFECT */
.topstores a:hover {
	border-color: #C31E39;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
	transform: translateY(-3px);
}
.topstores a:hover img {
	transform: scale(1.05);
}
.product-titleh {
	margin-top: 50px;
}
.product-titleh span {
	background: #FFE9EC;
	color: #C31E39;
	padding: 5px 15px;
	font-weight: 700;
	font-size: 13px;
	border-radius: 25px;
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
}
.headings {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}
.product-categories {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.product-categories a {
	background: #FFE9EC;
	color: #000;
	padding: 10px 18px;
	font-weight: 700;
	font-size: 14px;
	border-radius: 25px;
	text-align: center;
	display: inline-block;
}
.product-categories a.active-pro {
	background: #C31E39;
	color: #fff;
}
@media (max-width: 600px) {
    .product-titleh { text-align:center;}
    .headings {flex-direction: column;}
    .product-categories { margin-top:15px;}
}
/* GRID WRAPPER */
.product-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 30px;
}
/* CARD */
.product-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #eee;
	transition: 0.3s ease;
	position: relative;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
/* IMAGE */
.product-img {
	height: 200px;
	overflow: hidden;
	border-radius: 16px 16px 0 0;
}
.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* BADGES */
.product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 8px;
}
.product-badges span {
	font-size: 11px;
	padding: 5px 10px;
	border-radius: 6px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
/* Badge Colors */
.active-badge {
	background: #e11d48; /* red */
}
.hot-badge {
	background: #f97316; /* orange */
}
.exclusive-badge {
	background: #f59e0b; /* yellow */
}
/* BRAND */
.pro-by-brandd {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 15px 0;
	font-size: 14px;
}
.pro-by-brandd i {
	color: #6b7280;
}
.pro-by-brandd a {
	color: #374151;
	font-weight: 600;
	text-decoration: none;
}
/* TITLE */
.product-card h3 {
	font-size: 20px;
	padding: 5px 15px;
	margin: 8px 0;
	color: #111827;
}
/* DESCRIPTION */
.product-card p {
	font-size: 14px;
	color: #6b7280;
	padding: 0 15px;
	line-height: 1.5;
}
/* BOTTOM */
.product-card-btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	margin-top: 10px;
	border-top: 1px solid #eee;
}
/* EXPIRY */
.expire-date {
	font-size: 12px;
	color: #9ca3af;
}
/* BUTTON */
.product-card-btm a {
	background: #dc2626;
	color: #fff;
	padding: 10px 18px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: 0.3s;
}
.product-card-btm a:hover {
	background: #b91c1c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.product-cards {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
.product-cards {
	grid-template-columns: 1fr;
}
}
.red-categories {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 20px;
	margin-top: 30px;
}
/* CATEGORY ITEM */
.red-categories a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #111;
	transition: 0.3s ease;
}
/* IMAGE CIRCLE */
.catimg {
	height: 120px;
	width: 120px;
	border-radius: 50%;
	border: 2px solid #dc2626;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFECE5;
	transition: 0.3s ease;
}
.catimg img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}
/* TEXT */
.catname {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
}
/* HOVER EFFECT */
.red-categories a:hover .catimg {
	background: #dc2626;
	transform: translateY(-5px);
}
.red-categories a:hover .catimg img {
	filter: brightness(0) invert(1);
}
.red-categories a:hover .catname {
	color: #dc2626;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
.red-categories {
	grid-template-columns: repeat(6, 1fr);
}
}

@media (max-width: 992px) {
.red-categories {
	grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 576px) {
.red-categories {
	grid-template-columns: repeat(2, 1fr);
}
.catimg {
	height: 90px;
	width: 90px;
}
.catimg img {
	width: 35px;
	height: 35px;
}
}
.home-offers {
	margin-top: 50px;
}
/* GRID WRAPPER */
.h-offers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 30px;
}
/* CARD */
.h-offer {
	background: #fff;
	border-radius: 16px;
	padding: 15px;
	border: 1px solid #eee;
	transition: 0.3s ease;
}
.h-offer:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* HEADER */
.h-offer-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* IMAGE */
.h-offer-img {
	width: 70px;
	height: 70px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0; border:1px solid #ddd;
}
.h-offer-img img {
	width: 100%;
	height: 100%; 
	object-fit: cover;
}
/* VALUES */
.h-offer-vals {
}
/* VERIFIED */
.h-offer-vals > span {
	font-size: 10px;
	width: 85px;
	padding: 3px 3px 3px 10px;
	color: #16a34a;
	background: #c1ffd8;
	border-radius: 25px;
	text-transform: uppercase;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 5px;
}
/* DISCOUNT BOX */
.h-offer-val {
	text-align: right;
	margin-top: 10px;
}
.percentage-x-val {
	font-size: 33px;
	line-height: 35px;
	display: block;
	font-weight: 700;
	color: #000;
}
.off-code {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #6b7280;
}
/* TITLE */
.h-offer h3 {
	font-size: 18px;
	margin: 20px 0 6px;
	color: #111827;
	line-height: 1.4;
	display: -webkit-box;
  -webkit-line-clamp: 2;   /* 👈 limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* DESCRIPTION */
.h-offer p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	display: -webkit-box;
  -webkit-line-clamp: 2;   /* 👈 limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.offer-expiry {
	font-size: 13px;
	color: #999;
	text-align: center;
	margin-top: 15px;
	line-height: 1.5;
}
/* FOOTER */
.h-offer-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}
/* CODE */
.codeval {
	background: #FFECE5;
	width: 60%;
	text-align: center;
	padding: 8px 14px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 2px;
	color: #111;
}
.a-b-scode {
	width: calc(100% - 110px);
	background: linear-gradient(135deg, #f4f6f8, #e9ecef), repeating-linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .25) 4px, rgba(0, 0, 0, .04) 4px, rgba(0, 0, 0, .04) 8px);
	background-blend-mode: overlay;
	border: 1px dashed #bbb;
	padding: 6px 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	border-radius: 10px;
	color: #333;
	text-align: center;
}
/* BUTTON */
.h-offer-foot a {
	background: #dc2626;
	width: 100px;
	color: #fff;
	padding: 10px 0;
	text-align: center;
	border-radius: 25px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s;
}
.h-offer-foot a:hover {
	background: #b91c1c;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
.h-offers {
	grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 992px) {
.h-offers {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
.h-offers {
	grid-template-columns: 1fr;
}
}
.newsletter {
	background: #c81e2b;
	padding: 40px 20px;
	text-align: center;
	color: #fff;
	margin-top: 50px;
	margin-bottom: 50px;
}
.newsletter .container {
	max-width: 900px;
	margin: auto;
}
/* LOGO */
.newsletter-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}
.newsletter-logo i {
	font-size: 24px;
}
/* TITLE */
.newsletter h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
}
/* TEXT */
.newsletter p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 35px;
	color: #f3f3f3;
}
/* FORM */
.newsletter-form {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
/* INPUT */
.newsletter-form input {
	width: 420px;
	max-width: 100%;
	padding: 16px 20px;
	border-radius: 40px;
	border: none;
	outline: none;
	font-size: 15px;
	background: #e5e5e5;
	color: #333;
}
/* BUTTON */
.newsletter-form button {
	padding: 14px 28px;
	border-radius: 40px;
	border: none;
	background: #f5d5cc;
	color: #c81e2b;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
}
.newsletter-form button:hover {
	background: #fff;
}

/* RESPONSIVE */
@media (max-width: 600px) {
.newsletter h2 {
	font-size: 28px;
}
.newsletter p {
	font-size: 15px;
}
.newsletter-form {
	flex-direction: column;
}
.newsletter-form input {
	width: 100%;
}
.newsletter-form button {
	width: 100%;
}
}
.hotproduct-heading {
	margin-bottom: 30px;
}
/* GRID */
.deal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}
/* CARD */
.deal-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.3s;
}
.deal-card:hover {
	transform: translateY(-8px);
}
/* IMAGE AREA */
.deal-img {
	position: relative;
	background: linear-gradient(180deg, #f8f8f8, #eaeaea);
	display: flex;
	align-items: center;
	justify-content: center;
}
.deal-img img {
	object-fit: contain;
}
/* BADGE */
.badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #dc2626;
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}
/* CONTENT */
.deal-content {
	padding: 20px;
}
/* BRAND */
.brand {
	font-size: 14px;
	color: #9ca3af;
	letter-spacing: 1px; text-transform:capitalizee;
}
/* TITLE */
.deal-content h3 {
	font-size: 18px;
	margin: 10px 0; min-height:50px;
	color: #111827;
	line-height: 1.4;

	display: -webkit-box;
  -webkit-line-clamp: 2;   /* 👈 limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* PRICE */
.price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0;
}
.price .new {
	color: #dc2626;
	font-size: 20px;
	font-weight: 700;
}
.price .old {
	color: #9ca3af;
	text-decoration: line-through;
}
/* BUTTON */
.deal-btn {
	display: block;
	text-align: center;
	background: #dc2626;
	color: #fff;
	padding: 14px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}
.deal-btn:hover {
	background: #b91c1c;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
.deal-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.deal-grid {
	grid-template-columns: 1fr;
}
}
.store-section {
	margin-top: 40px;
}
/* GRID */
.store-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
/* CARD */
.store-card {
	background: #fff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	transition: 0.3s;
}
.store-card:hover {
	transform: translateY(-5px);
}
/* LEFT CONTENT */
.store-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
/* LOGO */
.logo-x {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}
.logo-x img{ max-width:100%; border-radius:50%;}
/* logo-x COLORS */
.logo-x.green {
	background: #1f6f5c;
	color: #fff;
}
.logo-x.white {
	background: #fff;
	color: #e11d48;
	border: 1px solid #ddd;
}
.logo-x.beige {
	background: #e8e2d8;
	color: #777;
}
.logo-x.black {
	background: #000;
	color: #fff;
}
.logo-x.light {
	background: #eee;
	color: #333;
}
/* TEXT */
.store-card h3 {
	margin: 0;
	font-size: 18px;
	color: #111827;
}
.store-card p {
	margin: 5px 0 0;
	color: #e11d48;
	font-weight: 600;
	font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.store-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.store-grid {
	grid-template-columns: 1fr;
}
}
.blog-section {
	margin-top: 40px;
}
/* WRAPPER GRID */
.col3-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 0px 0;
}
/* CARD */
.col-b-3 {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	padding-bottom: 20px;
}
.col-b-3:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
/* IMAGE */
.b-3-img {
	overflow: hidden;
	border-radius: 16px;
}
.b-3-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}
.col-b-3:hover .b-3-img img {
	transform: scale(1.08);
}
/* DATE */
.publish-date {
	font-size: 15px;
	color: #9ca3af;
	padding: 15px 18px 5px;
}
/* TITLE */
.col-b-3 h3 {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	padding: 0 18px;
	margin: 5px 0 10px;
}
/* DESCRIPTION */
.col-b-3 p {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.2;
	padding: 0 18px;
	margin-bottom: 15px;
}
/* LINK */
.col-b-3 a {
	display: inline-block;
	margin: 0 18px;
	font-size: 16px;
	font-weight: 700;
	color: #e11d48;
	text-decoration: none;
	transition: 0.3s;
}
.col-b-3 a:hover {
	color: #be123c;
	transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
.col3-3 {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.col3-3 {
	grid-template-columns: 1fr;
}
}
/* SECTION */
.faq-section {
	margin-bottom: 80px;
}
/* CONTAINER */
.faqs {
	max-width: 900px;
	margin: auto;
}
/* TITLE */
.product-title {
	text-align: center;
	font-size: 33px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 40px;
}
/* FAQ WRAPPER */
.qq {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
/* FAQ CARD */
.faq {
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	transition: 0.3s ease;
}
.faq:hover {
	transform: translateY(-3px);
}
/* QUESTION */
.accordion {
	font-size: 18px;
	font-weight: 700;
	padding: 18px 20px;
	margin: 0;
	cursor: pointer;
	position: relative;
	color: #111827;
}
/* PLUS ICON */
.accordion::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #e11d48;
	transition: 0.3s;
}
/* ACTIVE STATE */
.faq.active .accordion::after {
	content: "−";
	transform: translateY(-50%) rotate(180deg);
}
/* ANSWER PANEL */
.panel {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height 0.4s ease, padding 0.3s ease;
}
.panel p {
	margin: 10px 0 20px;
	color: #6b7280;
	font-size: 17px;
	line-height: 1.6;
}
/* OPEN STATE */
.faq.active .panel {
	max-height: 200px;
	padding: 0 20px 10px;
}
footer {
	margin-top: 50px;
	padding: 50px 0 0 0;
	background: var(--color-primary);
	color: var(--color-white);
}
/* LOGO */
.footer-logo {
	margin-bottom: 50px;
}
.footer-logo img {
	max-height: 40px;
}
/* GRID */
.site-footer__grid {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 70px;
}
/* NAV LINKS */
.footer-nav {
	display: grid;
	width: 45%;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.footer-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}
/* LINKS */
.quick-links a {
	display: block;
	color: var(--color-light);
	text-decoration: none;
	margin-bottom: 8px;
	transition: 0.3s;
	font-size: 13px;
}
.quick-links a:hover {
	color: #fff;
	transform: translateX(3px);
}
/* NEWSLETTER */
.footer-col--newsletter {
	width: 40%;
}
.footer-col--newsletter h3 {
	font-size: 18px;
	margin-bottom: 15px;
}
@media (max-width: 768px) {
    .site-footer__grid { flex-direction: column;}
    .footer-nav {width: 100%;}
    .footer-col--newsletter {
        width: 100%;
        margin-top:20px;
    }
}
/* FORM */
.footer-col--newsletter form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 3px;
	border-radius: 25px;
	margin-bottom: 10px;
	overflow: hidden;
}
.footer-col--newsletter input {
	flex: 1;
	padding: 8px;
	border: none;
	outline: none;
}
.footer-col--newsletter form button {
	padding: 10px 18px;
	display: block;
	border: none;
	background: #111;
	color: #fff;
	cursor: pointer;
	border-radius: 25px;
	transition: 0.3s;
	font-size: 14px;
}
.footer-col--newsletter button:hover {
	background: #000;
}
.footer-col--newsletter p {
	font-size: 13px;
	opacity: 0.8;
	margin-bottom: 15px;
}
/* SOCIAL */
.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.footer-social span {
	margin-right: 10px;
}
.footer-social a {
	width: 35px;
	height: 35px;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	transition: 0.3s;
}
.footer-social a:hover {
	background: #fff;
	color: var(--color-primary);
}
/* OTHER LINKS */
.footer-other-links {
	margin-top: 30px;
	text-align: center;
	font-size: 13px;
}
.footer-other-links a {
	color: #fff;
	text-decoration: none;
	margin: 0 5px;
	opacity: 0.8;
}
.footer-other-links a:hover {
	opacity: 1;
}
/* COPYRIGHT */
.copyright {
	margin-top: 15px;
	padding: 0 0 10px 0;
	font-size: 12px;
	text-align: center;
	opacity: 0.7;
	line-height: 1.5;
}
/*storepage*/

.storepage {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row-reverse;
	margin-top: 40px;
}
.col-4 {
	width: 300px;
}
.col-8 {
	width: calc(100% - 330px);
}
@media (max-width: 768px) {
    .storepage { flex-direction: column; }
    .col-4 {
	    width:100%; margin-top:30px;
    }
    .col-8 {
    	width: calc(100% - 0px);
    }
}
@media (max-width: 600px) {
    .storepage { margin-top:20px;}
}
.storepage-head {
	margin-bottom: 30px;
}
.storepage-head p {
	color: #666;
	margin-bottom: 5px;
	font-size: 18px;
}
.verified-tested {
	color: #16A34A;
}
.verified-tested span {
	width: 190px;
	justify-content: center;
	display: flex;
	align-items: center;
	text-transform: capitalize;
	background: #d3ffed;
	padding: 5px 5px;
	border-radius: 25px;
	font-size: 14px;
}
/* FEATURED */
.featured-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ead7cf;
	border: 2px solid #e11d48;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 30px;
}
.fc-left {
	width: 120px;
	height: 120px
}
.fc-left .fc-badge {
	background: #e11d48;
	color: #fff;
	padding: 0px;
	border-radius: 16px;
	text-align: center;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.fc-badge span {
	font-size: 28px;
	font-weight: 700;
}
.fc-badge small {
	display: block;
	font-size: 12px;
	letter-spacing: 2px;
}
.fc-action {
	width: 160px;
}
.fc-content {
	width: calc(100% - 310px);
}
.fc-content h2 {
	margin: 0;
	font-size: 22px;
}
.fc-content p {
	font-size: 14px;
	color: #555;
}
.btn-dark {
	width: 100%;
	background: #0f172a;
	color: #fff;
	padding: 12px 0px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	display: block;
	text-align: center;
}
/* COUPON CARD */
.coupon-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid #e5e7eb;
}
/* LEFT */
.coupon-left {
	width: 120px;
	height: 120px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.coupon-left h3 {
	font-size: 28px;
	margin: 0;
}
.coupon-left span {
	font-size: 12px;
	letter-spacing: 2px;
}
/* COLORS */
.coupon-left.green {
	background: #cfe3dc;
	color: #047857;
}
.coupon-left.pink {
	background: #f2e6e6;
	color: #be123c;
}
/* CONTENT */


.labels {
	margin-bottom: 8px;
}
.tag {
	background: #fde8ec;
	color: #e11d48;
	padding: 5px 10px;
	border-radius: 10px;
	font-size: 12px;
	margin-right: 10px;
}
.tag.light {
	background: #f3f4f6;
	color: #555;
}
.verified {
	font-size: 12px;
	color: #e11d48;
}
.coupon-content h3 {
	margin: 5px 0;
}
.coupon-content p {
	font-size: 14px;
	color: #6b7280;
}
/* ACTION */
.coupon-action {
	text-align: right;
	width: 160px;
}
.coupon-content {
	width: calc(100% - 310px);
}
.btn-outline {
	border: 2px solid #e11d48;
	color: #e11d48;
	padding: 10px 00px;
	border-radius: 30px;
	text-decoration: none;
	display: inline-block;
	width: 156px;
	margin-bottom: 5px;
	text-align: center;
}
.btn-red {
	background: #e11d48;
	color: #fff;
	padding: 12px 00px;
	border-radius: 30px;
	text-decoration: none;
	display: inline-block;
	width: 160px;
	text-align: center;
	margin-bottom: 5px;
}
.coupon-action small {
	display: block;
	font-size: 11px;
	color: #9ca3af;
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.featured-coupon, .coupon-card {
	flex-direction: column;
	text-align: center;
	gap: 20px;
}
.fc-content {
	padding: 0; 
}
.coupon-content {
	padding: 0;
}
}
.deal-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.storepage-offers {
	grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
   .storepage-offers {
    	grid-template-columns: repeat(1, 1fr);
    } 
    .fc-content {
    	padding: 0; width: calc(100% - 0px);
    }
    .coupon-content {
        width: calc(100% - 0px);
    }
    .deal-grid-3 {
    	grid-template-columns: repeat(1, 1fr);
    }
}
/* SIDEBAR */
.sidebar {
	width: 300px;
}
/* COMMON CARD STYLE */
.sidebar > div {
	background: #fff;
	border-radius: 18px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
/* STORE CARD */
.store-card-ss {
	text-align: center;
}
.store-logo {
	width: 120px;
	height: 120px;
	margin: auto;
	border-radius: 5px;
	border: 2px solid #f3e8ea;
	padding: 2px;
	display: flex;
	justify-content: center;
	align-items: center; overflow:hidden;
}
.store-logo img {
	width: 100%;
	border-radius: 5px;
}
.store-card h2 {
	margin: 15px 0 5px;
}
.rating {
	color: #f59e0b;
	font-size: 14px;
}
.rating span {
	color: #6b7280;
}
.info {
	text-align: left;
	margin: 15px 0;
	font-size: 14px;
	color: #374151;
}
.store-card h4 {
	text-align: left;
	margin: 20px 0 10px;
	font-size: 14px;
	color: #6b7280;
	letter-spacing: 1px;
}
/* POLICIES */
.policies {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}
.policies li {
	font-size: 14px;
	margin-bottom: 8px;
	color: #111827;
}
/* ABOUT */
.about-card h3 {
	margin-bottom: 10px;
}
.about-card p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}
/* CATEGORY */
.cat-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.cat-item:last-child {
	border-bottom: none;
}
.cat-item span {
	font-size: 20px;
}
.cat-item h4 {
	margin: 0;
	font-size: 16px;
}
.cat-item p {
	margin: 2px 0 0;
	font-size: 12px;
	color: #6b7280;
}
/* VIEW ALL */
.view-all {
	display: block;
	margin-top: 15px;
	text-align: center;
	font-weight: 600;
	text-decoration: none;
	color: #6b7280;
	transition: 0.3s;
}
.view-all:hover {
	color: #111827;
}

/* RESPONSIVE (OPTIONAL) */
@media (max-width: 768px) {
.sidebar {
	width: 100%;
}
}

.stores-section{ margin-top:50px;}
.stores-section h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.stores-section h1 span {
  color: #e53935;
}

.subtitle {
  text-align: center;
  color: #777;
  margin: 10px 0 30px;
}

/* Alphabet */
.alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content:space-between;
  background: #fff;
  padding:10px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.alphabet button,
.alphabet span {
  border-radius: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.alphabet span{ height:30px; display:flex; justify-content:center; align-items:center;}
.alphabet button{ width:30px; height:30px; display:flex; justify-content:center; align-items:center;}

.alphabet button:hover {
  background: #eee;
}

.alphabet .active {
  background: #e53935;
  color: #fff;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar p {
  color: #333;
}

.highlight {
  color: #e53935;
  font-weight: bold;
}

.top-bar input {
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  width: 280px;
}

/* Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

/* Card */
.store-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.store-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.icon {
  width: 40px;
  height: 40px;
  background: #f3e5e5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
}

.store-card h3 {
  font-size: 14px; text-align:left;
}

.store-card p {
  font-size: 12px;
  color: #777;
}
#divResult{
 z-index:1001; background:#fff; position:absolute; width:100%; top:43px; margin-left:0px;  border-radius:15px; overflow:hidden;
}

.display_box{padding:4px;border-top:solid 1px #eee;display:block;font-size:12px;height:auto; color:#666; border-radius:3px;}
.display_box a{ display:flex; justify-content:flex-start; align-items:center;}
.display_box a img{ border-radius:10px;}
.display_box:hover{ background:#f1f1f1; color:#333; cursor:pointer;}
.display_box .searchimgfunc{
border:1px solid #fff;padding:2px; border-radius:10px;}
.display_box .name{float:left;font-size:16x;padding:10px; color:#333;}