/*
Theme Name: Streetwear Starter
Theme URI: https://example.com/streetwear-starter
Author: Developer
Author URI: https://example.com
Description: A dark, minimal WordPress theme for streetwear and fashion e-commerce. Fully compatible with Elementor and WooCommerce.
Version: 1.0.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: streetwear-starter
Tags: e-commerce, woocommerce, elementor, dark, fashion, streetwear, custom-logo, custom-background, translation-ready
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.7
*/

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
	--sw-bg: #ffffff;
	--sw-bg-alt: #f8f8f8;
	--sw-bg-card: #ffffff;
	--sw-text: #222222;
	--sw-text-muted: #888888;
	--sw-accent: #ff3333;
	--sw-accent-hover: #cc0000;
	--sw-border: #f0f0f0;
	--sw-font-primary: 'Montserrat', sans-serif;
	--sw-font-heading: 'Montserrat', sans-serif; /* using montserrat for heading too to match glitch */
	--sw-transition: all 0.3s ease;
	--sw-header-height: 70px;
	--sw-container-width: 1200px;
}

/* ==========================================================================
   2. CSS Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--sw-bg);
	color: #fff;
	font-family: var(--sw-font-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

#page, .site-main {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sw-font-heading);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

a {
	color: #fff;
	text-decoration: none;
	transition: var(--sw-transition);
}

a:hover,
a:focus {
	color: var(--sw-accent);
	outline: none;
}

img, 
picture, 
video, 
canvas, 
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}

/* ==========================================================================
   3. Utilities & Layout
   ========================================================================== */
.container {
	max-width: var(--sw-container-width) !important;
	margin: 0 auto !important;
	padding: 0 20px !important;
	width: 100% !important;
}

.section-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--sw-accent);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

/* ==========================================================================
   4. Header Styles
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	height: var(--sw-header-height);
	transition: var(--sw-transition);
	border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	background: #000000;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid var(--sw-border);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.site-logo img {
	max-height: 40px;
}

.site-logo .site-title {
	font-family: var(--sw-font-heading);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 1.5rem;
	margin: 0;
}

.site-logo a {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	gap: 30px;
	align-items: center;
}

.main-navigation a {
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 2px;
	font-weight: 500;
	padding: 10px 0;
	display: block;
	position: relative;
}

.main-navigation li {
	position: relative;
}

/* Dropdown */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--sw-bg-alt);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transition: var(--sw-transition);
	flex-direction: column;
	gap: 0;
	padding: 10px 0;
	border: 1px solid var(--sw-border);
	box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.main-navigation li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu li a {
	padding: 10px 20px;
	font-size: 0.8rem;
}

.main-navigation .sub-menu li a:hover {
	background: var(--sw-bg-card);
	color: var(--sw-accent);
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-cart {
	position: relative;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background-color: var(--sw-accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero-section {
	height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	max-width: 900px;
}

.hero-quote {
	font-family: var(--sw-font-heading);
	font-size: 4.5rem;
	text-transform: uppercase;
	text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
	margin-bottom: 2rem;
	line-height: 1.1;
}

.hero-cta {
	display: inline-block;
	background-color: #ff3333;
	color: #ffffff;
	padding: 15px 40px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.9rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: var(--sw-transition);
}

.hero-cta:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
	color: #fff;
}

/* ==========================================================================
   6. Product Cards
   ========================================================================== */
.sw-product-card {
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.sw-product-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-color: var(--sw-accent);
	transform: translateY(-4px);
}

.product-image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--sw-bg-alt);
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.product-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sw-product-card:hover .product-image-wrapper img {
	transform: scale(1.05);
}

/* Stretched link to make whole card clickable */
.product-image-link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Quick view button (Magnifying glass) */
.product-overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	opacity: 0;
	visibility: hidden;
	transition: var(--sw-transition);
	z-index: 10;
}

.sw-product-card:hover .product-overlay {
	opacity: 1;
	visibility: visible;
}

.quick-view-btn {
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	font-size: 0;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quick-view-btn::after {
	content: "\1F50D"; /* Unicode magnifying glass */
	font-size: 16px;
}
.quick-view-btn:hover {
	border-color: #333;
}

.product-info {
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
}

.product-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 5px;
	order: 1;
	text-transform: uppercase;
}
.product-title a { color: #fff; position: relative; z-index: 2; }
.product-title a:hover { color: var(--sw-accent); }

.product-category-label {
	font-size: 0.8rem;
	color: var(--sw-text-muted);
	margin-bottom: 8px;
	order: 2;
	text-transform: uppercase;
}

.product-price {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--sw-accent);
	order: 3;
}
.product-price .old-price {
	color: #aaa;
	text-decoration: line-through;
	font-weight: 400;
	margin-right: 5px;
}

/* Green Add to Cart Slide Up on Hover */
.product-actions {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
}

.sw-product-card:hover .product-actions {
	transform: translateY(-100%);
	opacity: 1;
	visibility: visible;
}

.add-to-cart-btn {
	display: block;
	width: 100%;
	background-color: var(--sw-accent);
	color: #fff;
	text-align: center;
	padding: 12px 10px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 2;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.add-to-cart-btn:hover {
	background-color: var(--sw-accent-hover);
	color: #fff;
}
/* ==========================================================================
   7. WooCommerce Overrides
   ========================================================================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: 100%;
	margin: 0;
	background-color: var(--sw-bg-card);
	border: 1px solid var(--sw-border);
	transition: var(--sw-transition);
	display: flex;
	flex-direction: column;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-5px);
	border-color: var(--sw-accent);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #fff;
	text-transform: uppercase;
	font-size: 1rem;
	padding: 0 15px;
	margin-top: 15px;
	font-family: var(--sw-font-heading);
}

.woocommerce ul.products li.product .price {
	color: #fff;
	padding: 0 15px;
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	color: var(--sw-text-muted);
	font-weight: 400;
	opacity: 0.5;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: var(--sw-accent);
}

.woocommerce ul.products li.product .star-rating {
	color: var(--sw-accent);
	margin: 0 15px 10px;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background-color: var(--sw-accent) !important;
	color: #fff !important;
	text-transform: uppercase;
	border-radius: 0;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 12px 25px;
	transition: var(--sw-transition);
	border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background-color: var(--sw-accent-hover) !important;
}

/* Sale Badge */
.woocommerce span.onsale {
	background-color: var(--sw-accent);
	color: #fff;
	border-radius: 0;
	padding: 5px 15px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	min-height: auto;
	min-width: auto;
	top: 10px;
	left: 10px;
	right: auto;
	z-index: 9;
	font-weight: 600;
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background-color: var(--sw-bg-alt);
	color: #fff;
	border-top: none;
	border-left: 3px solid var(--sw-accent);
	padding: 20px;
	margin-bottom: 2rem;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	color: var(--sw-accent);
}

/* Form Fields & Selects */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	background-color: var(--sw-bg-alt);
	color: #fff;
	border: 1px solid var(--sw-border);
	padding: 12px 15px;
	border-radius: 0;
}

.woocommerce select {
	background-color: var(--sw-bg-alt);
	color: #fff;
	border: 1px solid var(--sw-border);
	padding: 10px;
	border-radius: 0;
}

/* Quantity */
.woocommerce .quantity .qty {
	background-color: var(--sw-bg-alt);
	color: #fff;
	border: 1px solid var(--sw-border);
	padding: 10px;
	width: 70px;
	height: 45px;
	border-radius: 0;
}

/* Tables */
.woocommerce table.shop_table {
	background-color: var(--sw-bg-card);
	border: 1px solid var(--sw-border);
	border-radius: 0;
	color: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--sw-border);
	color: #fff;
}

.woocommerce table.shop_table th {
	text-transform: uppercase;
	background-color: var(--sw-bg-alt);
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
	border: 1px solid var(--sw-border);
	background: var(--sw-bg-card);
}

.woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid var(--sw-border);
}

.woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
	padding: 15px 20px;
	display: block;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--sw-accent);
	color: #fff;
}

.woocommerce-MyAccount-content {
	background: var(--sw-bg-card);
	padding: 30px;
	border: 1px solid var(--sw-border);
}

/* Checkout */
#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
	background: var(--sw-bg-alt);
	border-radius: 0;
}

#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
	background: var(--sw-bg-card);
	color: var(--sw-text-muted);
}

#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--sw-bg-card);
}

.woocommerce-breadcrumb {
	color: var(--sw-text-muted) !important;
	font-size: 0.85rem;
	text-transform: uppercase;
}

.woocommerce-breadcrumb a {
	color: var(--sw-text) !important;
}

.woocommerce .woocommerce-result-count, 
.woocommerce .woocommerce-ordering {
	color: var(--sw-text-muted);
	margin-bottom: 20px;
}

/* ==========================================================================
   8. Quick View Modal
   ========================================================================== */
.quick-view-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--sw-transition);
}

.quick-view-modal.active {
	opacity: 1;
	visibility: visible;
}

.quick-view-modal .modal-content {
	max-width: 900px;
	width: 90%;
	margin: auto;
	background: var(--sw-bg-alt);
	padding: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	position: relative;
	border: 1px solid var(--sw-border);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	transition: var(--sw-transition);
}

.modal-close:hover {
	color: var(--sw-accent);
}

/* ==========================================================================
   9. Trust/Features Section
   ========================================================================== */
.trust-badges {
	padding: 60px 0;
	background: var(--sw-bg);
}

.trust-badges .grid {
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}

.trust-badge {
	padding: 20px;
}

.trust-badge .icon {
	font-size: 2.5rem;
	color: var(--sw-accent);
	margin-bottom: 15px;
}

.trust-badge h4 {
	text-transform: uppercase;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.trust-badge p {
	color: var(--sw-text-muted);
	font-size: 0.9rem;
}

/* ==========================================================================
   10. Footer Styles
   ========================================================================== */
.site-footer {
	background-color: var(--sw-bg-alt);
	padding: 60px 0 20px;
	border-top: 1px solid var(--sw-border);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-nav ul {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-nav a {
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid var(--sw-border);
}

.footer-copyright {
	color: var(--sw-text-muted);
	font-size: 0.85rem;
}

/* ==========================================================================
   11. Sidebar / Widgets
   ========================================================================== */
.widget-area .widget {
	margin-bottom: 30px;
	padding: 25px;
	background-color: var(--sw-bg-card);
	border: 1px solid var(--sw-border);
}

.widget-title {
	text-transform: uppercase;
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--sw-accent);
}

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

.widget ul li {
	padding: 10px 0;
	border-bottom: 1px solid var(--sw-border);
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: #fff;
	transition: var(--sw-transition);
}

.widget ul li a:hover {
	color: var(--sw-accent);
}

/* ==========================================================================
   12. Forms & Inputs
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
	background-color: var(--sw-bg-alt);
	color: #fff;
	border: 1px solid var(--sw-border);
	padding: 12px 15px;
	border-radius: 0;
	width: 100%;
	font-family: var(--sw-font-primary);
	transition: var(--sw-transition);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--sw-accent);
	outline: none;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background-color: var(--sw-accent);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 30px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: var(--sw-transition);
}

button:hover,
input[type="submit"]:hover {
	background-color: var(--sw-accent-hover);
}

/* ==========================================================================
   13. Login Modal
   ========================================================================== */
.login-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--sw-transition);
}

.login-modal.active {
	opacity: 1;
	visibility: visible;
}

.login-modal .modal-content {
	max-width: 400px;
	width: 90%;
	margin: auto;
	background: var(--sw-bg-alt);
	padding: 40px;
	position: relative;
	border: 1px solid var(--sw-border);
}

.login-modal h2 {
	text-align: center;
	margin-bottom: 20px;
}

.login-modal form p {
	margin-bottom: 15px;
}

.login-modal a {
	color: var(--sw-accent);
	font-size: 0.9rem;
}

/* ==========================================================================
   14. Responsive Media Queries
   ========================================================================== */

/* Tablet Landscape / Small Desktops */
@media (max-width: 992px) {
	.hero-quote {
		font-size: 3.5rem;
	}

	.woocommerce ul.products,
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.trust-badges .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

/* Tablet Portrait / Mobile */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.main-navigation {
		position: fixed;
		top: var(--sw-header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--sw-header-height));
		background: rgba(0, 0, 0, 0.98);
		z-index: 999;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transition: var(--sw-transition);
		transform: translateY(-20px);
	}

	.main-navigation.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.main-navigation a {
		font-size: 1.2rem;
	}
	
	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		background: transparent;
		box-shadow: none;
		border: none;
		display: none; /* Can toggle via JS */
	}

	.hero-quote {
		font-size: 2.2rem;
	}
	
	.hero-cta {
		padding: 12px 25px;
		font-size: 0.8rem;
	}

	.woocommerce ul.products,
	.grid,
	.trust-badges .grid {
		grid-template-columns: 1fr;
	}
	
	.quick-view-modal .modal-content {
		grid-template-columns: 1fr;
	}
	
	.footer-inner {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-nav ul {
		justify-content: center;
	}
	
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: block;
		margin-bottom: 20px;
		border: 1px solid var(--sw-border);
	}
	
	.woocommerce table.shop_table_responsive td,
	.woocommerce-page table.shop_table_responsive td {
		display: block;
		text-align: right;
		border-bottom: 1px solid var(--sw-border);
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.site-logo .site-title {
		font-size: 1.1rem;
	}

	.hero-quote {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 2rem;
	}

	.product-info {
		padding: 15px;
	}
	
	.woocommerce-MyAccount-content {
		padding: 15px;
	}
}

/* ==========================================================================
   15. Front Page — Hero Slider
   ========================================================================== */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
}

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

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
}

.hero-quote {
	font-family: var(--sw-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	line-height: 1.2;
	color: #fff;
	text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
	margin-bottom: 40px;
}

.hero-quote-highlight {
	color: var(--sw-accent);
}

.hero-cta {
	display: inline-block;
	padding: 16px 50px;
	background-color: #ff3333;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: var(--sw-font-heading);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 3px;
	border: none;
	transition: var(--sw-transition);
}

.hero-cta:hover {
	background-color: #cc0000;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
	color: #fff;
}

/* Slider dots */
.hero-slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 12px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	cursor: pointer;
	transition: var(--sw-transition);
	padding: 0;
}

.slider-dot:hover {
	border-color: #fff;
}

.slider-dot.active {
	background: var(--sw-accent);
	border-color: var(--sw-accent);
	transform: scale(1.2);
}

/* ==========================================================================
   15b. Front Page — Featured Drop Announcement (Section 2)
   ========================================================================== */
.featured-drop {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: 85vh;
}

.featured-drop__image-left,
.featured-drop__image-right {
	position: relative;
	overflow: hidden;
}

.featured-drop__image-left {
	background-color: #e8e4df;
}

.featured-drop__image-right {
	background-color: #f0ece7;
}

.featured-drop__image-left img,
.featured-drop__image-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.6s ease;
}

.featured-drop__image-left:hover img,
.featured-drop__image-right:hover img {
	transform: scale(1.03);
}

.featured-drop__content {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	text-align: center;
}

.featured-drop__quote-mark {
	font-family: var(--sw-font-heading);
	font-size: 5rem;
	font-weight: 900;
	color: #1a1a1a;
	line-height: 0.6;
	margin-bottom: 25px;
	letter-spacing: -4px;
}

.featured-drop__heading {
	font-family: var(--sw-font-heading);
	font-size: 3.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #1a1a1a;
	line-height: 1.05;
	letter-spacing: 2px;
	margin-bottom: 25px;
}

.featured-drop__brand {
	font-family: var(--sw-font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.featured-drop__designer {
	font-family: var(--sw-font-primary);
	font-size: 0.9rem;
	font-weight: 400;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 35px;
}

.featured-drop__cta {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	padding: 16px 40px;
	background-color: #4a8c5c;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--sw-font-primary);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured-drop__cta:hover {
	background-color: #3d7a4e;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(74, 140, 92, 0.3);
	color: #fff;
}

@media (max-width: 992px) {
	.featured-drop {
		min-height: 70vh;
	}

	.featured-drop__heading {
		font-size: 2.5rem;
	}

	.featured-drop__content {
		padding: 40px 25px;
	}
}

@media (max-width: 768px) {
	.featured-drop {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.featured-drop__image-left {
		height: 50vh;
		order: 1;
	}

	.featured-drop__content {
		padding: 50px 30px;
		order: 2;
	}

	.featured-drop__image-right {
		height: 50vh;
		order: 3;
	}

	.featured-drop__heading {
		font-size: 2.8rem;
	}
}

@media (max-width: 480px) {
	.featured-drop__heading {
		font-size: 2rem;
	}

	.featured-drop__content {
		padding: 40px 20px;
	}

	.featured-drop__image-left,
	.featured-drop__image-right {
		height: 40vh;
	}
}

/* ==========================================================================
   16. Front Page — Collection Sections
   ========================================================================== */
.collection-section {
	padding: 80px 0;
	background-color: var(--sw-bg);
}

.collection-section--alt {
	background-color: var(--sw-bg-alt);
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--sw-border);
}

.section-title {
	font-family: var(--sw-font-heading);
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #fff;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--sw-accent);
	margin-top: 10px;
}

.section-view-all {
	font-family: var(--sw-font-primary);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--sw-text-muted);
	text-decoration: none;
	transition: var(--sw-transition);
}

.section-view-all:hover {
	color: var(--sw-accent);
}

/* ==========================================================================
   17. Front Page — Products Grid
   ========================================================================== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 25px;
}


.products-grid .product-category-label a {
	color: var(--sw-accent);
	text-decoration: none;
}

.products-grid .product-title {
	font-family: var(--sw-font-heading);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.products-grid .product-title a {
	color: #fff;
	text-decoration: none;
	transition: var(--sw-transition);
}

.products-grid .product-title a:hover {
	color: var(--sw-accent);
}

.products-grid .product-price {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.products-grid .product-actions {
	margin-top: 10px;
}

.products-grid .add-to-cart-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px;
	background: var(--sw-accent);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: var(--sw-font-primary);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	border: none;
	cursor: pointer;
	transition: var(--sw-transition);
}

.products-grid .add-to-cart-btn:hover {
	background: var(--sw-accent-hover);
}

/* ==========================================================================
   18. Front Page — Trust Badges
   ========================================================================== */
.trust-badges {
	padding: 80px 0;
	background-color: var(--sw-bg-alt);
	border-top: 1px solid var(--sw-border);
	border-bottom: 1px solid var(--sw-border);
}

.trust-badges-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	text-align: center;
}

.trust-badge {
	padding: 30px 20px;
}

.trust-badge-icon {
	margin-bottom: 20px;
	color: var(--sw-accent);
}

.trust-badge-icon svg {
	width: 48px;
	height: 48px;
}

.trust-badge h4 {
	font-family: var(--sw-font-heading);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	margin-bottom: 10px;
}

.trust-badge p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--sw-text-muted);
}

/* ==========================================================================
   19. Front Page — Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.hero-quote {
		font-size: 2.5rem;
		letter-spacing: 2px;
	}

	.hero-cta {
		padding: 14px 35px;
		font-size: 0.9rem;
	}

	.collection-section {
		padding: 60px 0;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 20px;
	}

	.trust-badges-grid {
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		height: 80vh;
		min-height: 400px;
	}

	.hero-quote {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	.hero-cta {
		padding: 12px 30px;
		font-size: 0.85rem;
		letter-spacing: 2px;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.trust-badges {
		padding: 50px 0;
	}

	.trust-badges-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.trust-badge {
		padding: 20px 15px;
	}

	.collection-section {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	.hero-quote {
		font-size: 1.4rem;
	}

	.hero-cta {
		padding: 10px 25px;
		font-size: 0.8rem;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.products-grid .product-info {
		padding: 12px;
	}

	.products-grid .product-title {
		font-size: 0.8rem;
	}

	.products-grid .add-to-cart-btn {
		padding: 10px;
		font-size: 0.7rem;
	}
}

/* ==========================================================================
   Brand Story Section
   ========================================================================== */
.brand-story-section {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	background: #000;
}

.brand-story__image {
	flex: 1 1 50%;
	min-height: 500px;
}

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

.brand-story__content {
	flex: 1 1 50%;
	background-color: #2b1111; /* dark burgundy to match screenshot */
	color: #ffffff;
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.brand-story__quote-mark {
	font-size: 6rem;
	font-family: var(--sw-font-heading);
	line-height: 1;
	margin-bottom: 20px;
	color: #ffffff;
}

.brand-story__text {
	font-family: var(--sw-font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 40px;
	max-width: 80%;
}

.brand-story__text p {
	margin-bottom: 15px;
}
.brand-story__text p:last-child {
	margin-bottom: 0;
}

.brand-story__signature {
	font-family: var(--sw-font-primary);
	font-size: 1rem;
	text-transform: none;
	color: #e0e0e0;
}
.brand-story__signature strong {
	font-family: var(--sw-font-heading);
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ffffff;
}

@media (max-width: 992px) {
	.brand-story__image,
	.brand-story__content {
		flex: 1 1 100%;
	}
	.brand-story__content {
		padding: 50px 30px;
	}
	.brand-story__text {
		font-size: 0.95rem;
		max-width: 100%;
	}
}
