@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #ffeccf;
    --secondary-color: rgb(191 74 20);
    --text-color: #111827;
    --text-light: #fde3bc;
    --white-color: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e5e7eb;
    --dark-overlay: rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Playfair Display", serif;
    background: #fefcf8;
    color: var(--text-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* =========================
   GLOBAL TYPOGRAPHY
   ========================= */
body,
button,
input,
textarea,
select,
a,
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif !important;
}

/* =========================
   TOP BAR
   ========================= */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 0.75rem 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

/* force font inside navbar */
.navbar,
.navbar *,
.navbar-brand,
.navbar-nav,
.navbar-nav .nav-item,
.navbar-nav .nav-link,
.navbar .dropdown-toggle,
.navbar .dropdown-menu,
.navbar .dropdown-item,
.navbar-toggler,
.header-buttons a,
.header-buttons button {
    font-family: "Playfair Display", serif !important;
}

.navbar-brand img {
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.navbar-nav {
    gap: 0.2rem;
}

.navbar-nav .nav-item {
    margin-right: 12px;
}
.navbar-nav .nav-item:hover {
    background-color: #fde3bc;
}

.navbar .nav-link {
    color: #000000 !important;
    font-weight: 600;
    margin: 0 4px;
    padding: 8px 16px;
    border-radius: 40px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.navbar .nav-link:hover {
    background-color: #fde3bc;
    transform: translateY(-1px);
}

/* =========================
   DROPDOWN
   ========================= */
.dropdown-toggle::after {
    transition: transform 0.2s;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    margin-top: 0.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    background-color: #fde3bc;
    min-width: 220px;
}

.dropdown-item {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    color: var(--text-color);
    transition: background 0.2s, padding-left 0.2s;
}

.dropdown-item:hover {
    background-color: #fde3bc;
    padding-left: 1.8rem;
}

.dropdown-item.active-category {
    background: #fff0e0;
    color: var(--secondary-color);
}

/* desktop dropdown */
@media (min-width: 992px) {
    .navbar .dropdown .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease;
    }

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }
}

/* =========================
   HEADER BUTTONS
   ========================= */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-whatsapp,
.btn-enquiry {
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 999px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    background-color: #25D366;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #1da15a;
    transform: scale(1.05);
    color: white;
}

.btn-enquiry {
    background-color: #1f2937;
}

.btn-enquiry:hover {
    background-color: #111827;
    transform: scale(1.05);
    color: white;
}

/* =========================
   NAVBAR TOGGLER
   ========================= */
.navbar-toggler {
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* =========================
   MOBILE NAVBAR
   ========================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff1dc;
        border-radius: 28px;
        margin-top: 1rem;
        padding: 1rem 0.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-item {
        margin: 0.2rem 0;
        margin-right: 0;
    }

    .navbar .nav-link {
        padding: 10px 20px;
        border-radius: 50px;
    }

    .navbar .nav-link:hover {
        background-color: #ffffff;
        color: #1e1e1e !important;
    }

    .dropdown-menu {
        background-color: #fff6e8;
        border-radius: 24px;
        margin-left: 1rem;
        width: calc(100% - 2rem);
    }

    #mainNavbar {
        display: none;
        width: 100%;
        margin-top: 12px;
    }

    #mainNavbar.show {
        display: block;
    }
}

/* =========================
   COMMON BACKGROUND
   ========================= */
.bg-col {
    background-color: #fde3bc;
    color: #111827;
    border-radius: 12px;
    padding: 18px 12px;
}

.bg {
    background-color: #fde3bc;
}

/* =========================
   ABOUT SECTION
   ========================= */
/*.about-section {*/
/*    padding-top: 60px;*/
/*    padding-bottom: 60px;*/
/*}*/

/*.about-row {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.about-content {*/
/*    width: 100%;*/
/*    padding-right: 24px;*/
/*}*/

/*.about-content h2 {*/
/*    color: #111827;*/
/*    font-weight: 700;*/
/*}*/

/*.about-content p {*/
/*    color: #374151;*/
/*    line-height: 1.9;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.about-image-wrapper {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.about-img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    min-height: 430px;*/
/*    object-fit: cover;*/
/*    border-radius: 14px;*/
/*    display: block;*/
/*}*/

@media (max-width: 991.98px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-img {
        min-height: 320px;
    }
}
.font-playfair {
    font-family: "Playfair Display", serif !important;
}
.close-icon {
    display: none;
    font-size: 28px;
    line-height: 1;
}

/* When menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline-block;
}
/* =========================
   NAV BELOW CATEGORY MENU
========================= */

.nav-category-section {
    background: #ffffff;
    border-top: 1px solid rgba(191, 74, 20, 0.12);
    border-bottom: 1px solid rgba(191, 74, 20, 0.12);
    position: relative;
    z-index: 998;
}

.nav-category-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
}

.nav-category-item {
    position: static;
}

.nav-category-link {
    display: block;
    padding: 14px 16px;
    color: #111827;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    transition: all 0.3s ease;
}

.nav-category-link:hover {
    background: #fde3bc;
    color: #bf4a14;
}

.nav-product-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: transparent;
    padding: 24px 0;
    box-shadow: none;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-category-item:hover .nav-product-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-product-card {
    display: block;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    height: 100%;
    border: 1px solid rgba(191, 74, 20, 0.12);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.07);
    transition: all 0.3s ease;
}

.nav-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(191, 74, 20, 0.18);
}

.nav-product-card img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
    background: #fff7ed;
    border-radius: 12px;
    padding: 8px;
}

.nav-product-card span {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.nav-product-card:hover span {
    color: #bf4a14;
}

/* =========================
   MOBILE CATEGORY SCROLL
========================= */

.mobile-category-section {
    background: #ffffff;
    border-top: 1px solid rgba(191, 74, 20, 0.12);
    border-bottom: 1px solid rgba(191, 74, 20, 0.12);
    padding: 10px 0;
}

.mobile-category-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 6px 4px;
    scrollbar-width: none;
}

.mobile-category-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-category-link {
    flex: 0 0 auto;
    background: #fff7ed;
    color: #111827;
    border: 1px solid rgba(191, 74, 20, 0.15);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-category-link:hover {
    background: #bf4a14;
    color: #ffffff;
}

