/* ============================================
   IMAGE Instytut Piękna — Main Stylesheet
   Light theme: warm creams, browns, sage green, gold
   ============================================ */

:root {
    --bg-primary: #faf7f2;
    --bg-secondary: #f0ebe3;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f0e8;

    --gold: #b08d57;
    --gold-light: #c9a96e;
    --gold-dark: #8c6d3f;

    --green: #6b7f5e;
    --green-light: #8a9f7c;
    --green-dark: #4e6042;

    --brown: #5c4033;
    --brown-light: #7a5c4f;
    --brown-dark: #3e2a1e;

    --text-primary: #3a2a1e;
    --text-secondary: #6b5c50;
    --text-muted: #9a8b7f;

    --border: rgba(92, 64, 51, 0.1);
    --border-gold: rgba(176, 141, 87, 0.3);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --max-width: 1200px;
    --nav-height: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    position: relative;
}

body.has-bg-image::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background-position: center;
    background-repeat: no-repeat;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.nav-logo-inline {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.nav-logo-img {
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    transition: color 0.3s;
    text-decoration: none;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    transition: background 0.2s, border-color 0.2s;
}

.nav-phone:hover {
    background: rgba(176, 141, 87, 0.1);
    border-color: var(--gold);
    color: var(--gold-dark);
}

.nav-phone i {
    font-size: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--nav-height) 30px 60px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(176, 141, 87, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--green-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title em {
    font-style: italic;
    color: var(--green);
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 40px;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}

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

.btn-outline:hover {
    background: rgba(176, 141, 87, 0.12);
    color: var(--gold-dark);
    border-color: var(--gold);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: var(--green-dark);
    color: #fff;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 30px;
}

.section-dark {
    background: #eee7dc;
}

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

.section-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
}

.section-divider-green {
    background: var(--green);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================
   Category Groups (Parent categories)
   ============================================ */
.category-group {
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.category-group:first-child {
    margin-top: 0;
}

.category-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-group-icon {
    font-size: 22px;
    color: var(--green);
    opacity: 0.8;
}

.category-group-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.category-group-desc {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   Category Cards (Home - Services)
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background: var(--bg-card);
    text-align: center;
    text-decoration: none;
    transition: background 0.4s, box-shadow 0.4s;
    min-height: 200px;
    border: 1px solid var(--border);
}

.category-card:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 4px 20px rgba(92, 64, 51, 0.08);
}

.category-card-icon {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 20px;
    opacity: 0.8;
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.category-card-count {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s;
}

.category-card:hover::after {
    width: 60px;
}

.category-card-img {
    overflow: hidden;
}

.category-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.category-card-img:hover::before {
    transform: scale(1.1);
}

.category-card-img .category-card-icon,
.category-card-img .category-card-title,
.category-card-img .category-card-count {
    position: relative;
    z-index: 2;
}

.category-card-img .category-card-icon {
    color: #fff;
    opacity: 0.9;
}

.category-card-img .category-card-title {
    color: #fff;
}

.category-card-img .category-card-count {
    color: rgba(255,255,255,0.7);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.4s;
}

.category-card-img:hover .category-card-overlay {
    opacity: 0.8;
}

/* ============================================
   About / Text Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
}

.about-text p + p {
    margin-top: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--border-gold);
    z-index: -1;
}

.about-label-left {
    text-align: left;
}

.about-title-left {
    text-align: left;
    margin-bottom: 24px;
}

.about-btn {
    margin-top: 20px;
}

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

.text-muted {
    color: var(--text-muted);
}

/* ============================================
   Pricing Table
   ============================================ */
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 40px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-height);
    z-index: 10;
    background: var(--bg-primary);
}

.pricing-tab {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.65;
}

.pricing-tab:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    opacity: 1;
}

.pricing-tab.active {
    color: var(--gold-dark);
    border-color: var(--gold);
    background: rgba(176, 141, 87, 0.1);
    font-weight: 600;
    opacity: 1;
}

.pricing-category {
    margin-bottom: 50px;
}

.pricing-category-hidden {
    display: none;
}

.pricing-category-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(92, 64, 51, 0.07);
}

.pricing-row:hover {
    background: rgba(176, 141, 87, 0.05);
}

.pricing-name-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-name {
    font-size: 15px;
    color: var(--text-primary);
}

.pricing-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    margin: 0 16px;
    min-width: 40px;
    align-self: center;
}

.pricing-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 24px;
    min-width: 70px;
    text-align: right;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    min-width: 80px;
    text-align: right;
}

/* ============================================
   Services List
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.service-card {
    display: block;
    padding: 40px;
    background: var(--bg-card);
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
    border-left: 2px solid transparent;
    border: 1px solid var(--border);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--green);
    box-shadow: 0 4px 20px rgba(92, 64, 51, 0.08);
}

.service-card-img {
    height: 180px;
    margin: -40px -40px 20px -40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.service-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card-meta .price {
    color: var(--gold);
    font-weight: 500;
}

.service-card-meta .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.7;
}

.service-card-meta .price-promo {
    color: #e53935;
    font-weight: 600;
}

/* ---- Service Badges (Nowość / Promocja) ---- */
.service-card-badges,
.service-detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.service-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-badge-new {
    background: rgba(66, 165, 245, 0.15);
    color: #42a5f5;
    border: 1px solid rgba(66, 165, 245, 0.3);
}

.service-badge-promo {
    background: rgba(229, 57, 53, 0.12);
    color: #e53935;
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.service-card-promo-text {
    margin-top: 10px;
    font-size: 12px;
    color: #e53935;
    font-weight: 500;
}

.service-detail-promo-text {
    margin-top: 14px;
    font-size: 14px;
    color: #e53935;
    font-weight: 500;
}

.service-detail-badges {
    justify-content: center;
}

.service-detail-meta .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

.service-detail-meta .price-promo {
    color: #e53935;
    font-weight: 600;
    font-size: 20px;
}

/* ============================================
   Service Detail
   ============================================ */
.service-detail {
    max-width: 800px;
    margin: 0 auto;
    padding-top: calc(var(--nav-height) + 60px);
}

.service-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-detail-category {
    font-size: 11px;
    color: var(--green);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-detail-title {
    font-size: 48px;
    font-weight: 300;
}

.service-detail-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-meta .price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
}

.service-detail-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-content h2,
.service-detail-content h3 {
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.service-detail-content ul,
.service-detail-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 8px;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
    font-size: 14px;
}

.contact-info-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    color: var(--text-primary);
}

.contact-map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
    filter: grayscale(30%) contrast(95%);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* ============================================
   Page Hero (subpages)
   ============================================ */
.page-hero {
    padding: calc(var(--nav-height) + 60px) 30px 60px;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-hero-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

.page-hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* ============================================
   Content (editable pages)
   ============================================ */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.page-content a {
    color: var(--gold);
    border-bottom: 1px solid var(--border-gold);
}

.page-content img {
    margin: 20px 0;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
    justify-content: center;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-separator {
    color: var(--border-gold);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    text-align: center;
    padding: 80px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.cta-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ============================================
   Treatment Search
   ============================================ */
.search-container {
    max-width: 700px;
    margin: 0 auto;
}

.search-box {
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-popular {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
}

.search-popular-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.search-tag {
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.search-tag:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.search-matched-tags {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.search-matched-tag {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 4px;
    font-size: 11px;
    color: var(--gold-dark);
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid rgba(176, 141, 87, 0.2);
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-card {
    display: block;
    padding: 24px;
    background: var(--bg-card);
    text-decoration: none;
    border: 1px solid var(--border);
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.search-result-card:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--green);
}

.search-result-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.search-result-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.search-result-cat {
    font-size: 11px;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.search-result-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.search-result-meta {
    font-size: 14px;
    margin-bottom: 10px;
}

.search-result-meta .price {
    color: var(--gold);
    font-weight: 500;
}

.search-result-meta .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
}

.search-result-meta .price-promo {
    color: #e53935;
    font-weight: 600;
}

.search-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.search-result-tags span {
    font-size: 10px;
    padding: 2px 8px;
    color: var(--text-muted);
    border: 1px solid rgba(92, 64, 51, 0.1);
}

.search-no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 15px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 30px 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

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

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

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--gold);
    font-size: 13px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted);
}

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

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    margin-right: 8px;
    transition: background 0.3s;
}

.footer-social:hover {
    background: rgba(176, 141, 87, 0.12);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 21, 17, 0.35);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 30px;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-slide-btn {
    text-shadow: none;
}

.hero-slider-page {
    min-height: 0;
    max-height: 600px;
    height: 50vw;
}

.hero-slider-page .hero-slider-track {
    min-height: 0;
    height: 100%;
}

.hero-slider-page .hero-slide {
    min-height: 0;
    height: 100%;
    background-size: contain;
    background-position: center;
}

.hero-slider-page .hero-slide::before {
    content: '';
    position: absolute;
    inset: -30px;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.7) saturate(0.6);
    z-index: 0;
}

.hero-slider-page .hero-slide-overlay {
    z-index: 1;
}

.hero-slider-page .hero-slide-content {
    max-width: 100%;
    width: 100%;
    padding: var(--nav-height) 30px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    z-index: 2;
}

.hero-slider-page .hero-slide-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
}

.hero-slider-page .hero-slide-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-slider-home-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding: var(--nav-height) 60px 60px;
    pointer-events: none;
}

.hero-slider-home-content .hero-content-inner {
    max-width: 600px;
}

.hero-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: -20px;
    filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.5));
}

.hero-slider-home-content .hero-label {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-slider-home-content .hero-title {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-slider-home-content .hero-title em {
    color: var(--gold-light);
}

.hero-slider-home-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-slider-home-content .hero-divider {
    margin-left: auto;
    margin-right: 0;
}

.hero-slider-home-content .hero-actions {
    pointer-events: auto;
    justify-content: flex-end;
}

.hero-slider-home-content .btn {
    pointer-events: auto;
}

.hero-slider-home-content .btn-outline {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-home-content .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(176, 141, 87, 0.3);
    color: var(--brown);
    width: 48px;
    height: 48px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--gold);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(176, 141, 87, 0.4);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    padding: 0;
}

.hero-slider-dot:hover,
.hero-slider-dot-active {
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: rgba(250, 247, 242, 0.98);
        padding: 40px 30px;
        gap: 0;
    }

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

    .nav-link {
        font-size: 16px;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-slide-title {
        font-size: 38px;
    }

    .hero-slider-page .hero-slide-title {
        font-size: 36px;
    }

    .hero-slider-page {
        height: 55vw;
        max-height: 500px;
    }

    .hero-slider-page .hero-slide::before {
        filter: blur(30px) brightness(0.65) saturate(0.6);
    }

    .hero-slider-home-content {
        padding: var(--nav-height) 30px 60px;
    }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-hero-title {
        font-size: 36px;
    }

    .pricing-time {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-logo {
        max-height: 80px;
    }

    .hero-slide-title {
        font-size: 28px;
    }

    .hero-slider-page .hero-slide-title {
        font-size: 28px;
    }

    .hero-slider-page {
        height: 70vw;
        max-height: 400px;
    }

    .hero-slider-page .hero-slide-title {
        font-size: 32px;
    }

    .hero-slider-home-content {
        padding: var(--nav-height) 20px 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-end;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 60px 20px;
    }

    .service-detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .service-detail-title {
        font-size: 32px;
    }
}
