/* ==========================================
   TINA NAIL SALON DESIGN SYSTEM & STYLES
   ========================================== */

/* DESIGN TOKENS */
:root {
    /* Color Palette */
    --color-bg-base: #FAF8F6;
    --color-bg-card: #FFFFFF;
    --color-bg-gray: #F3EFEA;
    --color-primary: #8D5B4C;        /* Rich warm nude */
    --color-primary-dark: #6D4337;   /* Deep chocolate */
    --color-primary-light: #F4EBE8;  /* Soft blush */
    --color-accent-gold: #D4AF37;    /* Metallic gold */
    --color-text-main: #3C2E2A;      /* Dark bronze */
    --color-text-muted: #7E6C68;     /* Soft brown gray */
    --color-white: #FFFFFF;
    --color-border: #E8E2DD;
    --color-success: #47A460;
    --color-shadow: rgba(60, 46, 42, 0.08);
    --color-shadow-hover: rgba(141, 91, 76, 0.15);

    /* Typography */
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;

    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.gray-bg {
    background-color: var(--color-bg-gray);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.margin-top-20 { margin-top: 20px; }
.required { color: #E05C5C; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* SECTION HEADERS */
.section-title {
    margin-bottom: 50px;
}

.section-title .tag {
    display: inline-block;
    color: var(--color-accent-gold);
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    position: relative;
}

.section-title .tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-gold);
    margin: 8px auto 0 auto;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* TOPBAR */
.topbar {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left i {
    width: 14px;
    height: 14px;
    color: var(--color-accent-gold);
}

.topbar-left a {
    color: var(--color-white);
    font-weight: 600;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}

.topbar-item i {
    width: 15px;
    height: 15px;
}

.topbar-item:hover {
    color: var(--color-white);
}

.cart-count {
    background-color: var(--color-accent-gold);
    color: var(--color-text-main);
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-left: 2px;
}

/* ACCOUNT DROPDOWN */
.topbar-item .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-bg-card);
    min-width: 150px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
    padding: 8px 0;
}

.topbar-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

/* MAIN HEADER */
.main-header {
    background-color: rgba(250, 248, 246, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(60, 46, 42, 0.03);
    border-bottom: 1px solid rgba(232, 226, 221, 0.4);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    background-color: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.footer-logo-img img {
    height: 40px;
}

.logo-accent {
    color: var(--color-primary);
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent-gold);
    z-index: -1;
    opacity: 0.3;
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* SEARCH BOX */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 4px 6px 4px 16px;
    width: 240px;
    transition: var(--transition-smooth);
}

.search-box:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(141, 91, 76, 0.1);
}

.search-box input {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    width: 100%;
    color: var(--color-text-main);
}

.search-box button {
    background-color: var(--color-primary-light);
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.search-box button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
}

/* HERO SECTION SLIDER */
.hero-section {
    height: 75vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    color: var(--color-white);
    max-width: 650px;
}

.slide-content .subtitle {
    display: block;
    color: var(--color-accent-gold);
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.slide.active .slide-content .subtitle {
    transform: translateY(0);
    opacity: 1;
}

.slide-content .title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.slide.active .slide-content .title {
    transform: translateY(0);
    opacity: 1;
}

.slide-content .description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 36px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

.slide.active .slide-content .description {
    transform: translateY(0);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease 0.8s;
}

.slide.active .hero-buttons {
    transform: translateY(0);
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active, .slider-dots .dot:hover {
    background-color: var(--color-accent-gold);
    transform: scale(1.2);
}

/* ABOUT SECTION */
@media (min-width: 769px) {
    .about-section .grid-2 {
        grid-template-columns: 1fr 2fr;
        align-items: center;
        gap: 50px;
    }
}
.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.about-bg-shape {
    display: none;
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 90%;
    height: 90%;
    border: 3px solid var(--color-accent-gold);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 22.4%;
    box-shadow: 0 20px 40px var(--color-shadow);
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-stats {
    margin-top: 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* SERVICES SECTION */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(141, 91, 76, 0.2);
}

.service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--color-shadow-hover);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.service-price {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-primary);
}

/* PRODUCT STORE SECTION */
.product-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px var(--color-shadow);
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(141, 91, 76, 0.12);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-accent-gold);
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 10;
    text-transform: uppercase;
}

.product-badge.sale {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.product-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: #F8F5F2;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border: none;
    padding: 12px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-to-cart-btn i {
    width: 16px;
    height: 16px;
}

.product-card:hover .add-to-cart-btn {
    bottom: 0;
}

.add-to-cart-btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-text-main);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price-box .price {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.price-box .compare-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

/* CUSTOMER REVIEWS SECTION */
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 320px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.review-slide.active {
    opacity: 1;
    display: block;
}

.review-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 10px 30px var(--color-shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.quote-icon i {
    width: 28px;
    height: 28px;
}

.review-text {
    font-size: 1.15rem;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-gold);
}

.customer-avatar.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light, #FAF1EE);
    color: var(--color-primary, #8D5B4C);
    font-weight: 700;
    font-size: 1.1rem;
}

.customer-name {
    font-size: 1rem;
    font-weight: 700;
}

.customer-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.review-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* BOOKING SECTION */
.booking-decor-left, .booking-decor-right {
    position: absolute;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}
.booking-decor-left {
    top: 50px;
    left: -50px;
    background-image: radial-gradient(var(--color-accent-gold) 20%, transparent 20%);
    background-size: 15px 15px;
}

.booking-wrapper {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px var(--color-shadow);
    padding: 60px;
    overflow: hidden;
}

.booking-form-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(141, 91, 76, 0.15);
}

.booking-success-msg {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.booking-success-msg.active {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--color-success);
    margin-bottom: 24px;
}

.booking-success-msg h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.booking-success-msg p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.res-code {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background-color: var(--color-primary-light);
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}

/* CONTACT SECTION */
.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.contact-icon i {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px var(--color-shadow);
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E6E2DE;
    background-image: radial-gradient(#D6D1CD 15%, transparent 15%);
    background-size: 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-pin-pulse {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: relative;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.map-pin-pulse::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 30px;
    height: 30px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulseMap 1.8s infinite;
}

@keyframes pulseMap {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.map-label {
    background-color: var(--color-white);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.map-note {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-note i {
    width: 12px;
    height: 12px;
}

/* FOOTER */
.footer {
    background-color: var(--color-text-main);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-text-main);
    transform: translateY(-3px);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 6px;
}

.newsletter-form input {
    background: none;
    border: none;
    outline: none;
    padding: 10px;
    color: var(--color-white);
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.newsletter-form button {
    background-color: var(--color-accent-gold);
    color: var(--color-text-main);
    border: none;
    padding: 0 20px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--color-white);
}

.newsletter-success {
    display: none;
    align-items: center;
    gap: 6px;
    color: var(--color-success);
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

.newsletter-success.active {
    display: flex;
}

.newsletter-success i {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
}

/* CART SIDE DRAWER */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 18, 16, 0.6);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background-color: var(--color-bg-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 200;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
}

.cart-drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Items Styling */
.cart-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    background-color: var(--color-bg-gray);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-right: 20px;
}

.cart-item-price {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-top: 4px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    border: 1px solid var(--color-border);
    background: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
}

.qty-val {
    font-size: 0.9rem;
    font-weight: 600;
}

.remove-cart-item {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
}

.remove-cart-item:hover {
    color: #E05C5C;
}

.empty-cart-msg {
    text-align: center;
    margin: auto;
}

.empty-icon {
    width: 48px;
    height: 48px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.close-cart-btn-link {
    margin-top: 16px;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-white);
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cart-total-price {
    color: var(--color-primary);
}

/* CHECKOUT MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 18, 16, 0.7);
    backdrop-filter: blur(5px);
    z-index: 299;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content-box {
    background-color: var(--color-bg-base);
    border-radius: var(--border-radius-lg);
    width: 500px;
    max-width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-content-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
}

.modal-body h2 {
    font-size: 1.8rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.order-summary-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    font-size: 1rem;
}

/* SUCCESS CHECKMARK ANIMATION */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--color-success);
}

.check-icon::before, .check-icon::after {
    content: '';
    position: absolute;
    background: var(--color-bg-base);
    z-index: 1;
}

.icon-line {
    height: 5px;
    background-color: var(--color-success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    /* Header layout */
    .topbar {
        display: none; /* Hide topbar on mobile to simplify layout */
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .search-box {
        display: none; /* Simplify search on mobile */
    }
    
    /* Navigation drawer on mobile */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition-smooth);
        z-index: 99;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    /* Grid system */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Hero section */
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-content .title {
        font-size: 2.2rem;
    }
    
    .slide-content .description {
        font-size: 0.95rem;
    }
    
    /* About image offset shape */
    .about-bg-shape {
        left: -15px;
        bottom: -15px;
    }
    
    /* Booking form spacing */
    .booking-wrapper {
        padding: 30px;
    }
    
    .booking-decor-left, .booking-decor-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-content .title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md, 8px);
    overflow: hidden;
    height: 280px;
    box-shadow: 0 8px 24px var(--color-shadow, rgba(0,0,0,0.08));
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 18, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-category {
    color: var(--color-white, #fff);
    font-family: var(--font-headings, 'Playfair Display');
    font-size: 1.15rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-item {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gallery-item {
        height: 280px;
    }
}

.contact-map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    cursor: pointer;
}


