/* GLOBAL */
body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

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

/* TOP BAR */
.top-bar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    position: relative;
    z-index: 7000;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND */
.brand-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 50px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

/* ABOUT DROPDOWN */
.nav-links {
    display: flex;
    justify-content: center;
}

.about-dropdown {
    position: relative;
    z-index: 9999;
}

.about-link {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
}

.about-link .arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.about-dropdown.open .arrow {
    transform: rotate(180deg);
}

/* SIMPLE ORIGINAL DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    padding: 8px 0;
    min-width: 160px;
    z-index: 9999;
}

.about-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    text-align: center;
    padding: 10px 16px;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f3f3f3;
}

/* ===================== */
/*     HERO CAROUSEL     */
/* ===================== */

.carousel-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}

.carousel-images img.active {
    opacity: 1;
}

/* DOTS INSIDE IMAGE */
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 20;
}

.carousel-dots div {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

.carousel-dots div:hover {
    transform: scale(1.35);
}

.carousel-dots div.active {
    background: rgba(255,255,255,0.95);
    transform: scale(1.45);
}

/* ================= */
/*    PRODUCTS       */
/* ================= */



.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* ⭐ EXACTLY 3 PER ROW */
    gap: 2.4rem;
}


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

.product-title {
    font-size: 1.1rem;
    margin-top: 0.8rem;
}

.product-price {
    font-weight: 500;
    margin-top: 0.35rem;
}

/* ⭐ BUTTON ROW: SIDE BY SIDE, NO OVERFLOW */
.product-actions {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

/* ⭐ BUTTONS AUTO-FIT INSIDE CARD */


.product-btn {
    padding: 0.55rem 1rem;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 1;
    min-width: 0;
    max-width: 150px; /* slightly more space */
    white-space: nowrap;  /* ⭐ PREVENT TEXT WRAP ⭐ */
}


.product-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

/* WHATSAPP GREEN BUTTON */
.product-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

/* ================================== */
/*             FOOTER                 */
/* ================================== */

.footer {
    background: linear-gradient(180deg,#d5d5d5,#cfcfcf);
    padding: 4.5rem 7%;
}

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

/* LOGO + SOCIAL */
.logo-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main-logo {
    width: 110px;
    margin-bottom: 1.4rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-social-icon {
    width: 26px;
    height: 26px;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* FOOTER TEXT */
.footer-col h4 {
    margin-bottom: 0.8rem;
    color: #000;
    font-size: 1.05rem;
}

.footer-col p {
    margin: 0.3rem 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* CUSTOMER LINKS */
.footer-col a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-col a:hover {
    text-decoration: underline;
    color: #000;
}

/* COLUMN DIVIDERS */
.footer-grid > div {
    position: relative;
}

.footer-grid > div:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 10%;
    bottom: 10%;
    width: 1.5px;
    background: rgba(0,0,0,0.12);
}

/* MOBILE FRIENDLY FOOTER + CAROUSEL HEIGHT */
@media(max-width: 600px) {
    .carousel-images {
        height: 280px;
    }
    .footer {
        padding: 3rem 5%;
    }
    .footer-grid {
        gap: 2.2rem;
    }
    .footer-grid > div::before {
        display: none;
    }
}

/* ================= ABOUT PAGE ================= */

.about-hero img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-quote {
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111;
}

.about-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 4rem 8%;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.7;
    color: #222;
}

.about-image img {
    width: 480px;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-full img {
    width: 100%;
    display: block;
    margin-top: 4rem;
}

/* MOBILE */
@media(max-width: 900px) {
    .about-block {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .about-block.reverse {
        flex-direction: column;
    }

    .about-image img {
        width: 100%;
    }
}



@media(max-width: 900px) {
    .product-section {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet/small desktop */
    }
}

@media(max-width: 600px) {
    .product-section {
        grid-template-columns: 1fr; /* 1 per row on small phones */
    }
}

/* ===== REFINEMENTS FOR ABOUT PAGE ===== */

.about-hero img {
    height: 330px;
    object-fit: cover;
}

.about-image img {
    width: 340px;
}

.about-text {
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-page-title h1 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 3rem 0 2rem 0;
    letter-spacing: 0.5px;
}

/* CUSTOMER SERVICE TITLE SAME AS ABOUT US TITLE */
.cs-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 3rem 0 2rem 0;
    letter-spacing: 0.5px;
}




/* ============================= */
/*     CUSTOMER SERVICE PAGE     */
/* ============================= */

.cs-wrapper {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.cs-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 3rem 0 2rem 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.cs-item {
    border-bottom: 1px solid rgba(0,0,0,0.11);
    padding: 1.35rem 0;
}

.cs-header {
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #000;
}

.cs-header span {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.cs-item.open .cs-header span {
    transform: rotate(180deg);
}

.cs-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
}

.cs-item.open .cs-content {
    max-height: 900px;
}

.cs-content ul {
    padding-left: 20px;
}

.cs-content p {
    margin-bottom: 0.8rem;
}



.coming-soon {
    text-align: center;
    font-size: 1.8rem;      /* medium big */
    font-weight: 600;       /* bold */
    letter-spacing: 1px;
    margin: 2.5rem 0 1.5rem;
    color: #000;
}


.lang-switch {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.95rem;
}

.lang-switch a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
}

.lang-switch img {
    width: 22px;
    height: auto;
}


.lang-switch {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switch a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
}

.lang-switch img {
    width: 22px;
    height: auto;
}


@media(max-width: 600px) {
    .navbar-inner {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .nav-links {
        justify-content: center;
    }

    .lang-switch {
        justify-content: center;
    }
}
