/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #d0b49e;
    --color-primary-dark: #c0a48e;
    --color-accent: #644E3F;
    --color-text: #000000;
    --color-text-light: #333333;
    --color-text-gray: #666666;
    --color-bg: #ffffff;
    --color-bg-gray: #f5f0eb;
    --color-border: #e5e5e5;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-logo: 'Playfair Display', Georgia, serif;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    width: 100%;
    max-width: 100vw;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;
    padding: 0;
}

/* Make header container full width on monitors */
.header .container {
    max-width: 100%;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

/* Nav Link Badge */
.nav-link-badge {
    background-color: var(--color-primary);
    color: #fff !important;
    padding: 8px 28px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-badge:hover {
    background-color: var(--color-primary-dark);
    color: #fff !important;
}

.nav-link-badge.active {
    background-color: var(--color-primary-dark);
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 20px 0;
    gap: 12px;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ced2db;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Responsive video for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-video {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

/* Responsive video for mobile devices */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Responsive video for small mobile devices */
@media (max-width: 480px) {
    .hero-video {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    max-height: clamp(180px, 25vh, 300px);
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(203, 195, 188, 0.9)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
}

.hero-subtitle {
    font-size: clamp(24px, 4.5vw, 36px);
    color: var(--color-accent);
    margin-bottom: 48px;
    font-weight: 300;
    font-family: var(--font-logo);
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
}

/* Fade from left */
.scroll-fade-left {
    transform: translateX(-50px);
}

.scroll-fade-left.animate {
    transform: translateX(0);
}

/* Fade from bottom */
.scroll-fade-up {
    transform: translateY(50px);
}

.scroll-fade-up.animate {
    transform: translateY(0);
}

/* Fade with scale */
.scroll-fade-scale {
    transform: scale(0.9) translateY(30px);
}

.scroll-fade-scale.animate {
    transform: scale(1) translateY(0);
}

.scroll-animate-delay-1 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.4s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-animate-fade {
    animation: logoEntrance 1.2s ease-out;
}

.hero-animate-slide {
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-animate-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-animate-buttons .btn {
    animation: fadeInUp 0.8s ease-out both;
}

.hero-animate-buttons .btn:nth-child(1) {
    animation-delay: 0.8s;
}

.hero-animate-buttons .btn:nth-child(2) {
    animation-delay: 1s;
}

/* Page Hero */
.page-hero {
    background-color: var(--color-bg-gray);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--color-accent);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a3a2f 100%);
    color: var(--color-bg);
    border-radius: 50px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a3a2f 0%, var(--color-accent) 100%);
}

.btn-link {
    color: var(--color-primary);
    padding: 0;
    background: none;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--color-primary-dark);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Hide top line on first section after header (for pages without hero) */
.about-page .section:first-of-type::before,
.treatments-page .section:first-of-type::before,
.services-page .section:first-of-type::before,
.shop-page .section:first-of-type::before,
.gallery-page .section:first-of-type::before,
.contact-page .section:first-of-type::before {
    display: none;
}

.section-white {
    background-color: var(--color-bg);
}

.section-white.peels-section-bg {
    background-color: transparent;
}

.section-gray {
    background-color: #f5f0eb !important;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-gray);
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 1px;
    text-align: left;
}

.mission-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-gray);
    line-height: 1.9;
    font-weight: 300;
    text-align: left;
}

.mission-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
}

/* Treatment Section */
.treatment-section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 400px;
}

.treatment-section-bg .container {
    position: relative;
    z-index: 1;
}

.treatment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.treatment-text-box {
    background-color: #ffffffc1;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.treatment-section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 1px;
    line-height: 1.2;
}

.treatment-section-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text);
    line-height: 1.9;
    font-weight: 300;
    text-align: left;
    margin-bottom: 32px;
}

.treatment-view-more {
    display: inline-block;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-top: 24px;
}

.treatment-view-more:hover {
    color: var(--color-primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
    margin-bottom: 16px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.service-description {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-preview-content {
    max-width: 600px;
}

.about-text {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
}

.about-preview-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Content */
.about-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-founder-name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--color-text);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 16px 0 0 0;
    line-height: 1.3;
}

.about-content-creative {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    padding-top: 40px;
}

.about-image-frame {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.about-text-block {
    position: relative;
    padding-left: 24px;
}

.about-text-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
    opacity: 0.2;
}

.about-intro {
    font-size: 20px;
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-logo);
    letter-spacing: 0.3px;
}

.about-text-block p {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.highlight-block {
    background-color: rgba(208, 180, 158, 0.12);
    padding: 40px 32px 40px 56px;
    border-radius: 8px;
    margin-top: 8px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.highlight-block::before {
    opacity: 0.5;
    width: 4px;
}

.highlight-block p {
    font-size: 20px;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.6;
    font-family: var(--font-logo);
    letter-spacing: 0.3px;
}

.certifications {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.certifications-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

.certifications-list {
    list-style: none;
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 2;
}

.certifications-list li::before {
    content: '•';
    color: var(--color-primary);
    margin-right: 8px;
}

/* Expectations Section */
.expectations-container {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    position: relative;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    transition: transform 0.3s ease;
    padding-bottom: 8px;
}

.expectation-item:hover {
    transform: translateY(-4px);
}

.expectation-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-logo);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.expectation-content {
    flex: 1;
    padding-top: 8px;
    max-width: 100%;
}

.expectation-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.expectation-blurb {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    font-family: var(--font-primary);
    max-width: 100%;
}

.expectation-footer {
    text-align: center;
    margin-top: 48px;
}

.expectation-message {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--color-text);
    font-family: var(--font-logo);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Treatments Page Styles */
.treatment-section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-intro {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.7;
    font-weight: 300;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Peels Section Background */
.peels-section-bg {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    background-repeat: no-repeat !important;
    position: relative;
    background-color: transparent !important;
}

.peels-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.peels-section-bg .container {
    position: relative;
    z-index: 1;
}

/* Peels Grid */
.peels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.peel-item {
    background-image: url('assets/treatment card.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 180px;
    position: relative;
}

.peel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsla(0, 0%, 100%, 0.75);
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
}

.peel-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.peel-header {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    gap: 24px;
}

.peel-item:hover .peel-header {
    background-color: rgba(208, 180, 158, 0.05);
}

/* Hover effects for facial treatments */
.facial-treatments-section .peel-item {
    transition: all 0.3s ease;
}

.facial-treatments-section .peel-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.facial-treatments-section .peel-item:hover .peel-header {
    background-color: rgba(208, 180, 158, 0.05);
}

.facial-treatments-section .peel-header {
    transition: background-color 0.3s ease;
}

/* Make last facial treatment card span full width when 2 columns are displayed */
@media (min-width: 768px) {
    .facial-treatments-section .peels-grid .peel-item:last-child {
        grid-column: 1 / -1;
    }
}


.peel-name {
    font-size: 28px;
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.peel-see-more {
    background-color: transparent;
    border: 2px solid var(--color-primary-dark);
    color: var(--color-primary-dark);
    padding: 12px 32px;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.peel-see-more:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(208, 180, 158, 0.3);
}

.peel-item.active .peel-see-more {
    display: none;
}


.peel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 56px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.peel-item.active .peel-content {
    max-height: 3000px;
    padding: 0 56px 56px;
}


.peel-description {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.9;
    text-align: center;
}

.peel-description p {
    margin: 0 0 28px 0;
    font-weight: 300;
    text-align: center;
}

.peel-description p:last-child {
    margin-bottom: 0;
}

.peel-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 40px 0 20px 0;
    text-align: center;
}

.peel-subtitle:first-of-type {
    margin-top: 0;
}

.peel-benefits-list {
    list-style: none;
    padding: 0;
    margin: 24px auto 32px;
    max-width: 600px;
    text-align: left;
}

.peel-benefits-list li {
    font-size: 18px;
    color: var(--color-text);
    line-height: 2;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.peel-benefits-list li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 26px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Facial Benefits */
.facial-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 64px 0;
}

/* Facial Benefits Carousel */
.facial-benefits-carousel-wrapper {
    position: relative;
    margin: 64px 0;
    padding: 0 60px;
}

.facial-benefits-carousel-container {
    overflow: hidden;
    position: relative;
}

.facial-benefits-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.facial-benefits-carousel-track .benefit-card {
    flex: 0 0 calc(33.333% - 21.33px);
    min-width: 0;
    max-width: none;
}

@media (max-width: 1024px) {
    .facial-benefits-carousel-track .benefit-card {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .facial-benefits-carousel-wrapper {
        padding: 0 50px;
    }
    
    .facial-benefits-carousel-track .benefit-card {
        flex: 0 0 100%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .facial-benefits-carousel-wrapper {
        padding: 0 50px;
    }
}

/* Facial Timeline Section */
.facial-timeline-section {
    padding: 80px 0;
    background-image: url('assets/smear 2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.facial-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
    pointer-events: none;
}

.facial-timeline-section .container {
    position: relative;
    z-index: 1;
}

.facial-timeline-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 48px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.timeline-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    color: var(--color-accent);
    font-family: var(--font-logo);
    margin-bottom: 24px;
    text-align: center;
}

.timeline-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: center;
}

.timeline-container {
    position: relative;
    padding: 40px 20px;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 280px;
}

@media (max-width: 1116px) {
    .timeline-items {
        flex-direction: column !important;
        gap: 24px;
    }
    
    .timeline-item {
        flex: 1;
        max-width: 100% !important;
        width: 100%;
    }
}

.timeline-content {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content:hover {
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.timeline-time {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-logo);
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 768px) {
    .facial-timeline-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .facial-timeline-card {
        padding: 32px 24px;
    }
    
    .timeline-container {
        padding: 20px 0;
    }
    
    .timeline-content {
        padding: 24px 20px;
    }
    
    .timeline-time {
        font-size: 18px;
    }
    
    .timeline-description {
        font-size: 14px;
    }
}

.benefit-card {
    background-color: var(--color-bg);
    padding: 28px;
    border-left: 4px solid var(--color-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-primary);
    transition: none;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: var(--color-primary);
}

.benefit-card:hover::before {
    width: 4px;
    opacity: 1;
}

/* Make last benefit card span full width when 2 columns are displayed */
@media (min-width: 732px) and (max-width: 1113px) {
    .facial-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facial-benefits .benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Make last benefit card span full width when 3 columns are displayed */
@media (min-width: 1114px) and (max-width: 1495px) {
    .facial-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .facial-benefits .benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Make last benefit card span full width on larger monitors (4+ columns) */
@media (min-width: 1496px) {
    .facial-benefits .benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

.benefit-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-logo);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.benefit-text {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.7;
    font-weight: 300;
    margin: 0 0 16px 0;
}

.benefit-text:last-child {
    margin-bottom: 0;
}

/* Facial Timeline */
.facial-timeline {
    margin: 64px 0;
    position: relative;
}

.facial-timeline .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Facial Timeline Section */
.facial-timeline-section-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.facial-timeline-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.facial-timeline-section-bg .container {
    position: relative;
    z-index: 1;
}

.timeline-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    text-align: center;
}

.timeline-intro {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.6;
    font-weight: 300;
    margin: 0 auto 56px;
    text-align: center;
    max-width: 600px;
}

.timeline-wrapper {
    position: relative;
    padding: 80px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), rgba(208, 180, 158, 0.4));
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

/* Vertical timeline for mobile views */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding: 20px 0;
    }
    
    .timeline-line {
        left: 40px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
        transform: none;
        background: linear-gradient(to bottom, var(--color-primary), rgba(208, 180, 158, 0.4));
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 0;
    }
    
    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 32px 0;
        gap: 32px;
    }
    
    .timeline-marker {
        width: 80px;
        height: auto;
        justify-content: center;
        align-items: flex-start;
        padding-top: 4px;
    }
    
    .timeline-content {
        text-align: left;
        border-top: none;
        border-left: 3px solid var(--color-primary);
        padding: 24px 32px;
    }
    
    .timeline-item:hover .timeline-content {
        transform: translateX(8px);
    }
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    padding: 0;
    gap: 24px;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: auto;
    margin-top: -40px;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    border: 6px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-primary), 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px var(--color-primary), 0 6px 20px rgba(208, 180, 158, 0.6);
}

.timeline-content {
    flex: 1;
    background-color: rgba(208, 180, 158, 0.05);
    padding: 32px 24px;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.timeline-item:hover .timeline-content {
    background-color: rgba(208, 180, 158, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-dark);
}

.timeline-date {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.timeline-description {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Facial Treatments */
.facial-treatments {
    margin-top: 64px;
}

.facial-treatments-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
    margin: 0 0 32px 0;
    text-align: center;
}

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

.facial-treatment-item {
    background-color: var(--color-bg);
    padding: 20px 28px;
    border: 1px solid var(--color-border);
    text-align: center;
    font-size: 16px;
    color: var(--color-text);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.facial-treatment-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.value-card {
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.value-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

.value-description {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Studio Content */
.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.studio-text {
    max-width: 600px;
}

.studio-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-bg);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-accent);
    font-family: var(--font-logo);
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--color-text-gray);
    margin-bottom: 40px;
    font-weight: 300;
    font-family: var(--font-logo);
    font-style: italic;
    letter-spacing: 0.5px;
}

.cta-button {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border: 2px solid var(--color-primary);
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Contact */
/* Contact Page Styles */
.contact-page .section-title {
    color: var(--color-accent);
}

/* Contact Form Section Background */
.contact-form-section-bg {
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.contact-form-section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
    pointer-events: none;
}

.contact-form-section-bg .container {
    position: relative;
    z-index: 1;
}

/* Contact Main Grid - Form Left, Info Right */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    background-color: #ffffffc4;
    padding: 64px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper-main {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info-wrapper-main {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info-creative-vertical {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
}

.contact-map-wrapper {
    margin-top: 32px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.contact-info-item-creative {
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon-creative {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: #fff;
}

.contact-icon-creative svg {
    width: 32px;
    height: 32px;
}

.contact-info-title-creative {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.contact-info-text-creative {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    font-family: var(--font-primary);
}

.contact-link-creative {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-creative:hover {
    color: var(--color-primary);
}

.contact-social-creative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-link-creative {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.contact-social-link-creative:hover {
    color: var(--color-primary);
}

.contact-social-separator {
    color: var(--color-text-gray);
}

/* Contact Form Section */
.contact-form-section-title {
    font-size: 32px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 32px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-image: url('assets/smear 2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
    pointer-events: none;
}

.map-section .container {
    position: relative;
    z-index: 1;
}

.map-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.map-section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.contact-form-creative {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row-creative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group-creative {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-label-creative {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-primary);
}

.form-input-creative {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--color-text);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.form-input-creative:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(208, 180, 158, 0.1);
}

.form-input-creative select {
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23644E3F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea-creative {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
}

.contact-form-button {
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-answer {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 100vw;
    background-color: #f5f0eb;
    border-top: 1px solid var(--color-border);
    padding: 48px 0 24px;
    margin: 0;
}

/* Make footer container full width on monitors */
.footer .container {
    max-width: 100%;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.footer-text {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact {
    list-style: none;
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact .footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer-contact li > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact strong {
    color: var(--color-text);
    font-weight: 500;
    display: block;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    color: var(--color-primary);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--color-primary-dark);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-gray);
}

/* Desktop/Laptop - match header/footer margins */
@media (min-width: 1025px) {
    .timeline-wrapper {
        margin: 0 -60px;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .timeline-items {
        padding: 0;
    }
}

/* Large Monitors (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    /* Ensure header and footer containers remain full width */
    .header .container,
    .footer .container {
        max-width: 100%;
        width: 100%;
    }

    .hero-logo {
        max-width: 95vw;
        max-height: clamp(250px, 30vh, 350px);
    }

    .mission-content,
    .treatment-content {
        max-width: 1200px;
    }

    .cta-content {
        max-width: 1100px;
    }

    .treatment-text-box {
        padding: 64px;
    }
}

/* Tablet and Medium Screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header .container,
    .footer .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .timeline-wrapper {
        margin: 0 -40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .timeline-items {
        padding: 0;
    }

    .hero-logo {
        max-height: clamp(200px, 22vh, 280px);
    }

    .mission-content {
        gap: 48px;
    }

    .treatment-text-box {
        padding: 40px;
    }

    .cta-title {
        font-size: clamp(36px, 6vw, 56px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container,
    .footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: 100dvh;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .treatment-section-bg {
        background-attachment: scroll;
    }

    .hero-overlay {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .hero-logo {
        max-height: clamp(200px, 25vh, 280px);
        margin-bottom: 10px;
        padding: 0 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
        padding: 0 20px;
        font-size: clamp(20px, 5vw, 28px);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 10px 0px;
        font-size: 14px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-image {
        max-height: 400px;
    }

    .mission-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .mission-text {
        font-size: clamp(15px, 3vw, 17px);
    }

    .treatment-text-box {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .treatment-section-title {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 24px;
    }

    .treatment-section-text {
        font-size: clamp(15px, 3vw, 17px);
        margin-bottom: 24px;
    }

    .treatment-view-more {
        font-size: clamp(15px, 3vw, 17px);
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: clamp(32px, 7vw, 56px);
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .cta-subtitle {
        font-size: clamp(16px, 3vw, 20px);
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    .about-content-creative {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .treatment-section-header {
        margin-bottom: 48px;
    }

    .treatment-intro {
        font-size: 16px;
    }

    .peels-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .peel-header {
        padding: 36px 40px;
        gap: 20px;
    }

    .peel-name {
        font-size: 24px;
    }

    .peel-see-more {
        padding: 10px 28px;
        font-size: 15px;
    }

    .peel-item.active .peel-content {
        padding: 0 40px 40px;
    }

    .peel-description {
        font-size: 16px;
    }

    .peel-subtitle {
        font-size: 22px;
    }

    .peel-benefits-list li {
        font-size: 16px;
    }

    .facial-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 48px 0;
    }

    .facial-timeline {
        margin: 48px auto;
    }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .timeline-wrapper {
        padding: 20px 0;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        gap: 24px;
        padding: 24px 0;
    }

    .timeline-marker {
        width: 60px;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
        border-width: 4px;
    }

    .timeline-content {
        padding: 20px 24px;
    }

    .timeline-date {
        font-size: 18px;
    }

    .timeline-description {
        font-size: 14px;
    }

    .facial-treatments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-image-wrapper {
        padding-top: 0;
    }

    .about-image-frame {
        height: 500px;
    }

    .about-image-frame::before {
        display: none;
    }

    .about-text-wrapper {
        padding-top: 0;
        gap: 24px;
    }

    .about-text-block {
        padding-left: 20px;
    }

    .highlight-block {
        padding: 24px 20px 24px 36px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-text-block p {
        font-size: 16px;
    }

    .highlight-block p {
        font-size: 17px;
    }

    .about-preview,
    .about-content,
    .studio-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-section-bg {
        background-attachment: scroll;
    }

    .contact-form-section-bg {
        padding: 40px 0;
    }

    .contact-form-section-bg .container {
        padding: 0 16px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 16px;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info-creative-vertical {
        position: static;
        gap: 24px;
    }

    .map-card {
        padding: 24px 16px;
        margin: 32px 0 0 0;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .map-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .map-wrapper {
        margin: 0;
        border-radius: 8px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .contact-info-item-creative {
        padding: 20px 0;
    }

    .contact-icon-creative {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .contact-icon-creative svg {
        width: 28px;
        height: 28px;
    }

    .contact-form-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-row-creative {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-creative {
        gap: 20px;
    }

    .form-input-creative {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }

    .form-textarea-creative {
        min-height: 120px;
    }

    .contact-form-button {
        padding: 14px 24px;
        font-size: 16px;
    }

    .treatments-list .treatment-item,
    .services-menu-grid,
    .packages-grid,
    .products-grid,
    .gallery-redirect {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-preview-image,
    .about-image,
    .studio-image {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .mission-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        height: 70px;
    }

    /* Contact Form Mobile Enhancements */
    .contact-form-section-bg {
        padding: 40px 0;
    }

    .contact-form-section-bg .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-main-grid {
        padding: 20px 12px;
        margin: 0;
        gap: 28px;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form-wrapper-main,
    .contact-info-wrapper-main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-form-creative {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row-creative {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form-section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .contact-info-item-creative {
        padding: 16px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-icon-creative {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .contact-icon-creative svg {
        width: 24px;
        height: 24px;
    }

    .contact-info-title-creative {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact-info-text-creative {
        font-size: 14px;
        line-height: 1.6;
    }

    .map-card {
        padding: 20px 16px;
        margin: 32px 0 0 0;
        border-radius: 8px;
    }

    .map-section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .map-wrapper {
        margin: 0;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .form-input-creative {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-input-creative select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-textarea-creative {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-label-creative {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .contact-form-creative {
        gap: 18px;
    }

    .contact-social-creative {
        flex-direction: column;
        gap: 8px;
    }

    .contact-social-separator {
        display: none;
    }

    .contact-form-button {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info-creative-vertical {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: center;
    }

    .contact-icon-creative {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-title-creative {
        text-align: center;
        width: 100%;
    }

    .contact-info-text-creative {
        text-align: center;
        width: 100%;
    }

    .contact-social-creative {
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        height: 100dvh;
        min-height: 500px;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .treatment-section-bg {
        background-attachment: scroll;
    }

    .hero-overlay {
        background-color: rgba(255, 255, 255, 0.95);
    }

    .hero-logo {
        max-height: clamp(180px, 22vh, 240px);
        margin-bottom: 8px;
        padding: 0 16px;
    }

    .hero-subtitle {
        margin-bottom: 24px;
        font-size: clamp(18px, 4.5vw, 24px);
        padding: 0 16px;
    }

    .hero-buttons {
        max-width: 260px;
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 0px;
        font-size: 13px;
    }

    .mission-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .mission-text {
        font-size: 14px;
    }

    .mission-image {
        max-height: 300px;
    }

    .treatment-text-box {
        padding: 24px 20px;
        margin: 0 12px;
    }

    .treatment-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .treatment-section-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .treatment-view-more {
        font-size: 14px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        padding: 0 16px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }
}

/* Treatments Page Styles */
.treatments-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.treatment-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.treatment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.treatment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-content {
    display: flex;
    flex-direction: column;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.treatment-name {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

.treatment-meta {
    text-align: right;
}

.treatment-duration {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.treatment-price {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 400;
}

.treatment-description {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.treatment-benefits {
    margin-top: auto;
}

.benefits-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.benefit-item {
    font-size: 14px;
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item::before {
    content: '•';
    color: var(--color-primary);
    font-size: 20px;
    line-height: 1;
}

/* Services Page Styles */
.services-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-category {
    background-color: var(--color-bg-gray);
    padding: 32px;
}

.category-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list li {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.package-card {
    background-color: var(--color-bg);
    padding: 32px;
    border: 1px solid var(--color-border);
}

.package-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

.package-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.package-price {
    font-size: 36px;
    color: var(--color-primary);
    font-weight: 300;
}

.package-savings {
    font-size: 14px;
    color: var(--color-text-gray);
}

.package-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.package-includes li {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.policies-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.policy-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.policy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.policy-text {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Shop Page Styles */
.shop-banner {
    background-color: var(--color-primary);
    padding: 32px 0;
    text-align: center;
}

.shop-banner-text {
    font-size: 18px;
    color: var(--color-bg);
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-brand {
    font-size: 12px;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
}

.product-description {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.product-price {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 400;
    margin-top: 4px;
}

.purchase-info {
    max-width: 1000px;
    margin: 0 auto;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.purchase-option {
    background-color: var(--color-bg);
    padding: 32px;
}

.purchase-option-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.purchase-option-text {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.brand-item {
    padding: 16px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 16px;
}

/* Gallery Page Styles - Instagram Posts */
.gallery-page .section-title {
    color: var(--color-accent);
}

.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 64px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-post-wrapper {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(208, 180, 158, 0.2);
}

.instagram-post-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(208, 180, 158, 0.4);
}

/* Force Instagram to fill the wrapper */
.instagram-post-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

.instagram-post-wrapper blockquote.instagram-media {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Instagram CTA Section */
.instagram-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 48px;
    background-color: #f0e6dc;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.instagram-cta-title {
    font-size: 36px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.instagram-cta-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 300;
    margin-bottom: 32px;
}

.instagram-cta-button {
    font-size: 18px;
    padding: 16px 48px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-preview-item {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-bg-gray);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-preview-item:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.before-after-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.before-after-text {
    font-size: 18px;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.before-after-text:last-child {
    margin-bottom: 0;
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
    .treatment-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .treatment-image {
        height: 200px;
    }

    .treatment-header {
        flex-direction: column;
        gap: 12px;
    }

    .treatment-meta {
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-menu-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .expectations-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .expectation-item {
        gap: 20px;
    }

    .expectation-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .expectation-content {
        padding-top: 8px;
    }

    .expectation-blurb {
        font-size: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 48px 0;
    }

    .instagram-cta {
        padding: 48px 32px;
    }

    .instagram-cta-title {
        font-size: 28px;
    }

    .instagram-cta-text {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .instagram-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-redirect {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-item:first-child {
        grid-column: 1;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .about-content-creative {
        gap: 40px;
    }

    .about-image-frame {
        height: 400px;
    }

    .about-text-wrapper {
        gap: 20px;
    }

    .about-text-block {
        padding-left: 16px;
    }

    .highlight-block {
        padding: 20px 16px 20px 28px;
    }

    .about-intro {
        font-size: 17px;
    }

    .about-text-block p {
        font-size: 15px;
    }

    .highlight-block p {
        font-size: 16px;
    }

    .expectations-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .expectation-item {
        flex-direction: column;
        gap: 12px;
    }

    .expectation-number {
        position: relative;
    }

    .expectation-content {
        padding-top: 0;
    }

    .expectation-blurb {
        font-size: 14px;
    }

    .treatment-intro {
        font-size: 15px;
    }

    .peels-grid {
        grid-template-columns: 1fr;
    }

    .peel-item {
        padding: 20px 24px;
        font-size: 16px;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefit-text {
        font-size: 15px;
    }

    .facial-timeline {
        margin: 48px auto;
    }

    .timeline-title {
        font-size: 22px;
    }

    .timeline-intro {
        font-size: 15px;
    }

    .timeline-day {
        font-size: 16px;
    }

    .timeline-wrapper {
        padding: 16px 0;
    }

    .timeline-line {
        left: 20px;
        width: 2px;
    }

    .timeline-item {
        gap: 20px;
        padding: 20px 0;
    }

    .timeline-marker {
        width: 40px;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 16px 20px;
        margin-left: 0;
    }

    .timeline-date {
        font-size: 17px;
    }

    .timeline-description {
        font-size: 14px;
    }

    .facial-treatments-title {
        font-size: 24px;
    }

    .facial-treatment-item {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Pricing Sheet Styles */
.services-page .section-title {
    color: var(--color-accent);
}

/* Make section titles brown on specific pages */
.about-page .about-header .section-title {
    color: var(--color-accent);
}

.treatments-page .section-title {
    color: var(--color-accent);
}


.shop-page .section-title {
    color: var(--color-accent);
}

.pricing-two-column {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
    align-items: start;
}

.pricing-column {
    min-width: 0;
}

.pricing-column-divider {
    width: 1px;
    background-color: var(--color-border);
    min-height: 100px;
}

.pricing-list {
    max-width: 100%;
    margin: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

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

.pricing-item:hover {
    padding-left: 8px;
}

.pricing-name {
    font-size: 18px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 400;
    flex: 1;
}

.pricing-price {
    font-size: 18px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 500;
    margin-left: 24px;
    white-space: nowrap;
}

.pricing-addon-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pricing-addon-title {
    font-size: 16px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: lowercase;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.peel-category {
    margin-bottom: 80px;
}

.peel-category:last-child {
    margin-bottom: 0;
}

.peel-category:last-child {
    margin-bottom: 0;
}

.peel-category-title {
    font-size: 22px;
    color: var(--color-primary);
    font-family: var(--font-logo);
    font-weight: 500;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 1px;
}

.pricing-package {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 0;
    gap: 24px;
}

.pricing-name-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}

.pricing-package .pricing-name {
    margin-bottom: 0;
}

.pricing-note {
    font-size: 14px;
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 300;
    font-style: italic;
    padding-left: 16px;
    position: relative;
}

.pricing-note::before {
    content: '>';
    position: absolute;
    left: 0;
}

.pricing-package .pricing-price {
    margin-left: 0;
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-column-divider {
        display: none;
    }

    .pricing-addon-section {
        margin-top: 32px;
        padding-top: 32px;
        border-top: 2px solid var(--color-border);
    }
}

@media (max-width: 768px) {
    .pricing-two-column {
        gap: 32px;
        margin-bottom: 40px;
    }

    .pricing-list {
        margin-bottom: 0;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .pricing-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .pricing-price {
        margin-left: 0;
        font-size: 16px;
    }

    .pricing-addon-section {
        margin-top: 24px;
        padding-top: 24px;
    }

    .peel-category {
        margin-bottom: 48px;
    }

    .peel-category-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .pricing-package {
        padding: 20px 0;
    }

    .pricing-package .pricing-price {
        font-size: 18px;
    }
}

/* Shop Page Styles */
.golden-rule-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.golden-rule-content {
    margin-top: 32px;
}

.golden-rule-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 400;
}

.shop-brands-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.shop-brands-section .brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin-top: 64px;
    align-items: center;
    justify-items: center;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Responsive Shop */
@media (max-width: 1024px) {
    .shop-brands-section .brands-grid {
        gap: 48px;
        margin-top: 48px;
    }
}

/* Golden Rule Section Background */
.golden-rule-section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.golden-rule-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.golden-rule-section-bg .container {
    position: relative;
    z-index: 1;
}

/* Golden Rule Card */
.golden-rule-card {
    background-color: rgba(240, 230, 220, 0.7);
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
}

.golden-rule-title {
    font-size: 32px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.golden-rule-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Brand Logos Showcase */
.brand-logos-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin: 64px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.brand-logo-showcase-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.brand-logo-showcase-frame {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0e6dc;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-logo-showcase-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.brand-logo-showcase-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Brand Card Styles */
.brand-card {
    background-color: #f0e6dc;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 48px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.brand-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.brand-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 48px 32px;
    text-align: center;
    gap: 24px;
}

.brand-logo-frame {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ClearChoice - Logo on the right */
.brand-card-header-clearchoice {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 48px 48px 32px;
}

.brand-logo-frame-clearchoice {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* KRX - Logo on the left */
.brand-card-header-krx {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 48px 48px 32px;
}

.brand-logo-frame-krx {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-primary);
}

.brand-card-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card-name {
    font-size: 36px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
}

.brand-card-content {
    padding: 0 48px 48px;
}

.brand-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 300;
    margin-bottom: 24px;
}

.brand-card-text:last-of-type {
    margin-bottom: 32px;
}

.brand-highlight {
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-top: 24px;
}

.brand-highlight-title {
    font-size: 22px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 16px;
}

.brand-highlight-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 300;
    margin-bottom: 16px;
}

.brand-highlight-text:last-child {
    margin-bottom: 0;
}

/* Responsive Shop */
@media (max-width: 1024px) {
    .golden-rule-section-bg {
        background-attachment: scroll;
    }

    .brand-logos-showcase {
        gap: 32px;
        margin: 48px 0;
    }

    .brand-logo-showcase-frame {
        max-width: 240px;
        padding: 28px;
    }

    .golden-rule-card {
        padding: 48px 40px;
    }

    .brand-card-header {
        padding: 40px 40px 28px;
    }

    .brand-card-header-clearchoice {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .brand-card-header-krx {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .brand-card-header-krx .brand-logo-frame-krx {
        margin: 0 auto;
    }

    .brand-card-header-clearchoice .brand-logo-frame-clearchoice {
        margin: 0 auto;
    }

    .brand-card-content {
        padding: 0 40px 40px;
    }

    .brand-logo-frame {
        width: 180px;
        height: 180px;
    }

    .brand-logo-frame-clearchoice {
        width: 140px;
        height: 140px;
    }

    .brand-logo-frame-krx {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .brand-logos-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 40px 0;
        justify-items: center;
    }

    .brand-logo-showcase-frame {
        max-width: 220px;
        padding: 24px;
    }

    .golden-rule-card {
        padding: 40px 32px;
    }

    .golden-rule-title {
        font-size: 28px;
    }

    .golden-rule-text {
        font-size: 18px;
    }

    .brand-card {
        margin: 40px 0;
    }

    .brand-card-header {
        padding: 32px 32px 24px;
    }

    .brand-card-header-clearchoice {
        padding: 32px 32px 24px;
    }

    .brand-card-header-krx {
        padding: 32px 32px 24px;
    }

    .brand-card-content {
        padding: 0 32px 32px;
    }

    .brand-logo-frame {
        width: 150px;
        height: 150px;
        padding: 20px;
    }

    .brand-logo-frame-clearchoice {
        width: 120px;
        height: 120px;
        padding: 16px;
    }

    .brand-logo-frame-krx {
        width: 140px;
        height: 140px;
        padding: 18px;
    }

    .brand-card-name {
        font-size: 28px;
    }

    .brand-card-text {
        font-size: 16px;
    }

    .brand-highlight {
        padding: 24px;
    }

    .brand-highlight-title {
        font-size: 20px;
    }

    .brand-highlight-text {
        font-size: 15px;
    }
}

/* ============================================
   CREATIVE DESIGN ENHANCEMENTS - FORMATTING & LAYOUT
   ============================================ */

/* Enhanced Typography Hierarchy */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Creative Button Design */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a3a2f 100%);
    box-shadow: 0 4px 15px rgba(100, 78, 63, 0.3);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a3a2f 0%, var(--color-accent) 100%);
    box-shadow: 0 6px 20px rgba(100, 78, 63, 0.4);
}

/* Enhanced Card Designs with Depth */
.brand-card,
.treatment-card,
.service-card,
.benefit-card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(208, 180, 158, 0.1);
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

/* Creative Image Frames */
.mission-image,
.about-image,
.treatment-image {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid rgba(208, 180, 158, 0.2);
    padding: 4px;
    background: white;
}

/* Enhanced Section Spacing */
.section {
    position: relative;
}

.section-white {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 50%, #ffffff 100%);
}

/* Creative Section Dividers */
.section-divider {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.section-divider::after {
    content: '✦';
    position: relative;
    background: var(--color-bg);
    padding: 0 20px;
    color: var(--color-primary);
    font-size: 24px;
}

/* Enhanced Hero Overlay */
.hero-overlay {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Creative Footer Design */
.footer {
    width: 100%;
    max-width: 100vw;
    position: relative;
    border-top: 3px solid var(--color-primary);
    margin: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 180, 158, 0.3), transparent);
}

/* Enhanced Brand Logo Showcase */
.brand-logo-showcase-frame {
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(208, 180, 158, 0.2);
    background-color: #f0e6dc;
}

/* Golden Rule Card Enhancement */
.golden-rule-card {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(240, 230, 220, 0.7) 0%, rgba(240, 230, 220, 0.85) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

.golden-rule-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Enhanced Treatment Section Background */
.treatment-section-bg {
    position: relative;
}

.treatment-section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
    pointer-events: none;
}

/* Creative Nav Link Design */
.nav-link {
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: width 0.3s ease;
}

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

/* Remove underline from badge button */
.nav-link-badge::after {
    display: none !important;
}

/* Enhanced Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(208, 180, 158, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

/* Creative Text Styling */
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Header Design */
.header {
    width: 100%;
    max-width: 100vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 0;
}

/* Creative Card Content Spacing */
.brand-card-content,
.treatment-card-content {
    line-height: 1.9;
    letter-spacing: 0.3px;
}

/* Enhanced Image Wrappers */
.mission-image-wrapper,
.about-image-wrapper {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(208, 180, 158, 0.05) 0%, rgba(192, 164, 142, 0.05) 100%);
    border-radius: 16px;
}

/* Creative Highlight Blocks */
.brand-highlight,
.highlight-block {
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    background: linear-gradient(90deg, rgba(208, 180, 158, 0.05) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #ffffff 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .section-title::after {
        width: 40px;
        height: 2px;
    }
    
    .brand-card,
    .treatment-card,
    .service-card,
    .benefit-card {
        border-radius: 12px;
    }
    
    .mission-image,
    .about-image,
    .treatment-image {
        border-radius: 8px;
        border-width: 2px;
    }
}

/* ============================================
   REDESIGNED SHOP PAGE STYLES
   ============================================ */

/* Shop Hero Section */
.shop-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Shop Brands Intro */
.shop-brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.shop-brands-description {
    font-size: 18px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 16px;
}

/* Enhanced Brand Logo Showcase with Names */
.brand-logo-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brand-logo-showcase-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-logo);
    margin: 0;
    letter-spacing: 0.5px;
}

.brand-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.brand-logo-link:hover .brand-logo-showcase-name {
    color: var(--color-primary);
}

/* Redesigned Golden Rule Section */
.golden-rule-section-new {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f0eb 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.golden-rule-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.golden-rule-section-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    z-index: 1;
}

.golden-rule-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.golden-rule-header {
    text-align: center;
    margin-bottom: 64px;
}

.golden-rule-title-new {
    font-size: clamp(36px, 6vw, 56px);
    font-family: var(--font-logo);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.golden-rule-subtitle {
    font-size: 20px;
    color: var(--color-text-gray);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

.golden-rule-content-new {
    background: white;
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(208, 180, 158, 0.2);
}

.golden-rule-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.golden-rule-percentage {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid rgba(208, 180, 158, 0.15);
}

.golden-rule-80 {
    background: linear-gradient(135deg, rgba(208, 180, 158, 0.1) 0%, rgba(208, 180, 158, 0.05) 100%);
}

.golden-rule-20 {
    background: linear-gradient(135deg, rgba(192, 164, 142, 0.1) 0%, rgba(192, 164, 142, 0.05) 100%);
}

.percentage-number {
    font-size: 72px;
    font-family: var(--font-logo);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.percentage-label {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    font-family: var(--font-logo);
    letter-spacing: 0.5px;
}

.percentage-bar {
    width: 100%;
    height: 8px;
    background: rgba(208, 180, 158, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.percentage-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 4px;
    width: 0;
}

.percentage-bar-80 {
    width: 80%;
}

.percentage-bar-20 {
    width: 20%;
}

/* Animate bars when in view */
.golden-rule-percentage.animate .percentage-bar-fill.percentage-bar-80 {
    animation: fillBar80 1.5s ease-out forwards;
}

.golden-rule-percentage.animate .percentage-bar-fill.percentage-bar-20 {
    animation: fillBar20 1.5s ease-out forwards;
}

@keyframes fillBar80 {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

@keyframes fillBar20 {
    from {
        width: 0;
    }
    to {
        width: 20%;
    }
}

.percentage-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-gray);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.2px;
}

.golden-rule-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.divider-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
}

.divider-plus {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 300;
    font-family: var(--font-logo);
    line-height: 1;
}

.golden-rule-message {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid rgba(208, 180, 158, 0.2);
}

.golden-rule-message-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

.golden-rule-message-text strong {
    color: var(--color-primary);
    font-weight: 500;
    font-family: var(--font-logo);
}

/* New Brand Card Design */
.brand-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(208, 180, 158, 0.15);
    margin: 64px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.brand-card-new-header {
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #ffffff 100%);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 2px solid rgba(208, 180, 158, 0.2);
}

.brand-card-new-logo-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(208, 180, 158, 0.2);
}

.brand-card-new-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card-new-title-wrapper {
    flex: 1;
}

.brand-card-new-name {
    font-size: 42px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.brand-card-new-tagline {
    font-size: 18px;
    color: var(--color-text-gray);
    font-weight: 300;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.3px;
}

.brand-card-new-body {
    padding: 48px;
}

.brand-card-new-content {
    margin-bottom: 32px;
}

.brand-card-new-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.brand-card-new-image-section {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-card-new-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.brand-card-new-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-card-new-gallery {
    margin: 32px 0;
}

.brand-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.brand-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.brand-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.brand-card-new-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.brand-card-new-text:last-child {
    margin-bottom: 0;
}

.brand-card-new-feature {
    background: linear-gradient(135deg, rgba(208, 180, 158, 0.08) 0%, rgba(192, 164, 142, 0.05) 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-top: 24px;
}

.brand-card-new-feature-title {
    font-size: 24px;
    font-family: var(--font-logo);
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
}

.brand-card-new-feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.brand-card-new-feature-text:last-child {
    margin-bottom: 0;
}

/* Responsive Shop Redesign */
@media (max-width: 1024px) {
    .brand-card-new-header {
        padding: 40px;
        gap: 32px;
    }
    
    .brand-card-new-logo-wrapper {
        width: 160px;
        height: 160px;
        padding: 20px;
    }
    
    .brand-card-new-name {
        font-size: 36px;
    }
    
    .brand-card-new-body {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 80px 0 60px;
    }
    
    .brand-logos-showcase {
        gap: 40px;
        margin: 48px 0;
    }
    
    .brand-logo-showcase-name {
        font-size: 16px;
    }
    
    .golden-rule-section-new {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .golden-rule-content-new {
        padding: 48px 32px;
    }
    
    .golden-rule-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .golden-rule-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    }
    
    .percentage-number {
        font-size: 56px;
    }
    
    .percentage-label {
        font-size: 18px;
    }
    
    .golden-rule-message-text {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .golden-rule-split {
        gap: 32px;
    }
    
    .golden-rule-content-new {
        padding: 48px 40px;
    }
    
    .percentage-number {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .golden-rule-section-new {
        padding: 60px 0;
    }
    
    .golden-rule-header {
        margin-bottom: 48px;
    }
    
    .golden-rule-title-new {
        font-size: 32px;
    }
    
    .golden-rule-subtitle {
        font-size: 18px;
    }
    
    .golden-rule-content-new {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .golden-rule-percentage {
        padding: 24px;
    }
    
    .percentage-number {
        font-size: 48px;
    }
    
    .percentage-label {
        font-size: 16px;
    }
    
    .percentage-description {
        font-size: 15px;
    }
    
    .golden-rule-message-text {
        font-size: 18px;
    }
    
    .brand-card-new {
        margin: 48px 0;
        border-radius: 16px;
    }
    
    .brand-card-new-header {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 24px;
    }
    
    .brand-card-new-logo-wrapper {
        width: 140px;
        height: 140px;
        padding: 16px;
    }
    
    .brand-card-new-name {
        font-size: 32px;
    }
    
    .brand-card-new-tagline {
        font-size: 16px;
    }
    
    .brand-card-new-body {
        padding: 32px;
    }
    
    .brand-card-new-content-with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .brand-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .brand-gallery-item {
        border-radius: 8px;
    }
    
    .brand-card-new-text {
        font-size: 16px;
    }
    
    .brand-card-new-feature {
        padding: 24px;
    }
    
    .brand-card-new-feature-title {
        font-size: 20px;
    }
}
