:root {
    --primary-color: #d81159;
    --primary-dark: #d81159;
    --text-dark: #111111;
    --text-grey: #555555;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-offset: #f9f9f9;
    --bg-dark: #1a1a1a;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(235, 59, 118, 0.2);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    /* Reduced padding as requested */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 3.0rem;
}

.text-accent {
    color: var(--primary-color);
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitlex {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fb8500;
    margin-bottom: 10px;
    font-weight: 500;
}

.subtitley {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    justify-content: center;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.subtitle-light {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    /* or light grey */
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 600;
}


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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 400;
    /* Removed bold effect */
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(235, 59, 118, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding: 8px 20px;
}

.btn-dark {
    background-color: var(--text-dark);
    color: #fff;
    border: 1px solid var(--text-dark);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--text-dark);
}

.btn-cart {
    height: 45px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px !important;
    border-radius: 22px;
}

.nav-cta {
    width: 240px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px !important;
    font-size: 16px !important;
    padding: 0 !important;
    border-width: 2px;
}

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

.btn-icon {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    /* Height controlled by flex alignment */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 140px;
    width: auto;
}

.nav-logo-img {
    display: block;
    height: 140px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transform: scale(1.8);
    /* Zoom in to make it visually larger */
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-self: center;
    white-space: nowrap;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    justify-self: auto;
    /* Reset justify-self since it is now inside nav-actions flex container */
}

.nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('../assets/hero.png') center 40% / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 140px;
    /* Offset for fixed header 140px */

    /* Removed clip-path as requested */
    /* clip-path: ellipse(150% 100% at 50% 0%); */

    /*
    -webkit-mask-image: url('../assets/hero-musk.png');
    mask-image: url('../assets/hero-musk.png');
    */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slight overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 120px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
    /* Thin font as per reference */
    text-shadow: none;
    /* Remove shadow */
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-welcome {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    /* Regular weight, not bold */
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: none;
    /* Remove shadow */
}

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

/* =========================================
   SALON PAGE HERO
   ========================================= */
.salon-hero {
    position: relative;
    height: 565px;
    margin-top: 140px;
    /* Offset for fixed header 140px */
    background: url('../assets/hero-img.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.salon-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.salon-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.salon-hero-content .subtitlex {
    display: inline-flex;
    align-items: center;
    color: #ff7b00;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.salon-hero-content .salon-title {
    font-size: 110px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    text-transform: none;
}

/* Generic Section Styles */
.section {
    padding: 120px 0;
    /* Increased from 80px */
}

.section-header {
    margin-bottom: 80px;
    /* Increased from 60px */
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

/* Services Section */
/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =========================================
   SALON SERVICES GRID
   ========================================= */
.salon-services-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.service-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-filter {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter.active,
.btn-filter:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-icon-square {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon-square:hover {
    background: var(--primary-dark);
}

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

.salon-card {
    background: #fff;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.salon-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Lift effect */
    transform: translateY(-5px);
}

.salon-card-image {
    width: 100%;
    height: 250px;
}

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

.salon-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.salon-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.salon-card-title {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    max-width: 65%;
    font-weight: 500;
}

.salon-card-price {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.salon-card-price .price-label {
    font-size: 13px;
    color: #000;
}

.salon-card-price .price-value {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.1;
}

.salon-card-desc {
    font-size: 14px;
    color: #636363;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.salon-card-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.salon-card-time {
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   APPOINTMENT SECTION
   ========================================= */
.appointment-section {
    padding: 120px 0;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.appointment-info h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.appointment-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.appointment-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-text span {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.appointment-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.appointment-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

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

.appointment-form .form-input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.appointment-form .form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.custom-select-wrapper,
.custom-date-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    cursor: pointer;
}

.select-icon,
.date-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.appointment-form .time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.time-slot {
    padding: 12px 0;
    text-align: center;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover,
.time-slot.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
}

.service-card {
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.navbar .container {
    max-width: 86%;
    /* 167px left / 1920px ~ 8.7% margin. 86% width centers it roughly correct */
}

.services .container,
.feature-section .container,
.gallery .container,
.cta-banner .container,
.footer .container {
    max-width: 92%;
    /* Balanced full width with margins */
}

.service-card:hover {
    transform: translateY(-5px);
    /* Shadow might not work well with mask, but keeping for lift effect */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    box-shadow: none;
}

.service-image {
    position: relative;
    height: 460px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    transition: var(--transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 25px 25px 0 0;
}

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

.icon-circle {
    position: absolute;
    top: 55px;
    left: 37px;
    bottom: auto;
    width: 85px;
    height: 85px;
    background: #ff7b00;
    /* Orange color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.icon-circle img {
    width: 100%;
    height: auto;
    filter: none;
    /* Show original icon color */
}

.service-info {
    padding: 30px;
    background-color: #dee2e6;
    border-radius: 0 0 25px 25px;
    min-height: 280px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 28px;
    color: #d81159;
    /* Pink title */
    margin-bottom: 20px;
    font-weight: 400;
    /* Removed bold effect */
}

.service-info p {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
}



/* Feature Section */
.feature-section {
    padding: 100px 0;
    position: relative;
    /* Background wrapped in container, but based on SVG the whole section card is pink */
    background: #fff;
}

.feature-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    background-color: var(--primary-color);
    /* d81159 */
    padding: 80px;
    border-radius: 25px;
    color: white;
    width: 100%;
    /* Ensure it fills available width like SVG rect width=1820 */
    max-width: 1820px;
    /* SVG Width reference */
}

.feature-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    /* SVG Image height 891, width 594 */
    height: 891px;
    width: 100%;
    max-width: 594px;
    margin: 0 auto;
}

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

.feature-content h2 {
    font-size: 68px;
    /* SVG font size */
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.1;
    font-weight: 400;
}

.feature-content .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-content .subtitle i {
    font-size: 0.8rem;
}

.feature-content p {
    font-size: 20px;
    /* SVG font size */
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 1;
    max-width: 100%;
    color: #fff;
}

.feature-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    text-align: left;
}

.stat-icon-box {
    width: 85px;
    height: 85px;
    background-color: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 8px;
    /* SVG rx=8 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon-box i {
    font-size: 1.8rem;
    color: #fff;
}

.stat-number {
    font-size: 28px;
    /* SVG font size */
    font-weight: 700;
    font-family: var(--font-body);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    /* SVG font size */
    text-transform: none;
    opacity: 1;
    line-height: 1.2;
}

/* Gallery - Masonry-ish Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    /* Default height - will be overridden for masonry effect */
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Specific Masonry Heights based on Reference */

/* Column 1 */
.gallery-grid .gallery-col:nth-child(1) .gallery-item:nth-child(1) img {
    height: 1065px;
}

.gallery-grid .gallery-col:nth-child(1) .gallery-item:nth-child(2) img {
    height: 520px;
}

/* Column 2 (Middle) */
.gallery-grid .gallery-col:nth-child(2) .gallery-item img {
    height: 520px;
}



/* Column 3 */
.gallery-grid .gallery-col:nth-child(3) .gallery-item:nth-child(1) img {
    height: 520px;
}

.gallery-grid .gallery-col:nth-child(3) .gallery-item:nth-child(2) img {
    height: 1065px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 120px 0 150px;
    /* Extra padding bottom for mask */
    color: #fff;
    margin-top: 100px;
    background: url('../assets/cta-bg.png') center 35% / cover no-repeat;
    overflow: hidden;
}

.mask-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Basic overlay */

    /* Apply mask if meant for the shape, but based on naming it might be the top curve */
    -webkit-mask-image: url('../assets/cta-bg-musk.png');
    mask-image: url('../assets/cta-bg-musk.png');
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* In this case, maybe the SECTION itself should be masked, or this layer provides an overlay effect? */
    /* Let's try masking the whole section content or usage pattern. */
    /* Actually, usually these masks are for top/bottom dividers. */
    /* Given "cta-bg-musk", let's assume it masks the banner image itself */
}

/* Adjusting strategy: Apply mask to the section container to shape the image */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content .subtitle-light {
    display: block;
    color: var(--primary-color);
    /* Pink subtitle */
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content p {
    margin-bottom: 40px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: #1c1f24;
    /* Dark refined grey/black */
    color: var(--text-light);
    padding: 80px 0 50px;
    font-size: 0.9rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 35px;
    /* Adjust based on image */
}

.brand-desc {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.info-label {
    display: block;
    color: #e08e00;
    /* Gold/Orange accent */
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.info-value {
    color: rgba(255, 255, 255, 0.4);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-bottom: 80px;
    /* Space between copy and messaging section */
}

.text-white {
    color: #fff;
}

/* Messaging Section */
.footer-messaging-section {
    padding-top: 40px;
    position: relative;
}

.messaging-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom */
    margin-bottom: 40px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.request-title {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 400;
}

.watermark-text {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.8;
    /* Made it static/flex item to sit nicely */
    position: static;
    transform: translateY(10px);
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-end;
    /* Button on right */
    position: relative;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 20px;
}

.submit-btn {
    background: var(--primary-color);
    /* Soft pink */
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.customer-service-bottom {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-heading-small {
    color: #e08e00;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.service-email {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================================
   HAIR SHOP PAGE
   ========================================= */
:root {
    --magenta-theme: #d81159;
}

/* Header Adjustments for Hairshop */
.hairshop-main {
    margin-top: 100px;
}

.hairshop-header {
    padding: 20px 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary-color);
}

/* Product Detail Section */
.product-section {
    padding: 40px 0 80px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-image-col {
    width: 100%;
}

.main-product-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-info-col {
    padding-top: 20px;
}

.product-category {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    font-size: 14px;
    color: #707070;
    margin-bottom: 25px;
}

.product-title {
    font-family: 'SegoeUI', 'Inter', sans-serif;
    color: var(--magenta-theme);
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 30px;
    margin-bottom: 50px;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    border: 1.5px solid #dee2e6;
    border-radius: 15px;
    padding: 25px;
    background: #fff;
}

.info-box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.info-box-text {
    font-size: 15px;
    color: #707070;
    font-weight: 300;
    line-height: 1.6;
}

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

.shipping-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shipping-icon {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.shipping-text {
    display: flex;
    flex-direction: column;
}

.shipping-label {
    font-size: 12px;
    color: #707070;
    margin-bottom: 4px;
}

.shipping-value {
    font-size: 14px;
    color: #212529;
    font-weight: 500;
}

/* Related Products */
.related-products-section {
    padding: 80px 0;
}

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

.related-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.related-title {
    font-size: 55px;
}

.text-pink {
    color: var(--magenta-theme);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    border: 1.5px solid #dee2e6;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-card-hover {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card-hover {
    opacity: 1;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.btn-white:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-card-content {
    padding: 25px;
}

.pc-title {
    color: var(--magenta-theme);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pc-desc {
    font-size: 14px;
    color: #707070;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.pc-tag {
    font-size: 13px;
    color: #adb5bd;
}

@media (max-width: 768px) {
    .hairshop-header {
        position: relative;
        top: 0;
        background: transparent;
        z-index: 1;
        padding: 20px 0 !important;
    }
}

/* =========================================================================
   PHOTO STUDIO PAGE
   ========================================================================= */

/* --- About Section (Where Moments Become Art) --- */
.ps-about-section {
    background-color: var(--bg-light);
}

.ps-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ps-about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.ps-about-text p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.ps-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.ps-img-large {
    grid-row: 1 / 3;
}

.ps-img-large img,
.ps-img-small-top img,
.ps-img-small-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* --- Packages & Pricing --- */
.packages-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px 25px 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.pricing-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-price .price-label {
    font-size: 14px;
    color: var(--text-grey);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
}

/* --- Booking Section --- */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.booking-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.booking-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(216, 17, 89, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.booking-contact-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.booking-contact-value {
    display: block;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.5;
}

.booking-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 35px;
}

.booking-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.booking-form-group {
    margin-bottom: 15px;
}

.booking-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: var(--text-grey);
}

/* Custom Calendar */
.custom-calendar-container {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.calendar-month-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-today-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: var(--text-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.calendar-days-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.date-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    padding: 12px 8px;
    cursor: pointer;
    transition: var(--transition);
}

.date-card:hover {
    border-color: var(--primary-color);
}

.date-card.active {
    background-color: #ffe5ec;
    border-color: var(--primary-color);
}

.date-day {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.date-card.active .date-day {
    color: var(--primary-color);
}

.date-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.date-card.active .date-number {
    color: var(--primary-color);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    padding: 10px 8px;
    cursor: pointer;
    transition: var(--transition);
}

.time-card:hover {
    border-color: var(--primary-color);
}

.time-period {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.time-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        /* Override the 145px on mobile */
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Menu todo */

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

    .newsletter-form {
        max-width: 100%;
    }
}

/* Logo Images */
.nav-logo-img {
    height: 80px;
    /* Increased size */
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    max-width: none;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: left center;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Floating Chat Button */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 17, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(216, 17, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 17, 89, 0);
    }
}

/* =========================================================================
   BOUTIQUE PAGE
   ========================================================================= */

/* Boutique Hero Banner */
.boutique-hero {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutique-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.boutique-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.boutique-title {
    font-size: 110px;
    font-weight: 400;
    color: #fff;
    margin-top: 15px;
    line-height: 1.1;
}

/* Elevate Your Style Section */
.elevate-section {
    padding-bottom: 30px;
}

.elevate-title {
    font-size: 68px;
    font-weight: 400;
    margin: 20px 0;
}

.elevate-desc {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
}

/* Boutique Products & Filters */
.boutique-products {
    background-color: var(--bg-light);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #e8e8e8;
    margin-bottom: 50px;
}

.filter-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    max-width: 400px;
}

.search-icon {
    color: #888;
    font-size: 18px;
}

.filter-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-dark);
    width: 100%;
    font-family: inherit;
}

.filter-buttons {
    display: flex;
    gap: 15px;
}

.btn-filter {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-filter.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Boutique Product Grid */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.boutique-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.boutique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.boutique-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

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

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

.boutique-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.boutique-card:hover .boutique-overlay {
    opacity: 1;
}

.btn-view-product {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.btn-view-product:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.boutique-info {
    padding: 25px 30px;
}

.product-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-desc {
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    margin-bottom: 25px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-category {
    font-size: 14px;
    font-weight: 300;
    color: #b0b0b0;
}

/* Features Cards */
.boutique-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    border: 3px solid var(--accent);
    border-radius: 35px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 133, 0, 0.15);
}

.feature-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-circle svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 16px;
    color: #707070;
    line-height: 1.6;
}

/* =========================================================================
   BOUTIQUE PRODUCT DETAILS PAGE
   ========================================================================= */

.product-detail-section {
    padding: 180px 0 60px; /* Offset for 140px fixed header */
}

/* Back Button */
.back-link-wrapper {
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}

/* Main Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

/* Detail Image */
.product-detail-img-col {
    width: 100%;
}

.product-detail-img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    display: block;
}

/* Detail Info */
.product-detail-info-col {
    padding-top: 20px;
}

.category-pill-outline {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-size: 14px;
    color: #707070;
    margin-bottom: 25px;
}

.product-detail-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.btn-add-cart {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Info Boxes (Description & Shipping) */
.info-box-panel {
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 25px;
}

.info-box-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-box-text {
    font-size: 15px;
    color: #707070;
    line-height: 1.6;
}

/* Shipping Flex Layout */
.shipping-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shipping-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-text-block {
    display: flex;
    flex-direction: column;
}

.shipping-label {
    font-size: 12px;
    color: #707070;
    margin-bottom: 3px;
}

.shipping-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Related Products Area */
.related-products {
    padding: 80px 0;
}

.floating-btn-pink {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--accent);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(216, 17, 89, 0.4);
    z-index: 99;
    transition: transform 0.3s ease;
}

.floating-btn-pink:hover {
    transform: scale(1.05);
}

/* =========================================================================
   CART PAGE
   ========================================================================= */

.empty-cart-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 180px 0 100px; /* Offset for 140px fixed header */
}

.empty-cart-icon-wrapper svg {
    width: 80px;
    height: 80px;
}

.empty-cart-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--text-dark);
}

.empty-cart-subtitle {
    font-size: 18px;
    color: #707070;
}

.btn-explore-shop {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

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

/* =========================================================================
   ORDER CONFIRMATION PAGE
   ========================================================================= */

.order-confirm-section {
    padding: 180px 0 100px; /* Offset for 140px fixed header */
}

.order-confirm-title {
    font-size: 52px;
    font-weight: 400;
    color: var(--text-dark);
}

.order-confirm-subtitle {
    font-size: 18px;
    color: #707070;
    line-height: 1.6;
}

.order-details-box {
    max-width: 1200px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    background: #fff;
    margin-top: 50px;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 80px;
}

.order-section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.order-summary-table th, 
.order-summary-table td {
    padding: 12px 0;
    text-align: left;
    vertical-align: top;
    font-size: 18px;
}

.order-summary-table th {
    font-weight: 600;
    color: var(--text-dark);
    width: 200px;
}

.order-summary-table td {
    color: var(--text-dark);
}

.next-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 14px;
    color: #707070;
    line-height: 1.4;
    margin: 0;
}

.order-confirm-actions {
    margin-top: 50px;
    text-align: center;
}

.btn-track-order {
    padding: 15px 50px;
    font-size: 16px;
    border-radius: 50px;
}

/* =========================================================================
   INFO PAGES (SHIPPING, TERMS, ETC)
   ========================================================================= */

.info-page-section {
    padding: 180px 0 100px; /* Offset for header */
}

.info-page-header {
    margin-bottom: 60px;
}

.info-page-subtitle {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 500;
}

.info-page-title {
    font-size: 56px;
    font-weight: 400;
    margin: 0;
}

.info-content-container {
    max-width: 900px;
}

.info-section {
    margin-bottom: 50px;
}

.info-section:last-child {
    margin-bottom: 0px;
}

.info-section-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0px;
}

.info-text.mt-4 {
    margin-top: 25px; /* Utility spacing */
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

/* --- SUPPLEMENTARY MOBILE RESPONSIVENESS --- */
.mobile-menu-toggle {
    display: none;
}

@media screen and (max-width: 991px) {
    /* Adjust Hero */
    .hero-content h1 { font-size: 4rem; }
    .hero { min-height: 80vh; }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: var(--text-dark);
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .nav-actions {
        /* Keep cart icon and login visible */
        gap: 8px;
    }

    .nav-cta {
        display: none !important;
    }

    /* Grids to single column */
    .product-detail-layout { grid-template-columns: 1fr !important; gap: 30px; }
    .info-boxes { margin-top: 30px; }
    .related-grid, .pricing-grid, .boutique-grid, .boutique-features-grid, .ps-about-grid {
        grid-template-columns: 1fr !important;
    }
    .booking-layout { grid-template-columns: 1fr !important; gap: 40px; }
    .calendar-days-row { grid-template-columns: repeat(3, 1fr) !important; }

    /* Typography */
    .hero-content h1 { font-size: 3rem; }
    .request-title { font-size: 2rem; }
    .watermark-text { font-size: 3rem; transform: none; text-align: center; }
    .messaging-header-wrapper { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

    /* Footer */
    .footer-top-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .footer-brand { align-items: center; display: flex; flex-direction: column; }
    .footer-links-col, .footer-contact-col { text-align: center; }
    .contact-group { align-items: center; display: flex; flex-direction: column; }
    
    .form-actions { justify-content: center; flex-direction: column; }
    .divider-line { display: none; }
    .submit-btn { width: 100%; }
}

@media screen and (max-width: 480px) {
    .hero-content h1 { font-size: 2.3rem; }
    .calendar-days-row { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =========================================================================
   CHATBOT INTERFACE (Phase 11)
   ========================================================================= */

.chatbot-wrapper {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 350px;
    background: #f7f6f4;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
}

.chatbot-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: #e12d4a; /* Reference Red */
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.chatbot-bot-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #e12d4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chatbot-title-box {
    display: flex;
    flex-direction: column;
}

.chatbot-title-box h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.chatbot-title-box span {
    font-size: 12px;
    opacity: 0.85;
}

.chatbot-close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chatbot-close-btn:hover {
    opacity: 1;
}

.chatbot-body {
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Scrollbar styling */
.chatbot-body::-webkit-scrollbar {
    width: 5px;
}
.chatbot-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.bot-msg {
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 6px;
    border-top-left-radius: 0;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    align-self: flex-start;
}

.user-msg {
    background: #e12d4a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    border-top-right-radius: 0;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(225, 45, 74, 0.2);
    align-self: flex-end;
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.chat-pill {
    background: #e12d4a !important;
    border: none !important;
    outline: none !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}

.chat-pill:hover {
    background: #e12d4a !important;
    color: white !important;
    opacity: 0.85 !important;
}

.chatbot-footer {
    padding: 15px;
    background: #f7f6f4;
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.chatbot-input {
    flex: 1;
    border: 1px solid #e12d4a;
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 13px;
    background: transparent;
    outline: none;
    color: #333;
}

.chatbot-input::placeholder {
    color: #999;
}

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    background: #111;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.chatbot-send-btn:hover {
    background: #333;
}