:root {
    --bg: #f8f6f3;
    --bg-alt: #ffffff;
    --text: #2f2a26;
    --muted: #6f655f;
    --accent: #c98c5d;
    --accent-dark: #a46a3c;
    --stroke: rgba(0, 0, 0, 0.08);
    --shadow: 0 15px 40px rgba(15, 10, 5, 0.1);
    --radius: 18px;
    --transition: 0.3s ease;
}

[data-theme="dark"] {
    --bg: #0a0a0a;
    --bg-alt: #121212;
    --text: #f5f5f5;
    --muted: #888888;
    --accent: #c98c5d;
    --accent-dark: #d4a574;
    --stroke: rgba(255, 255, 255, 0.08);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .scissor-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-alt) !important;
    color: var(--text) !important;
    border-color: var(--stroke) !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--muted) !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

figure {
    margin: 0;
}

figure img {
    width: 100%;
    height: auto;
}

a,
button {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stroke);
    z-index: 999;
}

[data-theme="dark"] .site-header {
    background: rgba(10, 10, 10, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

[data-theme="dark"] .logo-img {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)) brightness(1.08);
}

.logo-text {
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color var(--transition);
    background: transparent;
    border: none;
    padding: 0.3rem 0.8rem;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("https://images.unsplash.com/photo-1502720705749-3c42882d3f5c?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    padding: 5rem 0;
    animation: fadeIn 1s ease forwards;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: #f0e3d4;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.9rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    color: #fdf4ec;
    line-height: 1.5;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition), transform var(--transition);
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Secciones base */
.section {
    padding: 5rem 0;
}

main {
    flex: 1;
}

.section h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro {
    background: var(--bg-alt);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.intro-brand {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.intro-logo-relleno {
    max-width: 200px;
    height: auto;
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.description-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.features .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.schedule {
    background: var(--bg-alt);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.schedule-grid div {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--stroke);
    text-align: center;
}

.schedule-grid span {
    display: block;
    color: var(--muted);
    margin-top: 0.2rem;
    font-size: 0.95rem;
}

.services-list {
    background: var(--bg-alt);
    padding-bottom: 2rem;
}

/* Tabs de servicios */
.service-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--stroke);
    padding-bottom: 0;
}

.service-tabs .tab-button {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.service-tabs .tab-button:hover {
    color: var(--text);
    background: var(--bg-alt);
}

.service-tabs .tab-button.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--bg-alt);
}

.services-output .empty-state,
.promotions .empty-state {
    border: 1px dashed var(--stroke);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
}

.service-category + .service-category {
    margin-top: 2rem;
}

.service-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--stroke);
    padding: 1rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category h4 {
    margin: 0;
    font-size: 1.05rem;
}

.service-category h4 span {
    color: var(--muted);
    font-weight: 400;
}

.service-category .price {
    font-weight: 700;
    margin: 0.2rem 0 0;
}

.service-category li.service-with-options .service-choose-label {
    margin: 0.5rem 0 0.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.service-category li.service-with-options .service-options-select {
    margin-top: 0.25rem;
    padding: 0.4rem 0.6rem;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 12rem;
}

/* Estilos para productos decorados */
.product-category {
    margin-bottom: 3rem;
}

.product-category .category-title {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(201, 140, 93, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(201, 140, 93, 0.2);
    border-color: rgba(201, 140, 93, 0.3);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.product-image-placeholder {
    font-size: 4rem;
    color: var(--muted);
    opacity: 0.5;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0.5rem 0;
}

.product-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.product-stock {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-btn-buy,
.product-btn-reserve {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-btn-buy {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(201, 140, 93, 0.3);
}

.product-btn-buy:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 140, 93, 0.4);
}

.product-btn-reserve {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.product-btn-reserve:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-btn-buy,
    .product-btn-reserve {
        width: 100%;
    }
}

.promotions {
    margin-top: 3rem;
}

.promotions.hidden {
    display: none;
}

.promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.promotion-list .promo-card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}

.packs-services {
    margin-top: 3rem;
}

.packs-services.hidden {
    display: none;
}

.packs-output.hidden {
    display: none;
}

.promo-card h4 {
    margin: 0;
    font-size: 1.1rem;
}

.service-pack-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    border-top: 1px solid var(--stroke);
}

.service-pack-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--stroke);
}

.service-pack-list li span:last-child {
    color: var(--muted);
    font-weight: 500;
}

.promo-card p {
    margin: 0.3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid var(--accent);
}

.contact-list li {
    padding: 0.5rem 0 0.5rem 1rem;
}

.contact-list span {
    font-weight: 600;
    display: block;
}

.cta {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--stroke);
    text-align: center;
}

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

.gallery-grid figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}

.gallery-grid figcaption {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.booking {
    background: var(--bg-alt);
}

.booking-card {
    padding: 3rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-card {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ded6cf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text);
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--stroke);
    padding: 1.5rem 0;
    background: var(--bg-alt);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-content a {
    color: var(--accent);
}

.footer-dev-notice {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stroke);
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-dev-notice strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-version {
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
}

.ghost-launcher {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.ghost-launcher.is-visible {
    opacity: 0.85;
    pointer-events: auto;
}

.ghost-launcher:focus-visible {
    outline: 2px solid var(--accent);
    opacity: 1;
}

.ghost-launcher:is(:hover, :focus-visible) {
    transform: scale(1.05);
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reseñas */
.reviews {
    background: var(--bg-alt);
}

.section-description {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

.review-form-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.review-form-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Sistema de tijeras para calificación */
.scissors-rating-wrapper {
    margin: 1rem 0;
}

.scissors-rating {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.scissor-btn {
    background: var(--bg-alt);
    border: 2px solid var(--stroke);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 60px;
    color: var(--text);
}

.scissor-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scissor-btn.active {
    border-color: var(--accent);
    background: rgba(201, 140, 93, 0.15);
    box-shadow: 0 2px 8px rgba(201, 140, 93, 0.3);
    color: var(--text);
}

.scissor-btn.hover {
    border-color: var(--accent);
    background: rgba(201, 140, 93, 0.05);
}

.scissor-icon {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 1.5rem;
    color: var(--muted);
}

.scissor-btn.active .scissor-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.rating-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s ease;
}

.scissor-btn.active .rating-number {
    color: var(--accent);
}

.rating-selected {
    padding: 0.75rem 1rem;
    background: rgba(201, 140, 93, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 140, 93, 0.2);
    text-align: center;
}

.rating-selected .rating-label {
    font-size: 0.95rem;
    color: var(--text);
}

.rating-selected strong {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Lista de reseñas */
.reviews-list {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-header h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.review-header time {
    color: var(--muted);
    font-size: 0.9rem;
}

.review-rating-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.scissor-display {
    font-size: 1.2rem;
    color: var(--stroke);
    transition: color 0.2s ease;
}

.scissor-display.active {
    color: var(--accent);
}

.scissor-display.half {
    position: relative;
    display: inline-block;
}

.scissor-display.half .scissor-full {
    color: var(--stroke);
}

.scissor-display.half .scissor-half {
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--accent);
    clip-path: inset(0 50% 0 0);
}

.rating-value {
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--accent);
}

.review-comment {
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}

.reviews-loading,
.reviews-empty,
.reviews-error {
    text-align: center;
    padding: 3rem;
    color: var(--muted);
}

.reviews-error {
    color: var(--danger, #dc3545);
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 60px;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        background: var(--bg-alt);
        padding: 1.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--stroke);
        display: none;
        z-index: 1000;
        max-width: 400px;
        margin-left: auto;
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .header-content {
        padding: 0.9rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .service-tabs {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.5rem;
    }
    
    .service-tabs .tab-button {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--stroke);
        border-left: 3px solid transparent;
        padding: 1rem;
        bottom: 0;
    }
    
    .service-tabs .tab-button.active {
        border-left-color: var(--accent);
        border-bottom-color: var(--stroke);
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 3.5rem 1rem;
    }

    .intro-grid,
    .description-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

    .info-card,
    .card,
    .booking-card {
        padding: 1.5rem;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .header-content {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-category li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .intro-grid,
    .description-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cards,
    .schedule-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card,
    .card,
    .booking-card {
        padding: 1.5rem;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-content > div {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content a {
        display: inline-block;
        margin: 0.25rem 0;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-outline {
        width: auto;
        max-width: none;
    }

    .nav {
        width: calc(100% - 2rem);
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
    }

    .service-tabs .tab-button {
        padding: 1rem;
        font-size: 1rem;
    }

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

    .promotion-list {
        grid-template-columns: 1fr;
    }

    .review-form-card {
        padding: 1.5rem;
    }

    .scissors-rating {
        justify-content: center;
        gap: 0.4rem;
    }

    .scissor-btn {
        min-width: 50px;
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }

    .gallery-grid figure {
        margin-bottom: 1rem;
    }

    .gallery-grid figcaption {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .schedule-grid div {
        padding: 1.2rem;
    }

    .product-card {
        padding: 1.2rem;
    }

    .product-image-wrapper {
        height: 180px;
    }
}

