@font-face {
    font-family: 'NeueMontreal';
    src: url('../fonts/neue-montreal/NeueMontreal-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nymphatriel';
    src: url("../fonts/nympha-font-family/OTF/NymphaTrial-Regular.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'NeueMontreal', sans-serif;
    background-color: #fcfdf8;
}

.nympha-font {
    font-family: 'nymphatriel', sans-serif;
}

.text-theme {
    color: #C09B5E;
}

.form-control {
    border-radius: 20px;
    padding: 15px;
    background-color: whitesmoke;
    font-size: 12px;
    border: none;
    box-shadow: none;
    color: rgb(182, 182, 182);
}

.form-control::placeholder {
    color: rgb(177, 177, 177);
}


.form-control:focus {
    border-color: #C09B5E;
    box-shadow: 0 0 0 0.2rem rgba(192, 155, 94, 0.25);
    background-color: whitesmoke;
}

.btn-theme {
    background-color: rgb(112, 31, 31);
    color: white;
    border: none;
    border-radius: 50px !important;
    padding: 10px 25px;
    font-size: 15px;
}

.btn-theme:hover {
    background-color: rgb(83, 23, 23);
    color: white;
}

.btn-theme-light {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(216, 216, 216) !important;
    border-radius: 50px !important;
    padding: 10px 25px;
    font-size: 15px;
}

.btn-theme-light:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(0, 0, 0);
}

.discover-section {
    margin: 6.2rem 4rem;
}



.discover-section img {
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
}

.discover-section .discover-img-2 {
    height: 780px;
    object-fit: cover;
}


.discover-section .heading {
    font-size: 77px;
    margin-left: 13rem;
    font-family: 'NeueMontreal', sans-serif;
    margin-bottom: 2.1rem;
}

.discover-section .heading span {
    font-family: 'nymphatriel', sans-serif;
    font-weight: bolder;
}

.discover-section .sub-heading {
    padding: 0px 1.3rem 4.3rem 0px;
}

.discover-section .text {
    color: rgb(86, 85, 85);
    padding: 0px 1.3rem 4.3rem 0px;
}

@media (max-width: 992px) {
    .discover-section {
        margin: 10px;
    }

    .discover-section .heading {
        font-size: 30px;
        font-family: 'NeueMontreal', sans-serif;
        margin: 2rem 20px;
    }

    .discover-section .sub-heading {
        padding: 10px;
    }

    .discover-section .text {
        padding: 10px;
    }

}


.top-section .heading {
    padding: 6rem 10px;
}

.top-section img {
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
}

.elegant-text {
    color: #8B2E0F;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'nymphatriel', sans-serif;
    font-size: 100px;
}

.watch-text {
    color: #0f2417;
    font-size: 100px;
}

.video-thumbnail {
    margin-top: 80px;
}

.video-thumbnail img {
    width: 300px;
    height: 300px;
}

/* hero section css */

/* Premium Dark Hero - Keeping Your Theme Colors */
:root {
    /* Your Original Brand Colors */
    --color-primary: #C09B5E; /* Gold */
    --color-secondary: #7C3A0A; /* Dark Brown */
    --color-dark: #0F271D; /* Dark Green */
    --color-light: #fcfdf8; /* Off-white */
    --color-accent: #8B2E0F; /* Warm Brown */

    /* Extended Palette */
    --color-primary-light: #D4B480;
    --color-primary-dark: #A6854E;
    --color-secondary-light: #9B5A2E;
    --color-dark-light: #1A3D2E;

    /* Neutrals */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Your Original Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section - Premium Version */
.hero-premium {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 176%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgb(165 103 0 / 67%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 46, 15, 0.1) 0%, transparent 40%);
}

@keyframes gradient-move {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Container */
.container-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Grid - Modern Layout */
.hero-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.hero-content-premium {
    max-width: 600px;
}

/* Typography - Keeping Your Fonts */
.hero-title-premium {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title-premium .title-line {
    display: block;
    overflow: hidden;
}

.hero-title-premium .title-word {
    display: inline-block;
    transform: translateY(100%);
    animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-premium .accent-word {
    color: var(--color-primary);
    font-size: 4.2rem;
    animation-delay: 0.2s;
}

@keyframes wordReveal {
    to {
        transform: translateY(0);
    }
}

/* Subtitle */
.hero-subtitle-premium {
    font-family: 'Arial', sans-serif;
    font-size: 1.25rem;
    color: rgba(252, 253, 248, 0.85);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* CTA Buttons - Enhanced */
.hero-cta-premium {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

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

.btn-premium-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-light);
    box-shadow: 0 4px 20px rgba(192, 155, 94, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 155, 94, 0.4);
}

.btn-premium-outline {
    background: transparent;
    color: var(--color-light);
    border: 2px solid rgba(192, 155, 94, 0.3);
}

.btn-premium-outline:hover {
    background: rgba(192, 155, 94, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Stats - Enhanced */
.hero-stats-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-premium {
    text-align: center;
}

.stat-value-premium {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label-premium {
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    color: rgba(252, 253, 248, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Right Side - Featured Auction */
.featured-auction-premium {
    position: relative;
}

.auction-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 155, 94, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
}

.auction-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
}

/* Live Badge */
.live-badge-premium {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.live-indicator-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50px;
    color: var(--color-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(192, 155, 94, 0.4);
    white-space: nowrap;
}

.live-dot-premium {
    width: 8px;
    height: 8px;
    background: var(--color-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Auction Image */
.auction-image-container {
    position: relative;
}

.auction-image-premium {
    width: 100%;
    height: 285px;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.auction-card-premium:hover .auction-image-premium {
    transform: scale(1.05);
}

/* Auction Details */
.auction-details {
    padding: 1.5rem 2rem 2rem;
}

.auction-brand {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.auction-title {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.auction-specs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: rgba(252, 253, 248, 0.6);
    flex-wrap: wrap;
}

/* Price & Timer */
.auction-price-timer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-section {
    text-align: center;
}

.price-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: rgba(252, 253, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price-value {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.timer-section {
    text-align: center;
}

.timer-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: rgba(252, 253, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 40px;
    text-align: center;
}

.time-label {
    font-size: 0.6rem;
    color: rgba(252, 253, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.time-separator {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 300;
    margin: 0 0.25rem;
    opacity: 0.5;
}

/* Bid Button */
.bid-btn-premium {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bid-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 155, 94, 0.4);
}

/* Auction Meta */
.auction-meta {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(252, 253, 248, 0.6);
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ===========================================
   RESPONSIVE DESIGN - KEEPING ORIGINAL LAYOUT
   =========================================== */

/* Large Tablets and Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
    .hero-grid-premium {
        gap: 3rem;
    }

    .container-hero {
        padding: 0 2rem;
    }

    .hero-title-premium {
        font-size: 3.5rem;
    }

    .hero-title-premium .accent-word {
        font-size: 3.7rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-grid-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-premium {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-cta-premium {
        justify-content: center;
    }

    .hero-stats-premium {
        max-width: 600px;
        margin: 0 auto;
    }

    .featured-auction-premium {
        max-width: 600px;
        margin: 0 auto;
    }

    .auction-card-premium {
        height: auto;
    }

    .live-badge-premium {
        top: -20px;
    }
}

/* Mobile Landscape (640px - 768px) */
@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
        padding: 4rem 0;
    }

    .container-hero {
        padding: 0 1.5rem;
    }

    .hero-title-premium {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero-title-premium .accent-word {
        font-size: 3.2rem;
    }

    .hero-subtitle-premium {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta-premium {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-premium {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-stats-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-value-premium {
        font-size: 2rem;
    }

    .auction-image-premium {
        height: 250px;
    }

    .auction-price-timer {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .auction-details {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

/* Mobile Portrait (480px - 640px) */
@media (max-width: 640px) {
    .hero-premium {
        padding: 3rem 0;
    }

    .container-hero {
        padding: 0 1rem;
    }

    .hero-title-premium {
        font-size: 2.5rem;
    }

    .hero-title-premium .accent-word {
        font-size: 2.7rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-stats-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 250px;
    }

    .auction-image-premium {
        height: 220px;
    }

    .auction-specs {
        justify-content: center;
    }

    .auction-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .live-indicator-premium {
        padding: 0.4rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .hero-title-premium {
        font-size: 2.2rem;
    }

    .hero-title-premium .accent-word {
        font-size: 2.4rem;
    }

    .btn-premium {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-value-premium {
        font-size: 1.8rem;
    }

    .stat-label-premium {
        font-size: 0.8rem;
    }

    .auction-image-premium {
        height: 200px;
    }

    .auction-title {
        font-size: 1.3rem;
    }

    .auction-details {
        padding: 1rem 1.25rem 1.5rem;
    }

    .auction-price-timer {
        padding: 1.25rem;
    }

    .price-value {
        font-size: 1.75rem;
    }

    .time-number {
        font-size: 1.25rem;
        min-width: 35px;
    }

    .time-unit {
        min-width: 40px;
    }

    .bid-btn-premium {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (Below 360px) */
@media (max-width: 360px) {
    .hero-title-premium {
        font-size: 2rem;
    }

    .hero-title-premium .accent-word {
        font-size: 2.2rem;
    }

    .btn-premium {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .countdown-timer {
        gap: 0.25rem;
    }

    .time-unit {
        min-width: 35px;
    }

    .time-number {
        min-width: 30px;
        font-size: 1.1rem;
    }

    .auction-image-premium {
        height: 180px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 700px) and (orientation: landscape) {
    .hero-premium {
        min-height: 100vh;
        padding: 1.5rem 0;
    }

    .hero-grid-premium {
        align-items: flex-start;
    }

    .hero-title-premium {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-title-premium .accent-word {
        font-size: 2.7rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-premium {
        margin-bottom: 2rem;
    }

    .auction-image-premium {
        height: 180px;
    }
}

/* High-resolution displays */
@media (min-width: 1400px) {
    .container-hero {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .hero-premium {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title-premium,
    .auction-title,
    .price-value,
    .stat-value-premium {
        color: black !important;
    }

    .auction-card-premium {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .bid-btn-premium,
    .btn-premium {
        display: none;
    }

    .hero-premium::before {
        display: none;
    }
}





/* Word Sequence Animation */
.word-sequence {
    position: relative;
    display: inline-block;
    min-width: 200px;
    height: 70px;
    vertical-align: top;
}

.sequence-word {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-primary);
    font-size: 4.2rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: wordRevealSequence 24s infinite;
}

.sequence-word:nth-child(1) { animation-delay: 0s; }
.sequence-word:nth-child(2) { animation-delay: 4s; }
.sequence-word:nth-child(3) { animation-delay: 8s; }
.sequence-word:nth-child(4) { animation-delay: 12s; }
.sequence-word:nth-child(5) { animation-delay: 16s; }
.sequence-word:nth-child(6) { animation-delay: 20s; }

@keyframes wordRevealSequence {
    0%, 10% {
        opacity: 0;
        transform: translateY(20px);
    }
    15%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Glow effect on active word */
.sequence-word.active {
    text-shadow: 0 0 20px rgba(192, 155, 94, 0.5),
                 0 0 40px rgba(192, 155, 94, 0.3);
}




/* Premium Auction Slider - Minimal Integration */
.auction-slider {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.auction-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.auction-card-premium:hover .auction-image-premium {
    transform: scale(1.05);
}

/* Slide Info */
.slide-info {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Arial', sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide.active .slide-info {
    opacity: 1;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(192, 155, 94, 0.3);
    color: var(--color-primary);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: rgba(192, 155, 94, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* Slide Dots */
.slide-dots {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--color-primary-light);
}

/* Image Counter */
.image-counter {
    position: absolute;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    color: var(--color-light);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(5px);
}

.image-counter span:first-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auction-slider {
        height: 220px;
    }

    .slider-navigation {
        padding: 0 0.75rem;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .slide-dots {
        padding: 0.3rem 0.6rem;
    }

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

    .slide-info {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .auction-slider {
        height: 200px;
    }

    .nav-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .slide-dots {
        gap: 0.4rem;
        padding: 0.25rem 0.5rem;
    }

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

    .image-counter {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Animation for slide transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide.active {
    animation: fadeIn 0.5s ease forwards;
}
