/**
 * Edluxury - Premium Shopify-Grade Design System
 * VIBRANT COLOR SCHEME - High Converting Design
 * Fully Responsive for All Devices
 */

/* ============================================
   1. VIBRANT DESIGN TOKENS
   ============================================ */
:root {
    /* PREMIUM Midnight & Gold Color Palette */
    --sh-primary: #121826;
    /* Deep Royal Midnight */
    --sh-primary-dark: #0A0F1A;
    /* Darker Midnight */
    --sh-primary-light: #1E293B;
    /* Light Slate Midnight */
    --sh-secondary: #2D3436;
    /* Rich Charcoal */
    --sh-accent: #C5A059;
    /* Brushed Radiant Gold */
    --sh-accent-alt: #1B3B5F;
    /* Deep Sea Blue */
    --sh-gold: #D4AF37;
    /* Metallic Radiant Gold */
    --sh-pink: #FD79A8;
    /* Hot Pink Accent */

    /* Status Colors - Refined */
    --sh-success: #059669;
    /* Emerald */
    --sh-warning: #D97706;
    /* Amber */
    --sh-danger: #DC2626;
    /* Crimson */
    --sh-info: #0284C7;
    /* Sky */

    /* Neutral Palette - Cleaner */
    --sh-white: #FFFFFF;
    --sh-black: #0F172A;
    --sh-gray-50: #F8FAFC;
    --sh-gray-100: #F1F5F9;
    --sh-gray-200: #E2E8F0;
    --sh-gray-300: #CBD5E1;
    --sh-gray-400: #94A3B8;
    --sh-gray-500: #64748B;
    --sh-gray-600: #475569;
    --sh-gray-700: #334155;
    --sh-gray-800: #1E293B;
    --sh-gray-900: #0F172A;

    /* Gradients - More Subtle & Sophisticated */
    --sh-gradient-primary: linear-gradient(135deg, #121826 0%, #1E293B 100%);
    --sh-gradient-accent: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
    --sh-gradient-gold: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    --sh-gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --sh-gradient-hero: linear-gradient(165deg, #0A0F1A 0%, #1E293B 100%);

    /* Typography - More Elegant */
    --sh-font-display: 'Poppins', 'Segoe UI', sans-serif;
    --sh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --sh-space-xs: 0.25rem;
    --sh-space-sm: 0.5rem;
    --sh-space-md: 1rem;
    --sh-space-lg: 1.5rem;
    --sh-space-xl: 2rem;
    --sh-space-2xl: 3rem;
    --sh-space-3xl: 4rem;

    /* Shadows - More Refined depth */
    --sh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --sh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --sh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --sh-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --sh-shadow-glow: 0 0 20px rgba(197, 160, 89, 0.2);

    /* Borders */
    --sh-radius-sm: 6px;
    --sh-radius-md: 10px;
    --sh-radius-lg: 14px;
    --sh-radius-xl: 20px;
    --sh-radius-full: 9999px;

    /* Transitions */
    --sh-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --sh-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --sh-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --sh-transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   2. BASE STYLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.shopify-premium {
    font-family: var(--sh-font-body);
    color: var(--sh-gray-800);
    background: var(--sh-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.sh-heading-display {
    font-family: var(--sh-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.sh-heading-1 {
    font-family: var(--sh-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.sh-heading-2 {
    font-family: var(--sh-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
}

.sh-heading-3 {
    font-family: var(--sh-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   4. VIBRANT ANNOUNCEMENT BAR
   ============================================ */
.sh-announcement-bar {
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }
}

.sh-announcement-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sh-announcement-text {
    text-align: center;
    flex: 1;
}

.sh-announcement-link {
    color: var(--sh-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--sh-transition-fast);
}

.sh-announcement-link:hover {
    opacity: 1;
    color: var(--sh-white);
}

.announcement-slider {
    display: flex;
    flex-direction: column;
    animation: sh-announcement-slide 12s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.announcement-item {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes sh-announcement-slide {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-24px);
    }

    50%,
    70% {
        transform: translateY(-48px);
    }

    75%,
    95% {
        transform: translateY(-72px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================================
   5. PREMIUM HEADER
   ============================================ */
.sh-header-main {
    background: var(--sh-white);
    border-bottom: 1px solid var(--sh-gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--sh-transition-base);
}

.sh-header-main.scrolled {
    box-shadow: var(--sh-shadow-lg);
}

.sh-header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 0;
    gap: 20px;
}

/* Navigation */
.sh-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sh-nav-link {
    font-family: var(--sh-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-gray-800);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color var(--sh-transition-fast);
}

.sh-nav-link:hover {
    color: var(--sh-primary);
}

.sh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--sh-gradient-primary);
    border-radius: 2px;
    transition: width var(--sh-transition-base);
}

.sh-nav-link:hover::after {
    width: 100%;
}

/* Logo - VIBRANT */
.sh-logo {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--sh-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
}

.sh-logo:hover {
    transform: scale(1.02);
}

/* Header Actions */
.sh-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.sh-action-btn {
    background: none;
    border: none;
    padding: 10px;
    color: var(--sh-gray-700);
    cursor: pointer;
    position: relative;
    transition: all var(--sh-transition-fast);
    border-radius: var(--sh-radius-full);
}

.sh-action-btn:hover {
    color: var(--sh-primary);
    background: var(--sh-gray-100);
    transform: translateY(-2px);
}

.sh-action-btn i {
    font-size: 22px;
}

.sh-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Dropdown */
.sh-dropdown {
    position: relative;
}

.sh-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--sh-white);
    border-radius: var(--sh-radius-md);
    box-shadow: var(--sh-shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--sh-transition-fast);
    z-index: 100;
    padding: 12px 0;
    border: 1px solid var(--sh-gray-100);
}

.sh-dropdown:hover .sh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sh-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--sh-gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--sh-transition-fast);
}

.sh-dropdown-item:hover {
    background: var(--sh-gray-50);
    color: var(--sh-primary);
    padding-left: 24px;
}

/* ============================================
   6. VIBRANT HERO SECTION
   ============================================ */
.sh-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--sh-gradient-hero);
}

.sh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sh-hero-media img,
.sh-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(45, 52, 54, 0.6) 50%, transparent 100%);
    z-index: 2;
}

.sh-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    color: var(--sh-white);
}

.sh-hero-subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.3);
    border-radius: var(--sh-radius-full);
    border: 1px solid rgba(255, 107, 53, 0.5);
}

.sh-hero-title {
    font-family: var(--sh-font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.sh-hero-title span {
    background: var(--sh-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sh-hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* ============================================
   7. VIBRANT BUTTON SYSTEM
   ============================================ */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--sh-font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: var(--sh-radius-full);
    cursor: pointer;
    transition: all var(--sh-transition-base);
    position: relative;
    overflow: hidden;
}

.sh-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.5s;
}

.sh-btn:hover::before {
    left: 100%;
}

.sh-btn-primary {
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: var(--sh-white);
}

.sh-btn-secondary {
    background: var(--sh-white);
    color: var(--sh-gray-800);
    border: 2px solid var(--sh-gray-800);
}

.sh-btn-secondary:hover {
    background: var(--sh-gray-800);
    color: var(--sh-white);
    transform: translateY(-3px);
}

.sh-btn-accent {
    background: var(--sh-gradient-accent);
    color: var(--sh-white);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}

.sh-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.5);
    color: var(--sh-white);
}

.sh-btn-dark {
    background: var(--sh-gradient-dark);
    color: var(--sh-white);
}

.sh-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-shadow-lg);
    color: var(--sh-white);
}

.sh-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sh-white);
    border: 2px solid var(--sh-white);
    backdrop-filter: blur(10px);
}

.sh-btn-ghost:hover {
    background: var(--sh-white);
    color: var(--sh-gray-800);
}

.sh-btn-lg {
    padding: 18px 44px;
    font-size: 15px;
}

.sh-btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.sh-btn-full {
    width: 100%;
}

/* ============================================
   8. PREMIUM PRODUCT CARDS
   ============================================ */
.sh-product-card {
    position: relative;
    background: var(--sh-white);
    border-radius: var(--sh-radius-lg);
    overflow: hidden;
    transition: all var(--sh-transition-base);
    box-shadow: var(--sh-shadow-sm);
}

.sh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-shadow-xl);
}

.sh-product-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sh-gray-100) 0%, var(--sh-gray-200) 100%);
}

.sh-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sh-transition-slow);
}

.sh-product-card:hover .sh-product-media img {
    transform: scale(1.1);
}

.sh-product-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--sh-transition-base);
}

.sh-product-card:hover .sh-product-secondary {
    opacity: 1;
}

.sh-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.sh-badge {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--sh-radius-full);
}

.sh-badge-new {
    background: var(--sh-gradient-accent);
    color: var(--sh-white);
}

.sh-badge-sale {
    background: var(--sh-danger);
    color: var(--sh-white);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.sh-badge-hot {
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
}

.sh-badge-bestseller {
    background: var(--sh-gradient-purple);
    color: var(--sh-white);
}

/* Wishlist Button */
.sh-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: var(--sh-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--sh-shadow-md);
    transition: all var(--sh-transition-fast);
    opacity: 0;
    transform: scale(0.8);
}

.sh-product-card:hover .sh-wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.sh-wishlist-btn:hover {
    background: var(--sh-primary);
    color: var(--sh-white);
    transform: scale(1.1) !important;
}

.sh-wishlist-btn.active {
    background: var(--sh-primary);
    color: var(--sh-white);
}

.sh-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--sh-transition-base);
    z-index: 2;
}

.sh-product-card:hover .sh-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.sh-quick-add {
    width: 100%;
    padding: 14px;
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
    border: none;
    border-radius: var(--sh-radius-md);
    font-family: var(--sh-font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--sh-transition-fast);
    box-shadow: var(--sh-shadow-md);
}

.sh-quick-add:hover {
    transform: scale(1.02);
    box-shadow: var(--sh-shadow-lg);
}

.sh-product-info {
    padding: 20px;
}

.sh-product-vendor {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sh-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.sh-product-title {
    font-family: var(--sh-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-gray-800);
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.sh-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--sh-transition-fast);
}

.sh-product-title a:hover {
    color: var(--sh-primary);
}

.sh-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sh-price-current {
    font-family: var(--sh-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-primary);
}

.sh-price-compare {
    font-size: 14px;
    color: var(--sh-gray-400);
    text-decoration: line-through;
}

/* Product Rating */
.sh-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.sh-stars {
    color: var(--sh-gold);
    font-size: 12px;
}

.sh-rating-count {
    font-size: 12px;
    color: var(--sh-gray-500);
}

/* ============================================
   9. SECTION LAYOUTS
   ============================================ */
.sh-section {
    padding: 80px 0;
}

.sh-section-sm {
    padding: 40px 0;
}

.sh-section-lg {
    padding: 100px 0;
}

.sh-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sh-section-subtitle {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--sh-primary);
    font-weight: 700;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--sh-radius-full);
}

.sh-section-title {
    font-family: var(--sh-font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin: 0;
    color: var(--sh-gray-900);
}

/* ============================================
   10. TRUST/BENEFIT ICONS
   ============================================ */
.sh-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
}

.sh-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--sh-white);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow-sm);
    transition: all var(--sh-transition-base);
}

.sh-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-shadow-lg);
}

.sh-benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    background: var(--sh-gradient-primary);
    color: var(--sh-white);
    border-radius: var(--sh-radius-lg);
}

.sh-benefit-title {
    font-family: var(--sh-font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--sh-gray-800);
}

.sh-benefit-text {
    font-size: 14px;
    color: var(--sh-gray-500);
    line-height: 1.5;
}

/* ============================================
   11. COLLECTION CARDS
   ============================================ */
.sh-collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/5;
    text-decoration: none;
    border-radius: var(--sh-radius-xl);
    box-shadow: var(--sh-shadow-md);
}

.sh-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sh-transition-slow);
}

.sh-collection-card:hover img {
    transform: scale(1.1);
}

.sh-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(26, 26, 46, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--sh-white);
}

.sh-collection-name {
    font-family: var(--sh-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sh-collection-count {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   12. TESTIMONIALS
   ============================================ */
.sh-testimonial-card {
    background: var(--sh-white);
    padding: 32px;
    border-radius: var(--sh-radius-xl);
    box-shadow: var(--sh-shadow-md);
    height: 100%;
    transition: all var(--sh-transition-base);
    border: 1px solid var(--sh-gray-100);
}

.sh-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-shadow-xl);
}

.sh-testimonial-stars {
    color: var(--sh-gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.sh-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sh-gray-600);
    margin-bottom: 24px;
}

.sh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sh-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sh-primary);
}

.sh-testimonial-name {
    font-family: var(--sh-font-display);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.sh-testimonial-role {
    font-size: 13px;
    color: var(--sh-gray-500);
}

/* ============================================
   13. FOOTER BASE
   (Premium footer styles are in footer.php)
   ============================================ */
.sh-footer {
    background: linear-gradient(160deg, #0A0F1A 0%, #121826 60%, #0d1829 100%);
    color: rgba(255, 255, 255, 0.75);
    /* No top padding — footer.php handles internal spacing */
}

/* Legacy compat — kept for any direct usage in page templates */
.sh-footer-logo {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--sh-gold);
    display: block;
}

.sh-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sh-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--sh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    text-decoration: none;
    transition: all var(--sh-transition-base);
}

.sh-social-link:hover {
    background: var(--sh-gold);
    color: #0A0F1A;
    transform: translateY(-4px);
    border-color: var(--sh-gold);
}

/* ============================================
   14. CART STYLES
   ============================================ */
.sh-cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.sh-cart-header {
    text-align: center;
    margin-bottom: 48px;
}

.sh-cart-title {
    font-family: var(--sh-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sh-cart-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--sh-gray-200);
}

.sh-cart-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--sh-gray-100);
    border-radius: var(--sh-radius-md);
}

.sh-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--sh-gray-200);
    border-radius: var(--sh-radius-md);
    overflow: hidden;
}

.sh-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--sh-white);
    cursor: pointer;
    font-size: 18px;
    color: var(--sh-gray-700);
    transition: all var(--sh-transition-fast);
}

.sh-qty-btn:hover {
    background: var(--sh-primary);
    color: var(--sh-white);
}

.sh-qty-value {
    width: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.sh-cart-summary {
    background: linear-gradient(135deg, var(--sh-gray-50) 0%, var(--sh-white) 100%);
    padding: 32px;
    border-radius: var(--sh-radius-xl);
    position: sticky;
    top: 100px;
    border: 1px solid var(--sh-gray-200);
}

.sh-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
}

.sh-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid var(--sh-gray-200);
    font-family: var(--sh-font-display);
    font-size: 20px;
    font-weight: 700;
}

.sh-summary-total span:last-child {
    color: var(--sh-primary);
}

/* ============================================
   15. FORM ELEMENTS
   ============================================ */
.sh-form-group {
    margin-bottom: 24px;
}

.sh-form-label {
    display: block;
    font-family: var(--sh-font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--sh-gray-700);
}

.sh-form-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    border: 2px solid var(--sh-gray-200);
    border-radius: var(--sh-radius-md);
    background: var(--sh-white);
    transition: all var(--sh-transition-fast);
}

.sh-form-input:focus {
    outline: none;
    border-color: var(--sh-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.sh-form-select {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    border: 2px solid var(--sh-gray-200);
    border-radius: var(--sh-radius-md);
    background: var(--sh-white);
    cursor: pointer;
}

/* ============================================
   16. FULLY RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .sh-hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .sh-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .sh-header-grid {
        grid-template-columns: auto 1fr auto;
    }

    .sh-nav-list {
        display: none;
    }

    .sh-hero {
        min-height: 70vh;
    }

    .sh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .sh-section {
        padding: 60px 0;
    }

    .sh-section-lg {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .sh-hero {
        min-height: 65vh;
        text-align: center;
    }

    .sh-hero-content {
        max-width: 100%;
    }

    .sh-hero-title {
        font-size: 2rem;
    }

    .sh-hero-description {
        font-size: 16px;
    }

    .sh-btn {
        padding: 14px 24px;
        font-size: 13px;
    }

    .sh-btn-lg {
        padding: 16px 28px;
    }

    .sh-section {
        padding: 50px 0;
    }

    .sh-section-header {
        margin-bottom: 30px;
    }

    .sh-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sh-benefit-item {
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .sh-benefit-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 26px;
        flex-shrink: 0;
    }

    .sh-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .sh-footer-brand {
        max-width: 100%;
    }

    .sh-social-links {
        justify-content: center;
    }

    .sh-cart-summary {
        position: static;
    }

    .sh-collection-card {
        aspect-ratio: 16/10;
    }

    .sh-product-card:hover {
        transform: none;
    }

    .sh-product-actions {
        opacity: 1;
        transform: translateY(0);
        position: static;
        padding: 0 16px 16px;
        background: none;
    }

    .sh-wishlist-btn {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 575px) {
    .sh-announcement-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .sh-logo {
        font-size: 22px;
    }

    .sh-header-grid {
        padding: 12px 0;
        gap: 10px;
    }

    .sh-action-btn {
        padding: 8px;
    }

    .sh-action-btn i {
        font-size: 20px;
    }

    .sh-hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 6px 12px;
    }

    .sh-hero-title {
        font-size: 1.75rem;
    }

    .sh-section-title {
        font-size: 1.5rem;
    }

    .sh-product-info {
        padding: 14px;
    }

    .sh-product-title {
        font-size: 14px;
    }

    .sh-price-current {
        font-size: 16px;
    }

    .sh-cart-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   17. ANIMATIONS
   ============================================ */
@keyframes sh-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sh-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sh-scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sh-animate-fade {
    animation: sh-fade-in 0.6s ease forwards;
}

.sh-animate-slide-up {
    animation: sh-slide-up 0.6s ease forwards;
}

.sh-float {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.sh-text-gradient {
    background: var(--sh-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sh-bg-gradient {
    background: var(--sh-gradient-primary);
}

.sh-bg-light {
    background: var(--sh-gray-50);
}

.sh-bg-dark {
    background: var(--sh-gray-900);
    color: var(--sh-white);
}

.sh-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sh-shadow-glow {
    box-shadow: var(--sh-shadow-glow);
}

/* ============================================
   19. PRODUCT PAGE SPECIFIC
   ============================================ */
.sh-product-gallery {
    position: sticky;
    top: 100px;
}

.sh-main-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--sh-gray-100);
    border-radius: var(--sh-radius-xl);
    overflow: hidden;
    margin-bottom: 16px;
}

.sh-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform var(--sh-transition-base);
}

.sh-main-image:hover img {
    transform: scale(1.05);
}

.sh-thumb-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.sh-thumb-item {
    width: 80px;
    min-width: 80px;
    aspect-ratio: 1;
    border-radius: var(--sh-radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--sh-transition-fast);
}

.sh-thumb-item:hover,
.sh-thumb-item.active {
    border-color: var(--sh-primary);
}

.sh-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Section */
.sh-reviews-section {
    background: var(--sh-gray-50);
    border-radius: var(--sh-radius-xl);
    padding: 32px;
    margin-top: 40px;
}

.sh-review-card {
    background: var(--sh-white);
    padding: 24px;
    border-radius: var(--sh-radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--sh-shadow-sm);
}

.sh-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.sh-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sh-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sh-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-white);
    font-weight: 700;
}

.sh-review-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.sh-review-date {
    font-size: 13px;
    color: var(--sh-gray-500);
}

.sh-review-stars {
    color: var(--sh-gold);
}

.sh-review-text {
    color: var(--sh-gray-600);
    line-height: 1.7;
}

.sh-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--sh-accent);
    font-weight: 600;
}

/* Review Stats */
.sh-review-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px;
    background: var(--sh-white);
    border-radius: var(--sh-radius-lg);
    margin-bottom: 24px;
}

.sh-stats-score {
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid var(--sh-gray-200);
}

.sh-stats-number {
    font-family: var(--sh-font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--sh-primary);
    line-height: 1;
}

.sh-stats-stars {
    color: var(--sh-gold);
    margin: 8px 0;
}

.sh-stats-count {
    font-size: 14px;
    color: var(--sh-gray-500);
}

.sh-stats-bars {
    flex: 1;
}

.sh-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.sh-bar-label {
    width: 50px;
    font-size: 13px;
    color: var(--sh-gray-600);
}

.sh-bar-track {
    flex: 1;
    height: 8px;
    background: var(--sh-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.sh-bar-fill {
    height: 100%;
    background: var(--sh-gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.sh-bar-count {
    width: 30px;
    font-size: 13px;
    color: var(--sh-gray-500);
    text-align: right;
}

/* Advanced Premium Effects */
.sh-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sh-hero:hover .sh-parallax-img {
    transform: scale(1.05);
}

.sh-scroll-indicator {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.sh-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--sh-accent);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

.sh-btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    backdrop-filter: blur(5px);
}

.sh-btn-outline-white:hover {
    background: white;
    color: var(--sh-primary) !important;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-shadow-lg);
}

.hover-text-accent {
    transition: color 0.3s ease;
}

.hover-text-accent:hover {
    color: var(--sh-accent) !important;
}

.hover-text-danger:hover {
    color: var(--sh-danger) !important;
}

/* Glassmorphism Classes */
.sh-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sh-glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .sh-hero-title {
        font-size: 2.5rem;
    }

    .sh-section {
        padding: 60px 0;
    }
}

/* ============================================
   Carousel - Premium Slider
   ============================================ */
.sh-hero-slider {
    height: 85vh;
    min-height: 600px;
    background-color: var(--sh-primary-dark);
}

.sh-hero-slider .carousel-inner,
.sh-hero-slider .carousel-item {
    height: 100%;
}

.sh-hero-slider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.sh-hero-slider .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding-bottom: 0;
    background: linear-gradient(to right, rgba(10, 15, 26, 0.85) 0%, rgba(10, 15, 26, 0) 100%);
    z-index: 10;
}

.sh-hero-slider .carousel-content {
    max-width: 800px;
    padding: 0 5%;
}

.sh-hero-slider .sh-hero-subtitle {
    display: block;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--sh-accent);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.sh-hero-slider .sh-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--sh-white);
    font-family: var(--sh-font-display);
}

.sh-hero-slider .sh-hero-description {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 3rem;
    color: var(--sh-white);
    max-width: 600px;
}

/* Animations */
.carousel-item-next.carousel-item-start .sh-hero-subtitle,
.carousel-item-prev.carousel-item-end .sh-hero-subtitle,
.active.carousel-item .sh-hero-subtitle {
    animation: fadeInUp 0.8s ease backwards;
}

.carousel-item-next.carousel-item-start .sh-hero-title,
.carousel-item-prev.carousel-item-end .sh-hero-title,
.active.carousel-item .sh-hero-title {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.carousel-item-next.carousel-item-start .sh-hero-description,
.carousel-item-prev.carousel-item-end .sh-hero-description,
.active.carousel-item .sh-hero-description {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.carousel-item-next.carousel-item-start .sh-hero-actions,
.carousel-item-prev.carousel-item-end .sh-hero-actions,
.active.carousel-item .sh-hero-actions {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Custom Controls */
.sh-hero-slider .carousel-control-prev,
.sh-hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sh-hero-slider:hover .carousel-control-prev,
.sh-hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.sh-hero-slider .carousel-control-prev:hover,
.sh-hero-slider .carousel-control-next:hover {
    background: var(--sh-accent);
    border-color: var(--sh-accent);
    color: white;
}

/* Custom Indicators */
.sh-hero-slider .carousel-indicators {
    justify-content: flex-start;
    margin-left: 5%;
    margin-bottom: 4rem;
    gap: 12px;
}

.sh-hero-slider .carousel-indicators [data-bs-target] {
    width: 45px;
    height: 3px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

.sh-hero-slider .carousel-indicators .active {
    background-color: var(--sh-accent);
    width: 70px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .sh-hero-slider .carousel-caption {
        background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.5) 100%);
        text-align: center;
        align-items: center;
        padding-bottom: 2rem;
    }

    .sh-hero-slider .carousel-content {
        padding: 0 1.5rem;
    }

    .sh-hero-slider .carousel-indicators {
        justify-content: center;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .sh-hero-slider .carousel-control-prev,
    .sh-hero-slider .carousel-control-next {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}