/* ---------- GLOBAL STYLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #3e1f0e;
    color: #fff;
    overflow-x: hidden;
}

/* ---------- TOASTS (public site) ---------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #ffffff;
    color: #3e1f0e;
    border-left: 4px solid #f0b27a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    min-width: 260px;
    max-width: 360px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: toast-in 200ms ease-out;
}

.toast .toast-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.toast .toast-message {
    font-size: 0.95rem;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #17a2b8;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

/* ---------- NAVIGATION BAR ---------- */
.navbar {
    background-color: #2d1508;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0b27a;
    font-family: "Dancing Script", cursive;
}

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

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f0b27a;
    background-color: rgba(240, 178, 122, 0.1);
}

/* Admin Link Styling */
.nav-menu li a.admin-link {
    background-color: #f0b27a;
    color: #3e1f0e;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu li a.admin-link:hover {
    background-color: #fff;
    color: #3e1f0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ---------- HERO SECTION ---------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    background: #3e1f0e;
    overflow: hidden;
    padding: 20px 0;
}

.hero-left {
    width: 100%;
    max-width: 1000px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-left span {
    font-family: "Dancing Script", cursive;
    color: #f0b27a;
    font-size: 3rem;
}

.hero-left p {
    margin-top: 15px;
    line-height: 1.6;
    font-weight: 300;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    background: #f0b27a;
    color: #3e1f0e;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #fff;
}

/* Buttons row in hero */
.btn-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
}

/* Secondary button (outlined) */
.btn.btn-secondary {
    background: transparent;
    color: #f0b27a;
    border: 2px solid #f0b27a;
}

.btn.btn-secondary:hover {
    background: #fff;
    color: #3e1f0e;
}

/* ---------- HERO IMAGE ---------- */
.hero-right {
    display: none;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

/* ---------- SERVICES SECTION ---------- */
.services {
    background-color: #f9f5f1;
    color: #3e1f0e;
    padding: 80px 10%;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3e1f0e;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #5a3923;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #fff;
    color: #3e1f0e;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.8s;
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    display: block;
}

/* Animation trigger class */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card.clickable {
    cursor: pointer;
}

.service-card.clickable:hover {
    background-color: #f9f5f1;
}

.service-card h3 {
    color: #b8774b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- SERVICES PREVIEW SECTION ---------- */
.services-preview {
    background-color: #3e1f0e;
    color: #fff;
    padding: 80px 10%;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #f0b27a;
    margin-bottom: 10px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* ---------- PRODUCTS SECTION ---------- */
.products-section {
    padding: 60px 10%;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 15px;
}

.product-title {
    font-size: 1.1rem;
    color: #3e1f0e;
    margin: 0 0 8px;
}

.product-price {
    color: #b8774b;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    color: #5a3923;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 44px;
}

.product-actions {
    padding: 12px 15px 18px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1ebe57;
}

/* ---------- FEATURED PRODUCT ---------- */
.featured-product-section {
    padding: 40px 10%;
    background: #f9f5f1;
    text-align: center;
}

.featured-product-container {
    margin-top: 20px;
}

.featured-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.product-image-wrap {
    position: relative;
}

/* Slightly taller image for the homepage featured card */
.featured-card .product-image {
    height: 180px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f0b27a;
    color: #3e1f0e;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-preview .subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #fff;
}

.services-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #3e1f0e;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(240, 178, 122, 0.4);
}

.preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.preview-card h3 {
    color: #b8774b;
    font-size: 1.5rem;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.preview-card p {
    color: #3e1f0e;
    font-size: 1rem;
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* ---------- GALLERY SECTION ---------- */
.nail-moments {
    background: #3e1f0e;
    color: #fff;
    padding: 80px 10%;
    text-align: center;
}

.nail-moments .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.gallery-section {
    background-color: #4a1e0b;
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 900px;
    padding: 0 20px;
}

.gallery-section .gallery-item {
    width: 35%;
    max-width: 300px;
}

.gallery-item {
    width: 100%;
}

.gallery-item .gallery-image-wrapper {
    position: relative;
    width: 100%;
}

.gallery-item .gallery-image-wrapper:hover .image-actions {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
}

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

.gallery-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #ffe7d1;
}

.nail-quote {
    font-size: 1.1rem;
    font-style: italic;
    max-width: 700px;
    margin: 30px auto 0;
    color: #ffe7d1;
}

/* ---------- TOGGLABLE SERVICES BOX ---------- */
#servicesList {
    display: none;
    background-color: #3b1e0f;
    color: white;
    padding: 30px;
    border-radius: 15px;
    width: 85%;
    margin: 30px auto;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
    overflow-y: auto;
    /* allows vertical scrolling */
    max-height: 250px;
    /* height limit before scroll appears */
    /* Scrollbar styling removed for broader browser compatibility */
}

#servicesList::-webkit-scrollbar {
    width: 8px;
    /* for Chrome/Safari */
}

#servicesList::-webkit-scrollbar-thumb {
    background-color: #f0b27a;
    border-radius: 10px;
}

#servicesList::-webkit-scrollbar-track {
    background: #3b1e0f;
}

#servicesList.show {
    display: block;
    max-height: 250px;
}

#servicesList h2 {
    text-align: center;
    color: #f8c291;
    margin-bottom: 15px;
}

#servicesList ul {
    list-style: none;
    line-height: 2em;
    font-size: 18px;
    padding-left: 0;
}

#servicesList li {
    margin-bottom: 8px;
    transition: transform 0.3s;
}

#servicesList li:hover {
    transform: translateX(5px);
    color: #f0b27a;
}

#servicesList li a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

#servicesList li a:hover {
    color: #f0b27a;
    text-decoration: underline;
}

.service-detail {
    background-color: #3e1f0e;
    color: #fff;
    text-align: center;
    padding: 60px 10%;
    min-height: 100vh;
}

.service-detail h1 {
    color: #f0b27a;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-detail h2 {
    color: #f0b27a;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail .gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.gallery-image-wrapper {
    position: relative;
    width: 300px;
}

.gallery-image-wrapper:hover .image-actions {
    opacity: 1;
}

.service-detail .gallery-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    display: block;
}

.service-detail .gallery-container img:hover {
    transform: scale(1.05);
}

.image-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.love-btn,
.share-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.love-btn:hover,
.share-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.love-btn .heart {
    color: #e74c3c;
    font-size: 1.5rem;
}

.love-btn.loved .heart {
    animation: heartBeat 0.3s;
}

.share-btn span {
    color: #3498db;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.service-detail .gallery-container .gallery-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-info {
    background: rgba(240, 178, 122, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 600px;
}

.service-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-info ul li {
    font-size: 1.1rem;
    padding: 10px 0;
    line-height: 1.6;
}

.other-services {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(240, 178, 122, 0.3);
}

.other-services h2 {
    color: #f0b27a;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.other-services-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.other-service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 250px;
    cursor: pointer;
}

.other-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(240, 178, 122, 0.4);
}

.other-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.other-service-card h3 {
    color: #f0b27a;
    font-size: 1.3rem;
    padding: 20px;
    text-align: center;
}

.back-btn-container {
    margin-top: 30px;
    margin-bottom: 20px;
}

.back-btn-container .btn {
    background: #f0b27a;
    color: #3e1f0e;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.back-btn-container .btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 178, 122, 0.3);
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    background-color: #3e1f0e;
    color: #fff;
    padding: 80px 10%;
    min-height: 100vh;
}

.contact-section h1 {
    color: #f0b27a;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.contact-section>p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
    color: #f0b27a;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    color: #f0b27a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p {
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

#contactFormMessage {
    display: none;
    margin-top: 15px;
    color: #28a745;
    font-weight: 500;
}

.contact-form .btn {
    background: #f0b27a;
    color: #3e1f0e;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 178, 122, 0.3);
}

/* ---------- ABOUT PAGE ---------- */
.about-section {
    background-color: #3e1f0e;
    color: #fff;
    padding: 80px 10%;
    min-height: 100vh;
}

.about-section h1 {
    color: #f0b27a;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    color: #f0b27a;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding-left: 20px;
}

.about-text ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.about-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f0b27a;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: #2d1508;
    color: #fff;
    padding: 60px 10% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: #f0b27a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: "Dancing Script", cursive;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #f0b27a;
}

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

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(240, 178, 122, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #f0b27a;
    transform: translateY(-5px);
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-icon:hover img {
    filter: brightness(0) invert(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(240, 178, 122, 0.3);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- GALLERY PAGE ---------- */
.page-hero {
    background: linear-gradient(135deg, #3e1f0e 0%, #5a3923 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero span {
    color: #f0b27a;
    font-family: 'Dancing Script', cursive;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gallery-page {
    background: #f9f5f1;
    padding: 60px 20px;
}

.gallery-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-filters-public {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    color: #3e1f0e;
    border: 2px solid #f0b27a;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f0b27a;
    color: #3e1f0e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 178, 122, 0.3);
}

.gallery-count {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-count p {
    font-size: 1.1rem;
    color: #3e1f0e;
    font-weight: 600;
}

.gallery-count span {
    color: #f0b27a;
    font-size: 1.5rem;
    font-weight: 700;
}

.public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .public-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .public-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    color: #3e1f0e;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: #5a3923;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ========== MOBILE HERO FIX ========== */
@media screen and (max-width: 768px) {
    .hero {
        background: #3e1f0e !important;
        flex-direction: column !important;
        padding: 60px 0 40px !important;
        /* allow content to define height on mobile */
        min-height: 0 !important;
    }

    .hero-left,
    .hero-right {
        width: 100% !important;
        padding: 20px !important;
    }

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

    .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-right img {
        max-width: 90%;
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        background: #3e1f0e !important;
        padding: 50px 15px 30px !important;
    }

    .hero-left,
    .hero-right {
        padding: 15px !important;
    }

    .hero-right img {
        max-width: 100%;
    }
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #2d1508 0%, #3e1f0e 100%);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #f0b27a;
    margin-bottom: 10px;
}

.testimonials-section .subtitle {
    color: #d4a574;
    margin-bottom: 50px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 178, 122, 0.3);
    border-radius: 15px;
    padding: 30px;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 178, 122, 0.3);
    border-color: #f0b27a;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #f0b27a;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #a08060;
    font-size: 0.9rem;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 178, 122, 0.9);
    color: #3e1f0e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.testimonial-arrow:hover {
    background: #f0b27a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(240, 178, 122, 0.5);
}

.testimonial-arrow.left {
    left: 0;
}

.testimonial-arrow.right {
    right: 0;
}

@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 50px 20px;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonials-wrapper {
        padding: 0 50px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}