/* ============================================================
   Jaggery Flames – Custom Styles
   Logo fix | Footer redesign | Mobile optimisation
   ============================================================ */

/* ============================================================
   SHARED SECTION HEADING
   ============================================================ */
.jf-section-head { }

.jf-section-head__tag {
    display: inline-block;
    background: #C7A17A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.jf-section-head__title {
    font-size: 38px;
    font-weight: 800;
    color: #010103;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.jf-section-head__sub {
    font-size: 15px;
    color: #777;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .jf-section-head__title { font-size: 28px; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.jf-products-section {
    background: #f8f5f1;
}

/* Filter tabs */
.jf-filter-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.jf-filter-tab {
    padding: 9px 24px;
    border: none;
    background: transparent;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.jf-filter-tab:hover,
.jf-filter-tab.active {
    background: linear-gradient(135deg, #8b2500, #c0392b);
    color: #fff;
}

/* Product card */
.jf-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jf-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}

/* Image thumb */
.jf-product-card__thumb {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.jf-product-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jf-product-card:hover .jf-product-card__img {
    transform: scale(1.07);
}

/* Hover overlay */
.jf-product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 4, 2, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.jf-product-card:hover .jf-product-card__overlay {
    opacity: 1;
}

.jf-product-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: #C7A17A;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background 0.25s;
    transform: translateY(10px);
    transition: transform 0.35s, background 0.25s;
}

.jf-product-card:hover .jf-product-card__overlay-btn {
    transform: translateY(0);
}

.jf-product-card__overlay-btn:hover {
    background: #8b2500;
    color: #fff;
}

/* Category badge */
.jf-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
}

.jf-product-card__badge--tea     { background: #4a6741; }
.jf-product-card__badge--coffee   { background: #6b3a2a; }
.jf-product-card__badge--product  { background: #8b2500; }

/* Card body */
.jf-product-card__body {
    padding: 20px 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
    border-top: 2px solid #f0ece7;
}

.jf-product-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #010103;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.jf-product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.jf-product-card__title a:hover { color: #8b2500; }

.jf-product-card__link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8b2500;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s, color 0.2s;
}

.jf-product-card__link:hover {
    gap: 10px;
    color: #C7A17A;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.jf-gallery-section {
    background: #fff;
}

.jf-gallery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    aspect-ratio: 4 / 3;
    text-decoration: none;
    transition: transform 0.35s, box-shadow 0.35s;
}

.jf-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.15);
}

.jf-gallery-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jf-gallery-card:hover .jf-gallery-card__img {
    transform: scale(1.08);
}

/* Overlay with icon */
.jf-gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(139,37,0,0.6) 0%, rgba(10,4,2,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.jf-gallery-card:hover .jf-gallery-card__overlay {
    opacity: 1;
}

.jf-gallery-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transform: scale(0.7);
    transition: transform 0.35s;
}

.jf-gallery-card:hover .jf-gallery-card__icon {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 767px) {
    .jf-filter-tabs { border-radius: 12px; }
    .jf-filter-tab  { padding: 8px 16px; font-size: 13px; }
    .jf-product-card__img { height: 200px; }
}

@media (max-width: 575px) {
    .jf-product-card__img { height: 180px; }
    .jf-gallery-card { aspect-ratio: 3 / 2; }
}

/* ---- LOGO FIX ---- */
/* Desktop header: white background, need dark-readable logo */
.menu-area .logo img {
    max-width: 220px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
}

/* Sticky header logo sizing */
.menu-area.sticky-header .logo img {
    max-height: 60px;
}

/* Mobile logo in nav bar */
.menu-area .logo.mm-only img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
}

/* Sidebar logos */
.side-info__logo img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
}

/* ============================================================
   ABOUT SECTION – PROFESSIONAL REDESIGN
   ============================================================ */
.jf-about-section {
    background-color: #fdf9f5;
}

/* Image wrap with decorative offset layer */
.jf-about__img-wrap {
    position: relative;
    padding: 0 30px 30px 0;
}

.jf-about__img-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 75%;
    background: linear-gradient(135deg, #C7A17A 0%, #8b2500 100%);
    border-radius: 14px;
    opacity: 0.12;
    z-index: 0;
}

/* Corner accent line */
.jf-about__img-wrap::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 80px;
    height: 80px;
    border-top: 4px solid #C7A17A;
    border-left: 4px solid #C7A17A;
    border-radius: 4px 0 0 0;
    z-index: 2;
}

.jf-about__img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.13);
    display: block;
    position: relative;
    z-index: 1;
}

/* Floating badge on image */
.jf-about__badge {
    position: absolute;
    bottom: 50px;
    right: -10px;
    background: #8b2500;
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(139, 37, 0, 0.35);
    z-index: 3;
    text-align: center;
    min-width: 115px;
}

.jf-about__badge-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #C7A17A;
}

.jf-about__badge-txt {
    display: block;
    font-size: 11px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
    opacity: 0.92;
}

/* Content side */
.jf-about__content {
    padding-left: 10px;
}

.jf-about__desc p {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* Feature highlight cards */
.jf-about__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.jf-about__highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #C7A17A;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.jf-about__highlight-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.jf-about__hi-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #8b2500, #C7A17A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.jf-about__highlight-item strong {
    display: block;
    color: #010103;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.jf-about__highlight-item span {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.jf-about__cta {
    margin-top: 32px;
    display: inline-block;
}

.jf-about__extra {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    padding-top: 30px;
    border-top: 1px solid #ede8e1;
}

/* Responsive */
@media (max-width: 991px) {
    .jf-about__img-wrap {
        margin-bottom: 50px;
        padding-right: 20px;
    }
    .jf-about__badge {
        right: 10px;
    }
    .jf-about__content {
        padding-left: 0;
    }
    .jf-about__img {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .jf-about__img {
        height: 280px;
    }
    .jf-about__badge {
        bottom: 20px;
        right: 5px;
        padding: 14px 16px;
        min-width: 95px;
    }
    .jf-about__badge-num {
        font-size: 24px;
    }
    .jf-about__img-wrap::before {
        display: none;
    }
}

/* ============================================================
   CONTACT PAGE – PROFESSIONAL REDESIGN
   ============================================================ */

/* ── Info Cards ─────────────────────────────────────────── */
.jf-contact-cards {
    background: #f8f5f1;
}

.jf-ccard {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.jf-ccard:hover {
    border-bottom-color: #C7A17A;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.jf-ccard__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
}

.jf-ccard__icon--location { background: linear-gradient(135deg, #8b2500, #c0392b); }
.jf-ccard__icon--email    { background: linear-gradient(135deg, #C7A17A, #a07040); }
.jf-ccard__icon--phone    { background: linear-gradient(135deg, #2c3e50, #4a6741); }

.jf-ccard__title {
    font-size: 17px;
    font-weight: 700;
    color: #010103;
    margin-bottom: 4px;
}

.jf-ccard__sub {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.jf-ccard__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.jf-ccard__link {
    font-size: 14px;
    color: #8b2500;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    transition: color 0.2s;
}

.jf-ccard__link:hover { color: #C7A17A; }

/* ── Main Contact Section ───────────────────────────────── */
.jf-contact-main { background: #f8f5f1; }

.jf-contact-row {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}

/* Left dark panel */
.jf-contact-panel {
    background: linear-gradient(160deg, #0d0d0f 0%, #1a1012 50%, #0d0d0f 100%);
    position: relative;
    overflow: hidden;
}

.jf-contact-panel__inner {
    padding: 50px 38px;
    position: relative;
    z-index: 2;
}

.jf-contact-panel__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C7A17A;
    border: 1px solid rgba(199,161,122,0.35);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.jf-contact-panel__heading {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.jf-contact-panel__sub {
    font-size: 13.5px;
    color: #8a8a9a;
    line-height: 1.75;
    margin-bottom: 32px;
}

.jf-contact-panel__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.jf-contact-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 13.5px;
    color: #8a8a9a;
    line-height: 1.6;
}

.jf-contact-panel__list li a {
    color: #8a8a9a;
    text-decoration: none;
    transition: color 0.2s;
}

.jf-contact-panel__list li a:hover { color: #C7A17A; }

.jf-contact-panel__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(199,161,122,0.12);
    border: 1px solid rgba(199,161,122,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A17A;
    font-size: 14px;
    margin-top: 1px;
}

.jf-contact-panel__social {
    display: flex;
    gap: 10px;
}

.jf-contact-panel__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C7A17A;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.jf-contact-panel__social a:hover {
    background: #C7A17A;
    color: #010103;
    border-color: #C7A17A;
}

/* Decorative circle */
.jf-contact-panel__deco {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,161,122,0.12) 0%, transparent 70%);
    z-index: 1;
}

/* Right form panel */
.jf-contact-form-wrap {
    background: #fff;
    padding: 50px 44px;
    height: 100%;
}

.jf-contact-form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ece7;
}

.jf-contact-form-header__title {
    font-size: 24px;
    font-weight: 700;
    color: #010103;
    margin-bottom: 6px;
}

.jf-contact-form-header__sub {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* ── Alert boxes ─────────────────────────────────────────── */
.jf-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.jf-alert--success {
    background: #f0faf4;
    border: 1px solid #86efac;
    color: #166534;
}

.jf-alert--error {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ── Form fields ─────────────────────────────────────────── */
.jf-form__group { margin-bottom: 4px; }

.jf-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.jf-form__required { color: #e53e3e; }

.jf-form__input-wrap {
    position: relative;
}

.jf-form__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #C7A17A;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.jf-form__icon--ta {
    top: 16px;
    transform: none;
}

.jf-form__input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid #e8e4df;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fdfcfb;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.jf-form__input:focus {
    border-color: #C7A17A;
    box-shadow: 0 0 0 3px rgba(199,161,122,0.15);
    background: #fff;
}

.jf-form__input::placeholder { color: #aaa; }

.jf-form__textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 14px;
}

.jf-form__error {
    display: block;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
}

/* ── Captcha ─────────────────────────────────────────────── */
.jf-captcha { }

.jf-captcha__display-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.jf-captcha__display {
    flex: 1;
    padding: 10px 18px;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0d0d 100%);
    color: #C7A17A;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 8px;
    border: 1.5px solid rgba(199,161,122,0.35);
    border-radius: 8px;
    text-align: center;
    user-select: none;
    cursor: default;
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
    text-decoration-color: rgba(199,161,122,0.5);
}

.jf-captcha__refresh {
    padding: 10px 18px;
    background: #8b2500;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.jf-captcha__refresh:hover { background: #C7A17A; color: #010103; }

.jf-captcha__error {
    font-size: 13px;
    color: #e53e3e;
    margin-top: 6px;
    min-height: 20px;
}

/* ── Submit Button ───────────────────────────────────────── */
.jf-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #8b2500, #c0392b);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(139,37,0,0.3);
}

.jf-form__submit:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139,37,0,0.4);
}

/* ── Contact Info Items (left panel) ────────────────────── */
.jf-contact-panel__deco2 {
    position: absolute;
    top: -70px;
    left: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,161,122,0.09) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.jf-cinfo-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.jf-cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(199,161,122,0.14);
    border-radius: 10px;
    transition: background 0.25s, border-color 0.25s;
}

.jf-cinfo-item:hover {
    background: rgba(199,161,122,0.07);
    border-color: rgba(199,161,122,0.28);
}

.jf-cinfo-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8b2500, #C7A17A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.jf-cinfo-item__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.jf-cinfo-item__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #C7A17A;
    line-height: 1;
}

.jf-cinfo-item__value {
    font-size: 13.5px;
    color: #b8b8c8;
    line-height: 1.55;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s;
}

a.jf-cinfo-item__value:hover {
    color: #fff;
}

.jf-contact-panel__social-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(199,161,122,0.6);
    margin-bottom: 10px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .jf-contact-panel__inner { padding: 36px 28px; }
    .jf-contact-form-wrap    { padding: 36px 28px; }
    .jf-contact-panel__heading { font-size: 22px; }
}

@media (max-width: 767px) {
    .jf-contact-row { border-radius: 12px; }
    .jf-contact-panel__inner { padding: 30px 22px; }
    .jf-contact-form-wrap    { padding: 30px 22px; }
    .jf-contact-panel__heading { font-size: 20px; }
    .jf-captcha__display-wrap { flex-direction: column; align-items: stretch; }
    .jf-captcha__display { letter-spacing: 6px; font-size: 20px; }
    .jf-form__submit { width: 100%; justify-content: center; }
    .jf-map-frame iframe { height: 300px; }
}

@media (max-width: 575px) {
    .jf-ccard { padding: 24px 18px; }
    .jf-contact-form-wrap { padding: 24px 16px; }
    .jf-contact-panel__inner { padding: 24px 16px; }
}

/* ============================================================
   FOOTER – COMPACT PROFESSIONAL REDESIGN
   ============================================================ */

/* Base */
.jf-footer {
    background-color: #0d0d0f;
    color: #fff;
    border-top: 3px solid #8b2500;
    position: relative;
}

/* Subtle top glow line */
.jf-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b2500 0%, #C7A17A 50%, #8b2500 100%);
}

/* Main content area */
.jf-footer__main {
    padding: 40px 0 28px;
}

/* ---- Brand column ---- */
.jf-footer__logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 14px;
    filter: brightness(1.05);
}

.jf-footer__tagline {
    color: #8a8a9a;
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 340px;
}

/* Social + CTA in one row */
.jf-footer__bottom-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jf-footer__social {
    display: flex;
    gap: 8px;
}

.jf-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: #C7A17A;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(199,161,122,0.25);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.jf-footer__social a:hover {
    background-color: #C7A17A;
    color: #0d0d0f;
    border-color: #C7A17A;
}

.jf-footer__enquiry-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8b2500, #c0392b);
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: opacity 0.3s, transform 0.2s;
    white-space: nowrap;
}

.jf-footer__enquiry-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ---- Column headings ---- */
.jf-footer__heading {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.jf-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #C7A17A, #8b2500);
    border-radius: 2px;
}

/* ---- Quick Links – 2-column grid ---- */
.jf-footer__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
}

.jf-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jf-footer__links li {
    margin-bottom: 8px;
}

.jf-footer__links a {
    color: #8a8a9a;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
}

.jf-footer__links a::before {
    content: '›';
    color: #C7A17A;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.jf-footer__links a:hover {
    color: #C7A17A;
    gap: 9px;
}

/* ---- Contact Info ---- */
.jf-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jf-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.jf-footer__contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(199,161,122,0.1);
    border: 1px solid rgba(199,161,122,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A17A;
    font-size: 13px;
    margin-top: 1px;
}

.jf-footer__contact-text {
    color: #8a8a9a;
    font-size: 13.5px;
    line-height: 1.6;
    text-decoration: none;
}

a.jf-footer__contact-text:hover {
    color: #C7A17A;
}

/* ---- Copyright bar ---- */
.jf-footer__copy {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 13px 0;
    background-color: rgba(0,0,0,0.25);
}

.jf-footer__copy p {
    color: #6a6a7a;
    font-size: 12.5px;
    margin: 0;
}

.jf-footer__copy strong {
    color: #C7A17A;
    font-weight: 600;
}

/* Copyright nav links */
.jf-footer__copy-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
}

.jf-footer__copy-nav a,
.jf-footer__copy-nav span {
    color: #6a6a7a;
    text-decoration: none;
    transition: color 0.25s;
}

.jf-footer__copy-nav a:hover {
    color: #C7A17A;
}

.jf-footer__back-top {
    color: #6a6a7a;
    text-decoration: none;
    font-size: 12.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.25s;
}

.jf-footer__back-top:hover {
    color: #C7A17A;
}

/* Responsive */
@media (max-width: 1199px) {
    .jf-footer__main { padding: 32px 0 22px; }
}

@media (max-width: 991px) {
    .jf-footer__main { padding: 28px 0 16px; }
    .jf-footer__tagline { max-width: 100%; }
}

@media (max-width: 767px) {
    .jf-footer__main { padding: 24px 0 12px; }
    .jf-footer__copy .row { text-align: center; }
    .jf-footer__copy .text-md-start,
    .jf-footer__copy .text-md-end { text-align: center !important; }
    .jf-footer__copy-nav { justify-content: center; margin-top: 6px; }
    .jf-footer__bottom-row { justify-content: flex-start; }
}

@media (max-width: 575px) {
    .jf-footer__logo { max-width: 130px; }
    .jf-footer__links-grid { grid-template-columns: 1fr; }
    .jf-footer__enquiry-btn { width: 100%; text-align: center; }
}

/* ============================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================ */

/* --- 991px and below (tablets) --- */
@media (max-width: 991px) {
    /* Header top info wrap on tablets */
    .header-top__infos {
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* --- 767px and below (mobile) --- */
@media (max-width: 767px) {
    /* Header top bar */
    .header-top {
        padding: 8px 0;
    }

    .header-top__infos {
        flex-direction: column;
        padding-left: 0 !important;
        gap: 5px;
    }

    .header-top__infos li {
        margin-top: 0 !important;
    }

    .header-top__infos li:not(:last-child) {
        margin-right: 0 !important;
    }

    /* Footer mobile */
    .jf-footer__main {
        padding: 24px 0 10px;
    }

    .jf-footer__hours li {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
        padding: 7px 0;
    }

    .jf-footer__copy .row {
        text-align: center !important;
    }

    .jf-footer__copy .text-md-start,
    .jf-footer__copy .text-md-end {
        text-align: center !important;
    }

    .jf-footer__copy .col-md-4 {
        margin-top: 8px;
    }

    /* Better touch targets */
    .jf-footer__links a {
        padding: 3px 0;
    }

    .main-menu__2 ul li a {
        font-size: 15px;
    }

    /* Hero area on small screens */
    .hero__area--2 {
        background-position: center !important;
        min-height: 300px;
    }

    /* Section padding reductions */
    .pt-140 {
        padding-top: 80px !important;
    }

    .pb-140 {
        padding-bottom: 80px !important;
    }
}

/* --- 575px and below (small phones) --- */
@media (max-width: 575px) {
    .menu-area .logo img {
        max-width: 140px;
    }

    .side-info__logo img {
        max-width: 130px;
    }

    .jf-footer__logo {
        max-width: 140px;
    }

    .jf-footer__heading {
        font-size: 16px;
    }

    .jf-footer__enquiry-btn {
        width: 100%;
        text-align: center;
    }

    /* Breadcrumb area on mobile */
    .pt-140 {
        padding-top: 70px !important;
    }

    .pb-140 {
        padding-bottom: 70px !important;
    }

    /* Page title sizing */
    .page-title {
        font-size: 28px !important;
    }

    /* Hero */
    .hero__area--2 .title {
        font-size: 32px !important;
    }
}

/* ============================================================
   HOME PAGE PRODUCT GRID – Isotope 3-column (pure CSS widths)
   Bootstrap row/g-4 removed from container to eliminate the
   negative-margin offset that caused Isotope to see a wider
   container than the viewport, breaking the 3-col calculation.
   ============================================================ */
.jf-product-grid {
    overflow: hidden;
}

/* Desktop, laptop & tablets (≥768px): 3 columns */
.jf-product-grid .grid-sizer,
.jf-product-grid .grid-item {
    width: 33.3333%;
    padding: 0 12px 24px;
    box-sizing: border-box;
}

/* Small tablets (576px – 767px): 2 columns */
@media (max-width: 767px) {
    .jf-product-grid .grid-sizer,
    .jf-product-grid .grid-item {
        width: 50%;
        padding: 0 8px 16px;
    }
}

/* Mobile (≤575px): 1 column */
@media (max-width: 575px) {
    .jf-product-grid .grid-sizer,
    .jf-product-grid .grid-item {
        width: 100%;
        padding: 0 0 16px;
    }
}

/* ============================================================
   INNER PAGES (Tea / Coffee / Products) – Bootstrap Grid
   Replaced Isotope masonary with Bootstrap row g-4 + col-xl-4.
   No JavaScript layout dependency — pure CSS, 100% reliable.
   ============================================================ */

/* The row itself */
.jf-inner-grid {
    margin-top: 10px;
}

/* Card: fill the Bootstrap column width entirely */
.jf-inner-grid .popular-menu__item {
    float: none !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Image thumb – fixed height, cover fill */
.jf-inner-grid .popular-menu__thumb {
    max-height: 220px !important;
    min-height: 180px;
    overflow: hidden;
    margin-bottom: -50px;
}

.jf-inner-grid .popular-menu__thumb img {
    width: 100%;
    height: 220px;
    max-height: 220px !important;
    object-fit: cover;
    display: block;
}

/* Content card – restrict side margins on narrow columns */
.jf-inner-grid .popular-menu__content {
    margin-left: 15px !important;
    margin-right: 15px !important;
    padding: 24px 20px !important;
}

/* ≤575px: 1 per row (Bootstrap col-sm-6 gives 2, col-12 fallback gives 1) */
@media (max-width: 575px) {
    .jf-inner-grid .popular-menu__thumb { max-height: 180px !important; }
    .jf-inner-grid .popular-menu__thumb img { height: 180px; }
    .jf-inner-grid .popular-menu__content { margin-left: 10px !important; margin-right: 10px !important; }
}

/* ============================================================
   INNER PAGE BANNER – COMPACT & PROFESSIONAL
   ============================================================ */

section.breadcrumb-area {
    padding-top: 80px !important;
    padding-bottom: 52px !important;
    background-attachment: fixed;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    overflow: hidden;
}

/* Amber-to-red gradient accent rule at bottom */
section.breadcrumb-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #C7A17A 20%, #8b2500 50%, #C7A17A 80%, transparent 100%);
    z-index: 5;
}

/* Compact, bold page title */
section.breadcrumb-area .page-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
}

/* Refined breadcrumb trail */
section.breadcrumb-area .cafena-breadcrumb {
    margin-top: 4px;
}

section.breadcrumb-area .cafena-breadcrumb li {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Replace "/" with amber chevron separator */
section.breadcrumb-area .cafena-breadcrumb li:not(:last-child)::after {
    content: "›" !important;
    color: #C7A17A !important;
    font-size: 18px;
    font-weight: 400;
    right: -13px;
    top: -1px;
}

/* Home link in breadcrumb */
section.breadcrumb-area .cafena-breadcrumb li a span {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

section.breadcrumb-area .cafena-breadcrumb li a:hover span {
    color: #C7A17A;
}

/* Current page highlight */
section.breadcrumb-area .cafena-breadcrumb li span {
    color: #C7A17A;
}

/* Hide decorative wave shapes — they're cramped at compact height */
section.breadcrumb-area .shape {
    display: none;
}

/* Tablet */
@media (max-width: 991px) {
    section.breadcrumb-area {
        background-attachment: scroll;
        padding-top: 65px !important;
        padding-bottom: 44px !important;
    }

    section.breadcrumb-area .page-title {
        font-size: 30px !important;
        letter-spacing: 1.5px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    section.breadcrumb-area {
        padding-top: 55px !important;
        padding-bottom: 36px !important;
    }

    section.breadcrumb-area .page-title {
        font-size: 24px !important;
        letter-spacing: 1px;
    }
}

/* ============================================================
   PERFORMANCE – PRELOADER
   Speed up the exit animation so content is visible sooner.
   main.css has 0.3s + 0.7s transitions totalling ~1s visual
   block after window.load. Cut these significantly.
   ============================================================ */
.ctn-preloader.loaded .animation-preloader {
    -webkit-transition: 0.15s ease-out !important;
    -o-transition: 0.15s ease-out !important;
    transition: 0.15s ease-out !important;
}

.ctn-preloader.loaded .loader-section .bg {
    -webkit-transition: 0.35s 0.15s all cubic-bezier(0.1, 0.1, 0.1, 1) !important;
    -o-transition: 0.35s 0.15s all cubic-bezier(0.1, 0.1, 0.1, 1) !important;
    transition: 0.35s 0.15s all cubic-bezier(0.1, 0.1, 0.1, 1) !important;
}
