:root {
    --accent: #2c4c6b;
    --accent-light: #e9f0f7;
    --dark: #0f172a;
    --gray-bg: #f8fafc;
    --border-light: #e2e8f0;
    --card-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.1);
}
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0f172a;
    line-height: 1.5;
    padding-top: 110px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    color: var(--dark);
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px var(--accent);
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    padding: 14px 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    gap: 2.4rem;
    font-weight: 500;
}
.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}
.nav-menu a:hover {
    border-bottom-color: var(--accent);
    color: var(--accent);
}
.nav-menu a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}
/* HERO SECTION */
#hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    color: white;
    border-radius: 40px;
    margin: 0 20px 40px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.hero-slider {
    position: relative;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
}
.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-content span {
    color: #ff6b6b;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    z-index: 5;
}
.prev {
    left: 30px;
}
.next {
    right: 30px;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.hero-dots span {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: .5;
    cursor: pointer;
}
.hero-dots span.active {
    opacity: 1;
}
.collection-section {
    padding: 80px 0;
}
.collection-section:nth-child(even) {
    background: var(--gray-bg);
}
.filter-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.filter-panel {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}
.filter-panel.horizontal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 30px;
}
.filter-btn {
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    transition: 0.2s;
}
.filter-btn.active {
    background: #5b7c94;
    color: white;
}
.filter-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
/* Product grid - Responsive */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
}
/* Product card */
.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}
.product-card .product-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 30px -10px rgba(44, 76, 107, 0.25);
}
.product-card-content {
    padding: 1.2rem 1rem 1.5rem;
    text-align: center;
}
.product-card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}
.product-card-content p {
    color: #64748b;
    font-size: 0.95rem;
}
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.page-btn {
    padding: 12px 18px;
    min-width: 48px;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    color: #334155;
    transition: all 0.25s ease;
}
.page-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.page-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 6px 16px -6px rgba(44, 76, 107, 0.3);
}
#reviews {
    padding: 110px 0;
    background: white;
}
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    /* ADD THIS */
}
.testimonial-track {
    display: flex;
    gap: 40px;
    will-change: transform;
    user-select: none;
    cursor: grab;
}
.testimonial-track:active {
    cursor: grabbing;
}
.testimonial-wrapper {
    overflow: hidden;
}
#testimonial-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 380px;
    background: var(--gray-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: all 0.35s ease;
}
.testimonial-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -12px rgba(44, 76, 107, 0.28);
    border-color: var(--accent);
}
.stars {
    color: #f5b342;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.quote {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}
.author {
    font-weight: 600;
    color: var(--accent);
}
.view-more-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.view-more-btn {
    background: var(--accent);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.view-more-btn:hover {
    background: var(--dark);
    transform: translateY(-3px);
}
/* CONTACT SECTION */
#contact {
    padding: 110px 0 90px;
    background: linear-gradient(180deg, var(--gray-bg), #f8fafc);
    position: relative;
}

/* FIXED GRID */
.contact-cards-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

/* CARDS */
.contact-info-card,
.contact-form-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 26px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
    transition: all .35s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.18);
}

/* LEFT CONTACT CARD */
.contact-info-card {
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
}

.contact-info-card h3 {
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h3 i {
    color: var(--accent);
}

/* INFO BLOCKS */
.info-block {
    background: var(--accent-light);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(44,76,107,0.08);
    transition: .25s;
}

.info-block:hover {
    background: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(44,76,107,.18);
}

.info-block i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 3px;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
}

/* RIGHT FORM */
.contact-form-card {
    padding: 2.8rem 2.6rem;
}

.contact-form-card h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-card h3 i {
    color: var(--accent);
}

/* FORM GRID */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

/* INPUTS */
input,
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 14px;
    font-size: 0.95rem;
    transition: .25s;
    background: #fff;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44,76,107,0.12);
    outline: none;
}

/* BUTTON */
.contact-form-card .btn {
    margin-top: 1.8rem;
    display: block;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}
#map-section {
    padding: 0 0 110px;
    background: var(--gray-bg);
}
.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -10px rgba(44, 76, 107, .3);
    height: 420px;
    border: 1px solid var(--border-light);
    transition: .3s ease;
}
.map-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(44, 76, 107, .35);
}
.footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 80px 0 50px;
    text-align: center;
}
.footer .logo {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}
.footer .logo span {
    color: var(--accent);
}
.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin: auto;
}
.footer p {
    opacity: .8;
    font-size: .95rem;
}
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.15);
    z-index: 9999;
}
.image-popup img {
    max-height: 85vh;
    max-width: 90vw;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    animation: zoomIn 0.25s ease;
}
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.close-popup {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
/* PRODUCT CARD LINK RESET */
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card h4,
.product-card p {
    text-decoration: none;
    color: var(--dark);
}

.product-card:hover h4,
.product-card:hover p {
    text-decoration: none;
}
.product-card {

    display: block;
    text-decoration: none;
    color: inherit;

    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;

    overflow: hidden;

    transition: all .3s ease;

    box-shadow: var(--card-shadow);

}

.product-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: 0 20px 40px -12px rgba(44,76,107,0.28);

}

.product-card .product-image {

    width: 100%;
    aspect-ratio: 3/4;

    overflow: hidden;

}

.product-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.product-card-content {

    padding: 1.2rem 1rem 1.5rem;

    text-align: center;

}

.product-card-content h4 {

    font-size: 1.15rem;

    margin-bottom: 4px;

    color: var(--dark);

}

.product-card-content p {

    color: #64748b;

    font-size: 0.95rem;

}
/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .navbar {
        padding: 10px 20px;
    }
    .nav-menu {
        gap: 1.5rem;
    }
}
/* @media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    .navbar {
        width: 95%;
        padding: 8px 16px;
    }
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-menu a {
        font-size: 14px;
    }
    .logo img {
        height: 40px;
    }
    #hero {
        height: 60vh;
        margin: 0 10px 20px 10px;
    }
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-arrow {
        width: 35px;
        height: 35px;
    }
    .prev {
        left: 15px;
    }
    .next {
        right: 15px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .filter-panel.horizontal {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .testimonial-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
    .contact-form-card {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .contact-form-card .btn {
        width: 100%;
        min-width: unset;
    }
    .map-wrapper {
        height: 320px;
    }
    .footer-logo img {
        height: 40px;
    }
} */
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}
/* Desktop */
.nav-menu {
    display: flex;
    gap: 2.4rem;
}
/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-container {
        flex-direction: row;
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 25px 0;
        border-radius: 20px;
        border: 1px solid var(--border-light);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s;
    }
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-menu a {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    .container {
        padding: 0 16px;
    }
    .section-title {
        font-size: 2rem;
    }
    #hero {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .hero-arrow {
        width: 30px;
        height: 30px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .product-card-content h4 {
        font-size: 1rem;
    }
    .testimonial-card {
        flex: 0 0 260px;
        padding: 1.2rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    .info-block {
        padding: 1rem;
    }
    .info-block i {
        font-size: 1.2rem;
    }
    .close-popup {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}
@media (max-width: 375px) {
    .nav-menu {
        gap: 0.5rem;
    }
    .nav-menu a {
        font-size: 12px;
    }
    .hero-content h1 {
        font-size: 24px;
    }
}
/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(44, 76, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
    border: 2px solid white;
}
.scroll-top-btn:hover {
    background: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(44, 76, 107, 0.4);
}
.scroll-top-btn i {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}
/* Form validation styles */
.form-message {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 1.6rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}
.form-message.error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #7f1d1d;
}
/* Phone input validation style */
input:invalid {
    border-color: #ef4444;
}
input:valid {
    border-color: #10b981;
}
/* Responsive for scroll button */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
input:invalid,
textarea:invalid,
select:invalid {
    border-color: var(--border-light) !important;
    box-shadow: none !important;
}
input:valid,
textarea:valid,
select:valid {
    border-color: var(--border-light) !important;
    box-shadow: none !important;
}