@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@300;400;600&display=swap');

/* Reset & Container */
.elite-page-wrap { background: #fff; overflow-x: hidden; }
.elite-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero Section: Editorial Style */
.elite-hero {
    display: flex;
    gap: 80px;
    padding: 60px 0;
    align-items: center;
}

.elite-gallery { flex: 1.1; }
.elite-gallery img {
    width: 100%;
    height: 480px; /* Locked height for better proportions */
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 20px 20px 0px #f9f9f9; /* Expensive "offset" shadow */
}

.elite-details { flex: 0.9; }

/* Typography */
.elite-cat-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #bca37d; display: block; margin-bottom: 10px; }
.elite-title { font-family: 'Playfair Display', serif; font-size: 54px; color: #111; margin: 0 0 15px; line-height: 1.1; }
.elite-price { font-size: 26px; color: #111; font-weight: 300; margin-bottom: 30px; }
.elite-desc { font-size: 16px; line-height: 1.8; color: #666; margin-bottom: 40px; border-left: 2px solid #eee; padding-left: 20px; }

/* Buttons: The Conversion Zone */
.elite-action-group { display: flex; gap: 15px; margin-bottom: 20px; }

.btn-buy-now { 
    background: #111; color: #fff !important; flex: 1; padding: 18px; 
    text-align: center; text-transform: uppercase; letter-spacing: 2px; 
    font-size: 12px; font-weight: 600; text-decoration: none; transition: 0.3s;
}

.btn-add-cart { 
    background: transparent; color: #111 !important; flex: 1; padding: 18px; 
    text-align: center; text-transform: uppercase; letter-spacing: 2px; 
    font-size: 12px; font-weight: 600; text-decoration: none; border: 1px solid #111; transition: 0.3s;
}

.btn-buy-now:hover { background: #333; }
.btn-add-cart:hover { background: #fcfcfc; }

.link-view-cart { font-size: 13px; color: #bca37d; text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; }
.link-view-cart:hover { border-bottom: 1px solid #bca37d; }

/* Immersive Today's Special Section */
.elite-special-bg {
    position: relative;
    background: url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?q=80&w=2000') center/cover fixed;
    padding: 60px 0; /* Tightened padding */
}

.elite-dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    z-index: 1;
}

.elite-special-content { position: relative; z-index: 2; }
.special-heading { 
    font-family: 'Playfair Display', serif; font-size: 38px; color: #fff; 
    text-align: center; margin-bottom: 40px; font-style: italic; 
}

/* Glassmorphism Shortcode Tweaks */
.glass-shortcode-container { color: #fff; }

@media (max-width: 900px) {
    .elite-hero { flex-direction: column; gap: 40px; text-align: center; }
    .elite-desc { border-left: none; padding-left: 0; }
    .elite-gallery img { height: 350px; }
}