/* Modern Feature Cards Styling - Black & White Theme */

.store-feature.section {
    padding: 60px 0;
    background: #ffffff;
}

.feature-item-col {
    padding: 15px;
    margin-bottom: 20px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    will-change: transform;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: #333333;
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.15);
}

.feature-content {
    width: 100%;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h5 {
    color: #333333;
}

.feature-content .sub-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    display: block;
    font-weight: 400;
}

/* All cards use same black color scheme */
.feature-item-col:nth-child(1) .feature-icon-wrapper,
.feature-item-col:nth-child(2) .feature-icon-wrapper,
.feature-item-col:nth-child(3) .feature-icon-wrapper,
.feature-item-col:nth-child(4) .feature-icon-wrapper {
    background: #000000;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .feature-item-col {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .store-feature.section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper i {
        font-size: 28px;
    }
    
    .feature-content h5 {
        font-size: 16px;
    }
    
    .feature-content .sub-text {
        font-size: 13px;
    }
}

/* Animation on scroll (optional - add animation library for better effect) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item-col:nth-child(1) .feature-card {
    animation-delay: 0.1s;
}

.feature-item-col:nth-child(2) .feature-card {
    animation-delay: 0.2s;
}

.feature-item-col:nth-child(3) .feature-card {
    animation-delay: 0.3s;
}

.feature-item-col:nth-child(4) .feature-card {
    animation-delay: 0.4s;
}

/* Enhanced Hover Effects for Homepage Links */

/* Navigation Menu Links Hover Effects */
.site-nav.medium li.lvl1 > a {
    position: relative;
    transition: all 0.3s ease;
}

.site-nav.medium li.lvl1 > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.medium li.lvl1 > a:hover::after,
.site-nav.medium li.lvl1.active > a::after {
    transform: translateX(-50%) scaleX(1);
}

.site-nav.medium li.lvl1 > a:hover {
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Submenu Links Hover */
.site-nav .lvl-2:hover a {
    color: #000 !important;
    padding-left: 8px;
    transition: all 0.3s ease;
}

/* Hero Section Button Hover Effect */
.slideshow a.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow a.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slideshow a.btn:hover::before {
    width: 300px;
    height: 300px;
}

.slideshow a.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
}

.slideshow a.btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Homepage hero typography and button styling */
.vogue-hero-title {
	font-size: clamp(48px, 8vw, 96px);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
	margin-bottom: 16px;
	font-family: 'Gabriel Sans', sans-serif;
	line-height: 0.95;
}

.vogue-hero-subtitle {
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 300;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
	line-height: 1.5;
	max-width: 480px;
	display: block;
	opacity: 1;
	font-family: 'Gabriel Sans', sans-serif;
	margin-top: 8px;
	margin-bottom: 32px;
}

.vogue-hero-copy {
	display: inline-block;
	max-width: 520px;
	text-align: left;
	padding: 0;
	margin-left: 7%;
}

.home-slideshow .slideshow__overlay.classic.top:before {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0) 75%);
	opacity: 1;
}

.vogue-hero-cta {
	margin-top: 0;
}

.vogue-hero-btn {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	color: #ffffff;
	padding: 14px 40px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
	text-transform: uppercase;
	animation: heroButtonPulse 2.6s ease-in-out infinite;
}

.vogue-hero-bottom-cta {
	position: absolute;
	left: 50%;
	bottom: 11%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 4;
	pointer-events: auto;
}

@keyframes heroButtonPulse {
	0%, 100% {
		transform: translateY(0);
		filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
	}
	50% {
		transform: translateY(-3px);
		filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.8));
	}
}

@media (max-width: 991px) {
	.vogue-hero-copy {
		margin-left: 6%;
	}
}

@media (max-width: 767px) {
	.vogue-hero-title {
		font-size: clamp(32px, 7vw, 40px);
		letter-spacing: -0.02em;
		margin-bottom: 12px;
	}

	.vogue-hero-subtitle {
		font-size: 13px;
		max-width: 100%;
		margin-bottom: 24px;
	}

	.vogue-hero-copy {
		max-width: 100%;
		margin: 0 18px;
		text-align: left;
	}

	.vogue-hero-btn {
		padding: 12px 32px;
		font-size: 11px;
	}

	.vogue-hero-bottom-cta {
		bottom: 9%;
	}
}

@media (max-width: 480px) {
	.vogue-hero-title {
		font-size: 28px;
	}
}

/* Subtle flying stars overlay on hero */
.hero-stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.4;
	background-image:
		radial-gradient(circle, rgba(255,255,255,0.95) 0, rgba(255,255,255,0.95) 0.35px, transparent 0.7px),
		radial-gradient(circle, rgba(255,255,255,0.7) 0, rgba(255,255,255,0.7) 0.25px, transparent 0.55px);
	background-size: 70px 70px, 130px 130px;
	background-position: 0 0, 40px 70px;
	animation: heroStarsDrift 26s linear infinite;
}

@keyframes heroStarsDrift {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-60px, -80px, 0); }
}

@media (max-width: 767px) {
	.hero-stars {
		opacity: 0.35;
		background-size: 75px 75px, 140px 140px;
	}
}

/* Logo Hover Effect */
.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a:hover img {
    filter: brightness(1.1);
}

/* Cart Icon Hover */
.site-header__cart {
    transition: all 0.3s ease;
    display: inline-block;
}

.site-header__cart:hover {
    transform: scale(1.1);
    color: #000 !important;
}

.site-header__cart:hover .site-header__cart-count {
    background: #000;
    transform: scale(1.1);
}

/* Search Button Hover */
.search-trigger {
    transition: all 0.3s ease;
}

.search-trigger:hover {
    transform: scale(1.1) rotate(90deg);
    color: #000;
}

/* Product Links Hover Effects */
.product-details .product-name a {
    position: relative;
    transition: all 0.3s ease;
}

.product-details .product-name a:hover {
    color: #000 !important;
    text-decoration: none;
}

.product-details .product-name a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.product-details .product-name a:hover::after {
    width: 100%;
}

/* Add to Cart Button Hover */
.btn-addto-cart {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.btn-addto-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-addto-cart:hover::before {
    left: 100%;
}

.btn-addto-cart:hover {
    background-color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Hide Product Grid Icon Buttons (Quick View, Wishlist, Compare) */
.button-set {
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -1 !important;
}

/* ===== SHOP GRID STYLES ===== */

/* Hide badges, reviews, swatches, old prices */
.product-labels,
.product-review,
.product-details .swatches,
.product-price .old-price {
    display: none !important;
}

/* Hide product description in quick view modal */
.product-single__description {
    display: none !important;
}

/* ===== COLOR SWATCHES - CLEAN COLOR BLOCKS ===== */
/* Replace product images with solid color swatches */

/* Base swatch styling - Subtle Design */
.swatch-element.color label.swatchLbl {
    background-image: none !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset !important;
    opacity: 0.8 !important;
}

.swatch-element.color label.swatchLbl:hover {
    transform: scale(1.08) !important;
    opacity: 1 !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset, 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.swatch-element.color input:checked + label.swatchLbl {
    opacity: 1 !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #333 !important;
    transform: scale(1.05) !important;
}

/* Color definitions - Solid colors */
.swatch-element.color.red label.swatchLbl {
    background-color: #e74c3c !important;
}

.swatch-element.color.blue label.swatchLbl {
    background-color: #3498db !important;
}

.swatch-element.color.green label.swatchLbl {
    background-color: #2ecc71 !important;
}

.swatch-element.color.gray label.swatchLbl {
    background-color: #95a5a6 !important;
}

.swatch-element.color.black label.swatchLbl {
    background-color: #2c3e50 !important;
}

.swatch-element.color.white label.swatchLbl {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset !important;
}

.swatch-element.color.white label.swatchLbl:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25) inset, 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.swatch-element.color.pink label.swatchLbl {
    background-color: #ff6b9d !important;
}

.swatch-element.color.yellow label.swatchLbl {
    background-color: #f1c40f !important;
}

.swatch-element.color.orange label.swatchLbl {
    background-color: #e67e22 !important;
}

.swatch-element.color.purple label.swatchLbl {
    background-color: #9b59b6 !important;
}

.swatch-element.color.navy label.swatchLbl {
    background-color: #34495e !important;
}

.swatch-element.color.brown label.swatchLbl {
    background-color: #8b4513 !important;
}

.swatch-element.color.beige label.swatchLbl {
    background-color: #f5f5dc !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset !important;
}

.swatch-element.color.beige label.swatchLbl:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset, 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.swatch-element.color.maroon label.swatchLbl {
    background-color: #800000 !important;
}

.swatch-element.color.teal label.swatchLbl {
    background-color: #008080 !important;
}

.swatch-element.color.lime label.swatchLbl {
    background-color: #00ff00 !important;
}

.swatch-element.color.cyan label.swatchLbl {
    background-color: #00ffff !important;
}

.swatch-element.color.magenta label.swatchLbl {
    background-color: #ff00ff !important;
}

/* Ensure swatches are aligned properly */
.product-form__item .swatch-element {
    display: inline-block !important;
    margin: 0 6px 6px 0 !important;
}

/* Color swatches - extra subtle spacing */
.product-form__item .swatch-element.color {
    margin: 0 10px 10px 0 !important;
}

/* Color label text styling */
.product-form__item label.header {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 12px !important;
    display: block !important;
    text-transform: uppercase !important;
}

/* Selected variant display */
.product-form__item label.header .slVariant {
    font-weight: 700 !important;
    color: #000 !important;
    text-transform: uppercase !important;
}

/* Size swatch styling - Subtle Design */
.swatch-element:not(.color) label.swatchLbl {
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666 !important;
    background-color: #fff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 45px !important;
    text-align: center !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.swatch-element:not(.color) label.swatchLbl:hover {
    border-color: #888 !important;
    color: #333 !important;
}

.swatch-element:not(.color) input:checked + label.swatchLbl {
    border-color: #333 !important;
    background-color: #fafafa !important;
    color: #000 !important;
    font-weight: 500 !important;
    box-shadow: 0 0 0 1px #333 inset !important;
}

/* Clean swatch container */
.swatch.clearfix {
    margin-bottom: 20px !important;
}

/* Hide any text inside color swatches */
.swatch-element.color label.swatchLbl::before,
.swatch-element.color label.swatchLbl::after {
    content: none !important;
}

/* Ensure color swatches don't show text */
.swatch-element.color label.swatchLbl {
    text-indent: -9999px !important;
    overflow: hidden !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .swatch-element.color label.swatchLbl {
        width: 35px !important;
        height: 35px !important;
    }
    
    .product-form__item .swatch-element {
        margin: 0 6px 6px 0 !important;
    }
}

/* Smooth animations */
@keyframes colorPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.swatch-element.color input:checked + label.swatchLbl {
    animation: colorPulse 0.3s ease-in-out !important;
}

/* ===== SMOOTH MODAL ANIMATIONS ===== */
/* Smooth fade effect without zoom */

/* Smooth fade for modal */
.modal.fade {
    -webkit-transition: opacity 0.3s ease-in-out !important;
    transition: opacity 0.3s ease-in-out !important;
}

.modal.fade .modal-dialog {
    -webkit-transform: none !important;
    -webkit-transition: opacity 0.3s ease-in-out !important;
    transform: none !important;
    transition: opacity 0.3s ease-in-out !important;
}

.modal.show .modal-dialog {
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Quick view modal smooth fade */
#content_quickview.modal.fade {
    opacity: 0;
    transition: opacity 0.35s ease-in-out !important;
}

#content_quickview.modal.show {
    opacity: 1;
}

#content_quickview .modal-dialog {
    transform: none !important;
    transition: opacity 0.35s ease-in-out !important;
    animation: none !important;
}

#content_quickview .modal-content {
    transform: none !important;
    transition: opacity 0.25s ease-in-out !important;
    animation: none !important;
}

/* Smooth backdrop fade */
.modal-backdrop.fade {
    transition: opacity 0.3s ease-in-out !important;
    opacity: 0 !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

/* Remove product image zoom effect in modal */
#content_quickview .product-details-img img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

#content_quickview .zoompro {
    pointer-events: none !important;
}

/* Disable elevateZoom functionality */
.zoomContainer {
    display: none !important;
}

.zoomWindowContainer {
    display: none !important;
}

.zoomWindow {
    display: none !important;
}

/* Remove any scale/transform effects - keep fade only */
.modal .modal-dialog,
.modal .modal-content,
.modal .modal-body {
    -webkit-transform: none !important;
    transform: none !important;
}

/* Smooth content appearance */
#content_quickview.modal.show .modal-content {
    animation: smoothFadeIn 0.3s ease-in-out !important;
}

@keyframes smoothFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hide Add to Cart button in grid */
.btn-addto-cart {
    display: none !important;
}

/* Product image clickable effect */
.product-image > a {
    cursor: pointer !important;
}

.product-image > a img {
    transition: none; /* Remove transition effect */
}

.product-image > a:hover img {
    transform: none; /* Remove zoom effect */
}

/* ===== COMPLETELY REMOVE HOVER/SECONDARY IMAGES ===== */
/* Hide all hover images - only show primary image */
.product-image .hover,
.product-image img.hover,
img.hover {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Ensure primary image stays visible always */
.product-image .primary,
.product-image img.primary {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent any image swap on interaction */
.product-image:hover .primary,
.product-image:active .primary,
.product-image:focus .primary {
    opacity: 1 !important;
    display: block !important;
}

.product-image:hover .hover,
.product-image:active .hover,
.product-image:focus .hover {
    display: none !important;
    opacity: 0 !important;
}

/* ===== ENHANCED CART DISPLAY STYLES ===== */

/* Mini cart container */
#header-cart .mini-products-list {
    padding: 0 !important;
}

/* Individual cart item */
#header-cart .mini-products-list .item {
    padding: 12px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: background-color 0.2s ease !important;
    position: relative !important;
}

#header-cart .mini-products-list .item:hover {
    background-color: #f9f9f9 !important;
}

#header-cart .mini-products-list .item:last-child {
    border-bottom: none !important;
}

/* Product image in cart */
#header-cart .product-image {
    flex-shrink: 0 !important;
    width: 65px !important;
    height: 65px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f5f5f5 !important;
}

#header-cart .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Product details section */
#header-cart .product-details {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    position: relative !important;
}

/* Product info row - name and price horizontally */
#header-cart .product-info-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

/* Product name in cart */
#header-cart .product-details .pName {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

#header-cart .product-details .pName:hover {
    color: #000 !important;
}

/* Price in info row */
#header-cart .product-info-row .product-price {
    flex-shrink: 0 !important;
}

#header-cart .product-info-row .product-price .money {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

/* Remove button */
#header-cart .product-details .remove {
    position: absolute !important;
    right: 0 !important;
    top: -4px !important;
    color: #999 !important;
    font-size: 14px !important;
    transition: color 0.2s ease !important;
    z-index: 10 !important;
}

#header-cart .product-details .remove:hover {
    color: #e74c3c !important;
}

/* Variant info */
#header-cart .variant-cart {
    font-size: 11px !important;
    color: #666 !important;
    margin: 2px 0 !important;
}

/* Quantity field - compact design */
#header-cart .qtyField {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #f5f5f5 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    align-self: flex-start !important;
    margin-top: 2px !important;
}

#header-cart .qtyField .qty-label {
    color: #666 !important;
    font-weight: 500 !important;
}

#header-cart .qtyField .qty-value {
    color: #000 !important;
    font-weight: 700 !important;
}

/* Cart total section */
#header-cart .total {
    padding: 16px 12px !important;
    background: #f9f9f9 !important;
    border-top: 2px solid #e0e0e0 !important;
}

#header-cart .total .label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

#header-cart .total .money {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

/* Price display in cart */
.cart__meta-text {
    color: #666;
    font-size: 13px;
    margin-top: 5px;
}

/* Make sure prices are visible and well-formatted */
.product-price .money,
.cart__price .money {
    font-weight: 500;
    color: #000;
}

/* Mobile price display */
@media (max-width: 767px) {
    .cart__meta-text {
        font-size: 12px;
        display: block !important;
    }
}

/* Mini cart price styling */
#header-cart .product-price .money {
    font-size: 13px;
    font-weight: 600;
}

#header-cart .total .money {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* ===== PRODUCT GRID STABILITY FIX ===== */
/* Ensures product grid maintains consistent layout when modal opens/closes */

.grid-products .item .product-image,
#product-grid .item .product-image {
    position: relative !important;
    overflow: hidden !important;
    background: #f8f8f8 !important;
    width: 100% !important;
    padding-bottom: 133.33% !important; /* Fixed 4:3 aspect ratio */
    height: 0 !important;
    border-radius: 16px !important; /* Rounded corners - Shein style */
}

.grid-products .item .product-image > a,
#product-grid .item .product-image > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.grid-products .item .product-image img,
#product-grid .item .product-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Ensure grid items have consistent height - Shein Style */
.grid-products .item,
#product-grid .item {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
}

.grid-products .item .product-details,
#product-grid .item .product-details {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100px !important;
    text-align: center !important;
    align-items: center !important;
}

/* Enhanced aesthetic product text styling */
.grid-products .item .product-name a,
#product-grid .item .product-name a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
    line-height: 1.6 !important;
    letter-spacing: 0.3px !important;
}

.grid-products .item .product-price,
#product-grid .item .product-price {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #000 !important;
    letter-spacing: 0.5px !important;
}

.grid-products .item .product-price .old-price,
#product-grid .item .product-price .old-price {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #999 !important;
}

/* Spacing enhancements */
.grid-products .item .product-details,
#product-grid .item .product-details {
    padding: 8px 8px 12px !important;
}

.grid-products .item .product-name,
#product-grid .item .product-name {
    margin-bottom: 6px !important;
    min-height: 44px !important;
}

.grid-products .item .product-price,
#product-grid .item .product-price {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
}

#shipping-calculator {
	display: none !important;
}

/* ===== HOMEPAGE CATEGORY HERO SECTION ===== */

.category-hero-section {
	padding: 60px 0 40px;
	background: #ffffff;
}

.category-hero-section .section-header h2 {
	font-size: 26px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 6px;
}

.category-hero-section .section-header p {
	font-size: 14px;
	color: #666666;
	margin-bottom: 30px;
}

.category-hero-row {
	align-items: stretch;
}

.category-hero-card {
	display: block;
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	height: 100%;
	min-height: 380px;
	text-decoration: none !important;
	color: inherit;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
	transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.category-hero-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.category-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
	transition: transform 0.8s ease-out;
}

.category-hero-card:hover .category-hero-image {
	transform: scale(1.08);
}

.category-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.65) 100%);
	opacity: 0.96;
	transition: background 0.4s ease;
}

.category-hero-card:hover .category-hero-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.category-hero-content {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	text-align: center;
	color: #ffffff;
	padding: 0 18px;
}

.category-hero-content .category-label {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.category-hero-content .category-cta {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.75);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.category-hero-card:hover .category-cta {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
}

@media (max-width: 991px) {
	.category-hero-section {
		padding: 40px 0 24px;
	}
	.category-hero-card {
		min-height: 260px;
		margin-bottom: 10px;
	}
}

@media (max-width: 575px) {
	.category-hero-content {
		bottom: 18px;
	}
	.category-hero-content .category-label {
		padding: 6px 18px;
		font-size: 11px;
	}
	.category-hero-content .category-cta {
		padding: 8px 22px;
		font-size: 11px;
	}
}
