/* =====================================================
   Belarush Fashion – Elementor Widgets
   ===================================================== */

/* ─── RESET / BASE ────────────────────────────────── */
.bf-hero, .bf-cta, .bf-footer,
.bf-grid-wrap, .bf-sec-head {
	box-sizing: border-box;
	font-family: 'Hind Siliguri', 'SolaimanLipi', Arial, sans-serif;
}

/* ─── HERO ────────────────────────────────────────── */
.bf-hero {
	background: #1a2236;
	padding: 60px 24px 70px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.bf-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244,196,48,.12) 0%, transparent 70%);
	pointer-events: none;
}
.bf-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}
html body .bf-hero__logo img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(244,196,48,.4);
	margin-bottom: 14px;
}
.bf-hero__shopname {
	display: block;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #f4c430;
	margin-bottom: 18px;
	font-weight: 600;
}
.bf-hero__title {
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 800;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 18px;
}
.bf-hero__title em {
	font-style: normal;
	color: #f4c430;
}
.bf-hero__sub {
	font-size: 16px;
	color: #b0bec5;
	line-height: 1.7;
	margin: 0 0 32px;
}
.bf-hero__btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.bf-btn-primary {
	background: #f4c430;
	color: #1a2236;
	border: none;
	padding: 13px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: background .2s, transform .15s;
}
.bf-btn-primary:hover { background: #e5b520; transform: translateY(-2px); }
.bf-btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,.35);
	padding: 11px 26px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: border-color .2s, background .2s;
}
.bf-btn-outline:hover { border-color: #f4c430; background: rgba(244,196,48,.08); }

/* ─── SECTION HEADER ──────────────────────────────── */
.bf-sec-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 24px 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.bf-sec-title {
	font-size: 22px;
	color: #1a2236;
	margin: 0;
	font-weight: 600;
}
.bf-sec-title strong {
	color: #e53935;
}
.bf-sec-link {
	font-size: 14px;
	color: #1a2236;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}
.bf-sec-link:hover { color: #e53935; }

/* ─── GRID WRAP ──────────────────────────────────── */
.bf-grid-wrap {
	margin: 0 auto;
	padding: 0 24px 40px;
}

/* ─── PRODUCT GRID ───────────────────────────────── */
.bf-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
html body .bf-grid--2.bf-grid {
	grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 1024px) {
	.bf-grid { grid-template-columns: repeat(3, 1fr)!important; }
}
@media (max-width: 768px) {
	.bf-grid,html body .bf-grid--2.bf-grid { grid-template-columns: repeat(2, 1fr)!important; }
}
@media (max-width: 480px) {
	.bf-grid, html body .bf-grid--2.bf-grid { grid-template-columns: 1fr!important; }
}

/* ─── CARD ───────────────────────────────────────── */
.bf-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(26,34,54,.07);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform .2s, box-shadow .2s;
}
.bf-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(26,34,54,.13);
}

/* Badge */
.bf-card__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 50px;
	z-index: 2;
}
.bf-card__tag--new     { background: #22c55e; color: #fff; }
.bf-card__tag--hot     { background: #e53935; color: #fff; }
.bf-card__tag--sale    { background: #f97316; color: #fff; }
.bf-card__tag--premium { background: #7c3aed; color: #fff; }

/* Image area */
.bf-card__img {
	background: #f0f4f8;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.bf-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bf-card__img-inner {
	width: 60px;
	height: 60px;
	opacity: .4;
}
.bf-card__img-inner svg { width: 100%; height: 100%; }

/* Card info */
.bf-card__info {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.bf-card__name {
	font-size: 20px;
	font-weight: 600;
	color: #1a2236;
	margin: 0;
}
.bf-card__price {
	font-size: 20px;
	font-weight: 700;
	color: #e53935;
	margin: 0;
}
.bf-card__price span {
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
}

/* Order button */
.bf-btn-card {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	background: #1a2236;
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	padding: 9px 14px;
	border-radius: 10px;
	margin-top: auto;
	transition: background .2s;
}
.bf-btn-card:hover { background: #f4c430; color: #1a2236; }

/* Wide card (special grid) */
.bf-card--wide .bf-card__img {
	aspect-ratio: 16 / 14;
}

/* ─── DIVIDER ─────────────────────────────────────── */
.bf-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 36px 0 22px;
}
.bf-divider__line {
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}
.bf-divider__label {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	letter-spacing: .06em;
	white-space: nowrap;
}

/* ─── CTA ─────────────────────────────────────────── */
.bf-cta {
	background: #1a2236;
	padding: 52px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}
@media (min-width: 768px) {
	.bf-cta {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.bf-cta__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #f4c430;
	margin: 0 0 10px;
}
.bf-cta__heading {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin: 0;
}
.bf-cta__heading em {
	font-style: normal;
	color: #f4c430;
}
.bf-btn-msg {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f4c430;
	color: #1a2236;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	padding: 13px 26px;
	border-radius: 50px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background .2s, transform .15s;
}
.bf-btn-msg:hover { background: #e5b520; transform: translateY(-2px); }

/* ─── FOOTER ──────────────────────────────────────── */
.bf-footer {
	background: #0e1520;
	color: #8a9ab5;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
@media (min-width: 768px) {
	.bf-footer {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.bf-footer__left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
html body .bf-footer__logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.bf-footer__name {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}
.bf-footer__social {
	display: flex;
	gap: 10px;
}
.bf-footer__social-link {
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,.08);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s;
}
.bf-footer__social-link:hover { background: #f4c430; color: #1a2236; }
.bf-footer__right {
	font-size: 13px;
	color: #8a9ab5;
}
.bf-footer__right a {
	color: #f4c430;
	text-decoration: none;
}
.bf-footer__right a:hover { text-decoration: underline; }

/* =====================================================
   Plugin-specific overrides to prevent theme CSS from
   overriding nested <a> and <button> styles used in widgets
   ===================================================== */
/* Enforce button/link visuals for core button/link classes */
.bf-btn-primary,
.bf-btn-primary a,
.bf-btn-primary button {
	background: #f4c430 !important;
	color: #1a2236 !important;
	border: none !important;
	padding: 13px 28px !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	display: inline-block !important;
}
.bf-btn-primary:hover,
.bf-btn-primary a:hover,
.bf-btn-primary button:hover {
	background: #e5b520 !important;
}

.bf-btn-outline,
.bf-btn-outline a,
.bf-btn-outline button {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,.35) !important;
	padding: 11px 26px !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	display: inline-block !important;
}
.bf-btn-outline:hover,
.bf-btn-outline a:hover,
.bf-btn-outline button:hover {
	border-color: #f4c430 !important;
	background: rgba(244,196,48,.08) !important;
}

.bf-btn-card,
.bf-btn-card a,
.bf-btn-card button {
	background: #1a2236 !important;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	padding: 14px !important;
	border-radius: 10px !important;
}
.bf-btn-card:hover,
.bf-btn-card a:hover,
.bf-btn-card button:hover {
	background: #f4c430 !important;
	color: #1a2236 !important;
}

/* Generic anchors and buttons inside BF components
.bf-hero a, .bf-hero button,
.bf-cta a, .bf-cta button,
.bf-card a, .bf-card button,
.bf-footer a, .bf-footer button,
.bf-grid a, .bf-grid button,
.bf-sec-head a, .bf-sec-head button {
	color: inherit !important;
	background: transparent !important;
	border: none !important;
	text-decoration: none !important;
	font: inherit !important;
} */

/* Ensure social links keep circular background and colors */
.bf-footer__social-link,
.bf-footer__social-link a,
.bf-footer__social-link button {
	background: rgba(255,255,255,.08) !important;
	color: #fff !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
}

/* A last-resort high-specificity helper for any remaining overrides */
.bf-hero :is(a,button),
.bf-cta :is(a,button),
.bf-card :is(a,button),
.bf-footer :is(a,button) {
	-webkit-text-decoration-skip-ink: auto !important;
}
html body .swiper-wrapper {
    max-height: 850px;
    
}
.site-header,
.page-header{
    display: none !important;
}
