/* Luxury Abiye - Color Palette: Black, Beige, Gold */

:root {
    --luxury-black: #0a0a0a;
    --luxury-beige: #e8dcc4;
    --luxury-beige-light: #f5f0e8;
    --luxury-gold: #b8860b;
    --luxury-gold-dark: #9a7209;
    --luxury-gold-light: #daa520;
    --luxury-grey: #2a2a2a;
    --luxury-grey-light: #4a4a4a;
    --milande-red: #5d0000;
}

/* Global Styles */
body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--luxury-black);
    background-color: white;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--milande-red);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar-luxury {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-luxury .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--milande-red) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex !important;
    align-items: center;
}

.navbar-luxury .navbar-brand img {
    height: 60px;
    width: auto;
    display: block !important;
    filter: drop-shadow(0 2px 4px rgba(93, 0, 0, 0.2));
}

.navbar-luxury .navbar-brand span {
    color: var(--milande-red) !important;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 10px;
}

.brand-subtitle {
    display: none !important;
}

.navbar-left,
.bi-search,
.brand-name {
    display: none !important;
}

/* Nav Icon Links (Favorites, Cart) */
.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    margin: 0 0.5rem !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon-link:hover {
    background-color: rgba(93, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-link i {
    font-size: 1.3rem;
    color: var(--milande-red);
}

.nav-icon-link:hover i {
    color: var(--milande-red);
}

.nav-icon-link::after {
    display: none !important;
}

.navbar-luxury .nav-link {
    color: var(--milande-red) !important;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--milande-red);
    transition: width 0.3s ease;
}

.navbar-luxury .nav-link:hover {
    color: var(--milande-red) !important;
}

.navbar-luxury .nav-link:hover::after {
    width: 100%;
}

/* Cart Badge */
.bg-milande-red {
    background-color: var(--milande-red) !important;
}

#cart-count {
    background-color: var(--milande-red) !important;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.navbar-toggler {
    border-color: var(--milande-red) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2893, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center 4%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-black);
    overflow: hidden;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-pattern.png') repeat;
    opacity: 0.05;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 500;
    color: var(--milande-red);
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4);
}

.btn-luxury {
    background-color: var(--milande-red);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-luxury:hover {
    background-color: #7a0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 0, 0, 0.3);
}

.btn-luxury-outline {
    background-color: transparent;
    color: var(--milande-red);
    border: 2px solid var(--milande-red);
    padding: 1rem 3rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background-color: var(--milande-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--milande-red);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--milande-red);
    margin: 2rem auto;
}

/* Shop Categories Section - Lüks 3'lü grid */
.shop-categories-section {
    background: linear-gradient(180deg, #fff 0%, var(--luxury-beige-light) 100%);
    padding: 4rem 0;
}

.shop-categories-section .section-subtitle {
    color: var(--luxury-grey-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.category-card-luxury {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(93, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    min-height: 320px;
}

.category-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(93, 0, 0, 0.18);
}

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 320px;
}

.category-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.category-card-image .category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(93, 0, 0, 0.75) 0%, rgba(93, 0, 0, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.category-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--milande-red);
    font-size: 1.4rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.category-card-luxury:hover .category-card-icon {
    transform: scale(1.1);
    background: var(--milande-red);
    color: white;
}

.category-card-content {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--milande-red);
    transition: background 0.3s ease;
}

.category-card-luxury:hover .category-card-content {
    background: var(--luxury-beige-light);
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--milande-red);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.category-card-cta {
    font-size: 0.9rem;
    color: var(--luxury-grey-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.category-card-luxury:hover .category-card-cta {
    color: var(--milande-red);
    gap: 0.5rem;
}

/* Eski sınıflar (geriye dönük) */
.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(93, 0, 0, 0.1);
    background-color: white;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--luxury-beige-light);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(93, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.product-card {
    background-color: white;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    background-color: var(--luxury-beige-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

/* Product Card Action Buttons (Favorite & Cart) */
.product-card-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Show favorite button when active, even without hover */
.product-card .product-card-actions:has(.favorite-btn.active) {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.product-card-action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid rgba(93, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--luxury-black);
    text-decoration: none;
}

.product-card-action-btn:hover {
    background-color: var(--milande-red);
    border-color: var(--milande-red);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(93, 0, 0, 0.3);
}

.product-card-action-btn i {
    font-size: 1.2rem;
}

.product-card-action-btn.favorite-btn.active {
    background-color: var(--milande-red) !important;
    border-color: var(--milande-red) !important;
    color: white !important;
}

.product-card-action-btn.favorite-btn.active i {
    color: white !important;
    fill: var(--milande-red);
}

.product-card-action-btn.favorite-btn.active .bi-heart-fill {
    color: white !important;
    fill: white;
}

/* Ensure favorite button is always visible when active, even without hover */
.product-card .product-card-action-btn.favorite-btn.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background-color: var(--milande-red) !important;
    border-color: var(--milande-red) !important;
}

/* Make sure the actions container is visible when favorite is active */
.product-card:has(.favorite-btn.active) .product-card-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.product-badge {
    display: none !important;
}

.product-badges {
    display: none !important;
}

.badge-sale {
    display: none !important;
}

.badge-rent {
    display: none !important;
}

.product-card-body {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--milande-red);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.product-card-brand {
    color: var(--luxury-grey-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-card-price {
    font-size: 1.3rem;
    color: var(--milande-red);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-price-section {
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-left: 3px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-label-small {
    font-size: 0.9rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.2rem;
    color: var(--milande-red);
    font-weight: 500;
}

.price-range {
    font-size: 1rem;
    color: var(--luxury-grey-light);
}

.product-card-footer {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid rgba(93, 0, 0, 0.1);
}

/* Product Detail Page */
.product-detail {
    padding: 5rem 0;
}

.product-detail-image {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: var(--luxury-beige-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 3rem;
}

.product-detail-brand {
    color: var(--milande-red);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--luxury-black);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--luxury-grey-light);
    line-height: 2;
    margin-bottom: 2rem;
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    font-weight: 500;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--luxury-grey-light);
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

/* Variants */
.variants-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: white;
    border-left: 3px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.variants-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--luxury-black);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Interactive Variant Selection */
.variant-selector-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: white;
    border: 1px solid rgba(93, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.05);
}

.selector-group {
    margin-bottom: 2rem;
}

.selector-label {
    font-size: 1.1rem;
    color: var(--luxury-black);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.selector-label .selected-value {
    color: var(--milande-red);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-swatch.selected {
    border-color: var(--milande-red);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--milande-red);
}

.color-swatch.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.color-swatch.disabled:hover {
    transform: none;
}

.color-swatch-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-name-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--luxury-grey-light);
    white-space: nowrap;
}

/* Size Selection */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.size-option {
    min-width: 80px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--luxury-beige);
    background-color: white;
    color: var(--luxury-black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.size-option:hover {
    border-color: var(--milande-red);
    background-color: var(--luxury-beige-light);
    transform: translateY(-2px);
}

.size-option.selected {
    border-color: var(--milande-red);
    background-color: var(--milande-red);
    color: white;
    box-shadow: 0 4px 12px rgba(93, 0, 0, 0.3);
}

.size-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.size-option.disabled:hover {
    transform: none;
    border-color: var(--luxury-beige);
}

/* Dynamic Price Display */
.dynamic-price-display {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.price-display-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-display-row:last-child {
    margin-bottom: 0;
}

.price-type {
    font-size: 1rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2rem;
    color: var(--milande-red);
    font-weight: 600;
}

.price-amount.unavailable {
    color: var(--luxury-grey-light);
    font-size: 1.2rem;
    font-style: italic;
}

.stock-info {
    margin-top: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 4px;
    text-align: center;
}

.stock-available-text {
    color: #27ae60;
    font-weight: 500;
}

.stock-unavailable-text {
    color: #e74c3c;
    font-weight: 500;
}

/* Rental Date Selection */
.rental-date-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: white;
    border: 2px solid rgba(93, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.05);
}

.date-input-group {
    margin-bottom: 1.5rem;
}

.date-label {
    display: block;
    font-size: 1rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.date-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--luxury-beige);
    background-color: var(--luxury-beige-light);
    color: var(--luxury-black);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.date-input:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background-color: white;
}

.date-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Rental Summary */
.rental-summary {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.rental-summary-title {
    font-size: 1.3rem;
    color: var(--luxury-black);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--luxury-beige);
}

.summary-row:last-child {
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--luxury-gold);
}

.summary-label {
    font-size: 1rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value {
    font-size: 1.1rem;
    color: var(--luxury-black);
    font-weight: 500;
}

.summary-total .summary-label {
    font-size: 1.2rem;
    color: var(--luxury-black);
    font-weight: 600;
}

.summary-total .summary-value {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    font-weight: 600;
}

.date-warning {
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 3px solid #ffc107;
    color: #856404;
    margin: 1rem 0;
    display: none;
}

.date-warning.show {
    display: block;
}

.variant-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: white;
    border: 1px solid var(--luxury-beige);
    transition: all 0.3s ease;
}

.variant-item:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.variant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variant-details {
    flex-grow: 1;
}

.variant-size-color {
    font-size: 1.1rem;
    color: var(--luxury-black);
    margin-bottom: 0.5rem;
}

.variant-sku {
    font-size: 0.9rem;
    color: var(--luxury-grey-light);
}

.variant-pricing {
    text-align: right;
}

.variant-price {
    font-size: 1.2rem;
    color: var(--milande-red);
    font-weight: 500;
}

.variant-stock {
    font-size: 0.9rem;
    color: var(--luxury-grey-light);
    margin-top: 0.5rem;
}

.stock-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stock-available {
    background-color: #d4edda;
    color: #155724;
}

.stock-unavailable {
    background-color: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer-luxury {
    background-color: white;
    color: var(--luxury-black);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(93, 0, 0, 0.1);
}

.footer-luxury h5 {
    color: var(--milande-red);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-luxury img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(93, 0, 0, 0.2));
}

.footer-luxury p, .footer-luxury a {
    color: var(--luxury-grey-light);
    font-size: 1rem;
    line-height: 2;
}

.footer-luxury a:hover {
    color: var(--milande-red);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(93, 0, 0, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--luxury-grey-light);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-luxury-gold {
    color: var(--milande-red);
}

.text-luxury-beige {
    color: var(--luxury-beige);
}

.bg-luxury-black {
    background-color: var(--luxury-black);
}

.bg-luxury-beige {
    background-color: var(--luxury-beige-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-title {
        font-size: 2rem;
    }
    
    .navbar-luxury .nav-link {
        margin: 0.5rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Placeholder */
.loading-placeholder {
    background: linear-gradient(90deg, var(--luxury-beige-light) 25%, var(--luxury-beige) 50%, var(--luxury-beige-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ==================== LUXURY PRODUCT DETAIL PAGE ==================== */

/* Gallery Layout */
.luxury-product-detail {
    padding: 3rem 0;
    background-color: white;
}

.luxury-gallery-section {
    position: relative;
}

/* Slider container */
.luxury-gallery-slider {
    position: relative;
}

.luxury-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--milande-red);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.luxury-slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.08);
}

.luxury-slider-prev {
    left: 12px;
}

.luxury-slider-next {
    right: 12px;
}

.luxury-slider-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 10;
}

.luxury-main-image-wrapper {
    position: relative;
    cursor: zoom-in;
}

.luxury-main-image {
    width: 100%;
    height: auto;
    min-height: 600px;
    max-height: 800px;
    object-fit: cover;
    background-color: white;
    border: 1px solid rgba(93, 0, 0, 0.1);
    cursor: zoom-in;
}

.luxury-gallery-placeholder {
    width: 100%;
    height: 600px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(93, 0, 0, 0.1);
}

.luxury-gallery-placeholder i {
    font-size: 8rem;
    color: rgba(93, 0, 0, 0.2);
    opacity: 0.5;
}

.luxury-thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.luxury-thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.luxury-thumbnail-gallery::-webkit-scrollbar-thumb {
    background: rgba(93, 0, 0, 0.3);
    border-radius: 3px;
}

/* Zoom Modal */
.luxury-zoom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.luxury-zoom-modal.open {
    display: flex;
    flex-direction: column;
}

.luxury-zoom-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.luxury-zoom-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.luxury-zoom-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
}

.luxury-zoom-content:active {
    cursor: grabbing;
}

.luxury-zoom-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.05s ease-out;
}

.luxury-zoom-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    white-space: nowrap;
}

.luxury-thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.luxury-thumbnail-item:hover {
    border-color: var(--milande-red);
    transform: scale(1.05);
}

.luxury-thumbnail-item.active {
    border-color: var(--milande-red);
    border-width: 3px;
}

.luxury-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Color Swatches Below Image */
.luxury-color-selector {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(93, 0, 0, 0.1);
}

.luxury-color-label {
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.luxury-color-swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.luxury-color-swatch {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.luxury-color-swatch.selected {
    border-color: var(--milande-red);
    box-shadow: 0 0 0 3px white, 0 0 0 5px var(--milande-red);
    transform: scale(1.1);
}

.luxury-color-swatch-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.luxury-color-swatch-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--luxury-black);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.luxury-color-swatch:hover .luxury-color-swatch-tooltip {
    opacity: 1;
}

/* Sticky Sidebar */
.luxury-detail-sidebar {
    position: sticky;
    top: 100px;
    padding: 2rem;
    background-color: white;
    border: 1px solid rgba(93, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.05);
}

.luxury-product-brand {
    font-size: 0.85rem;
    color: var(--milande-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.luxury-product-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--luxury-black);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.luxury-product-code {
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.luxury-product-description {
    font-size: 1rem;
    color: var(--luxury-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(93, 0, 0, 0.1);
}

/* Size Selector */
.luxury-size-selector {
    margin-bottom: 2rem;
}

.luxury-size-label {
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.luxury-size-label .selected-size {
    color: var(--milande-red);
    font-weight: 600;
    margin-left: 0.5rem;
}

.luxury-size-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.luxury-size-btn {
    min-width: 70px;
    padding: 0.8rem 1.2rem;
    border: 2px solid rgba(93, 0, 0, 0.2);
    background-color: white;
    color: var(--luxury-black);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.luxury-size-btn:hover {
    border-color: var(--milande-red);
    background-color: var(--luxury-beige-light);
    transform: translateY(-1px);
}

.luxury-size-btn.selected {
    border-color: var(--milande-red);
    background-color: var(--milande-red);
    color: white;
    box-shadow: 0 4px 12px rgba(93, 0, 0, 0.3);
}

.luxury-size-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.luxury-size-btn.disabled:hover {
    transform: none;
    border-color: rgba(93, 0, 0, 0.2);
    background-color: #f9f9f9;
}

/* Price Section */
.luxury-price-section {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border: 2px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.luxury-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.luxury-price-row:last-child {
    margin-bottom: 0;
}

.luxury-price-label {
    font-size: 0.9rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.luxury-price-label i {
    color: var(--milande-red);
}

.luxury-price-value {
    font-size: 1.8rem;
    color: var(--luxury-black);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.luxury-price-value.unavailable {
    font-size: 1rem;
    color: var(--luxury-grey-light);
    font-style: italic;
    font-weight: 400;
}

.luxury-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background-color: #d4edda;
    color: #155724;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.luxury-stock-badge.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

/* Action Buttons */
.luxury-action-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.luxury-btn-rent,
.luxury-btn-buy {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.luxury-btn-rent {
    background-color: var(--milande-red);
    color: white;
    border: 2px solid var(--milande-red);
}

.luxury-btn-rent:hover:not(:disabled) {
    background-color: transparent;
    color: var(--milande-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 0, 0, 0.15);
}

.luxury-btn-buy {
    background-color: var(--milande-red);
    color: white;
    border: 2px solid var(--milande-red);
}

.luxury-btn-buy:hover:not(:disabled) {
    background-color: #7a0000;
    border-color: #7a0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 0, 0, 0.3);
}

.luxury-btn-rent:disabled,
.luxury-btn-buy:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* Rental Date Picker (in sidebar) */
.luxury-date-picker {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(93, 0, 0, 0.1);
}

.luxury-date-group {
    margin-bottom: 1.5rem;
}

.luxury-date-label {
    display: block;
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.luxury-date-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(93, 0, 0, 0.2);
    background-color: white;
    color: var(--luxury-black);
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.luxury-date-input:focus {
    outline: none;
    border-color: var(--milande-red);
    box-shadow: 0 0 0 3px rgba(93, 0, 0, 0.1);
}

/* Rental Summary in Sidebar */
.luxury-rental-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--milande-red);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.1);
}

.luxury-summary-title {
    font-size: 1rem;
    color: var(--luxury-black);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.luxury-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(93, 0, 0, 0.1);
}

.luxury-summary-row:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 2px solid var(--milande-red);
}

.luxury-summary-label {
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-summary-value {
    font-size: 0.95rem;
    color: var(--luxury-black);
    font-weight: 500;
}

.luxury-summary-row.total .luxury-summary-label {
    font-size: 0.95rem;
    color: var(--luxury-black);
    font-weight: 600;
}

.luxury-summary-row.total .luxury-summary-value {
    font-size: 1.4rem;
    color: var(--milande-red);
    font-weight: 600;
}

.luxury-date-warning {
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 3px solid #ffc107;
    color: #856404;
    margin-top: 1rem;
    font-size: 0.85rem;
    display: none;
}

.luxury-date-warning.show {
    display: block;
}

/* Product Info Tabs/Accordion */
.luxury-product-info {
    margin-top: 4rem;
    padding: 2rem;
    background-color: white;
    border: 1px solid rgba(93, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(93, 0, 0, 0.05);
}

.luxury-info-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--luxury-black);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.luxury-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.luxury-info-item {
    text-align: center;
}

.luxury-info-label {
    font-size: 0.85rem;
    color: var(--luxury-grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.luxury-info-value {
    font-size: 1.1rem;
    color: var(--luxury-black);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .luxury-detail-sidebar {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .luxury-product-title {
        font-size: 1.8rem;
    }
    
    .luxury-main-image {
        min-height: 400px;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .luxury-product-detail {
        padding: 1.5rem 0;
    }
    
    .luxury-detail-sidebar {
        padding: 1.5rem;
    }
    
    .luxury-product-title {
        font-size: 1.6rem;
    }
    
    .luxury-price-value {
        font-size: 1.5rem;
    }
    
    .luxury-action-buttons {
        flex-direction: column;
    }
    
    .luxury-main-image {
        min-height: 300px;
        max-height: 500px;
    }
    
    .luxury-color-swatches {
        justify-content: center;
    }
    
    .luxury-size-options {
        justify-content: center;
    }
}


.badge {
    --bs-badge-color: black !important;
}