/**
 * Busy But Glowing - Custom Styles
 * Main stylesheet for BBG Theme
 */

/* ===============================================
   VARIABLES & RESET
   =============================================== */

:root {
	--bbg-primary: #ef4026;
	--bbg-secondary: #2b1d0e;
	--bbg-accent: #c79a7a;
	--bbg-dark: #333333;
	--bbg-light: #ffffff;
	--bbg-bg: #faf9f8;
	--bbg-bg-two: #ede6dd;
	--bbg-transition: all 0.3s ease;
	--bbg-font-serif: "Lobster", cursive;
	--bbg-font-sans: "Open Sans", Arial, sans-serif;
	--bbg-font-system: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
	margin: 0;
}

* {
	box-sizing: border-box;
}

#masthead {
	display: none;
}

.bbg-main-content {
	width: 100%;
	overflow: hidden;
}

/* ===============================================
   HERO SECTION
   =============================================== */

.bbg-hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 77vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.bbg-hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem 2rem;
}

/* Social Icons */
.bbg-social-icons {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	display: flex;
	gap: 1rem;
	z-index: 20;
}

.bbg-social-link img {
	width: 32px;
	height: 32px;
	transition: var(--bbg-transition);
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

.bbg-social-link:hover img {
	transform: scale(1.15);
	opacity: 0.85;
}

/* Hero Menu */
.bbg-hero-menu {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 1);
	backdrop-filter: blur(4px);
	z-index: 50;
	font-family: var(--bbg-font-sans);
	transition: var(--bbg-transition);
}

.bbg-menu-item {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--bbg-transition);
}

.bbg-menu-item:hover {
	color: var(--bbg-primary);
	transform: translateY(-2px);
}

/* Hamburger Toggle */
.bbg-menu-toggle {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: 30px;
	height: 22px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	z-index: 100;
}

.bbg-menu-toggle span {
	display: block;
	height: 3px;
	background: white;
	border-radius: 2px;
	transition: var(--bbg-transition);
}

.bbg-menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.bbg-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.bbg-menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Dropdown */
.bbg-dropdown {
	position: relative;
}

.bbg-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.bbg-arrow {
	font-size: 0.9rem;
	transition: var(--bbg-transition);
}

.bbg-dropdown-menu {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(25, 25, 25, 0.95);
	border-radius: 6px;
	min-width: 160px;
	text-align: center;
	display: none;
	flex-direction: column;
	z-index: 99999;
	padding: 6px 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.bbg-dropdown-item {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding: 8px 16px;
	transition: var(--bbg-transition);
}

.bbg-dropdown-item:hover {
	color: var(--bbg-primary);
	background: rgba(255, 255, 255, 0.08);
}

.bbg-dropdown.open .bbg-dropdown-menu {
	display: flex;
	animation: bbgFadeInUp 0.3s ease forwards;
}

.bbg-dropdown.open .bbg-arrow {
	transform: rotate(180deg);
	color: var(--bbg-primary);
}

.bbg-dropdown-close {
	display: none;
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.3rem;
	cursor: pointer;
	z-index: 10000;
}

.bbg-dropdown-close:hover {
	color: var(--bbg-primary);
}

@keyframes bbgFadeInUp {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(-10px);
	}
}

/* ===============================================
   FAVORITE PICKS SECTION
   =============================================== */

.bbg-favorite-picks-section {
	padding: 40px 18px;
	font-family: var(--bbg-font-system);
	background-color: var(--bbg-bg-two);
}

.bbg-picks-header {
	max-width: 1200px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.bbg-picks-title {
	font-family: var(--bbg-font-serif);
	font-size: 48px;
	margin: 0;
	color: var(--bbg-secondary);
	font-weight: 700;
	white-space: nowrap;
}

.bbg-picks-range-wrap {
	flex: 1;
	position: relative;
	height: 18px;
	display: flex;
	align-items: center;
	min-width: 260px;
}

.bbg-picks-track {
	height: 2px;
	background: rgba(0, 0, 0, 0.18);
	width: 100%;
	border-radius: 2px;
}

.bbg-picks-range {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 36px;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	margin: 0;
	transform: translateY(-50%);
	z-index: 4;
	touch-action: none;
}

.bbg-picks-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--bbg-accent);
	border: 3px solid #6b513f;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.bbg-picks-range::-moz-range-thumb {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--bbg-accent);
	border: 3px solid #6b513f;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.bbg-picks-gallery {
	max-width: 1200px;
	margin: 18px auto 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
	padding-bottom: 6px;
	transition: opacity 0.28s ease;
}

.bbg-pick-card {
	background: #fff;
	border-radius: 6px;
	padding: 18px;
	text-align: center;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 310px;
	transition: var(--bbg-transition);
	cursor: pointer;
}

.bbg-pick-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.bbg-pick-thumb {
	background: #fff;
	width: 100%;
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 4px;
}

.bbg-pick-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: var(--bbg-transition);
}

.bbg-pick-card:hover .bbg-pick-thumb img {
	transform: scale(1.06);
}

.bbg-pick-name {
	font-weight: 700;
	font-size: 18px;
	color: var(--bbg-secondary);
	margin: 0;
	padding: 0;
}

.bbg-pick-desc {
	font-size: 13px;
	color: #6b5f57;
	margin: 0;
	line-height: 1.3;
	min-height: 30px;
}

.bbg-picks-footer {
	max-width: 1200px;
	margin: 18px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

.bbg-picks-indicator {
	color: var(--bbg-secondary);
	font-size: 14px;
}

.bbg-picks-hint {
	font-size: 13px;
	color: var(--bbg-secondary);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */

.bbg-about-section {
	padding: 50px 20px;
	font-family: var(--bbg-font-sans);
	background-color: #fff;
}

.bbg-about-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.bbg-about-image img {
	width: 100%;
	max-width: 400px;
	border-top-right-radius: 120px;
	display: block;
}

.bbg-about-text-card {
	position: relative;
	width: 100%;
	max-width: 600px;
	min-height: 400px;
}

.bbg-paper-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	background: white;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.bbg-paper-back {
	transform: rotate(-1.5deg);
	top: 10px;
	left: 10px;
	opacity: 0.9;
}

.bbg-paper-front {
	position: relative;
	padding: 2rem 2.5rem;
	background: #fff;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.bbg-about-title {
	font-size: 1.5rem;
	font-weight: 700;
	font-family: var(--bbg-font-serif);
	color: var(--bbg-secondary);
	margin-bottom: 1rem;
	margin-top: 0;
}

.bbg-clip-icon {
	position: absolute;
	top: -17px;
	right: 20px;
	width: 60px;
	height: auto;
	transform: rotate(10deg);
	z-index: 3;
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

.bbg-about-content p {
	color: #333;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.bbg-about-content p:last-child {
	margin-bottom: 0;
}

/* ===============================================
   CONTENT CREATOR SECTION
   =============================================== */

.bbg-content-creator-section {
	padding: 0px 20px 50px;
	font-family: var(--bbg-font-sans);
	background-color: #fff;
}

.bbg-creator-title {
	font-family: var(--bbg-font-serif);
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	margin: 8px 0 6px;
	color: var(--bbg-secondary);
	letter-spacing: 0.5px;
}

.bbg-creator-divider {
	width: 100%;
	height: 3px;
	margin: 12px auto 26px;
	background: rgba(0, 0, 0, 0.15);
	opacity: 0.9;
}

.bbg-creator-card {
	display: flex;
	gap: 34px;
	align-items: flex-start;
	background: #fff;
	padding: 28px;
	border-radius: 4px;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bbg-creator-left {
	flex: 1 1 62%;
	min-height: 420px;
}

.bbg-creator-subtitle {
	font-size: 22px;
	margin: 0 0 8px;
	font-weight: 700;
	color: #000;
}

.bbg-creator-tabs {
	list-style: none !important;
	padding: 0;
	margin: 12px 0 20px;
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}

.bbg-creator-tab {
	font-size: 22px;
	cursor: pointer;
	padding: 6px 8px;
	color: #000;
	transition: var(--bbg-transition);
	user-select: none;
}

.bbg-creator-tab:hover {
	transform: translateY(-2px);
}

.bbg-creator-tab.bbg-active {
	color: var(--bbg-primary);
	font-weight: 600;
}

.bbg-creator-description {
	margin-top: 6px;
	color: #000;
	font-size: 15px;
	line-height: 1.4;
	text-align: justify;
	overflow: hidden;
	min-height: 170px;
}

.bbg-creator-right {
	width: 360px;
	flex: 0 0 360px;
}

.bbg-video-frame-wrap {
	position: relative;
	width: 320px;
	height: 520px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.bbg-video-frame {
	position: relative;
	width: 92%;
	height: 92%;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	z-index: 3;
	margin: 4% auto;
}

.bbg-video-frame video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #000;
}

.bbg-play-overlay {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 6;
	padding: 0;
	transition: var(--bbg-transition);
}

.bbg-play-overlay:active {
	transform: translate(-50%, -50%) scale(0.98);
}

.bbg-play-overlay svg {
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bbg-clip-image {
	position: absolute;
	right: -12px;
	top: -20px;
	width: 58px;
	transform: rotate(-18deg);
	z-index: 8;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

/* ===============================================
   RECENT LOOKS SECTION
   =============================================== */

.bbg-recent-looks-section {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px 30px;
	position: relative;
	font-family: var(--bbg-font-sans);
}

.bbg-looks-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

.bbg-looks-title {
	font-family: var(--bbg-font-serif);
	font-size: 48px;
	font-weight: 700;
	color: var(--bbg-secondary);
	margin: 0;
	white-space: nowrap;
}

.bbg-looks-divider {
	flex-grow: 1;
	height: 3px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0.9;
}

.bbg-looks-gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	width: 100%;
	margin-top: 20px;
}

.bbg-looks-gallery a {
	flex: 1 1 calc(25% - 25px);
	display: block;
	overflow: hidden;
	border-radius: 6px;
	transition: var(--bbg-transition);
}

.bbg-looks-gallery img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	transition: var(--bbg-transition);
}

.bbg-looks-gallery a:hover img {
	transform: scale(1.05);
}

.bbg-looks-gallery a:hover {
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.bbg-looks-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
	gap: 20px;
}

.bbg-nav-arrow {
	background: #fff;
	border: none;
	color: #000;
	font-size: 32px;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	transition: var(--bbg-transition);
}

.bbg-nav-arrow:hover {
	background: var(--bbg-primary);
	color: #fff;
}

.bbg-looks-footer {
	text-align: right;
	margin-top: 25px;
}

.bbg-shop-link {
	font-size: 20px;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	transition: var(--bbg-transition);
	position: relative;
}

.bbg-shop-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--bbg-primary);
	transition: width 0.3s ease;
}

.bbg-shop-link:hover {
	color: var(--bbg-primary);
}

.bbg-shop-link:hover::after {
	width: 100%;
}

/* ===============================================
   WEARING AND SHARING SECTION
   =============================================== */

.bbg-wearing-sharing-section {
	background: var(--bbg-bg-two);
	font-family: var(--bbg-font-sans);
	padding: 50px 18px 40px;
}

.bbg-ws-header {
	max-width: 1200px;
	margin: 0 auto 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.bbg-ws-title {
	font-family: var(--bbg-font-serif);
	font-size: 48px;
	font-weight: 700;
	color: var(--bbg-secondary);
	margin: 0;
	white-space: nowrap;
}

.bbg-ws-line {
	flex: 1;
	height: 3px;
	background: rgba(0, 0, 0, 0.2);
	max-width: 220px;
}

.bbg-ws-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto 36px;
}

.bbg-ws-card {
	overflow: hidden;
	cursor: pointer;
	transition: var(--bbg-transition);
	border-radius: 8px;
}

.bbg-ws-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--bbg-transition);
	display: block;
}

.bbg-ws-card:hover {
	transform: scale(1.02);
}

.bbg-ws-card:hover img {
	transform: scale(1.08);
}

.bbg-ws-link {
	display: block;
	text-align: center;
	font-size: 20px;
	color: var(--bbg-secondary);
	font-weight: 400;
	text-decoration: none;
	position: relative;
	transition: var(--bbg-transition);
}

.bbg-ws-link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--bbg-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.bbg-ws-link:hover {
	color: var(--bbg-primary);
}

.bbg-ws-link:hover::after {
	width: 100%;
}

/* ===============================================
   PARTNERSHIPS SECTION
   =============================================== */

.bbg-partnerships-section {
	padding: 50px 20px;
}

.bbg-partnerships-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}

.bbg-partnerships-title {
	font-family: var(--bbg-font-serif);
	font-size: 48px;
	font-weight: 700;
	color: var(--bbg-secondary);
	margin: 0;
	white-space: nowrap;
}

.bbg-partnerships-line {
	flex-grow: 1;
	height: 3px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0.9;
}

.bbg-partnerships-gallery {
	display: grid;
	grid-template-areas: "a b c" "d e e";
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
	max-width: 750px;
	margin: 0 auto;
}

.bbg-partnership-item {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.bbg-partnership-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--bbg-transition);
}

.bbg-partnership-item:hover img {
	transform: scale(1.1);
}

.bbg-partnership-item:nth-child(1) {
	grid-area: a;
	height: 350px;
}

.bbg-partnership-item:nth-child(2) {
	grid-area: b;
	height: 300px;
}

.bbg-partnership-item:nth-child(3) {
	grid-area: c;
	height: 300px;
}

.bbg-partnership-item:nth-child(4) {
	grid-area: d;
	height: 200px;
}

.bbg-partnership-item:nth-child(5) {
	grid-area: e;
	height: 250px;
	margin-top: -50px;
}

/* ===============================================
   BRAND LOGOS SECTION
   =============================================== */

.bbg-brand-logos-section {
	padding: 40px 20px;
}

.bbg-logos-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.bbg-logo-item {
	max-height: 90px;
	background-color: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--bbg-transition);
}

.bbg-logo-item img {
	object-fit: contain;
	max-height: 60px;
	max-width: 150px;
}

.bbg-logo-item:hover {
	transform: scale(1.05);
}

/* ===============================================
   SOCIAL & CTA SECTION
   =============================================== */

.bbg-social-cta-section {
	padding: 0px 20px 20px;
	background-color: #fff;
	text-align: center;
	font-family: var(--bbg-font-serif);
}

.bbg-social-text {
	color: var(--bbg-secondary);
	font-size: 30px;
	margin: 15px 0 20px;
	font-weight: 700;
}

.bbg-social-footer-icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 180px;
	gap: 5px;
	margin: 0 auto;
}

.bbg-footer-social {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bbg-footer-social img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: var(--bbg-transition);
}

.bbg-footer-social:hover img {
	transform: scale(1.15);
}

/* ===============================================
   FOOTER SECTION
   =============================================== */

.bbg-footer-section {
	background-color: var(--bbg-bg-two);
	font-family: var(--bbg-font-sans);
	padding: 50px 20px 20px;
	position: relative;
}

.bbg-footer-logo-section {
	text-align: center;
	margin-bottom: 30px;
}

.bbg-footer-logo {
	display: inline-block;
	max-width: 310px;
	text-decoration: none;
}

.bbg-footer-logo img {
	width: 100%;
	height: auto;
	display: block;
}

.bbg-newsletter-section {
	text-align: center;
	margin-bottom: 30px;
}

.bbg-newsletter-title {
	font-size: 32px;
	color: var(--bbg-secondary);
	margin: 0 0 20px;
	font-weight: 900;
}

.bbg-newsletter-btn {
	display: inline-block;
	padding: 12px 60px;
	background-color: #ffffff;
	color: var(--bbg-secondary);
	text-decoration: none;
	font-size: 30px;
	font-weight: 500;
	border-radius: 4px;
	transition: var(--bbg-transition);
	cursor: pointer;
}

.bbg-newsletter-btn:hover {
	background-color: var(--bbg-primary);
	color: #fff;
	border-color: var(--bbg-primary);
}

.bbg-footer-divider {
	width: 80%;
	max-width: 1000px;
	height: 2px;
	background: rgba(0, 0, 0, 0.15);
	margin: 50px auto 20px;
}

.bbg-menu-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	position: relative;
	flex-wrap: wrap;
}

.bbg-footer-item {
	color: #000;
	font-size: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.bbg-menu-footer a:hover {
	color: var(--bbg-primary) !important;
}

.bbg-footer-dropdown {
	position: relative;
}

.bbg-footer-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.bbg-arrow {
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.bbg-footer-dropdown-menu {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(255, 255, 255, 0.98);
	border-radius: 6px;
	min-width: 160px;
	text-align: center;
	display: none;
	flex-direction: column;
	padding: 6px 0;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}

.bbg-footer-dropdown-item {
	color: #000;
	text-decoration: none;
	padding: 8px 16px;
	transition: background 0.3s ease, color 0.3s ease;
	font-size: 16px;
}

.bbg-footer-dropdown-item:hover {
	color: var(--bbg-primary);
	background: rgba(0, 0, 0, 0.05);
}

.bbg-footer-dropdown.open .bbg-footer-dropdown-menu {
	display: flex;
	animation: fadeInUp 0.3s ease forwards;
}

.bbg-footer-dropdown.open .bbg-arrow {
	transform: rotate(180deg);
	color: var(--bbg-primary);
}

.bbg-footer-dropdown-close {
	display: none;
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	color: #000;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	transition: color 0.3s ease;
}

.bbg-footer-dropdown-close:hover {
	color: var(--bbg-primary);
}

@media (max-width: 768px) {
	.bbg-menu-footer {
		gap: 30px;
	}

	.bbg-footer-dropdown-menu {
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.95);
		width: 50%;
		border-radius: 8px;
		padding: 2rem 1rem 1rem;
	}

	.bbg-footer-dropdown-close {
		display: block;
	}

	.bbg-footer-item {
		font-size: 16px;
	}

	.bbg-footer-logo {
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.bbg-newsletter-btn {
		padding: 12px 30px;
		font-size: 25px;
	}

	.bbg-footer-item {
		font-size: 14px;
	}

	.bbg-newsletter-title {
		font-size: 25px;
	}

	.bbg-footer-divider {
		margin: 20px auto;
	}
}

/* ===============================================
   SCROLL TO TOP BUTTON
   =============================================== */

.bbg-scroll-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bbg-primary), #f76c57);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--bbg-transition);
	z-index: 9999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bbg-scroll-top-btn:hover {
	background: linear-gradient(135deg, var(--bbg-primary), #ff6a4c);
	transform: scale(1.1);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.bbg-scroll-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1100px) {
	.bbg-picks-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 980px) {
	.bbg-creator-card {
		flex-direction: column-reverse;
		gap: 18px;
	}

	.bbg-creator-right {
		width: 100%;
	}

	.bbg-creator-left {
		width: 100%;
		min-height: auto;
	}

	.bbg-video-frame-wrap {
		width: 86%;
		height: 420px;
		margin: 0 auto;
	}

	.bbg-looks-gallery a {
		flex: 1 1 calc(45% - 20px);
	}
}

@media (max-width: 768px) {
	.bbg-hero-menu {
		flex-direction: column;
		gap: 1rem;
		background: rgba(0, 0, 0, 0.85);
		transform: translateY(100%);
		opacity: 0;
		pointer-events: none;
		padding: 1.5rem 0;
	}

	.bbg-hero-menu.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.bbg-menu-toggle {
		display: flex;
	}

	.bbg-menu-item {
		font-size: 1.2rem;
	}

	.bbg-dropdown-menu {
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 50%;
		border-radius: 8px;
		padding: 2rem 1rem 1rem;
	}

	.bbg-dropdown-close {
		display: block;
	}

	.bbg-social-icons {
		top: 1rem;
		right: 1rem;
		gap: 0.7rem;
	}

	.bbg-social-icons a img {
		width: 26px;
		height: 26px;
	}

	.bbg-picks-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.bbg-about-container {
		flex-direction: column;
		gap: 2rem;
	}

	.bbg-about-image img {
		max-width: 90%;
		border-top-right-radius: 80px;
		margin: 0 auto;
	}

	.bbg-looks-gallery a {
		flex: 1 1 100%;
	}

	.bbg-looks-gallery img {
		height: 400px;
	}

	.bbg-looks-footer {
		text-align: center;
	}

	.bbg-ws-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.bbg-partnerships-gallery {
		grid-template-areas: "a b" "c d" "e e";
		grid-template-columns: 1fr 1fr;
	}

	.bbg-partnership-item:nth-child(1),
	.bbg-partnership-item:nth-child(2),
	.bbg-partnership-item:nth-child(3),
	.bbg-partnership-item:nth-child(4),
	.bbg-partnership-item:nth-child(5) {
		height: 325px;
	}

	.bbg-partnership-item:nth-child(5) {
		margin-top: 0;
	}

	.bbg-scroll-top-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
		bottom: 20px;
		right: 20px;
	}
}

@media (max-width: 700px) {
	.bbg-picks-title {
		font-size: 36px;
	}

	.bbg-picks-range-wrap {
		min-width: 100%;
		order: 2;
		margin-top: 10px;
	}

	.bbg-picks-header {
		align-items: flex-start;
	}

	.bbg-creator-title {
		font-size: 36px;
	}

	.bbg-looks-title {
		font-size: 36px;
	}

	.bbg-ws-title {
		font-size: 36px;
	}

	.bbg-partnerships-title {
		font-size: 36px;
	}
}

@media (max-width: 600px) {
	.bbg-ws-gallery {
		grid-template-columns: 1fr;
	}

	.bbg-partnerships-gallery {
		grid-template-areas: "a" "b" "c" "d" "e";
		grid-template-columns: 1fr;
	}

	.bbg-logo-item {
		width: 45%;
		padding: 1rem;
	}

	.bbg-logo-item img {
		max-height: 45px;
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.bbg-social-icons a img {
		width: 24px;
		height: 24px;
	}

	.bbg-picks-gallery {
		grid-template-columns: repeat(1, 1fr);
		width: 90%;
		margin: 0 auto;
	}

	.bbg-logo-item {
		width: 42%;
		padding: 1rem;
	}
}