:root {
    --navy: #000075;
    --burgundy: #960018;
    --dark: #121212;
    --ivory: #FEFEFA;
    --gold: #C4A267;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--ivory);
    color: var(--dark);
    overflow-x: hidden;
}
a {
        text-decoration: none;
    }

/* Hero Section */
.wine-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,34,0.4) 0%, rgba(139,0,0,0.3) 100%);
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    z-index: 2;
    padding: 0 2rem;
}

.french-motif {
    width: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.2"><path fill="none" stroke="%23C4A267" stroke-width="1" d="M50,0 Q80,50 50,100 Q20,50 50,0"/></svg>') repeat-y;
}

.main-content {
    flex: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.vintage-label {
    display: inline-flex;
    align-items: center;
    background: rgba(0,0,34,0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    position: relative;
}

.vintage-label span {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.wax-seal {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--burgundy);
}

.script {
    font-family: 'Parisienne', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    display: block;
    line-height: 1.1;
    margin: 0.5rem 0 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.wine-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.grape {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
}

.vine {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--ivory), var(--gold));
    margin: 0 15px;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.primary-cta {
    background: linear-gradient(135deg, var(--burgundy), var(--navy));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
}

.secondary-cta {
    background: transparent;
    color: var(--ivory);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--gold);
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: rgba(196, 162, 103, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
}

.slider-prev, .slider-next {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(196, 162, 103, 0.2);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.wine-reflection {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(196, 162, 103, 0.15) 0%, rgba(196, 162, 103, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 2px;
}

.category-img-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.category-img-link .category-img {
    height: 100%;
}

.category-img-link:hover .category-img img {
    transform: scale(1.05);
}

.category-img-link:hover .category-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
}

.category-overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: all 0.4s ease;
    text-align: center;
}

.category-card:hover .category-overlay h3 {
    transform: scale(1);
}

.category-card:hover .category-overlay {
    background: rgba(0,0,0,0.5);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--ivory);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-img {
    flex: 1;
    padding-right: 3rem;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--burgundy), var(--navy));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

/* =============================================
   REDESIGNED Premium Best Sellers Section
   ============================================= */
.premium-bestsellers-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.premium-bestsellers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23C4A267" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-pattern)"/></svg>');
    z-index: 0;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
}

.header-content {
    flex: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--navy);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(196, 162, 103, 0.3);
}

.badge-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.premium-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.title-main {
    color: var(--navy);
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--burgundy), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.premium-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.premium-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.divider-line {
    height: 1px;
    width: 60px;
    background: var(--gold);
}

.divider-diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    margin: 0 1rem;
}

.premium-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slide-counter {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 117, 0.1);
    border-radius: 20px;
}

.slide-separator {
    color: var(--gold);
    margin: 0 0.2rem;
}

.premium-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: white;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--burgundy));
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 0;
}

.premium-nav-btn:hover::before {
    transform: scale(1);
}

.premium-nav-btn:hover {
    color: white;
    border-color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 117, 0.2);
}

.nav-icon {
    position: relative;
    z-index: 1;
}

.premium-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.premium-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    width: max-content;
}

.premium-product-card {
    flex: 0 0 auto;
    width: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(196, 162, 103, 0.2);
}

.premium-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: contrast(1.1) brightness(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 117, 0.8), rgba(150, 0, 24, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.premium-product-card:hover .overlay-content {
    transform: translateY(0);
}

.quick-view {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bestseller-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--navy);
    padding: 0.5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(196, 162, 103, 0.4);
    z-index: 2;
}

.badge-rank {
    font-size: 1.1rem;
    line-height: 1;
}

.badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details {
    padding: 1.5rem;
    flex: 1;
}

.product-category {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: block;
}

.product-name {
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.premium-product-card:hover .product-name {
    color: var(--burgundy);
}

.rating-section {
    margin-bottom: 1.2rem;
}

.stars-display {
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.2rem;
    margin-right: 2px;
    transition: all 0.3s ease;
}

.star.filled {
    color: var(--gold);
    text-shadow: 0 1px 3px rgba(196, 162, 103, 0.5);
}

.star.empty {
    color: #ddd;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.price-section {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--burgundy);
    text-shadow: 0 1px 2px rgba(150, 0, 24, 0.1);
}

.discount-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popularity-meter {
    margin-bottom: 1rem;
}

.meter-label {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.meter-bar {
    background: #e0e0e0;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.meter-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.product-action {
    padding: 0 1.5rem 1.5rem;
}

.premium-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--burgundy));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.premium-cta-btn::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;
}

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

.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 117, 0.3);
}

.btn-text {
    flex: 1;
    text-align: center;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* =============================================
   REDESIGNED Exclusive Offers Section
   ============================================= */
.exclusive-offers-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.exclusive-offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(150, 0, 24, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(196, 162, 103, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.header-animation {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 0;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    width: 8px;
    height: 8px;
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 12px;
    height: 12px;
    top: 60px;
    left: 30%;
    animation-delay: 1s;
}

.element-3 {
    width: 6px;
    height: 6px;
    top: 40px;
    left: 60%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.offers-title-section {
    flex: 1;
    position: relative;
    z-index: 1;
}

.flash-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.flash-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    animation: lightning 1.5s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.offers-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.title-part-1 {
    color: white;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.title-part-2 {
    background: linear-gradient(135deg, var(--gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    text-shadow: none;
}

.title-part-2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(196, 162, 103, 0.6);
}

.offers-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.timer-text {
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.timer-animation {
    display: flex;
    gap: 0.3rem;
}

.timer-dot {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    animation: timerBlink 1.5s ease-in-out infinite;
}

.timer-dot:nth-child(2) { animation-delay: 0.3s; }
.timer-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes timerBlink {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.timer-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.offers-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.offers-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
    z-index: 0;
}

.offers-nav-btn:hover .btn-bg {
    transform: scale(1);
}

.offers-nav-btn:hover {
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 162, 103, 0.4);
}

.nav-arrow {
    position: relative;
    z-index: 1;
}

.offers-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.offers-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    width: max-content;
}

.exclusive-offer-card {
    flex: 0 0 auto;
    width: 400px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 2px solid transparent;
}

.exclusive-offer-card:hover {
    transform: translateY(-15px) rotateY(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.offer-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.offer-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: contrast(1.1) brightness(1.1);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(196, 162, 103, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.effect-circle {
    position: absolute;
    border: 2px solid rgba(196, 162, 103, 0.6);
    border-radius: 50%;
    transform: scale(1);
    opacity: 0;
    transition: all 0.6s ease;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
}

.mega-discount-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.discount-percent {
    font-size: 1.1rem;
    line-height: 1;
}

.discount-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: urgencyPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 107, 53, 0.7); }
}

.urgency-icon {
    font-size: 1rem;
    animation: flicker 1s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.offer-content {
    padding: 2rem;
    color: var(--dark);
    flex: 1;
}

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

.offer-category {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-status {
    display: flex;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    animation: statusGlow 2s ease-in-out infinite;
}

.status-badge.popular {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.status-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

@keyframes statusGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(231, 76, 60, 0.5); }
    50% { box-shadow: 0 0 15px rgba(231, 76, 60, 0.8); }
}

.offer-title {
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.offer-rating {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-star {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.rating-star.active {
    color: var(--gold);
    text-shadow: 0 1px 3px rgba(196, 162, 103, 0.5);
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.price-showcase {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    text-shadow: 0 1px 2px rgba(150, 0, 24, 0.1);
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    text-shadow: 0 1px 2px rgba(150, 0, 24, 0.1);
}

.savings-amount {
    color: #27ae60;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.demand-indicator {
    margin-bottom: 1.5rem;
}

.demand-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.demand-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demand-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.demand-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.offer-action {
    padding: 0 2rem 2rem;
}

.exclusive-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--burgundy), #8b001a);
    color: white;
    border: none;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.exclusive-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}

.exclusive-cta-btn:hover::before {
    transform: scaleX(1);
}

.exclusive-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(150, 0, 24, 0.4);
}

.cta-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.cta-sub {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-15deg);
    z-index: 2;
}

.no-offers-message {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-offers-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.no-offers-message p {
    font-size: 1.1rem;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23000075" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
    background-size: 300px;
    opacity: 0.1;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease;
    scroll-snap-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(196, 162, 103, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
    font-family: serif;
}

.testimonial-meta {
    border-top: 1px solid rgba(0, 0, 117, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-arrow {
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: var(--ivory);
    position: relative;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 117, 0.08);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-body {
    padding: 1.5rem;
}

.blog-date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-body h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-body p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #7a0014;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    fill: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.feature-card:hover h3::after {
    width: 80px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-hover {
    opacity: 0.3;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-img {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    /* Adjust premium sections for tablet */
    .premium-header,
    .offers-header {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .premium-title,
    .offers-title {
        font-size: 3rem;
    }
    
    .premium-product-card,
    .exclusive-offer-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .script {
        font-size: 2.8rem;
    }
    
    .serif {
        font-size: 3.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Premium Best Sellers */
    .premium-bestsellers-section {
        padding: 4rem 0;
    }
    
    .premium-container {
        padding: 0;
    }
    
    .premium-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .premium-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .premium-navigation {
        display: none;
    }
    
    .premium-slider-wrapper {
        padding: 0;
        overflow: visible;
    }
    
    .premium-slider {
        gap: 15px;
        padding: 0 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: none !important;
        width: 100%;
        display: flex;
        align-items: stretch;
    }
    
    .premium-slider::-webkit-scrollbar {
        display: none;
    }
    
    .premium-product-card {
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        margin: 0;
        height: auto;
        min-height: 500px;
    }
    
    /* Mobile Exclusive Offers */
    .exclusive-offers-section {
        padding: 4rem 0;
    }
    
    .offers-container {
        padding: 0;
    }
    
    .offers-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .offers-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .offers-controls {
        display: none;
    }
    
    .offers-slider-wrapper {
        padding: 0;
        overflow: visible;
    }
    
    .offers-slider {
        gap: 15px;
        padding: 0 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: none !important;
        width: 100%;
        display: flex;
        align-items: stretch;
    }
    
    .offers-slider::-webkit-scrollbar {
        display: none;
    }
    
    .exclusive-offer-card {
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        margin: 0;
        height: auto;
        min-height: 600px;
    }
    
    .product-image-container,
    .offer-image-wrapper {
        height: 200px;
    }
    
    .product-details,
    .offer-content {
        padding: 1rem;
        flex: 1;
    }
    
    .product-action,
    .offer-action {
        padding: 0 1rem 1rem;
        margin-top: auto;
    }
    
    /* Ensure cards display properly */
    .premium-product-card,
    .exclusive-offer-card {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .script {
        font-size: 2.2rem;
    }
    
    .serif {
        font-size: 2.8rem;
    }
    
    .premium-title,
    .offers-title {
        font-size: 2rem;
    }
    
    .premium-slider {
        padding: 0 10px;
        gap: 10px;
    }
    
    .offers-slider {
        padding: 0 10px;
        gap: 10px;
    }
    
    .premium-product-card,
    .exclusive-offer-card {
        flex: 0 0 90vw;
        min-width: 90vw;
        max-width: 90vw;
        margin: 0;
        min-height: 450px;
    }
    
    .features-section,
    .about-section,
    .testimonials-section,
    .blog-section,
    .premium-bestsellers-section,
    .exclusive-offers-section {
        padding: 3rem 0;
    }
    
    .flash-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .premium-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .product-image-container,
    .offer-image-wrapper {
        height: 180px;
    }
    
    .premium-header,
    .offers-header {
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .premium-product-card,
    .exclusive-offer-card {
        flex: 0 0 95vw;
        min-width: 95vw;
        max-width: 95vw;
        margin: 0;
        min-height: 400px;
    }
    
    .premium-slider,
    .offers-slider {
        padding: 0 5px;
        gap: 8px;
    }
    
    .premium-header,
    .offers-header {
        padding: 0 5px;
    }
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Enhanced interaction states */
.premium-product-card:hover .product-image,
.exclusive-offer-card:hover .offer-image {
    filter: brightness(1.1) contrast(1.1);
}

.premium-product-card .product-image,
.exclusive-offer-card .offer-image {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Loading states */
.product-image,
.offer-image {
    opacity: 0;
    filter: blur(5px);
    transition: all 0.6s ease;
}

.product-image.loaded,
.offer-image.loaded {
    opacity: 1;
    filter: blur(0);
}

/* Performance optimizations */
.premium-slider,
.offers-slider {
    will-change: transform;
    transform-style: preserve-3d;
}

.premium-product-card,
.exclusive-offer-card {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}