/**
 * Main Theme Stylesheet - Silk Threads Theme
 *
 * @package Silk_Threads
 */

/* ==========================================================================
   1. Typography & Global Resets
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;700&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--st-bg-surface);
	color: var(--st-color-text-main);
	font-family: var(--st-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
	color: var(--st-color-primary);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--st-font-display);
	color: var(--st-color-text-main);
	margin-top: 0;
	font-weight: 500;
	letter-spacing: 0.02em;
}

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

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	border: none;
	padding: 0;
	outline: none;
}

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

.text-center { text-align: center; }
.text-muted { color: var(--st-color-text-muted); }
.hidden { display: none !important; }

/* ==========================================================================
   2. Layout Containers
   ========================================================================== */
.st-container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

.st-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.st-container-default {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.st-container-narrow {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   3. Header & Utility Styling
   ========================================================================== */
.st-header {
	position: relative;
	width: 100%;
	z-index: 100;
	transition: background-color 0.4s ease, border-color 0.4s ease;
}

.st-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.st-header--solid {
	background-color: var(--st-color-white);
	border-bottom: 1px solid var(--st-color-border-light);
}

/* Sticky Class */
.st-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--st-color-white);
	border-bottom: 1px solid var(--st-color-border-light);
	box-shadow: 0 4px 20px rgba(26, 18, 8, 0.05);
	animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

/* Announcement Bar */
.st-announcement-bar {
	position: relative;
	width: 100%;
	padding: 8px 30px;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 500;
	overflow: hidden;
}

.st-announcement-slider {
	position: relative;
	height: 18px;
}

.st-announcement-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
	transition: opacity 0.5s ease;
	display: none;
}

.st-announcement-slide.active {
	opacity: 1;
	display: block;
}

.st-announcement-close {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.st-announcement-close:hover {
	opacity: 1;
}

/* Utility Bar */
.st-utility-bar {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.st-header--transparent .st-utility-bar {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.85);
}

.st-header--solid .st-utility-bar {
	color: var(--st-color-text-muted);
}

.st-utility-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.st-utility-links a {
	margin-right: 24px;
}

.st-utility-links a:hover {
	color: var(--st-color-gold);
}

.st-utility-links a.st-utility-highlight {
	color: var(--st-color-gold);
	font-weight: 700;
}

/* Main Header Row */
.st-main-header {
	padding: 20px 0;
}

.st-main-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Currency Select */
.st-currency-selector select {
	cursor: pointer;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 4px 8px;
	border: 1px solid rgba(0,0,0,0.1);
}

.st-header--transparent .st-currency-selector select {
	border-color: rgba(255,255,255,0.2);
	color: var(--st-color-white);
}

.st-header--transparent .st-currency-selector select option {
	color: var(--st-color-text-main);
}

/* Logo */
.st-logo-text {
	font-family: var(--st-font-display);
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.st-header--transparent .st-logo-text {
	color: var(--st-color-white);
}

.st-header--solid .st-logo-text {
	color: var(--st-color-primary);
}

/* Header Icons Nav */
.st-header-right {
	display: flex;
	align-items: center;
}

.st-header-icon-wrapper {
	position: relative;
	margin-left: 20px;
}

.st-header-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	position: relative;
}

.st-header-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: fill 0.3s;
}

.st-header--transparent .st-header-btn {
	color: var(--st-color-white);
}

.st-header--solid .st-header-btn {
	color: var(--st-color-text-main);
}

.st-header-btn:hover {
	color: var(--st-color-primary) !important;
}

/* Icon Badges */
.st-icon-badge {
	position: absolute;
	top: -6px;
	right: -8px;
	background-color: var(--st-color-primary);
	color: var(--st-color-white);
	font-size: 9px;
	font-weight: 700;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.st-icon-badge.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Mobile Hamburguer Hamburger Menu */
.st-hamburger-btn {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 16px;
}

.st-hamburger-btn .hamburger-bar {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: currentColor;
	transition: transform 0.3s, opacity 0.3s;
}

.st-header--transparent .st-hamburger-btn {
	color: var(--st-color-white);
}

.st-header--solid .st-hamburger-btn {
	color: var(--st-color-text-main);
}

/* ==========================================================================
   4. Desktop Menu & Walker Settings
   ========================================================================== */
.st-navigation-wrapper {
	border-top: 1px solid rgba(0,0,0,0.05);
}

.st-header--transparent .st-navigation-wrapper {
	border-top: 1px solid rgba(255,255,255,0.1);
}

.st-desktop-nav {
	display: flex;
	justify-content: center;
}

.st-mega-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.st-mega-menu-item {
	position: relative;
	padding: 18px 24px;
}

.st-menu-link {
	font-family: var(--st-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 4px;
}

.st-header--transparent .st-menu-link {
	color: var(--st-color-white);
}

.st-header--solid .st-menu-link {
	color: var(--st-color-text-main);
}

.st-menu-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: var(--st-color-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-mega-menu-item:hover .st-menu-link {
	color: var(--st-color-primary);
}

.st-mega-menu-item:hover .st-menu-link::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Mega Menu Dropdown Box */
.st-mega-dropdown-panel {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(15px);
	width: 1100px;
	background-color: var(--st-color-white);
	border: 1px solid var(--st-color-border-light);
	box-shadow: 0 10px 40px rgba(26, 18, 8, 0.08);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 110;
	padding: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr) 280px;
	gap: 30px;
}

.st-mega-menu-item:hover .st-mega-dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.st-mega-col-title {
	font-family: var(--st-font-display);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--st-color-primary);
	margin-bottom: 20px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(139, 44, 44, 0.1);
	padding-bottom: 8px;
}

.st-mega-dropdown-panel ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-mega-dropdown-panel ul li {
	margin-bottom: 10px;
}

.st-mega-dropdown-panel ul li a {
	font-family: var(--st-font-body);
	font-size: 13px;
	color: var(--st-color-text-muted);
	transition: color 0.3s;
}

.st-mega-dropdown-panel ul li a:hover {
	color: var(--st-color-primary);
	padding-left: 4px;
}

.st-mega-promo-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.st-mega-promo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.st-mega-promo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(26,18,8,0.8) 0%, rgba(26,18,8,0) 70%);
	z-index: 1;
}

.st-mega-promo-content {
	position: relative;
	z-index: 2;
	padding: 20px;
	color: var(--st-color-white);
}

.st-mega-promo-title {
	font-family: var(--st-font-display);
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--st-color-white);
}

.st-mega-promo-link {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--st-color-gold);
}

/* ==========================================================================
   5. AJAX Live Search Panel
   ========================================================================== */
.st-search-dropdown-panel {
	position: absolute;
	top: 100%;
	right: 0;
	width: 380px;
	background-color: var(--st-color-white);
	border: 1px solid var(--st-color-border-light);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
	z-index: 105;
}

.st-search-trigger-wrapper.is-open .st-search-dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.st-search-form {
	display: flex;
	position: relative;
	border-bottom: 2px solid var(--st-color-primary);
	padding-bottom: 5px;
}

.st-search-input {
	flex-grow: 1;
	font-size: 14px;
	color: var(--st-color-text-main);
}

.st-search-submit-btn {
	cursor: pointer;
	color: var(--st-color-primary);
}

.st-search-submit-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.st-ajax-search-results-wrapper {
	margin-top: 15px;
	max-height: 300px;
	overflow-y: auto;
}

.st-search-result-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--st-color-border-light);
}

.st-search-result-item img {
	width: 45px;
	height: 60px;
	object-fit: cover;
	margin-right: 12px;
}

.st-search-result-name {
	font-family: var(--st-font-body);
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}

.st-search-result-price {
	font-size: 12px;
	color: var(--st-color-primary);
	margin-top: 4px;
}

/* ==========================================================================
   6. Mobile Menu Overlay Drawer
   ========================================================================== */
.st-mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(26, 18, 8, 0.6);
	backdrop-filter: blur(4px);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s;
}

.st-mobile-menu-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.st-mobile-menu-inner {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 400px;
	height: 100%;
	background-color: var(--st-bg-surface);
	box-shadow: -10px 0 40px rgba(0,0,0,0.15);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
}

.st-mobile-menu-overlay.is-open .st-mobile-menu-inner {
	transform: translateX(0);
}

.st-mobile-menu-header {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--st-color-border-light);
}

.st-mobile-close-btn {
	cursor: pointer;
}

.st-mobile-close-btn svg {
	width: 18px;
	height: 18px;
	fill: var(--st-color-text-main);
}

.st-mobile-menu-content {
	flex-grow: 1;
	overflow-y: auto;
	padding: 20px 0;
}

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

.st-mobile-nav-list li {
	border-bottom: 1px solid rgba(0,0,0,0.03);
}

.st-mobile-nav-list li a,
.st-mobile-accordion-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px 24px;
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-align: left;
}

.st-mobile-accordion-toggle .accordion-icon {
	font-size: 16px;
	font-weight: 300;
	transition: transform 0.3s;
}

.st-mobile-parent.is-active .st-mobile-accordion-toggle .accordion-icon {
	transform: rotate(45deg);
}

.st-mobile-child-list {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: rgba(0,0,0,0.02);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-mobile-parent.is-active .st-mobile-child-list {
	max-height: 500px;
}

.st-mobile-child-list li a {
	padding: 12px 40px;
	font-size: 13px;
	text-transform: none;
	color: var(--st-color-text-muted);
}

.st-mobile-menu-footer {
	padding: 20px 24px;
	border-top: 1px solid var(--st-color-border-light);
	background-color: var(--st-color-white);
}

.st-mobile-contact-link {
	display: block;
	font-size: 12px;
	margin-bottom: 10px;
	color: var(--st-color-text-muted);
}

/* ==========================================================================
   7. Homepage Section Styles
   ========================================================================== */
.st-section-header {
	margin-bottom: 50px;
}

.st-section-header.flex-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.st-section-eyebrow {
	display: block;
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	margin-bottom: 10px;
}

.st-section-title {
	font-size: 42px;
	line-height: 1.15;
}

.st-section-footer {
	margin-top: 50px;
}

.st-link-more {
	font-family: var(--st-font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-primary);
	border-bottom: 2px solid var(--st-color-primary);
	padding-bottom: 4px;
}

/* Hero Slider Styles */
.st-hero-section {
	position: relative;
	width: 100%;
	background-color: #1a1208;
	overflow: hidden;
}

.st-slider-container {
	position: relative;
	height: 80vh;
	max-height: 800px;
	min-height: 500px;
}

.st-slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.st-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.8s ease-in-out;
}

.st-slide.is-active {
	opacity: 1;
	z-index: 2;
}

.st-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.st-slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.st-slide-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(26,18,8,0.4) 0%, rgba(26,18,8,0.2) 50%, rgba(26,18,8,0.6) 100%);
}

.st-slide-content {
	position: relative;
	height: 100%;
	z-index: 3;
	display: flex;
	align-items: center;
	color: var(--st-color-white);
}

.st-slide-content.align-center { text-align: center; }
.st-slide-content.align-left { text-align: left; }
.st-slide-content.align-right { text-align: right; }

.st-slide-badge {
	display: inline-block;
	font-family: var(--st-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	border: 1px solid var(--st-color-gold);
	padding: 6px 14px;
	margin-bottom: 20px;
	background-color: rgba(26, 18, 8, 0.4);
}

.st-slide-headline {
	font-size: 74px;
	line-height: 1.05;
	color: var(--st-color-white);
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.st-slide-subheadline {
	font-family: var(--st-font-body);
	font-size: 18px;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto 35px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.st-slide-content.align-left .st-slide-subheadline { margin-left: 0; }
.st-slide-content.align-right .st-slide-subheadline { margin-right: 0; }

/* Arrows & Dots */
.st-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 5;
	color: var(--st-color-white);
	opacity: 0.6;
	transition: opacity 0.3s;
	padding: 10px;
}

.st-slider-arrow:hover { opacity: 1; }
.st-slider-arrow.prev { left: 30px; }
.st-slider-arrow.next { right: 30px; }
.st-slider-arrow svg { width: 30px; height: 30px; fill: currentColor; }

.st-slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 5;
}

.st-slider-dot {
	cursor: pointer;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.4);
	margin: 0 6px;
	transition: background-color 0.3s, transform 0.3s;
}

.st-slider-dot.is-active {
	background-color: var(--st-color-gold);
	transform: scale(1.3);
}

/* Designer Logo Strip */
.st-designer-strip {
	background-color: var(--st-color-white);
	border-bottom: 1px solid var(--st-color-border-light);
	padding: 24px 0;
	overflow: hidden;
}

.st-designer-strip-track {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.st-designer-logo {
	font-family: var(--st-font-display);
	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-text-muted);
	font-weight: 500;
	opacity: 0.85;
}

/* Shop by Category Grid section */
.st-category-grid-section {
	padding: 100px 0;
	background-color: var(--st-bg-surface);
}

.st-category-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.st-category-card {
	display: block;
	position: relative;
}

.st-category-card-img-wrapper {
	position: relative;
	aspect-ratio: 2/3;
	overflow: hidden;
	background-color: #e5e0d8;
}

.st-category-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-category-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(139, 44, 44, 0.1);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
	z-index: 2;
}

.st-category-card-cta {
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-white);
	background-color: var(--st-color-primary);
	padding: 10px 20px;
	transform: translateY(15px);
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st-category-card:hover .st-category-img {
	transform: scale(1.08);
}

.st-category-card:hover .st-category-card-overlay {
	opacity: 1;
}

.st-category-card:hover .st-category-card-cta {
	transform: translateY(0);
}

.st-category-card-info {
	margin-top: 15px;
	text-align: center;
}

.st-category-card-name {
	font-family: var(--st-font-display);
	font-size: 18px;
	margin: 0;
	color: var(--st-color-text-main);
	font-weight: 500;
}

/* Designers on Discount Section */
.st-designers-discount-section {
	padding: 100px 0;
	background-color: var(--st-color-white);
	border-bottom: 1px solid var(--st-color-border-light);
}

.st-slider-nav-arrows {
	display: flex;
}

.st-nav-arrow-btn {
	cursor: pointer;
	border: 1px solid var(--st-color-border-light);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--st-color-text-main);
	margin-left: 8px;
	transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.st-nav-arrow-btn:hover {
	border-color: var(--st-color-primary);
	color: var(--st-color-white);
	background-color: var(--st-color-primary);
}

.st-nav-arrow-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Horizontal Scroll Container */
.st-horizontal-scroll-container {
	position: relative;
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE */
}

.st-horizontal-scroll-container::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

.st-horizontal-scroll-track {
	display: flex;
	scroll-behavior: smooth;
}

.st-discount-card {
	flex: 0 0 280px;
	margin-right: 25px;
}

.st-discount-card-img-wrapper {
	position: relative;
	aspect-ratio: 2/3;
	overflow: hidden;
	background-color: #e5e0d8;
}

.st-discount-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.st-discount-card:hover .st-discount-img {
	transform: scale(1.04);
}

.st-discount-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: var(--st-color-primary);
	color: var(--st-color-white);
	font-family: var(--st-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 5px 12px;
	text-transform: uppercase;
}

.st-discount-card-info {
	margin-top: 15px;
}

.st-discount-designer-name {
	font-family: var(--st-font-display);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
}

.st-discount-card-link {
	font-family: var(--st-font-body);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--st-color-gold);
}

/* Designer Spotlight section */
.st-designer-spotlight-section {
	padding: 100px 0;
	background-color: var(--st-bg-surface);
}

.st-spotlight-layout {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 60px;
}

.st-spotlight-profile {
	display: flex;
	flex-direction: column;
}

.st-spotlight-portrait-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	background-color: #e5e0d8;
	margin-bottom: 30px;
}

.st-spotlight-portrait {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-spotlight-bio {
	font-family: var(--st-font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--st-color-text-muted);
	margin-bottom: 30px;
}

.st-spotlight-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	border-top: 1px solid var(--st-color-border-light);
	border-bottom: 1px solid var(--st-color-border-light);
	padding: 25px 0;
	margin-bottom: 35px;
}

.st-stat-item {
	text-align: center;
}

.st-stat-number {
	display: block;
	font-family: var(--st-font-display);
	font-size: 28px;
	font-weight: 600;
	color: var(--st-color-primary);
}

.st-stat-label {
	display: block;
	font-family: var(--st-font-body);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--st-color-text-muted);
	margin-top: 5px;
}

.st-spotlight-products-panel {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.st-spotlight-products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.st-spotlight-products-title {
	font-size: 24px;
	font-family: var(--st-font-display);
	margin: 0;
}

.spotlight-products-slider .st-product-card {
	flex: 0 0 280px;
	margin-right: 25px;
}

/* Bestsellers Section */
.st-bestsellers-section {
	padding: 100px 0;
	background-color: var(--st-color-white);
}

/* Celebrity Closet Section */
.st-celebrity-closet-section {
	padding: 100px 0;
	background-color: var(--st-bg-surface);
}

.st-celebrity-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.st-celebrity-card {
	background-color: var(--st-color-white);
	border: 1px solid var(--st-color-border-light);
	transition: box-shadow 0.3s;
}

.st-celebrity-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.st-celebrity-img-wrapper {
	position: relative;
	aspect-ratio: 2/3;
	overflow: hidden;
	background-color: #e5e0d8;
}

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

.st-celebrity-card-details {
	padding: 20px;
	text-align: center;
}

.st-celebrity-card-label {
	display: block;
	font-family: var(--st-font-body);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	margin-bottom: 6px;
}

.st-celebrity-card-name {
	font-family: var(--st-font-display);
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 8px;
}

.st-celebrity-product-link {
	font-family: var(--st-font-body);
	font-size: 12px;
	text-decoration: underline;
	color: var(--st-color-primary);
	font-weight: 500;
}

/* Bestselling Designers Grid */
.st-bestselling-designers-section {
	padding: 100px 0;
	background-color: var(--st-color-white);
}

.st-best-designer-card {
	background-color: var(--st-bg-surface);
	border: 1px solid var(--st-color-border-light);
	text-align: center;
}

.st-best-designer-img-wrapper {
	aspect-ratio: 3/4;
	overflow: hidden;
	background-color: #e5e0d8;
}

.st-best-designer-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.st-best-designer-card:hover .st-best-designer-img {
	transform: scale(1.03);
}

.st-best-designer-info {
	padding: 24px;
}

.st-best-designer-name {
	font-family: var(--st-font-display);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 5px;
}

.st-best-designer-count {
	display: block;
	font-family: var(--st-font-body);
	font-size: 12px;
	color: var(--st-color-text-muted);
	margin-bottom: 15px;
}

.st-best-designer-shop-link {
	font-family: var(--st-font-body);
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--st-color-primary);
}

/* Promo Banner Section */
.st-promo-banner-section {
	position: relative;
	width: 100%;
	background-color: #1a1208;
	overflow: hidden;
}

.st-promo-banner-wrapper {
	position: relative;
	height: 480px;
	display: flex;
	align-items: center;
}

.st-promo-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.st-promo-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-promo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 18, 8, 0.45);
}

.st-promo-content-wrapper {
	position: relative;
	z-index: 2;
	color: var(--st-color-white);
	width: 100%;
}

.st-promo-content-wrapper.align-center { text-align: center; }
.st-promo-content-wrapper.align-left { text-align: left; }
.st-promo-content-wrapper.align-right { text-align: right; }

.st-promo-eyebrow {
	display: block;
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	margin-bottom: 12px;
}

.st-promo-title {
	font-size: 48px;
	line-height: 1.15;
	color: var(--st-color-white);
	margin-bottom: 15px;
}

.st-promo-desc {
	font-family: var(--st-font-body);
	font-size: 16px;
	max-width: 580px;
	margin: 0 auto 30px;
	font-weight: 300;
	color: rgba(255,255,255,0.9);
}

.st-promo-content-wrapper.align-left .st-promo-desc { margin-left: 0; }
.st-promo-content-wrapper.align-right .st-promo-desc { margin-right: 0; }

/* Editorial Blog section */
.st-editorial-blog-section {
	padding: 100px 0;
	background-color: var(--st-bg-surface);
}

.st-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.st-blog-post-card {
	background-color: var(--st-color-white);
	border: 1px solid var(--st-color-border-light);
	display: flex;
	flex-direction: column;
}

.st-blog-card-img {
	aspect-ratio: 3/4;
	overflow: hidden;
	background-color: #e5e0d8;
}

.st-blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.st-blog-post-card:hover .st-blog-img {
	transform: scale(1.04);
}

.st-blog-card-details {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.st-blog-card-tag {
	font-family: var(--st-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	margin-bottom: 8px;
}

.st-blog-card-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 12px;
}

.st-blog-card-excerpt {
	font-family: var(--st-font-body);
	font-size: 14px;
	color: var(--st-color-text-muted);
	margin-bottom: 20px;
	flex-grow: 1;
	line-height: 1.6;
}

.st-blog-card-more {
	font-family: var(--st-font-body);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--st-color-primary);
}

/* Meet Ruby / Brand Story */
.st-brand-story-section {
	padding: 100px 0;
	background-color: var(--st-color-white);
}

.st-brand-story-layout {
	display: grid;
	grid-template-columns: 460px 1fr;
	gap: 60px;
	align-items: center;
}

.st-story-portrait-frame {
	aspect-ratio: 3/4;
	overflow: hidden;
	background-color: #e5e0d8;
	box-shadow: 15px 15px 0 var(--st-bg-surface);
}

.st-story-portrait {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-brand-story-content-panel {
	display: flex;
	flex-direction: column;
}

.st-story-text {
	font-size: 18px;
	line-height: 1.8;
	color: var(--st-color-text-muted);
	margin-bottom: 30px;
	font-weight: 300;
}

.st-story-signature {
	margin-bottom: 35px;
	display: flex;
	flex-direction: column;
}

.signature-name {
	font-family: var(--st-font-display);
	font-size: 28px;
	color: var(--st-color-primary);
}

.signature-title {
	font-family: var(--st-font-body);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--st-color-gold);
}

.social-label {
	display: block;
	font-size: 12px;
	font-family: var(--st-font-body);
	font-weight: 600;
	color: var(--st-color-text-main);
	margin-bottom: 12px;
}

.st-story-social-links a {
	display: inline-block;
	margin-right: 20px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: underline;
}

/* Store / Showroom section */
.st-showroom-section {
	padding: 100px 0;
	background-color: var(--st-bg-surface);
}

.st-showroom-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.st-showroom-desc {
	font-size: 16px;
	color: var(--st-color-text-muted);
	margin-bottom: 30px;
}

.st-showroom-meta-details {
	margin-bottom: 35px;
}

.st-showroom-meta-item {
	display: flex;
	margin-bottom: 12px;
	font-size: 14px;
}

.st-showroom-meta-item strong {
	width: 100px;
	color: var(--st-color-text-main);
}

.st-showroom-ctas .st-btn {
	margin-right: 15px;
}

.st-showroom-media {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.st-showroom-image-frame {
	height: 300px;
	overflow: hidden;
	background-color: #e5e0d8;
}

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

.st-showroom-map-frame {
	height: 350px;
	border: 1px solid var(--st-color-border-light);
	background-color: var(--st-color-white);
}

/* ==========================================================================
   8. Global UI Components & Buttons
   ========================================================================== */
.st-btn {
	display: inline-block;
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 15px 35px;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}

.st-btn-primary {
	background-color: var(--st-color-primary);
	color: var(--st-color-white);
	border: 1px solid var(--st-color-primary);
}

.st-btn-primary:hover {
	background-color: transparent;
	color: var(--st-color-primary);
}

.st-btn-secondary {
	background-color: transparent;
	color: var(--st-color-text-main);
	border: 1px solid var(--st-color-text-main);
}

.st-btn-secondary:hover {
	background-color: var(--st-color-text-main);
	color: var(--st-color-white);
}

.st-btn-sm {
	padding: 10px 20px;
	font-size: 11px;
}

/* Global Grids */
.st-products-grid {
	display: grid;
	gap: 24px;
}

.st-products-grid.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.st-products-grid.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.st-designers-grid.cols-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ==========================================================================
   9. Footer Styles
   ========================================================================== */
.st-footer {
	background-color: #160e06;
	color: #dbd2c5;
	padding: 80px 0 0;
	font-family: var(--st-font-body);
}

.st-footer-top {
	border-bottom: 1px solid rgba(255,255,255,0.06);
	padding-bottom: 60px;
}

.st-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 2fr;
	gap: 40px;
}

.st-footer-logo-text {
	font-family: var(--st-font-display);
	color: var(--st-color-white);
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.st-footer-brand-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #a89c8d;
	margin-bottom: 25px;
}

.st-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	margin-right: 10px;
	font-size: 11px;
	color: var(--st-color-white);
	transition: border-color 0.3s, color 0.3s;
}

.st-footer-socials a:hover {
	border-color: var(--st-color-gold);
	color: var(--st-color-gold);
}

.st-footer-title {
	font-family: var(--st-font-display);
	color: var(--st-color-white);
	font-size: 18px;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.st-footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-footer-links-list li {
	margin-bottom: 12px;
}

.st-footer-links-list li a {
	font-size: 13px;
	color: #a89c8d;
}

.st-footer-links-list li a:hover {
	color: var(--st-color-gold);
}

.st-footer-address {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.st-footer-contact-details,
.st-footer-hours {
	font-size: 13px;
	color: #a89c8d;
	margin-bottom: 12px;
}

.st-footer-contact-details strong,
.st-footer-hours strong {
	color: var(--st-color-white);
}

.st-footer-contact-details a {
	color: inherit;
}

.st-footer-contact-details a:hover {
	color: var(--st-color-gold);
}

.st-footer-news-desc {
	font-size: 13px;
	color: #a89c8d;
	line-height: 1.6;
	margin-bottom: 20px;
}

.st-footer-newsletter-form {
	display: flex;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 6px;
}

.st-news-input {
	flex-grow: 1;
	font-size: 13px;
	color: var(--st-color-white);
}

.st-news-input::placeholder {
	color: rgba(255,255,255,0.3);
}

.st-news-submit {
	cursor: pointer;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--st-color-gold);
}

.st-footer-bottom {
	padding: 30px 0;
	font-size: 12px;
	color: #7d7265;
}

.st-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.st-copyright {
	margin: 0;
}

.st-footer-policy-links a {
	margin-left: 20px;
}

.st-footer-policy-links a:hover {
	color: var(--st-color-white);
}

/* Mobile Sticky Bottom Nav Bar */
.st-mobile-nav-bar {
	display: none; /* Desktop hidden */
}

/* ==========================================================================
   10. Blog & Single Post Styles
   ========================================================================== */
.st-blog-index-page,
.st-archive-page-wrapper,
.st-search-results-page {
	padding: 80px 0;
}

.st-page-header {
	margin-bottom: 60px;
}

.st-page-title {
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 10px;
}

.st-page-subtitle {
	font-size: 16px;
	color: var(--st-color-text-muted);
}

.st-blog-content-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 50px;
}

.st-blog-posts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* Blog Sidebar widgets */
.st-secondary-sidebar {
	display: flex;
	flex-direction: column;
}

.st-widget {
	margin-bottom: 40px;
}

.st-widget-title {
	font-size: 20px;
	border-bottom: 2px solid var(--st-color-primary);
	padding-bottom: 10px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.st-widget-categories ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-widget-categories ul li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--st-color-border-light);
	font-size: 14px;
}

.st-widget-recent ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-widget-recent ul li {
	margin-bottom: 15px;
	font-size: 14px;
}

.st-widget-recent ul li a {
	display: block;
	font-family: var(--st-font-body);
	font-weight: 500;
	line-height: 1.4;
}

.recent-post-date {
	font-size: 11px;
	color: var(--st-color-text-muted);
}

/* Single Article Styling */
.st-single-post-wrapper {
	padding: 80px 0;
}

.st-article-header {
	margin-bottom: 40px;
}

.st-article-meta-tags {
	display: flex;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-color-gold);
	margin-bottom: 15px;
}

.st-article-category a {
	color: var(--st-color-gold);
}

.st-article-date {
	margin-left: 15px;
	color: var(--st-color-text-muted);
}

.st-article-title {
	font-size: 54px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.st-article-author-info {
	font-size: 13px;
	color: var(--st-color-text-muted);
}

.st-article-author-info .author-name {
	color: var(--st-color-text-main);
	font-weight: 500;
}

.st-article-featured-img {
	margin-bottom: 50px;
}

.st-article-featured-img img {
	width: 100%;
	max-height: 550px;
	object-fit: cover;
}

.st-article-body {
	font-size: 17px;
	line-height: 1.8;
	color: var(--st-color-text-main);
}

.st-article-body p {
	margin-bottom: 25px;
}

.st-article-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--st-color-border-light);
	border-bottom: 1px solid var(--st-color-border-light);
	padding: 20px 0;
	margin-top: 50px;
}

.st-article-tags {
	font-size: 13px;
}

.st-article-tags a {
	margin-left: 8px;
	color: var(--st-color-text-muted);
}

.st-article-social-share {
	font-size: 13px;
}

.st-article-social-share a {
	margin-left: 15px;
	font-weight: 500;
}

/* Article Navigation */
.st-post-navigation {
	margin-top: 50px;
}

.st-post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.st-post-navigation .nav-links a {
	display: block;
	border: 1px solid var(--st-color-border-light);
	padding: 24px;
	transition: border-color 0.3s;
}

.st-post-navigation .nav-links a:hover {
	border-color: var(--st-color-primary);
}

.st-post-navigation .nav-meta {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--st-color-text-muted);
	margin-bottom: 8px;
}

.st-post-navigation .nav-title {
	font-family: var(--st-font-display);
	font-size: 18px;
	font-weight: 500;
}

/* Page not found 404 Styling */
.st-404-wrapper {
	padding: 120px 0;
}

.st-404-eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-color-primary);
	margin-bottom: 10px;
	display: block;
}

.st-404-desc {
	font-size: 16px;
	max-width: 500px;
	margin: 0 auto 40px;
}

.st-404-search-box {
	max-width: 400px;
	margin: 0 auto 50px;
	border-bottom: 2px solid var(--st-color-primary);
	padding-bottom: 10px;
}

.st-404-quick-links {
	margin-top: 60px;
}

.st-quick-links-title {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 0.05em;
}

.st-quick-links-grid {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
