@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Nunito:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');


:root {
    --clr_white: #ffffff;
    --clr_light: #fdf9f4;
    --clr_cream: #f5ede0;
    --clr_beige: #ede0cc;
    --clr_card: #fff8f0;
    --clr_red: #e8a020;
    --clr_red2: #e03222;
    --clr_green: #3a6b35;
    --clr_green2: #4e8c46;
    --clr_gold: #d4860a;
    --clr_amber: #f0a500;
    --clr_brown: #7a4a1e;
    --clr_dark: #1e1208;
    --clr_text: #3d2b14;
    --clr_muted: #8c7358;
    --clr_border: #e8d8c0;
    --ff_display: 'Playfair Display', serif;
    --ff_body: 'Nunito', sans-serif;
    --ff_script: 'Dancing Script', cursive;
    --radius: 8px;
    --radius_lg: 16px;
    --shadow_sm: 0 2px 12px rgba(122, 74, 30, 0.10);
    --shadow_md: 0 6px 28px rgba(122, 74, 30, 0.15);
    --shadow_lg: 0 16px 48px rgba(122, 74, 30, 0.18);
    --transition: 0.3s ease;

    --gold: #e8a020;
    --t: .28s ease;
    --border: #e8d8c0;
    --text: #3d2b14;
    --ff-script: 'Dancing Script', cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff_body);
    background: var(--clr_white);
    color: var(--clr_text);
    overflow-x: hidden;
    line-height: 1.6;
}

i {
    font-family: "Font Awesome 6 Free" !important;
}

.fa,
.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab{
    font-family: "Font Awesome 6 Free" !important;
}

.fa-solid,
.fas{
    font-weight:900 !important;
}

.fa-regular,
.far{
    font-weight:400 !important;
}

.fa-brands,
.fab{
    font-family:"Font Awesome 6 Brands" !important;
    font-weight:400 !important;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section_padding {
    padding: 80px 0;
}

.section_title {
    text-align: center;
    margin-bottom: 10px;
}

.section_title h2 {
    font-family: var(--ff_display);
    font-size: clamp(26px, 4vw, 40px);
    color: var(--clr_dark);
    display: inline-block;
    position: relative;
}

.section_title h2 span {
    color: var(--clr_red);
}

.section_title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr_red), var(--clr_amber));
    margin: 10px auto 0;
    border-radius: 2px;
}

.section_subtitle {
    text-align: center;
    color: var(--clr_muted);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 50px;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--clr_red), var(--clr_red2));
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--ff_body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(192, 41, 26, 0.35);
    transition: all var(--transition);
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192, 41, 26, 0.45);
}

.btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--clr_red);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--ff_body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--clr_red);
    cursor: pointer;
    transition: all var(--transition);
}

.btn_outline:hover {
    background: var(--clr_red);
    color: #fff;
}

.btn_white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--clr_green);
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--ff_body);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn_white:hover {
    background: var(--clr_amber);
    color: #fff;
}

.btn_outline_white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--ff_body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition);
}

.btn_outline_white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ─── HEADER ─── */
.header {
    background: var(--clr_white);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 18px rgba(122, 74, 30, .10);
    border-bottom: 2px solid var(--clr_cream)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1240px;
    margin: 0 auto
}

.nav_logo img {
    height: 65px;
}

.nav_links {
    display: flex;
    gap: 24px
}

.nav_links a {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--t)
}

.nav_links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--t)
}

.nav_links a:hover,
.nav_links a.active {
    color: var(--gold)
}

.nav_links a:hover::after,
.nav_links a.active::after {
    width: 100%
}

.nav_icons {
    display: flex;
    gap: 8px
}

.nav_btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr_cream);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: all var(--t)
}

.nav_btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px
}

/* ─── MOBILE NAV ─── */
.mob_nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 2000
}

.mob_nav.open {
    display: block
}

.mob_panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 290px;
    height: 100%;
    background: var(--clr_white);
    padding: 28px 22px;
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto
}

.mob_nav.open .mob_panel {
    transform: translateX(0)
}

.mob_close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr_cream);
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text)
}

.mob_logo {
    font-family: var(--ff-script);
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block
}

.mob_links {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mob_links a {
    display: block;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text);
    transition: all var(--t)
}

.mob_links a:hover,
.mob_links a.active {
    background: var(--gold);
    color: #fff
}


/* FOOTER */
.footer {
    background: var(--clr_dark);
    padding: 70px 0 28px;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 36px;
    margin-bottom: 50px;
}

.footer_logo_name {
    font-family: var(--ff_script);
    font-size: 28px;
    color: var(--clr_amber);
    display: block;
    margin-bottom: 12px;
}

.footer_brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer_heading {
    font-family: var(--ff_display);
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--clr_red), var(--clr_amber));
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer_links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_links a i {
    color: var(--clr_red);
    font-size: 10px;
}

.footer_links a:hover {
    color: var(--clr_amber);
}

.footer_contact_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer_contact_icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr_amber);
    font-size: 13px;
    margin-top: 2px;
}

.footer_contact_item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.footer_social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer_social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer_social a:hover {
    background: var(--clr_red);
    color: #fff;
    border-color: var(--clr_red);
}

.footer_social a.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer_social a.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.footer_social a.ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #cc2366;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer_bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

.footer_bottom span {
    color: var(--clr_amber);
}

.footer_bottom_links {
    display: flex;
    gap: 18px;
}

.footer_bottom_links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    transition: color var(--transition);
}

.footer_bottom_links a:hover {
    color: var(--clr_amber);
}

.scroll_top_btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    background: var(--clr_red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(192, 41, 26, 0.4);
    transition: all var(--transition);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.scroll_top_btn.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll_top_btn:hover {
    transform: translateY(-3px);
}


@media(max-width:1024px) {
    .categories_grid {
        grid-template-columns: 1fr;
    }

    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .nav_links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .process_track {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process_track::before {
        display: none;
    }

    .footer_grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:500px) {

    .hero_inner {
        grid-template-columns: 1fr;
    }

    .hero_left {
        padding-bottom: 0%;
    }

    .hero_right {
        padding-bottom: 60px;
        /* display: none; */
    }

}

.read_more_story {
    display: none;
}

/* ===========================
            STORY SECTION MOBILE
        ===========================*/

@media (max-width:768px) {

    .story_section {
        background: #f9f0e0;
        padding: 60px 0;
    }

    .story_content_wrap {
        display: block;
        min-height: auto;
    }

    .story_img_panel {
        position: relative;
        width: 100%;
        height: 260px;
        margin-bottom: 30px;
    }

    .story_img_panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .story_img_panel::before {
        display: none;
    }

    .story_left {
        padding: 0;
    }

    .story_title {
        font-size: 42px;
        line-height: 1.1;
    }

    .story_body {
        position: relative;
    }

    .story_body.collapsed {
        max-height: 190px;
        overflow: hidden;
    }

    .story_body.collapsed::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 80px;
        background: linear-gradient(to bottom,
                rgba(249, 240, 224, 0),
                rgba(249, 240, 224, 1));
    }

    .read_more_story {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        color: var(--clr_red);
        border-bottom: 2px solid var(--clr_red);
        font-weight: 700;
        cursor: pointer;
    }

}

@media (max-width:768px) {

    .comparison_section {
        overflow: hidden;
    }

    .comparison_table {
        min-width: 620px;
    }

    .table_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px;
    }

    .table_wrapper::-webkit-scrollbar {
        height: 5px;
    }

    .table_wrapper::-webkit-scrollbar-thumb {
        background: #d4a04b;
    }

    .comparison_table th,
    .comparison_table td {
        padding: 16px 12px;
        font-size: 15px;
        white-space: normal;
    }

    .comparison_table td:first-child {
        min-width: 130px;
    }

}

/* ======================================================
        2K / 4K / ULTRAWIDE DESKTOPS
        ====================================================== */

@media screen and (min-width:1721px) {

    /* Container */

    .container {
        max-width: 75vw;
        padding: 0 1.25vw;
    }

    .section_padding {
        padding: 4vw 0;
    }

    /* ================= HEADER ================= */

    .nav {
        max-width: 75vw;
        padding: .7vw 1.25vw;
    }

    .nav_logo img {
        height: 2.9vw;
    }

    .nav_links {
        gap: 1.25vw;
    }

    .nav_links a {
        font-size: .68vw;
        padding-bottom: .2vw;
    }

    .nav_btn {
        width: 1.9vw;
        height: 1.9vw;
        font-size: .72vw;
    }

    /* ================= BUTTONS ================= */

    .btn_primary,
    .btn_white {
        padding: .7vw 1.6vw;
        font-size: .68vw;
        gap: .45vw;
        border-radius: 3vw;
    }

    .btn_outline,
    .btn_outline_white {
        padding: .65vw 1.5vw;
        font-size: .68vw;
        gap: .45vw;
        border-radius: 3vw;
    }

    /* ================= HERO ================= */

    .hero_section {
        min-height: 90vh;
    }

    .hero_inner {
        max-width: 75vw;
        gap: 2.5vw;
        padding: 0 1.25vw;
    }

    .hero_left {
        padding: 3vw 0;
    }

    .hero_blob1 {
        width: 24vw;
        height: 24vw;
        top: -5vw;
        right: -5vw;
    }

    .hero_blob2 {
        width: 18vw;
        height: 18vw;
        left: -4vw;
        bottom: -4vw;
    }

    .hero_title {
        font-size: 3.5vw;
        margin-bottom: .9vw;
    }

    .hero_desc {
        font-size: .82vw;
        max-width: 26vw;
        margin-bottom: 1.8vw;
    }

    .hero_cta {
        gap: .75vw;
    }

    .hero_main_img {
        border-radius: 1.5vw;
    }

    .hero_main_img img {
        height: 30vw;
    }

    /* ================= MARQUEE ================= */

    .marquee_strip {
        padding: .7vw 0;
    }

    .marquee_item {
        font-size: .62vw;
        padding: 0 1.5vw;
        gap: .7vw;
    }

    /* ================= SECTION TITLE ================= */

    .section_title {
        margin-bottom: .5vw;
    }

    .section_title h2 {
        font-size: 2.3vw;
    }

    .section_subtitle {
        font-size: .75vw;
        margin-bottom: 2.8vw;
    }

    /* ================= STORY ================= */

    .story_content_wrap {
        min-height: 34vw;
    }

    .story_left {
        padding: 4vw 2.5vw 4vw 0;
    }

    .story_eyebrow {
        font-size: .58vw;
        padding: .35vw .9vw;
        margin-bottom: 1vw;
        gap: .4vw;
    }

    .story_title {
        font-size: 2.5vw;
        margin-bottom: 1vw;
    }

    .story_body p {
        font-size: .75vw;
        margin-bottom: .7vw;
    }

    .story_cta {
        padding: .65vw 1.5vw;
        font-size: .68vw;
        margin-top: 1.5vw;
    }

    /* ================= CATEGORIES ================= */

    .categories_grid {
        gap: 2vw;
    }

    .category_card {
        border-radius: 1vw;
    }

    .category_card_img {
        height: 16vw;
    }

    .category_card_body {
        padding: 1.6vw;
    }

    .category_icon_wrap {
        width: 3vw;
        height: 3vw;
        font-size: 1.3vw;
        margin-bottom: .9vw;
    }

    .category_card h3 {
        font-size: 1.45vw;
    }

    .category_card p {
        font-size: .72vw;
        margin-bottom: 1vw;
    }

    .category_products_list {
        gap: .45vw;
        margin-bottom: 1.3vw;
    }

    .category_product_item {
        font-size: .68vw;
    }

    .category_card_link {
        font-size: .68vw;
    }

    /* ================= QUALITY ================= */

    .process_track {
        margin-top: 1vw;
    }

    .process_circle {
        width: 4vw;
        height: 4vw;
        font-size: 1.2vw;
        margin-bottom: .75vw;
    }

    .process_step h4 {
        font-size: .8vw;
    }

    .process_step p {
        font-size: .65vw;
    }

    /* ================= COMPARISON ================= */

    .comparison_table th {
        padding: 1vw 1.3vw;
        font-size: .82vw;
    }

    .comparison_table td {
        padding: .8vw 1.3vw;
        font-size: .68vw;
    }

    /* ================= PROMO ================= */

    .promo_banner_section {
        padding: 3.8vw 0;
    }

    .promo_banner_inner {
        max-width: 75vw;
        gap: 2.5vw;
        padding: 0 1.25vw;
    }

    .promo_tag {
        font-size: .58vw;
        padding: .35vw .9vw;
        margin-bottom: 1vw;
    }

    .promo_banner_inner h2 {
        font-size: 2.7vw;
    }

    .promo_banner_inner p {
        font-size: .75vw;
        margin-bottom: 1.5vw;
    }

    .promo_btns {
        gap: .7vw;
    }

    .promo_banner_img {
        border-radius: 1vw;
    }

    .promo_banner_img img {
        height: 20vw;
    }

    /* ================= FOOTER ================= */

    .footer {
        padding: 4vw 0 1.5vw;
    }

    .footer_grid {
        gap: 2vw;
        margin-bottom: 2.5vw;
    }

    .footer_logo_name {
        font-size: 1.7vw;
    }

    .footer_brand p {
        font-size: .72vw;
    }

    .footer_heading {
        font-size: .9vw;
    }

    .footer_links a {
        font-size: .68vw;
    }

    .footer_contact_item p {
        font-size: .68vw;
    }

    .footer_contact_icon {
        width: 2vw;
        height: 2vw;
        font-size: .72vw;
    }

    .footer_social {
        gap: .45vw;
    }

    .footer_social a {
        width: 2vw;
        height: 2vw;
        font-size: .72vw;
    }

    .footer_bottom {
        padding-top: 1.3vw;
    }

    .footer_bottom p {
        font-size: .62vw;
    }

    .footer_bottom_links {
        gap: 1vw;
    }

    .footer_bottom_links a {
        font-size: .58vw;
    }

    /* ================= SCROLL BUTTON ================= */

    .scroll_top_btn {
        width: 2.4vw;
        height: 2.4vw;
        right: 1.5vw;
        bottom: 1.5vw;
        font-size: .85vw;
    }

}