/* ===========================
      GLOBAL SETTINGS
=========================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f9f5ef;
    color: #4b3f33;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ===========================
      TOP NAVIGATION
=========================== */
.top-nav {
    background: #f7efe4;
    padding: 15px 35px;
    border-bottom: 2px solid #e2d5c7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    font-size: 28px;
    color: #b28b55;
}

.search-bar {
    flex: 1;
    display: flex;
    max-width: 450px;
    margin: 0 40px;
}

.search-bar input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dbcbb9;
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: #fffdf9;
}

.search-bar button {
    padding: 10px 15px;
    border: 1px solid #dbcbb9;
    background: #b28b55;
    color: white;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.nav-icons span {
    margin-left: 18px;
    cursor: pointer;
    font-size: 20px;
}

/* ===========================
         HERO SLIDER
=========================== */
.hero-slider {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.4);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 650px;
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 22px;
}

.cta-btn {
    background: #b28b55;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #8f6d45;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* ===========================
     CATEGORY SECTION
=========================== */
.categories {
    text-align: center;
    padding: 60px 20px;
}

.categories h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #b28b55;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cat-card {
    background: #fffdf8;
    border: 1px solid #e4d6c7;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.cat-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.cat-card p {
    padding: 12px;
    font-size: 16px;
    color: #5b4634;
    font-weight: 500;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

/* ===========================
          ABOUT US
=========================== */
.about {
    padding: 80px 40px;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: #fffaf3;
    border: 1px solid #eadcc9;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-left {
    flex: 1;
    border-left: 5px solid #b28b55;
    padding-left: 30px;
}

.about-left h2 {
    font-size: 36px;
    color: #b28b55;
    margin-bottom: 18px;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #6a594c;
    margin-bottom: 15px;
}

.about-points {
    margin: 25px 0;
}

.point {
    background: #fff4e2;
    padding: 10px 15px;
    border: 1px solid #e4d0b5;
    border-radius: 8px;
    color: #6a594c;
    margin-bottom: 10px;
    font-size: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #b28b55;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #936c42;
}

.about-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    border: 1px solid #e2d5c7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

/* ===========================
     BEST SELLER SLIDER
=========================== */
.best-seller {
    padding: 60px 40px;
}

.best-seller h2 {
    text-align: center;
    font-size: 32px;
    color: #b28b55;
    margin-bottom: 35px;
}

.bs-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.bs-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;   /* FIXED */
    scroll-behavior: smooth;
    scrollbar-width: none; /* hide scrollbar for Firefox */
}

.bs-slider::-webkit-scrollbar {
    display: none; /* hide scrollbar for Chrome/Safari */
}


.bs-card {
    min-width: 260px;
    background: #fffdf9;
    border: 1px solid #e5d6c7;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 12px;
    flex-shrink: 0;
    transition: 0.3s;
}

.bs-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.bs-card h3 {
    margin-top: 10px;
    color: #5b4634;
    font-size: 16px;
}

.bs-btn {
    font-size: 40px;
    cursor: pointer;
    color: #b28b55;
    padding: 10px;
    user-select: none;
}

.bs-prev {
    margin-right: 10px;
}

.bs-next {
    margin-left: 10px;
}

/* ===========================
       PARALLAX BANNER
=========================== */
.parallax {
    background-image: url('images/img17.jpg');
    height: 55vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 60px 0;
}

.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
}

.parallax-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.parallax-text h2 {
    font-size: 36px;
    color: #ffffff;
}

.parallax-text p {
    font-size: 18px;
    color: #f7f3ee;
    margin-top: 10px;
}

/* ===========================
       TESTIMONIALS
=========================== */
.testimonials {
    padding: 60px 40px;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    color: #b28b55;
    margin-bottom: 30px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testi-card {
    background: #fffdf8;
    border: 1px solid #e5d9c8;
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
}

/* ===========================
        LOCATION
=========================== */
.location {
    padding: 70px 40px;
    background: #fffaf3;
    border-top: 2px solid #eadcc9;
}

.loc-title {
    text-align: center;
    font-size: 32px;
    color: #b28b55;
    margin-bottom: 8px;
}

.loc-divider {
    width: 80px;
    height: 4px;
    background: #b28b55;
    margin: 0 auto 40px;
    border-radius: 5px;
}

.location-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.location-info {
    flex: 1;
}

.loc-text {
    color: #6b5a48;
    line-height: 1.6;
    margin-bottom: 20px;
}

.loc-box {
    background: #fff4e4;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5d3bd;
    margin-bottom: 20px;
    line-height: 1.7;
}

.loc-buttons {
    display: flex;
    gap: 15px;
}

.loc-btn {
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.call-btn {
    background: #25d366;
    color: white;
}

.direction-btn {
    background: #b28b55;
    color: white;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 14px;
    border: 1px solid #e2d6c7;
}

/* ===========================
          FOOTER
=========================== */
.footer {
    background: #f4ebdf;
    padding: 50px 30px;
    margin-top: 40px;
}

.footer-section {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 25px;
}

.footer-col h4 {
    color: #b28b55;
    font-size: 18px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #5a4a3c;
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #886f5a;
}

/* ===========================
    WHATSAPP FLOAT BUTTON
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    font-size: 26px;
    padding: 12px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===========================
         RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .category-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .top-nav {
        flex-direction: column;
        gap: 15px;
    }

    .category-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        flex-direction: column;
    }

    .slide-text h1 {
        font-size: 32px;
    }

    .slide-text p {
        font-size: 16px;
    }
}
