/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --burgundy: hsl(352, 75%, 20%);
    --burgundy-light: hsl(352, 70%, 27%);
    --burgundy-dark: hsl(352, 80%, 13%);
    --burgundy-alpha: rgba(81, 8, 19, 0.9);
    
    --dark-bg: hsl(220, 14%, 10%);
    --dark-section: hsl(220, 12%, 14%);
    --dark-card: hsl(220, 10%, 18%);
    
    --light-bg: hsl(0, 0%, 100%);
    --light-section: hsl(210, 15%, 96%);
    
    --beige: hsl(36, 44%, 93%);
    --beige-dark: hsl(36, 25%, 85%);
    --beige-light: hsl(36, 50%, 97%);
    
    --metallic-silver: hsl(210, 10%, 85%);
    --metallic-steel: hsl(210, 14%, 35%);
    --metallic-border: hsl(210, 10%, 26%);
    
    --text-dark: hsl(220, 15%, 15%);
    --text-muted: hsl(210, 10%, 45%);
    --text-light: hsl(210, 15%, 95%);
    --text-white: #ffffff;
    
    /* Typography */
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.25);
    --shadow-burgundy: 0 8px 24px rgba(128, 0, 32, 0.3);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white) !important; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--text-white);
    box-shadow: var(--shadow-burgundy);
}

.btn-primary:hover {
    background-color: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(128, 0, 32, 0.4);
}

.btn-secondary {
    background-color: var(--metallic-steel);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: hsl(210, 14%, 45%);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn-outline:hover {
    background-color: var(--burgundy);
    color: var(--text-white);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 30, 36, 0.95);
    border-bottom: 1px solid var(--metallic-border);
    backdrop-filter: blur(8px);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 50px;
    width: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--metallic-silver);
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1.5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--burgundy-light);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: block;
}

.nav-cta-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background-color: var(--burgundy);
    color: var(--text-white);
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    border-left: 3px solid var(--metallic-silver);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 45%, var(--beige) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--metallic-silver);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-store-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--metallic-border);
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-store-img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image-side {
    display: flex;
    justify-content: center;
}

.about-logo-badge {
    max-width: 320px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--beige-dark);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--burgundy);
    margin-bottom: 28px;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

.about-desc {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-subdesc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES (WHAT SHOP DOES)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--dark-section);
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card:nth-child(1) {
    grid-column: span 2;
}
.service-card:nth-child(2) {
    grid-column: span 1;
}
.service-card:nth-child(3) {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 1;
    }
}

.service-card {
    background-color: var(--dark-card);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--metallic-border);
    border-top: 4px solid var(--metallic-steel);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.25);
    border-top-color: var(--burgundy);
    border-color: rgba(128, 0, 32, 0.3);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--metallic-border);
    color: var(--metallic-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background-color: var(--burgundy);
    color: var(--text-white);
    transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-light);
    opacity: 0.85;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */
.advantages-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 5px solid var(--burgundy);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.advantage-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-md);
    border-color: rgba(128,0,32,0.15);
    background-color: var(--beige-light);
}

.adv-checkbox {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--burgundy);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.advantage-item:hover .adv-checkbox {
    transform: scale(1.1) rotate(360deg);
    background-color: var(--burgundy-light);
}

.advantage-item span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.audience-block {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--text-white);
    padding: 48px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.audience-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.audience-content h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.audience-content p {
    font-size: 1.1rem;
    color: var(--metallic-silver);
    max-width: 800px;
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--light-section);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    border: 2px solid var(--metallic-silver);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 0, 32, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay span {
    color: var(--text-white);
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   CONTACTS SECTION
   ========================================================================== */
.contacts-section {
    padding: 100px 0;
    background-color: var(--dark-section);
    color: var(--text-light);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}

.contacts-info-card {
    background-color: var(--dark-bg);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--metallic-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-name {
    font-size: 1.6rem;
    color: var(--text-white);
    margin: 24px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--metallic-border);
    color: var(--burgundy-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.detail-item:hover .detail-icon {
    background-color: var(--burgundy);
    color: var(--text-white);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.detail-text .value {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
}

.detail-text .link:hover {
    color: var(--burgundy-light);
}

.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.map-container {
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--metallic-border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-container iframe {
    transition: var(--transition-slow);
    filter: grayscale(0.9) invert(0.9) contrast(1.2) brightness(0.9);
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0) contrast(1) brightness(1);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--beige);
    color: var(--text-dark);
}

.final-cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 32px 0;
    border-top: 1px solid var(--metallic-border);
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   LIGHTBOX MODAL FOR GALLERY
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 15, 18, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70vh;
    border: 3px solid var(--metallic-silver);
    border-radius: var(--radius-sm);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--text-white);
    font-size: 60px;
    font-weight: 300;
    transition: var(--transition-fast);
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--burgundy-light);
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: var(--text-white);
    padding: 20px 0;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-store-img {
        max-height: 350px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-logo-badge {
        max-width: 240px;
    }
    
    .accent-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        background-color: var(--dark-bg);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        width: 100%;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 12px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        margin-top: 40px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .nav-cta-mobile .btn {
        width: 100%;
    }
    
    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   EXTRA PERFECTING POLISH
   ========================================================================== */
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--metallic-steel);
    border-radius: var(--radius-sm);
    border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--burgundy-light), var(--burgundy));
    width: 0%;
    z-index: 1010;
    transition: width 0.1s ease;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px; /* Hidden initially */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--burgundy);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: right var(--transition-normal), background-color var(--transition-fast), transform var(--transition-fast);
}
.back-to-top.show {
    right: 30px;
}
.back-to-top:hover {
    background-color: var(--burgundy-light);
    transform: translateY(-3px);
}

/* Hero Rating Badge */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}
.hero-rating .stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.hero-rating .rating-text {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--metallic-silver);
    letter-spacing: 1px;
}

