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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --text-dark: #1a1a2e;
    --text-muted: #a0a0a0;
    --dark: #0d0d0d;
    --dark-lighter: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.sg-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sg-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.sg-preloader-content {
    text-align: center;
}

.sg-preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
    text-align: center;
}

.sg-preloader-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

.sg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.sg-navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
}

.sg-navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-navbar-logo {
    text-decoration: none;
}

.sg-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}

.sg-logo-signature {
    position: absolute;
    height: 75px;
    width: auto;
    color: rgba(212, 175, 55, 0.15);
    z-index: 0;
    transform: scale(1.3);
}

.sg-navbar.scrolled .sg-logo-signature {
    height: 55px;
    transform: scale(1.2);
}

.sg-logo-text {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sg-navbar.scrolled .sg-logo-text {
    font-size: 1.9rem;
}


.sg-navbar-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.sg-navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.sg-navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.sg-navbar-menu a:hover::after {
    width: 100%;
}

.sg-navbar-menu a:hover {
    color: var(--gold);
}

.sg-navbar-cta {
    background: var(--gradient-gold);
    color: var(--primary) !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.sg-navbar-cta::after {
    display: none !important;
}

.sg-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.sg-navbar-social {
    display: flex;
    gap: 15px;
}

.sg-navbar-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.sg-navbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.sg-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.sg-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.sg-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.sg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s linear;
}

.sg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.7) 50%, rgba(15, 52, 96, 0.8) 100%);
}

.sg-signature-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 5;
    pointer-events: none;
    will-change: transform, filter, opacity;
    transition: all 0.15s linear;
    opacity: 0;
    filter: blur(30px);
}

.sg-hero.animations-ready .sg-signature-bg {
    animation: signatureReveal 2s ease 0.3s forwards;
}

@keyframes signatureReveal {
    0% {
        opacity: 0;
        filter: blur(30px);
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }
}

.sg-signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(5rem, 18vw, 16rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.02em;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.1);
}

.sg-signature-svg {
    width: clamp(400px, 80vw, 1200px);
    height: auto;
    color: rgba(255, 255, 255, 0.45);
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.15));
    user-select: none;
}

.sg-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.sg-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-badge {
    animation: blurReveal 1.2s ease 0.1s forwards;
}

.sg-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-title {
    animation: blurReveal 1.5s ease 0.4s forwards;
}

.sg-hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sg-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-subtitle {
    animation: blurReveal 1.2s ease 1s forwards;
}

.sg-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.sg-hero.animations-ready .sg-hero-buttons {
    animation: blurReveal 1.2s ease 1.4s forwards;
}

@keyframes blurReveal {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.sg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.sg-btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.sg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.sg-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.sg-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.sg-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.sg-hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-hero-scroll .scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
}

.sg-hero-scroll .scroll-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

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

@keyframes scrollDown {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

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

.sg-section {
    padding: 120px 0;
    position: relative;
}

.sg-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.sg-section-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.sg-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.sg-section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-section-desc {
    color: var(--gray);
    font-size: 1.1rem;
}

.sg-parallax-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sg-parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: -1;
}

.sg-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.sg-schedule {
    background: var(--gray-light);
}

.sg-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sg-schedule-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sg-schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.sg-schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.sg-schedule-card:hover::before {
    transform: scaleX(1);
}

.sg-schedule-card.today {
    background: var(--gradient-primary);
    color: var(--white);
}

.sg-schedule-card.today::before {
    transform: scaleX(1);
}

.sg-schedule-card.today .sg-schedule-day {
    color: var(--gold);
}

.sg-schedule-card.today .sg-schedule-hours {
    color: rgba(255,255,255,0.9);
}

.sg-schedule-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.sg-schedule-hours {
    color: var(--gray);
    font-size: 0.95rem;
}

.sg-schedule-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}

.sg-schedule-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.sg-schedule-card.today .sg-schedule-date {
    color: var(--white);
}

.sg-schedule-card.past {
    opacity: 0.5;
}

.sg-schedule-card.past .sg-schedule-hours {
    text-decoration: line-through;
}

.sg-schedule-card.closed {
    opacity: 0.7;
}

.sg-schedule-card.closed .sg-schedule-hours {
    color: #c0392b;
    font-weight: 600;
}

a.sg-schedule-card {
    text-decoration: none;
    display: block;
}

.sg-schedule-card.clickable {
    cursor: pointer;
}

.sg-schedule-card.clickable:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--gold);
}

.sg-schedule-book-hint {
    display: block;
    margin-top: 15px;
    padding: 8px 15px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.sg-schedule-card.clickable:hover .sg-schedule-book-hint {
    opacity: 1;
    transform: translateY(0);
}

.sg-schedule-card.today.clickable:hover .sg-schedule-book-hint {
    background: var(--white);
    color: var(--primary);
}

.sg-schedule-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sg-schedule-nav-btn {
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.sg-schedule-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.sg-schedule-nav-btn i + i {
    margin-left: -5px;
}

.sg-schedule-week-selector {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 250px;
    text-align: center;
}

.sg-schedule-today-btn {
    text-align: center;
    margin-top: 30px;
}

.sg-btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sg-btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

@media (max-width: 768px) {
    .sg-schedule-nav {
        gap: 10px;
    }
    
    .sg-schedule-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .sg-schedule-week-selector {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 180px;
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
}

.sg-prices {
    background: var(--white);
}

.sg-prices-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sg-prices-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.sg-prices-image:hover {
    transform: scale(1.02);
}

.sg-prices-image img {
    width: 100%;
    display: block;
}

.sg-stats {
    position: relative;
    z-index: 10;
    padding: 80px 30px;
}

.sg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sg-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.sg-stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.sg-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.sg-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.sg-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sg-contact {
    position: relative;
    z-index: 10;
    padding: 120px 0;
}

.sg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sg-contact-content {
    color: var(--white);
}

.sg-contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.sg-contact-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-contact-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sg-contact-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sg-contact-phone-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.sg-contact-phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
}

.sg-contact-phone-number a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sg-contact-phone-number a:hover {
    color: var(--gold);
}

.sg-contact-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    color: rgba(255,255,255,0.5);
}

.sg-contact-divider::before,
.sg-contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.sg-contact-map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 450px;
}

.sg-contact-map #map {
    width: 100%;
    height: 100%;
}

.sg-footer {
    background: var(--primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.sg-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.sg-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.sg-footer-brand {
    max-width: 300px;
}

.sg-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.sg-footer-logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px 30px;
}

.sg-footer-signature {
    position: absolute;
    height: 70px;
    width: auto;
    color: rgba(212, 175, 55, 0.12);
    transform: scale(1.4);
    z-index: 0;
}

.sg-footer-text {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sg-footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.sg-footer-social {
    display: flex;
    gap: 15px;
}

.sg-footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.sg-footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.sg-footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.sg-footer-links {
    list-style: none;
}

.sg-footer-links li {
    margin-bottom: 12px;
}

.sg-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sg-footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.sg-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.sg-footer-contact-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.sg-footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sg-footer-contact-item a:hover {
    color: var(--gold);
}

.sg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.sg-footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.sg-floating-shapes {
    display: none;
}

.sg-floating-shape {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(3deg);
    }
}

.sg-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.sg-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.sg-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sg-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .sg-navbar-menu {
        display: none;
    }
    
    .sg-mobile-toggle {
        display: flex;
    }
    
    .sg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sg-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .sg-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sg-logo-wrapper {
        padding: 5px 10px;
    }
    
    .sg-logo-signature {
        height: 45px;
        transform: scale(1.1);
    }
    
    .sg-logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .sg-navbar.scrolled .sg-logo-text {
        font-size: 1.1rem;
    }
    
    .sg-navbar.scrolled .sg-logo-signature {
        height: 35px;
    }
    
    .sg-hero-badge {
        display: none;
    }
    
    .sg-section {
        padding: 80px 0;
    }
    
    .sg-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sg-stats {
        padding: 60px 20px;
    }
    
    .sg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sg-stat-card {
        padding: 25px 15px;
    }
    
    .sg-signature-text {
        font-size: clamp(3rem, 15vw, 8rem);
    }
    
    .sg-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sg-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sg-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sg-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.marker {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    animation: markerPulse 2s infinite;
}

.marker::after {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(45deg);
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(212, 175, 55, 0.8);
    }
}

.sg-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: right 0.4s ease;
    padding: 100px 40px 40px;
}

.sg-mobile-menu.active {
    right: 0;
}

.sg-mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.sg-mobile-menu-close:hover {
    background: var(--gold);
    color: var(--primary);
}

.sg-mobile-menu-list {
    list-style: none;
}

.sg-mobile-menu-list li {
    margin-bottom: 20px;
}

.sg-mobile-menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: var(--transition);
}

.sg-mobile-menu-list a:hover {
    color: var(--gold);
}

.sg-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sg-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sg-community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.sg-community-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.sg-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 140px;
    transition: var(--transition);
}

.sg-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sg-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.sg-stat-item .sg-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.sg-stat-item .sg-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.sg-reviews-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.sg-reviews-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sg-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.sg-social-btn {
    height: 50px;
    padding: 0 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sg-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.sg-social-btn i {
    font-size: 1.2rem;
}

.sg-social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.sg-social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bbf);
}

.sg-social-btn.google {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.sg-reviews-track-wrapper {
    width: 100%;
    position: relative;
}

.sg-reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.sg-review-card {
    --card-scale: 1;
    flex: 0 0 320px;
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 28px;
    transform: scale(var(--card-scale));
    transition: opacity 0.4s ease, transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
}

.sg-review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.sg-review-card:hover {
    transform: scale(calc(var(--card-scale) * 1.03));
}

.sg-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.sg-review-stars i {
    color: #f4b400;
    font-size: 1.1rem;
}

.sg-review-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 70px;
    max-height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 1;
}

.sg-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.sg-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.sg-review-info {
    display: flex;
    flex-direction: column;
}

.sg-review-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.sg-review-date {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sg-review-date i {
    color: #4285f4;
}

.sg-reviews-nav {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.sg-reviews-nav:hover {
    background: var(--white);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.sg-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.sg-reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.sg-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.sg-btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary);
}


@media (max-width: 1200px) {
    .sg-community-container {
        padding: 60px 20px;
    }
    
    .sg-community-stats {
        gap: 20px;
    }
    
    .sg-stat-item {
        padding: 20px 25px;
        min-width: 120px;
    }
    
    .sg-review-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .sg-community-container {
        padding: 50px 15px;
    }
    
    .sg-community-stats {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .sg-stat-item {
        padding: 18px 22px;
        min-width: 100px;
    }
    
    .sg-stat-item .sg-stat-number {
        font-size: 1.5rem;
    }
    
    .sg-stat-item .sg-stat-label {
        font-size: 0.8rem;
    }
    
    .sg-reviews-carousel {
        flex-direction: column;
        gap: 20px;
    }
    
    .sg-reviews-nav {
        display: none;
    }
    
    .sg-review-card {
        flex: 0 0 280px;
    }
    
    .sg-social-btn {
        padding: 0 18px;
        height: 45px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .sg-social-btn i {
        font-size: 1rem;
    }
    
    .sg-reviews-track {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 15px;
        transform: none !important;
    }
    
    .sg-reviews-track::-webkit-scrollbar {
        display: none;
    }
    
    .sg-review-card {
        scroll-snap-align: center;
        flex: 0 0 280px;
        opacity: 1 !important;
    }
}

.sg-review-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sg-review-popup.active {
    opacity: 1;
    visibility: visible;
}

.sg-review-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.sg-review-popup-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-review-popup.active .sg-review-popup-content {
    transform: scale(1) translateY(0);
}

.sg-review-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-review-popup-close:hover {
    background: var(--accent);
    color: var(--white);
}

.sg-review-popup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sg-review-popup-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.sg-review-popup-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.sg-review-popup-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sg-review-popup-stars {
    display: flex;
    gap: 3px;
    color: #f4b400;
    font-size: 1.1rem;
}

.sg-review-popup-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.sg-review-popup-body {
    position: relative;
    padding-left: 40px;
}

.sg-review-popup-google {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: #4285f4;
}

.sg-review-popup-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

@media (max-width: 768px) {
    .sg-review-popup-content {
        padding: 25px;
        margin: 20px;
    }
    
    .sg-review-popup-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .sg-review-popup-info h3 {
        font-size: 1.2rem;
    }
    
    .sg-review-popup-body p {
        font-size: 1rem;
    }
}

.sg-prices-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.sg-prices-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sg-prices-overlay i {
    font-size: 3rem;
}

.sg-prices-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
}

.sg-prices-image:hover .sg-prices-overlay {
    opacity: 1;
}

.sg-prices-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sg-prices-popup.active {
    opacity: 1;
    visibility: visible;
}

.sg-prices-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.sg-prices-popup-content {
    position: relative;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.98));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-prices-popup-content::-webkit-scrollbar {
    width: 8px;
}

.sg-prices-popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sg-prices-popup-content::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

.sg-prices-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.sg-prices-popup-close:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1a2e;
    transform: rotate(90deg);
}

.sg-prices-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

.sg-prices-column-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sg-prices-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sg-prices-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-prices-category-header i {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sg-prices-femme .sg-prices-category-header i {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
}

.sg-prices-homme .sg-prices-category-header i {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.sg-prices-junior .sg-prices-category-header i {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.sg-prices-prestations .sg-prices-category-header i {
    background: linear-gradient(135deg, #d4af37, #e6c866);
    color: #1a1a2e;
}

.sg-prices-category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.sg-prices-lengths {
    display: grid;
    grid-template-columns: 1fr repeat(3, 60px);
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 0 10px 0;
}

.sg-prices-lengths span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d4af37;
}

.sg-prices-lengths-spacer {
    display: block;
}

.sg-price-item {
    display: grid;
    grid-template-columns: 1fr repeat(3, 60px);
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
}

.sg-price-item:last-of-type {
    border-bottom: none;
}

.sg-price-item.sg-price-simple {
    grid-template-columns: 1fr auto;
}

.sg-price-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sg-price-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.sg-price-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.sg-price-values {
    display: contents;
}

.sg-price-values span,
.sg-price-single {
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    padding: 6px 8px;
    border-radius: 8px;
}

.sg-price-single {
    min-width: 60px;
}

.sg-price-note {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #d4af37;
    text-align: center;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.sg-prestations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.sg-prestation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sg-prestation-item:last-child {
    border-bottom: none;
}

.sg-prestation-item span:first-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.sg-prestation-item span:last-child {
    font-weight: 700;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.sg-prices-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-prices-footer span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

@media (max-width: 900px) {
    .sg-prices-grid {
        grid-template-columns: 1fr;
    }
    
    .sg-prices-popup-content {
        padding: 25px 20px;
        max-height: 85vh;
    }
}

@media (max-width: 600px) {
    .sg-prices-popup-content {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .sg-prices-category {
        padding: 18px 15px;
    }
    
    .sg-prices-category-header h3 {
        font-size: 1.1rem;
    }
    
    .sg-price-item {
        grid-template-columns: 1fr repeat(3, 50px);
        gap: 6px;
    }
    
    .sg-prices-lengths {
        grid-template-columns: 1fr repeat(3, 50px);
    }
    
    .sg-price-values span,
    .sg-price-single {
        font-size: 0.8rem;
        padding: 5px 4px;
    }
    
    .sg-price-name {
        font-size: 0.85rem;
    }
    
    .sg-price-desc {
        font-size: 0.7rem;
    }
    
    .sg-prices-popup-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}

/* Accueil — teaser boutique */
.sg-home-shop {
    background: linear-gradient(180deg, #faf9f7 0%, #f0eeea 100%);
    padding: 80px 0;
}

.sg-home-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.sg-home-shop-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #fff;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sg-home-shop-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.sg-home-shop-card__name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
}

.sg-home-shop-card__price {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}
