/**
 * Grimmer Single Product Page — Custom Styles
 *
 * Scoped entirely under .grimmer-single-product to avoid
 * affecting shop, archive, cart, checkout, or any other pages.
 *
 * @package Grimmer
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

.grimmer-single-product {
	--grimmer-bg: #0a0a0a;
	--grimmer-bg-alt: #111111;
	--grimmer-bg-card: #161616;
	--grimmer-border: #1e1e1e;
	--grimmer-border-light: #2a2a2a;
	--grimmer-text: #e8e8e8;
	--grimmer-text-muted: #888888;
	--grimmer-text-dim: #666666;
	--grimmer-accent: #c9a96e;
	--grimmer-accent-hover: #d4b97e;
	--grimmer-white: #ffffff;
	--grimmer-radius: 4px;
	--grimmer-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--grimmer-section-spacing: clamp(40px, 6vw, 80px);
	--grimmer-container-padding: clamp(16px, 4vw, 40px);
}

/* ==========================================================================
   Base / Page Background
   ========================================================================== */

.grimmer-single-product .single-product-page {
	background-color: var(--grimmer-bg);
	color: var(--grimmer-text);
}

/* Override Woodmart container backgrounds */
.grimmer-single-product .single-product-page .container,
.grimmer-single-product .single-product-page .container-fluid {
	background-color: transparent;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.grimmer-single-product .single-breadcrumbs-wrapper {
	background-color: var(--grimmer-bg);
	border-bottom: 1px solid var(--grimmer-border);
	padding: 12px 0;
}

.grimmer-single-product .single-breadcrumbs-wrapper,
.grimmer-single-product .single-breadcrumbs-wrapper a,
.grimmer-single-product .single-breadcrumbs-wrapper .breadcrumb,
.grimmer-single-product .single-breadcrumbs-wrapper .woocommerce-breadcrumb {
	color: var(--grimmer-text-muted);
}

.grimmer-single-product .single-breadcrumbs-wrapper a:hover {
	color: var(--grimmer-accent);
}

/* ==========================================================================
   Gallery Section — Full Width, Centered
   ========================================================================== */

.grimmer-gallery-section {
	background-color: var(--grimmer-bg-alt);
	padding: var(--grimmer-section-spacing) var(--grimmer-container-padding);
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--grimmer-border);
}

.grimmer-gallery-section .product-images {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	float: none;
}

/* Override Woodmart grid column sizing for gallery in our layout */
.grimmer-gallery-section .product-images.wd-grid-col {
	--wd-col-lg: 12 !important;
	--wd-col-md: 12 !important;
	--wd-col-sm: 12 !important;
}

/* Gallery main image */
.grimmer-gallery-section .woocommerce-product-gallery {
	max-width: 100%;
}

.grimmer-gallery-section .woocommerce-product-gallery__image img {
	border-radius: var(--grimmer-radius);
}

/* Thumbnails — horizontal strip below */
.grimmer-gallery-section .wd-gallery-thumb,
.grimmer-gallery-section .flex-control-thumbs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.grimmer-gallery-section .wd-gallery-thumb li,
.grimmer-gallery-section .flex-control-thumbs li {
	flex: 0 0 auto;
}

/* Sale badge */
.grimmer-gallery-section .onsale,
.grimmer-gallery-section .product-labels {
	z-index: 5;
}

/* Additional gallery buttons (video, 360, zoom) */
.grimmer-gallery-section .product-additional-galleries {
	margin-top: 12px;
}

/* ==========================================================================
   Product Details + Video Row
   ========================================================================== */

.grimmer-details-video-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0 var(--grimmer-container-padding);
	max-width: 1400px;
	margin: 0 auto;
}

.grimmer-details-video-row.has-video {
	grid-template-columns: 6fr 4fr;
	gap: 40px;
}

/* Product Details Column */
.grimmer-product-details {
	padding: var(--grimmer-section-spacing) 0;
}

/* Product Video Column */
.grimmer-product-video-col {
	padding: var(--grimmer-section-spacing) 0;
	display: flex;
	align-items: flex-start;
}

.grimmer-video-wrapper {
	position: relative;
	width: 100%;
	border-radius: var(--grimmer-radius);
	overflow: hidden;
	background-color: var(--grimmer-bg-card);
	border: 1px solid var(--grimmer-border);
}

.grimmer-video-wrapper .grimmer-video-inner {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 */
}

.grimmer-video-wrapper .grimmer-video-inner iframe,
.grimmer-video-wrapper .grimmer-video-inner video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--grimmer-radius);
}

.grimmer-video-wrapper .grimmer-video-label {
	display: block;
	padding: 12px 16px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--grimmer-text-muted);
	border-top: 1px solid var(--grimmer-border);
}

/* ==========================================================================
   Product Summary Overrides (Dark Theme)
   ========================================================================== */

.grimmer-single-product .summary-inner {
	color: var(--grimmer-text);
}

/* Product Title */
.grimmer-single-product .product_title,
.grimmer-single-product .summary-inner .product_title {
	color: var(--grimmer-white);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin-bottom: 12px;
}

/* Rating Stars */
.grimmer-single-product .star-rating {
	color: var(--grimmer-accent);
}

.grimmer-single-product .woocommerce-review-link {
	color: var(--grimmer-text-muted);
}

.grimmer-single-product .woocommerce-review-link:hover {
	color: var(--grimmer-accent);
}

/* Price */
.grimmer-single-product .summary-inner .price,
.grimmer-single-product .summary-inner .price .woocommerce-Price-amount {
	color: var(--grimmer-white);
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 500;
}

.grimmer-single-product .summary-inner .price del {
	color: var(--grimmer-text-dim);
	opacity: 0.7;
}

.grimmer-single-product .summary-inner .price ins {
	color: var(--grimmer-accent);
	text-decoration: none;
}

/* Short Description */
.grimmer-single-product .woocommerce-product-details__short-description,
.grimmer-single-product .woocommerce-product-details__short-description p {
	color: var(--grimmer-text-muted);
	font-size: 15px;
	line-height: 1.7;
}

/* Variations / Swatches */
.grimmer-single-product .variations_form .label label {
	color: var(--grimmer-text);
	font-weight: 500;
}

.grimmer-single-product .variations_form .value select {
	background-color: var(--grimmer-bg-card);
	border: 1px solid var(--grimmer-border-light);
	color: var(--grimmer-text);
	border-radius: var(--grimmer-radius);
	padding: 10px 14px;
}

.grimmer-single-product .variations td {
	border-bottom: 1px solid var(--grimmer-border);
}

/* Quantity Input */
.grimmer-single-product .quantity .qty {
	background-color: var(--grimmer-bg-card);
	border: 1px solid var(--grimmer-border-light);
	color: var(--grimmer-text);
	border-radius: var(--grimmer-radius);
}

/* Add to Cart Button */
.grimmer-single-product .single_add_to_cart_button,
.grimmer-single-product .single_add_to_cart_button.button {
	background-color: var(--grimmer-accent) !important;
	color: var(--grimmer-bg) !important;
	border: none !important;
	border-radius: var(--grimmer-radius);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 16px 40px;
	transition: all var(--grimmer-transition);
	position: relative;
	overflow: hidden;
}

.grimmer-single-product .single_add_to_cart_button:hover,
.grimmer-single-product .single_add_to_cart_button.button:hover {
	background-color: var(--grimmer-accent-hover) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

/* Wishlist & Compare */
.grimmer-single-product .wd-wishlist-btn a,
.grimmer-single-product .wd-compare-btn a,
.grimmer-single-product .wd-action-btn a {
	color: var(--grimmer-text-muted);
	transition: color var(--grimmer-transition);
}

.grimmer-single-product .wd-wishlist-btn a:hover,
.grimmer-single-product .wd-compare-btn a:hover,
.grimmer-single-product .wd-action-btn a:hover {
	color: var(--grimmer-accent);
}

/* Product Meta (SKU, Categories, Tags) */
.grimmer-single-product .product_meta {
	border-top: 1px solid var(--grimmer-border);
	padding-top: 20px;
	margin-top: 24px;
}

.grimmer-single-product .product_meta>span {
	color: var(--grimmer-text-muted);
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
}

.grimmer-single-product .product_meta a {
	color: var(--grimmer-text);
	transition: color var(--grimmer-transition);
}

.grimmer-single-product .product_meta a:hover {
	color: var(--grimmer-accent);
}

/* Share Buttons */
.grimmer-single-product .product-share .share-title {
	color: var(--grimmer-text-muted);
}

.grimmer-single-product .product-share a {
	color: var(--grimmer-text-muted);
	transition: color var(--grimmer-transition);
}

.grimmer-single-product .product-share a:hover {
	color: var(--grimmer-accent);
}

/* ==========================================================================
   Tabs Section
   ========================================================================== */

.grimmer-single-product .product-tabs-wrapper {
	background-color: var(--grimmer-bg);
	border-top: 1px solid var(--grimmer-border);
}

.grimmer-single-product .product-tabs-wrapper .wc-tabs,
.grimmer-single-product .product-tabs-wrapper .tabs {
	border-bottom: 1px solid var(--grimmer-border);
}

.grimmer-single-product .product-tabs-wrapper .wc-tabs li a,
.grimmer-single-product .product-tabs-wrapper .tabs li a {
	color: var(--grimmer-text-muted);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	transition: color var(--grimmer-transition);
	padding: 16px 24px;
}

.grimmer-single-product .product-tabs-wrapper .wc-tabs li a:hover,
.grimmer-single-product .product-tabs-wrapper .tabs li a:hover {
	color: var(--grimmer-white);
}

.grimmer-single-product .product-tabs-wrapper .wc-tabs li.active a,
.grimmer-single-product .product-tabs-wrapper .tabs li.active a {
	color: var(--grimmer-accent);
	border-bottom-color: var(--grimmer-accent);
}

.grimmer-single-product .product-tabs-wrapper .wc-tab,
.grimmer-single-product .product-tabs-wrapper .woocommerce-Tabs-panel {
	color: var(--grimmer-text-muted);
	padding: 30px 0;
}

.grimmer-single-product .product-tabs-wrapper .wc-tab h2,
.grimmer-single-product .product-tabs-wrapper .woocommerce-Tabs-panel h2 {
	color: var(--grimmer-white);
	font-size: clamp(18px, 2vw, 24px);
	margin-bottom: 16px;
}

.grimmer-single-product .product-tabs-wrapper .wc-tab p,
.grimmer-single-product .product-tabs-wrapper .woocommerce-Tabs-panel p {
	line-height: 1.75;
}

/* Accordion tabs (if enabled) */
.grimmer-single-product .wd-accordion .wd-accordion-title {
	color: var(--grimmer-text);
	border-color: var(--grimmer-border);
}

.grimmer-single-product .wd-accordion .wd-accordion-content {
	color: var(--grimmer-text-muted);
}

/* ==========================================================================
   Related Products & Upsells
   ========================================================================== */

.grimmer-single-product .related-and-upsells {
	background-color: var(--grimmer-bg);
	padding-top: var(--grimmer-section-spacing);
	padding-bottom: var(--grimmer-section-spacing);
}

.grimmer-single-product .related-and-upsells>section>h2,
.grimmer-single-product .related.products>h2,
.grimmer-single-product .upsells.products>h2,
.grimmer-single-product .up-sells>h2 {
	color: var(--grimmer-white);
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 600;
	text-align: center;
	margin-bottom: 32px;
	letter-spacing: -0.01em;
}

/* Related product cards */
.grimmer-single-product .related-and-upsells .product-grid-item,
.grimmer-single-product .related-and-upsells .wd-product {
	background-color: var(--grimmer-bg-card);
	border: 1px solid var(--grimmer-border);
	border-radius: var(--grimmer-radius);
	overflow: hidden;
	transition: border-color var(--grimmer-transition), transform var(--grimmer-transition);
}

.grimmer-single-product .related-and-upsells .product-grid-item:hover,
.grimmer-single-product .related-and-upsells .wd-product:hover {
	border-color: var(--grimmer-border-light);
	transform: translateY(-2px);
}

.grimmer-single-product .related-and-upsells .wd-entities-title a,
.grimmer-single-product .related-and-upsells .woocommerce-loop-product__title {
	color: var(--grimmer-text);
}

.grimmer-single-product .related-and-upsells .price {
	color: var(--grimmer-white);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.grimmer-single-product .wd-single-reviews {
	background-color: var(--grimmer-bg);
}

.grimmer-single-product #reviews h2 {
	color: var(--grimmer-white);
}

.grimmer-single-product .comment-text {
	color: var(--grimmer-text-muted);
}

.grimmer-single-product .comment-form label {
	color: var(--grimmer-text);
}

.grimmer-single-product .comment-form input,
.grimmer-single-product .comment-form textarea {
	background-color: var(--grimmer-bg-card);
	border: 1px solid var(--grimmer-border-light);
	color: var(--grimmer-text);
	border-radius: var(--grimmer-radius);
}

.grimmer-single-product .comment-form input:focus,
.grimmer-single-product .comment-form textarea:focus {
	border-color: var(--grimmer-accent);
	outline: none;
}

/* ==========================================================================
   WooCommerce Notices
   ========================================================================== */

.grimmer-single-product .woocommerce-message,
.grimmer-single-product .woocommerce-info,
.grimmer-single-product .woocommerce-error {
	background-color: var(--grimmer-bg-card);
	border-color: var(--grimmer-border-light);
	color: var(--grimmer-text);
	border-radius: var(--grimmer-radius);
}

.grimmer-single-product .woocommerce-message {
	border-left-color: var(--grimmer-accent);
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.grimmer-single-product .wd-product-countdown .wd-timer {
	color: var(--grimmer-text);
}

/* ==========================================================================
   Stock Progress Bar
   ========================================================================== */

.grimmer-single-product .wd-stock-progress-bar .progress-bar {
	background-color: var(--grimmer-border-light);
}

.grimmer-single-product .wd-stock-progress-bar .progress-bar-inner {
	background-color: var(--grimmer-accent);
}

/* ==========================================================================
   Divider between gallery and details
   ========================================================================== */

.grimmer-section-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg,
			transparent,
			var(--grimmer-border-light) 20%,
			var(--grimmer-border-light) 80%,
			transparent);
	margin: 0;
	border: none;
}

/* ==========================================================================
   Responsive — Tablet (≤ 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
	.grimmer-details-video-row.has-video {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.grimmer-product-video-col {
		padding-top: 0;
		border-top: 1px solid var(--grimmer-border);
	}

	.grimmer-gallery-section .product-images {
		max-width: 600px;
	}
}

/* ==========================================================================
   Responsive — Mobile (≤ 768px)
   ========================================================================== */

@media (max-width: 768px) {
	.grimmer-gallery-section {
		padding: clamp(24px, 4vw, 40px) var(--grimmer-container-padding);
	}

	.grimmer-gallery-section .product-images {
		max-width: 100%;
	}

	.grimmer-product-details,
	.grimmer-product-video-col {
		padding: clamp(24px, 4vw, 40px) 0;
	}

	.grimmer-single-product .single_add_to_cart_button,
	.grimmer-single-product .single_add_to_cart_button.button {
		width: 100%;
		text-align: center;
		padding: 14px 24px;
	}

	.grimmer-single-product .product-tabs-wrapper .wc-tabs li a,
	.grimmer-single-product .product-tabs-wrapper .tabs li a {
		padding: 12px 16px;
		font-size: 12px;
	}
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
	.grimmer-single-product {
		--grimmer-bg: #fff;
		--grimmer-bg-alt: #fff;
		--grimmer-bg-card: #fff;
		--grimmer-text: #000;
		--grimmer-text-muted: #333;
		--grimmer-white: #000;
	}

	.grimmer-product-video-col {
		display: none;
	}
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Space Mono", monospace;
	background: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Bebas Neue", cursive;
	color: var(--dark);
}

a {
	text-decoration: none;
}

p {
	font-family: "Zalando Sans", sans-serif;
}

:root {
	--red: #bb0018;
	--white: #ffffff;
	--dark: #191919;
	--black: #0a0a0a;
	--light-white: #c6c6c6;
	--text-light: #f8fafc;
	--text-muted: #cbd5e1;
}

.section-padding {
	padding: 70px 0;
}

.padding-second {
	padding: 120px 0;
}

img {
	max-width: 100%;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
}

a:hover {
	cursor: pointer;
}

a {
	transition: all 0.3s ease-out;
}

.border-bottom {
	border-bottom: 1px solid #9e9e9e24 !important;
}

/* =========================
    NAVBAR
========================= */

.custom-navbar {
	background: var(--dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	min-height: 67px;
	position: relative;
	z-index: 999;
}

.custom-navbar .container {
	position: relative;
}

/* =========================
    LEFT MENU
========================= */

.navbar-nav {
	gap: 28px;
}

.navbar-nav .nav-link {
	color: var(--white);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 13.5px;
	letter-spacing: 1.62px;
	padding: 0 !important;
	transition: 0.3s ease;
	font-family: "Space Mono";
}

.navbar-nav .nav-link:hover {
	color: #fff;
}

/* =========================
    CENTER LOGO
========================= */

.center-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
}

.center-logo img {
	width: 80px;
	height: auto;
	object-fit: contain;
}

/* =========================
    RIGHT ICONS
========================= */

.nav-icons {
	gap: 20px;
}

.nav-icons a {
	color: #ffffff;
	font-size: 16px;
	transition: 0.3s ease;
	font-weight: 300;
}

.nav-icons a:hover {
	color: #fff;
}

/* =========================
    TOGGLER
========================= */

.navbar-toggler {
	border: 0;
	padding: 0;
	box-shadow: none !important;
}

.navbar-toggler i {
	color: #fff;
	font-size: 20px;
}

/* =========================
    MOBILE
========================= */

@media (max-width: 991px) {
	.custom-navbar {
		padding: 14px 0;
	}

	.mobile-top {
		width: 100%;
	}

	.navbar-collapse {
		background: #111;
		margin-top: 18px;
		padding-top: 10px;
	}

	.navbar-nav {
		gap: 0;
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.navbar-nav .nav-link {
		padding: 14px 0 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		width: 100%;
	}

	/* REMOVE ABSOLUTE ON MOBILE */

	.center-logo {
		position: static;
		transform: unset;
	}

	.nav-icons {
		gap: 15px;
	}
}

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

.dark-banner {
	background: #000;

	position: relative;

	overflow: hidden;

	padding: 30px 0 50px;
}

span.tag-heading {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	line-height: 13.5px;
	letter-spacing: 2.25px;
	text-transform: uppercase;
}

.mini-text {
	color: var(--white);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	line-height: 13.5px;
	margin-bottom: 16px;
}

/* LEFT CONTENT */

.hero-content {
	position: relative;
	z-index: 2;
}

.top-tag {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 35px;
}

.top-tag span.line {
	width: 40px;
	height: 1px;
	background: var(--red);
	display: inline-block;
}

.mini-text {
	color: var(--white);
	font-size: 10px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	line-height: 13.5px;
	margin-bottom: 22px;
}

.hero-title {
	font-size: 115px;
	line-height: 105px;
	color: #f3f3f3;
	letter-spacing: 2.3px;
	font-weight: 400;
	text-transform: uppercase;
}

.hero-title span {
	color: var(--red);
}

.hero-para {
	color: var(--light-white);
	font-size: 18px;
	line-height: 28.8px;
	max-width: 650px;
	letter-spacing: 0px;
	margin-bottom: 42px;
	font-style: italic;
}

/* BUTTONS */

.hero-btns {
	display: flex;
	align-items: center;
	gap: 45px;
	flex-wrap: wrap;
}

.shop-btn {
	background: #ededed;
	color: #000;
	padding: 15px 36px;
	border: none;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	transition: 0.3s;
	font-family: "Space Mono";
}

.shop-btn:hover {
	background: #d40021;
	color: #fff;
}

.catalog-btn {
	color: white;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	transition: 0.3s;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 2px;
}

.catalog-btn:hover {
	color: #fff;
}

/* CENTER IMAGE */

.hero-image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.red-box {
	max-width: 340px;
	max-height: 560px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 65px;
	background: linear-gradient(167.53deg, #75000f 0%, #0d0d0d 99.98%);
	right: 60px;
}

.hero-image {
	position: relative;
	z-index: 2;
	max-height: 750px;
	object-fit: cover;
	top: 60px;
	z-index: 1;
}

.side-text {
	position: absolute;
	left: 23%;
	top: 85px;
	transform: rotate(90deg);
	color: #ffffff59;
	font-size: 15px;
	letter-spacing: 7px;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Bebas Neue";
}

/* RIGHT SIDE */

.right-info {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	height: 100%;
	position: relative;
	z-index: 2;
	margin-top: 40px;
}

.top-box {
	text-align: right;
}

.small-line {
	width: 155px;
	height: 6px;
	background: #00000000;
	margin-left: auto;
	margin-bottom: 25px;
	border: 1px solid #f2ede826;
	backdrop-filter: blur(4px);
	position: relative;
	left: -24px;
}

.stat {
	color: #ffffff;
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 1.62px;
	line-height: 13.5px;
	text-transform: uppercase;
	margin-bottom: 18px;
	font-family: "Space Mono";
}

.quality-text {
	color: #c6c6c6;
	font-size: 12px;
	font-weight: 400;
	line-height: 16.25px;
	font-style: italic;
	font-family: "Zalando Sans";
	margin-top: 30px;
	max-width: 155px;
	width: 100%;
}

.sizes {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: end;
	position: relative;
	top: -70px;
}

.size-box {
	width: 32px;
	height: 32px;
	display: flex;
	border: 1px solid #f2ede826;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 9px;
	letter-spacing: 0;
	line-height: 13.5px;
	text-transform: uppercase;
	font-family: "Space Mono";
}

/* EXTRA LINES */

.floating-line {
	position: absolute;
	width: 40px;
	height: 1px;
	background: #d40021;
	left: 45%;
	top: 50%;
}

.limited {
	position: absolute;
	bottom: 15%;
	right: 23.5%;
	color: #9f9f9f;
	font-size: 9px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: "Space Mono";
	line-height: 13.5px;
	letter-spacing: 1.35px;
}

/* ==========================
            RESPONSIVE
        =========================== */
@media (max-width: 1400px) {
	.limited {
		right: 16%;
	}

	.side-text {
		left: 10%;
	}

	.hero-image {
		left: -10px;
	}

	.floating-line {
		left: 43%;
	}
}

@media (max-width: 1200px) {
	.hero-title {
		font-size: 90px;
	}

	.limited {
		right: 12%;
	}

	.hero-para {
		font-size: 19px;
	}

	.red-box {
		max-width: 300px;
		max-height: 560px;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 65px;
		background: linear-gradient(167.53deg, #75000f 0%, #0d0d0d 99.98%);
		right: 25px;
	}

	.hero-image {
		max-height: 620px;
	}
}

@media (max-width: 991px) {
	.dark-banner {
		padding: 70px 0 40px;
	}

	.hero-content {
		text-align: center;
		margin-bottom: 60px;
	}

	.hero-title {
		font-size: 100px;
	}

	.red-box {
		max-width: 330px;
		max-height: 560px;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 65px;
		background: linear-gradient(167.53deg, #75000f 0%, #0d0d0d 99.98%);
		left: 25%;
	}

	.hero-image {
		left: 40px;
	}

	.hero-image {
		left: 60px;
	}

	.side-text {
		left: 23%;
		display: block;
	}

	.dark-banner .top-tag {
		justify-content: center !important;
	}

	.right-info {
		align-items: center;
		gap: 50px;
		margin-top: 60px;
	}

	.small-line {
		margin-inline: auto;
	}

	.sizes {
		left: 65px;
	}

	.limited {
		right: 30%;
	}

	/* 
  .floating-line,
  .limited,
  .side-text {
    display: none;
  } */
}

@media (max-width: 767px) {
	.limited {
		right: 22%;
		bottom: 100px;
	}
}

@media (max-width: 576px) {
	.hero-para {
		font-size: 15px;
		line-height: 1.8;
	}

	.shop-btn {
		width: 100%;
	}

	.hero-btns {
		gap: 25px;
	}

	.floating-line {
		left: 43%;
		top: 55%;
	}

	.limited {
		right: 15%;
		bottom: 110px;
	}

	.hero-image {
		max-height: 470px;
	}

	.sizes {
		left: 0;
		flex-direction: row-reverse;
	}
}

@media (max-width: 520px) {
	.floating-line {
		left: 43%;
		top: 60%;
	}

	.limited {
		right: 9%;
		bottom: 110px;
	}

	.red-box {
		left: 10%;
	}

	.hero-image {
		left: 0;
	}

	.side-text {
		left: 5%;
		display: block;
	}
}

@media (max-width: 420px) {
	.sizes {
		gap: 6px;

		top: -70px;
	}

	.floating-line {
		left: 43%;
		top: 66%;
	}

	.limited {
		right: 9%;
		bottom: 75px;
	}
}

/* =========================
            MARQUEE
        ========================== */

.top-marquee {
	width: 100%;
	background: #111;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	padding: 20px 0;
	white-space: nowrap;
	position: relative;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 22s linear infinite;
}

.marquee-track:hover {
	animation-play-state: paused;
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-right: 80px;
	flex-shrink: 0;
}

.dot {
	width: 7px;
	height: 7px;
	background: #d6001c;
	border-radius: 50%;
	flex-shrink: 0;
}

.marquee-text {
	color: #ffffff;
	font-size: 9px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 13.5px;
	font-weight: 400;
	font-family: "Space Mono";
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* =========================
            MOBILE
        ========================== */

@media (max-width: 768px) {
	.top-marquee {
		padding: 12px 0;
	}

	.marquee-item {
		gap: 18px;
		padding-right: 50px;
	}

	.marquee-text {
		font-size: 9px;
		letter-spacing: 3px;
	}

	.dot {
		width: 6px;
		height: 6px;
	}
}

/* =========================
            MANIFESTO SECTION
        ========================== */

.manifesto-section {
	background: #000;
	padding: 120px 0 80px;
	position: relative;
}

/* LEFT SIDE */

.manifesto-left {
	padding-right: 70px;
}

.small-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.small-heading span.line {
	width: 18px;
	height: 2px;
	background: #d0001c;
	display: inline-block;
}

.small-heading p {
	margin: 0;
	color: #8b8b8b;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.manifesto-title {
	font-size: 90px;
	text-transform: uppercase;
	color: #f3f3f3;
	font-weight: 400;
	line-height: 78.85px;
	margin-bottom: 45px;
	letter-spacing: 4.5px;
}

.manifesto-description {
	color: #a9a9a9;
	font-size: 21px;
	line-height: 1.9;
	max-width: 520px;
	font-family: sans-serif;
	font-style: italic;
}

/* RIGHT SIDE */

.manifesto-right {
	padding-left: 40px;
}

.right-top-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.right-top-heading span.line {
	width: 20px;
	height: 1px;
	background: var(--red);
	display: inline-block;
}

.right-top-heading p {
	margin: 0;
	color: #a09c98;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: "Space Mono";
}

.manifesto-list {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-item {
	display: flex;
	gap: 24px;
	padding: 32px 0;
	border-top: 1px solid #9e9e9e24;
	border-bottom: 1px solid #9e9e9e24;
}

.manifesto-number {
	color: var(--red);
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 700;
	margin-top: 2px;
}

.manifesto-text {
	color: #c6c6c6;
	font-weight: 400;
	font-size: 14px;
	line-height: 17.88px;
	letter-spacing: 0px;
	margin-top: 20px;
}

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

@media (max-width: 1199px) {
	.manifesto-title {
		font-size: 78px;
	}

	.manifesto-description {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.manifesto-section {
		padding: 90px 0;
	}

	.manifesto-left {
		padding-right: 0;
		margin-bottom: 70px;
	}

	.manifesto-right {
		padding-left: 0;
	}

	.manifesto-title {
		font-size: 70px;
	}
}

@media (max-width: 576px) {
	.manifesto-section {
		padding: 70px 0;
	}

	.manifesto-title {
		font-size: 48px;
		line-height: 1;
	}

	.manifesto-description {
		font-size: 15px;
		line-height: 1.8;
	}

	.manifesto-item {
		gap: 18px;
		padding: 24px 0;
	}

	.manifesto-text {
		font-size: 13px;
		line-height: 1.7;
	}

	.small-heading p,
	.right-top-heading p {
		letter-spacing: 2px;
		font-size: 9px;
	}
}

/* =========================
            COLLECTION SECTION
        ========================== */

.collection-section {
	background: #000;
	position: relative;
	padding: 20px 0;
}

.top-border {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.05);
	margin-bottom: 55px;
}

/* TOP CONTENT */

.collection-header {
	margin-bottom: 65px;
}

.small-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.small-label span.line {
	width: 18px;
	height: 2px;
	background: #d1001f;
	display: inline-block;
}

.small-label p {
	margin: 0;
	color: #8f8f8f;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.collection-title {
	font-size: 90px;
	line-height: 0.9;
	color: #f5f5f5;
	text-transform: uppercase;
	font-weight: 700;
}

.view-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 15px;
	text-transform: uppercase;
	border-bottom: 1px solid rgb(255 255 255);
	padding-bottom: 4px;
	transition: 0.3s;
}

.view-link:hover {
	color: #fff;
	border-color: #fff;
}

/* PRODUCT CARD */

.product-card {
	margin-bottom: 26px;
	position: relative;
}

.product-image-box {
	position: relative;
}

.product-image-box::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 209px;
	width: 100%;
	content: "";
	background: #2b0006;
	margin: auto;
}



/* .product-card:hover .product-image {
  transform: scale(1.05);
} */

.featured-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #d1001f;
	color: #fff;
	font-size: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 5px 10px;
	z-index: 2;
}

/* PRODUCT CONTENT */
.product-content {
	background: #0e0e0e;
	padding: 20px;
	transition: 0.5s ease;
}

.product-card:hover .product-content {
	background: #bb0018;
}

.product-title {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.9px;
	line-height: 13.5px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 700;
	font-family: "Space Mono" !important;
}

.product-desc {
	font-family: "Space Mono";
	color: #ffffff;
	font-size: 9px;
	font-weight: 400;
	line-height: 14.5px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	margin-bottom: 5px;
	max-width: 200px;
}

.product-price {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-family: "Bebas Neue";
	letter-spacing: 0;
}

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

@media (max-width: 1199px) {
	.collection-title {
		font-size: 72px;
	}

	.product-image-box {
		height: 280px;
	}
}

@media (max-width: 991px) {
	.collection-section {
		padding: 90px 0;
	}

	.collection-header {
		margin-bottom: 50px;
	}

	.header-right {
		margin-top: 25px;
	}

	.collection-title {
		font-size: 60px;
	}
}

@media (max-width: 576px) {
	.collection-section {
		padding: 70px 0;
	}

	.collection-title {
		line-height: 1;
	}

	.product-image-box {
		height: 260px;
	}
}

/* founder journey */
a.custom-btn {
	padding: 15px 20px;
	text-decoration: none;
	color: white;
	font-size: 9px;
	font-weight: 400;
	line-height: 13.5px;
	letter-spacing: 2px;
	display: inline-block;
}

.journey-img {
	height: auto;
	border-radius: 50%;
	margin: auto;
	text-align: center;
}

.journey-img img {
	border-radius: 50%;
	background-size: contain;
	height: 450px;
	width: 450px;
	margin: auto;
}

.quote-note {
	position: absolute;
	text-align: end;
	top: 0;
	right: 60px;
}

.quote-note h4 {
	font-size: 10px;
	font-weight: 700;
	line-height: 15px;
	letter-spacing: 1px;
}

.quote-note p {
	font-size: 8px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0.8px;
}

.look-info-block {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: black;
	width: 140px;
	padding: 2px;
}

.look-info-block h4 {
	color: var(--red);
	font-size: 10px;
	font-weight: 400;
	line-height: 10.5px;
	letter-spacing: 0.9px;
}

.look-info-block p {
	font-size: 10px;
	font-weight: 700;
	line-height: 15px;
	letter-spacing: 1px;
	font-family: "Space Mono";
	margin: 0px;
}

/*  */

.counter-box {
	display: flex;
	align-items: center;
	gap: 45px;
}

h3.counter-number {
	font-size: 48px;
	color: white;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: 0;
}

p.counter-label {
	color: #c6c6c6;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	font-family: "Space Mono";
}

.img-badge img {
	position: absolute;
	top: 25%;
	bottom: 0;
	margin: auto;
	right: 60px;
}

/* upcoming collection */
.upcoming-title {
	font-size: 102.5px;
	line-height: 80px;
	letter-spacing: 5px;
}

.specil-keyword {
	font-family: "Cormorant Garamond", serif;
	text-transform: capitalize;
	font-weight: 400;
	letter-spacing: 5.12px;
	font-size: 70px;
	color: transparent;
	/* inside text transparent */
	-webkit-text-stroke: 1px #ffffff;
}

p.upcoming-para {
	color: #a09c98;
	font-size: 14px;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 2.5px;
	font-family: "Space Mono";
}

.incoming-box.text-center {
	padding: 32px 16px;
	background: #202020;
	border: 1px solid #0a0a0a1a;
}

.upcoming-wrapper {
	margin-top: 60px;
}

.notify-form {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 60px;
}

/* INPUT */

.notify-input {
	width: 300px;
	height: 58px;
	background: #ffffff;
	border: none;
	border-style: solid;
	border-color: #0a0a0a1a;
	outline: none;
	padding: 0 22px;
	color: #000;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Space Mono";
}

.notify-input::placeholder {
	color: #111;
	opacity: 1;
}

/* BUTTON */

.notify-btn {
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	transition: 0.3s ease;
	position: relative;
	padding: 0;
	font-family: "Space Mono";
}

.notify-btn::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background: #fff;
	transition: 0.4s ease;
}

.notify-btn:hover {
	color: #fff;
}

.notify-btn:hover::after {
	width: 100%;
}

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

@media (max-width: 768px) {
	.notify-form {
		gap: 20px;
	}

	.notify-input {
		width: 100%;
		height: 54px;
		font-size: 11px;
		letter-spacing: 2px;
	}

	.notify-btn {
		font-size: 11px;
		letter-spacing: 3px;
	}
}

p.community-para {
	font-family: "cormorant garamond", serif;
	font-size: 20px;
	font-weight: 300;
	color: #ffffff;
	line-height: 28px;
	letter-spacing: 0;
}

.gallery-card {
	position: relative;
	overflow: hidden;
	background: #080808;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.7s ease;
	opacity: 0.85;
}

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

.dark-footer {
	background: #000;
	padding-top: 30px;
	position: relative;
}

.dark-footer .container {
	max-width: 1380px;
}

/* LOGO AREA */

.footer-desc {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	font-style: italic;
	font-family: "Zalando Sans";
}

/* FOOTER TITLE */

.footer-title {
	color: #ffffff;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Space Mono";
}

/* FOOTER LINKS */

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

.footer-links li {
	margin-bottom: 18px;
}

.footer-links li a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 16.5px;
	letter-spacing: 0px;
	text-decoration: none;
	transition: 0.3s ease;
	font-family: "Space Mono";
	position: relative;
}

.footer-links li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: #fff;
	transition: 0.4s ease;
}

.footer-links li a:hover {
	color: #fff;
}

.footer-links li a:hover::after {
	width: 100%;
}

/* FOOTER BOTTOM */

.footer-bottom {
	border-top: 1px solid rgb(255 255 255);
	margin-top: 25px;
	padding: 20px 0;
}

.copyright-text {
	color: #a09c98;
	font-size: 10px;
	font-weight: 400;
	line-height: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
	font-family: "Space Mono";
}

/* SOCIAL */

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border: 1px solid rgb(255 255 255);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	transition: 0.4s ease;
}

.footer-social a:hover {
	background: #fff;
	color: #000;
	transform: translateY(-3px);
}

/* BOTTOM LINKS */

.bottom-links {
	display: flex;
	justify-content: end;
	gap: 35px;
	flex-wrap: wrap;
}

.bottom-links a {
	color: #a09c98;
	text-decoration: none;
	font-size: 10px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	transition: 0.3s ease;
	font-family: "Space Mono";
}

.bottom-links a:hover {
	color: #fff;
}

.footer-column {
	padding-left: 80px;
}

/* =========================
            RESPONSIVE
        ========================== */
/* @media (max-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1550px !important;
  }
} */
@media (max-width: 991px) {
	br.d-md-n {
		display: none;
	}

	.hero-btns {
		justify-content: center;
	}

	.dark-footer {
		padding-top: 70px;
	}

	.footer-column {
		padding-left: 20px;
		margin-top: 20px;
	}

	.footer-bottom {
		margin-top: 40px;
	}

	.footer-social {
		margin: 25px 0;
	}

	.bottom-links {
		justify-content: center;
	}

	.copyright-text {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.quote-note {
		position: absolute;
		text-align: end;
		top: 0;
		right: 0;
	}

	.manifesto-left {
		padding-right: 0;
		margin-bottom: 35px;
	}
}

@media (max-width: 576px) {
	.dark-footer {
		padding-top: 60px;
	}

	.footer-logo {
		width: 220px;
	}

	.footer-title {
		font-size: 11px;
		letter-spacing: 3px;
		margin-bottom: 20px;
	}

	.footer-links li {
		margin-bottom: 14px;
	}

	.footer-bottom {
		padding: 24px 0;
	}

	.copyright-text {
		font-size: 9px;
		letter-spacing: 2px;
		line-height: 1.8;
	}

	.bottom-links {
		gap: 18px;
	}

	.bottom-links a {
		font-size: 9px;
		letter-spacing: 2px;
	}
}

@media (max-width: 520px) {
	.journey-img img {
		height: 300px;
		width: 300px;
	}
}


.product-image {
	width: 100%;
	height: 500px !important;
	object-fit: cover;
	object-position: top !important;
	transition: 0.5s ease;
	position: relative;
	z-index: 1;
}