/* --- Base Styles --- */
.reh-shop-container-2828 {
    --bg-dark: #1a1a1a;
    --bg-panel: #2a2a2a;
    --text-main: #e0e0e0;
    --text-muted: #8a8a8a;
    --accent-gold: #dca54a;
    --border-color: rgba(220, 165, 74, 0.15);
    --border-hover: rgba(220, 165, 74, 0.5);
    --glass-bg: rgba(42, 42, 42, 0.7);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
}

/* --- Hero Section --- */
.reh-hero-section-2828 {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reh-hero-video-wrapper-2828 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.reh-hero-video-wrapper-2828 iframe,
.reh-hero-video-wrapper-2828 video {
	width: 100vw;
	height: 56.25vw; /* 16:9 aspect ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 aspect ratio */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.reh-hero-carousel-2828 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.reh-hero-carousel-2828 .swiper-slide {
	background-size: cover;
	background-position: center;
}

.reh-hero-overlay-2828 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(20, 16, 4, 0.6), rgba(10, 10, 10, 0.9));
	z-index: 1;
}

.reh-hero-content-2828 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.reh-hero-title-2828 {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.reh-hero-subtitle-2828 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.reh-hero-search-2828 {
	max-width: 600px;
	margin: 0 auto;
}

.reh-hero-search-2828 .dgwt-wcas-search-wrapp {
	max-width: 100%;
}

.reh-hero-search-2828 form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.reh-hero-search-2828 input[type="search"] {
    padding: 15px 20px;
    width: 60%;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.reh-hero-search-2828 button[type="submit"] {
    padding: 15px 30px;
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.reh-hero-search-2828 button[type="submit"]:hover {
    background: #c08d3b;
}

/* --- Main Layout --- */
.reh-shop-layout-2828 {
    display: flex;
    flex-wrap: nowrap; /* Ensure side-by-side */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
    gap: 40px;
}

/* Products Area (Left) */
.reh-products-area-2828 {
    flex: 1;
    min-width: 0; /* Prevents overflow */
    order: 1; /* Left side */
}

/* Sidebar (Right) */
.reh-sidebar-2828 {
    width: 300px;
    flex-shrink: 0;
    order: 2; /* Right side */
}

@media (max-width: 991px) {
    .reh-shop-layout-2828 {
        flex-direction: column;
    }
    .reh-products-area-2828, .reh-sidebar-2828 {
        order: unset;
        width: 100%;
    }
}

/* --- Toolbar --- */
.reh-shop-toolbar-2828 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.reh-result-count-2828 {
    color: var(--text-muted);
}

.reh-ordering-2828 select,
.woocommerce-ordering select {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 8px;
    padding: 10px;
}

.woocommerce-ordering select option {
    background-color: #111 !important;
    color: #ffffff !important;
}

.woocommerce-ordering select option:checked {
    background-color: #d4af37 !important;
    color: #000 !important;
}

.woocommerce-ordering select option:hover {
    background-color: #222 !important;
    color: #fff !important;
}

/* --- Products Grid --- */
.reh-products-grid-2828 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.reh-products-grid-2828.columns-2 { grid-template-columns: repeat(2, 1fr); }
.reh-products-grid-2828.columns-3 { grid-template-columns: repeat(3, 1fr); }
.reh-products-grid-2828.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 767px) {
    .reh-products-grid-2828 { grid-template-columns: repeat(1, 1fr) !important; }
}

/* --- Product Card --- */
.reh-product-card-2828 {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.reh-product-card-2828:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(220, 165, 74, 0.2);
}

.reh-product-image-2828 {
    position: relative;
    overflow: hidden;
}

.reh-product-image-2828 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.reh-sale-badge-2828 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border-radius: 2px;
}

.reh-wishlist-btn-2828 {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.reh-wishlist-btn-2828 .add_to_wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.reh-wishlist-btn-2828 .add_to_wishlist:hover {
    background: var(--accent-gold);
    color: #000;
}

.reh-product-details-2828 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reh-product-title-2828 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    font-family: 'Roboto Slab', serif;
}

.reh-product-title-2828 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.reh-product-title-2828 a:hover {
    color: var(--accent-gold);
}

.reh-product-price-2828 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.reh-product-price-2828 del {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 5px;
}

.reh-add-to-cart-2828 {
    margin-top: auto;
}

.reh-add-to-cart-2828 .button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    border-radius: 4px;
}

.reh-add-to-cart-2828 .button:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* --- Pagination --- */
.reh-pagination-2828 ul.page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    gap: 10px;
}

.reh-pagination-2828 ul.page-numbers li a,
.reh-pagination-2828 ul.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.reh-pagination-2828 ul.page-numbers li a:hover,
.reh-pagination-2828 ul.page-numbers li span.current {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(220, 165, 74, 0.3);
}

/* --- Sidebar --- */
.reh-sidebar-inner-2828 {
    position: sticky;
    top: 100px;
}

.reh-widget-2828 {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.reh-widget-title-2828,
.reh-sidebar-2828 .widget-title,
.reh-sidebar-2828 h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    color: #ffffff !important;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.reh-widget-2828 ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
}

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

.reh-widget-2828 ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Price Filter Adjustments */
.reh-price-filter-2828 .price_slider_wrapper {
    margin-top: 15px;
}
.reh-price-filter-2828 .ui-slider {
    background: var(--border-color) !important;
}
.reh-price-filter-2828 .ui-slider-range {
    background: var(--accent-gold) !important;
}
.reh-price-filter-2828 .ui-slider-handle {
    background: #000 !important;
    border: 2px solid var(--accent-gold) !important;
}
.reh-price-filter-2828 .price_slider_amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}
.reh-price-filter-2828 .price_slider_amount .price_label {
	color: var(--text-main);
	font-size: 0.9rem;
}
.reh-price-filter-2828 .price_slider_amount .button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 5px 15px;
	transition: all 0.3s;
	cursor: pointer;
}
.reh-price-filter-2828 .price_slider_amount .button:hover {
    background: var(--accent-gold);
    color: #000;
}
