@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #026A83; /* Premium Teal */
    --primary-dark: #014f63;
    --primary-light: #e6f3f6;
    --secondary: #D8172A; /* Vibrant Red */
    --secondary-light: #f52c3f;
    --bg-light: #f7fbfc; /* Matching light teal-ish background */
    --surface-light: #ffffff;
    --text-dark: #1a2c30; /* Soft dark teal-gray text */
    --text-muted: #536b70;
    --text-light: #ffffff;
    --border-color: #d2e4e8;
    --gold-glow: 0 0 20px rgba(2, 106, 131, 0.25);
    --shadow-soft: 0 10px 30px rgba(2, 106, 131, 0.06);
    --shadow-dark: 0 15px 40px rgba(2, 106, 131, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

h1, h2, h3, h4, h5, h6, .luxury-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

button, input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* --- Premium Utilities & Global Layouts --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.btn-luxury {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn-luxury:hover {
    border-color: var(--secondary);
    color: var(--text-light);
    box-shadow: var(--gold-glow);
}

.btn-luxury:hover::before {
    width: 300px;
    height: 300px;
}

.btn-luxury-outline {
    display: inline-block;
    padding: 11px 29px;
    background-color: transparent;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    background-color: var(--secondary);
    color: var(--text-light);
}

/* --- Top Utility Bar --- */
.top-bar {
    background-color: var(--secondary);
    color: #b5b5b5;
    font-size: 0.75rem;
    padding: 10px 0;
    border-bottom: 1px solid #2e2e2e;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--primary);
}

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

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

.top-bar-right select {
    background: transparent;
    color: #b5b5b5;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
}

.top-bar-right select option {
    background-color: var(--secondary);
}

/* --- Sticky Premium Header --- */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(194, 156, 120, 0.1);
    transition: var(--transition-smooth);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

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

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

.nav-icon {
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    color: var(--secondary);
    transition: var(--transition-fast);
}

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

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
}

.slide-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 600px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.slide-desc {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 300;
    color: #e5e5e5;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.slide-btn {
    transform: translateY(60px);
    opacity: 0;
    transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
}

.slide.active .slide-subtitle,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btn {
    transform: translateY(0);
    opacity: 1;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary);
    border-color: var(--text-light);
    transform: scale(1.2);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 15;
}

.feature-card {
    background: var(--surface-light);
    padding: 35px 25px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(194, 156, 120, 0.15);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Promotion Section --- */
.promo-section {
    background-color: #FAF6F0;
}

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

.promo-card {
    background: var(--surface-light);
    padding: 50px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.promo-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.promo-form {
    display: flex;
    gap: 10px;
}

.promo-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: #fafafa;
}

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

.promo-success {
    display: none;
    background-color: #edf7ed;
    color: #1e4620;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* --- Section Headings --- */
.section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.6rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

/* --- Product Showcase Grid --- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 25px;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: var(--gold-glow);
}

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

.product-card {
    background: var(--surface-light);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    z-index: 10;
}

.product-badge.sale {
    background-color: #d9534f;
    color: white;
}

.product-badge.new {
    background-color: var(--primary);
    color: white;
}

.product-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #f7f7f7;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.product-card:hover .product-actions-overlay {
    bottom: 0;
}

.action-btn {
    background: var(--secondary);
    color: var(--text-light);
    border: none;
    padding: 8px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 3px;
}

.action-btn:hover {
    background: var(--primary);
    box-shadow: var(--gold-glow);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.product-rating {
    color: #ffb400;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.product-price span {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 8px;
    font-weight: 400;
}

.stock-status {
    font-size: 0.75rem;
    margin-top: 8px;
    font-weight: 500;
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stock-status.low {
    color: #ff9800;
}

/* --- Blog Section --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--surface-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-readmore {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-readmore:hover {
    color: var(--secondary);
}

/* --- Brand Partners Section --- */
.partners-section {
    background-color: var(--surface-light);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    color: var(--secondary);
}

/* --- Lower Image Gallery Collage --- */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 350px;
}

.collage-item {
    overflow: hidden;
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 156, 120, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

/* --- Footer --- */
footer {
    background-color: var(--secondary);
    color: #bbbbbb;
    padding: 70px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}

.footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--gold-glow);
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-payments {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 25px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 3px;
    padding: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.footer-bottom-logo span {
    color: var(--primary);
}

/* --- About Page Specifics --- */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero_makeup.png') center/cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--primary);
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.about-img-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.company-title {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.company-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.company-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.company-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.company-bullet i {
    color: var(--primary);
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--surface-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img-container {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img-container img {
    transform: scale(1.06);
}

.team-socials-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(26,26,26,0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.team-card:hover .team-socials-overlay {
    bottom: 0;
}

.team-socials-overlay a {
    color: white;
    font-size: 1rem;
}

.team-socials-overlay a:hover {
    color: var(--primary);
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Testimonial Section */
.testimonials-section {
    background-color: var(--secondary);
    color: white;
    position: relative;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 25px;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* --- Contact Page Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.contact-info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FAF6F0;
    border: 1px solid var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Map Widget */
.map-container {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.simulated-map {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    position: relative;
    background-image: radial-gradient(#d3d1cc 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simulated-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.03), rgba(0,0,0,0.07));
    pointer-events: none;
}

.map-card-popup {
    background: var(--surface-light);
    border-radius: 6px;
    padding: 25px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--primary-light);
    max-width: 320px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.5s ease;
}

.map-card-popup h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-card-popup h4 i {
    color: var(--primary);
}

.map-card-popup p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.map-pin {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 45px;
    left: 50%;
    margin-left: -20px;
    box-shadow: -8px 8px 15px rgba(0,0,0,0.25);
    border: 3px solid white;
    animation: bounce 2s infinite;
}

.map-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    background: white;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -7px;
}

.map-grid-roads {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.map-road-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(255,255,255,0.7);
    top: 55%;
}

.map-road-v {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    left: 45%;
}

.map-park {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 180px;
    height: 120px;
    background-color: #d0e6d0;
    border-radius: 20px;
    opacity: 0.7;
}

/* Contact Form */
.contact-form-card {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #FAF8F5;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: var(--gold-glow);
}

/* --- Booking Modal & Systems --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    background: var(--surface-light);
    width: 90%;
    max-width: 580px;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--primary-light);
    overflow: hidden;
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-window {
    transform: scale(1);
}

.modal-header {
    background-color: var(--secondary);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 25px;
    max-height: 75vh;
    overflow-y: auto;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--primary);
    background-color: var(--bg-light);
}

.time-slot.selected {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.booking-success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-success-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.booking-code {
    background-color: var(--bg-light);
    border: 1px dashed var(--primary);
    padding: 12px 30px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
    border-radius: 4px;
}

/* In-Store reservation drawer / list */
.reservation-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: var(--surface-light);
    box-shadow: var(--shadow-dark);
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

.reservation-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.drawer-header h3 {
    font-size: 1.3rem;
    color: var(--secondary);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.reservation-list {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.reservation-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    align-items: center;
}

.reservation-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.res-item-details {
    flex-grow: 1;
}

.res-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.res-item-price {
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-top: 4px;
}

.res-item-remove {
    background: transparent;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 0.9rem;
}

.drawer-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.drawer-footer .total-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

/* --- Shop Page Specific Layout --- */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.shop-sidebar {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 4px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 35px;
}

.sidebar-widget h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--primary-light);
    padding-bottom: 8px;
    color: var(--secondary);
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.sidebar-links a:hover, .sidebar-links a.active {
    color: var(--primary-dark);
    font-weight: 500;
    padding-left: 5px;
}

.search-widget {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.search-widget i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.store-hours-widget {
    background-color: #FAF6F0;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.store-hours-widget h5 {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary);
}

.store-hours-widget ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: var(--text-muted);
}

/* Shop toolbar */
.shop-toolbar {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shop-toolbar-left {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-toolbar-right select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: transparent;
    font-size: 0.85rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--surface-light);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition-smooth);
        z-index: 99;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .about-company-grid {
        grid-template-columns: 1fr;
    }
    .about-img-box img {
        height: 300px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .collage-item {
        height: 180px;
    }
    .hero-slider, .slide {
        height: 500px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }
    .collage-grid {
        grid-template-columns: 1fr;
    }
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-window {
        width: 95%;
    }
    .reservation-drawer {
        width: 100%;
        right: -100%;
    }
}
