/* Silver Shine Effect for Hero Title */
.silver-shine {
    background: linear-gradient(135deg,
            #b8b8b8 0%,
            #ffffff 25%,
            #e8e8e8 50%,
            #ffffff 75%,
            #b8b8b8 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: silverShine 3s ease-in-out infinite !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(200, 200, 200, 0.3);
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.4));
}

@keyframes silverShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Premium Affinity Studio-Inspired Design Updates */

/* Sophisticated Glass morphism */
.site-header {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ultra-premium Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 19, 19, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Elevated Product Cards */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

/* Sophisticated Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00f0f 100%);
    box-shadow: 0 10px 30px rgba(211, 19, 19, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(211, 19, 19, 0.4);
    transform: translateY(-2px);
}

/* Refined Typography */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

/* Luxurious Spacing */
.products-section {
    padding: 8rem 0;
}

/* Premium Footer */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem;
}

/* Smooth Micro-interactions */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Best Sellers Section Enhancement */
#home-product-grid .product-card {
    transform-origin: center;
}

/* Retailer Cards Premium Look */
.retailer-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.retailer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.retailer-card:hover::before {
    left: 100%;
}