:root {
    --espresso: #2B211B;
    --espresso-2: #3A2E27;
    --cream: #F5EFE6;
    --cream-2: #EFE4D3;
    --rust: #A6441F;
    --rust-dark: #863518;
    --tan: #E8C9A0;
    --sage: #6B8F71;
    --line: rgba(43, 33, 27, 0.14);
    --shadow: 0 10px 30px rgba(43, 33, 27, 0.12);
    --font-display: "Fraunces", "Georgia", serif;
    --font-body: "Work Sans", -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --transition: all .4s ease;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--espresso-2);
}

/* Custom Classes */
.fs-md {
    font-size: .7rem;
}

.tracking-widest {
    letter-spacing: 0.12em;
}

.py-6 {
    padding: 60px 0;
}

.py-8 {
    padding: 80px 0;
}

.same-span {
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 600;
}

.same-span-2 {
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 600;
}

.same-heading-2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--espresso);
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--espresso);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.no-arrow {
    background-image: none;
    padding-right: 0.75rem;
}

.w-45 {
    width: 45px !important;
}

/* Header */
.header-container {
    background-color: var(--cream);
    height: 96px;
    border-bottom: 1px solid var(--line);
}

.header-top {
    background-color: var(--espresso);
    color: var(--tan);
    font-family: var(--font-mono);
}

.nc-bg {
    background-color: var(--cream);
}

.nav-logo-btn {
    font-family: var(--font-display);
    font-weight: 700;
    transition: all .3s ease;
}

.nav-logo-btn:hover {
    color: var(--rust);
}

.nlb-img {
    width: 35px;
}

.active {
    color: var(--rust) !important;
}

.nav-link {
    position: relative;
    color: var(--espresso-2);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--rust);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--rust);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nb-rs {
    color: var(--espresso);
    transition: var(--transition);
}

.nb-rs:hover {
    color: var(--rust);
}

.badge-customize {
    font-family: var(--font-mono);
    font-size: .5rem;
    background-color: var(--rust);
    padding: 4px 5px;
}





/* Index File Codes */
/* Home Section */
.home-section {
    background-color: var(--espresso);
    padding-top: 100px;
}

.home-section h1 {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 4rem;
}

.home-section p {
    color: rgba(245, 239, 230, 0.78);
    font-size: 1.1rem;
    width: 90%;
}

.home-section .h-btn-1 {
    background-color: var(--rust);
    color: var(--cream);
    padding: 15px 30px;
    transition: var(--transition);
}

.home-section .h-btn-1:hover {
    background-color: var(--rust-dark);
    transform: translateY(-3px);
}

.home-section .h-btn-2 {
    border: 1px solid rgba(245, 239, 230, 0.6);
    color: var(--cream);
    padding: 15px 30px;
    transition: var(--transition);
}

.home-section .h-btn-2:hover {
    background-color: var(--cream);
    color: var(--espresso);
}

.home-circle {
    bottom: -30px;
    left: -30px;
    color: var(--tan);
    background: rgba(43, 33, 27, 0.82);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: .6rem;
    border: 1.5px dashed var(--tan);
    width: 130px;
    height: 130px;
    transform: rotate(-10deg);
}

/* Categories Section */
.categories-section {
    background-color: var(--cream);
}

.categories-section .cs-h2 {
    font-family: var(--font-display);
}

.categories-section .cs-para {
    color: rgba(58, 46, 39, 0.72);
    font-size: 1.03rem;
    width: 45%;
}

.categories-section .col:hover .cs-card img {
    transform: scale(1.1);
}

.categories-section .card {
    overflow: hidden;
}

.categories-section .cs-card {
    height: 400px;
}

.categories-section .cs-card img {
    height: 100%;
    transition: var(--transition);
}

.categories-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(43, 33, 27, 0.82) 0%, rgba(43, 33, 27, 0.05) 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}

.categories-section .cs-cb {
    bottom: 0;
    left: 10px;
}

.categories-section .card-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.categories-section .card-title {
    color: var(--cream);
    font-size: 1.25rem;
}

/* Best Sellers Section */
.best-sellers-section {
    background-color: var(--cream-2);
}

.best-sellers-section .bssct-btn {
    background: transparent;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.best-sellers-section .bssct-btn:hover {
    background-color: var(--espresso);
    color: var(--cream);
}

.sm-card {
    transition: var(--transition);
}

.sm-card:hover {
    box-shadow: 0 15px 30px #3a2e273b;
    transform: translateY(-5px);
}

.bss-img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.bss-img-container {
    overflow: hidden;
}

.sm-card:hover .bss-img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
}

.product-tag-2 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sage);
    color: var(--cream-2);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
}

.bss-c-body .span-top {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bss-c-body .bss-c-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--espresso);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bss-c-body .bss-roast {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(58, 46, 39, 0.55);
    margin-right: 0.35rem;
}

.bss-cicle-icon i {
    font-size: .55rem;
}

.bss-cicle-icon .rust-c {
    color: var(--rust);
}

.bss-cicle-icon .cream-c {
    color: var(--cream-2);
}

.bss-c-body .bss-c-text {
    font-size: 0.86rem;
    color: rgba(58, 46, 39, 0.65);
    margin-bottom: 0.9rem;
}

.bss-c-body .bss-price {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--espresso);
    font-size: 1.05rem;
}

.bss-c-body .bss-view-btn {
    text-decoration: none;
    background: var(--espresso);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.66rem 1.1rem;
    border: 1px solid var(--espresso);
    border-radius: 2px;
    transition: var(--transition);
}

.bss-c-body .bss-view-btn:hover {
    background-color: var(--rust);
    color: var(--cream);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--cream);
}

.ts-stars i {
    font-size: .55rem;
    color: var(--rust);
}

.ts-body .tsb-para {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--espresso);
    line-height: 1.5;
}

.ts-body .tsb-span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(58, 46, 39, 0.6);
    margin-top: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--cream);
}

.newsletter-content {
    background-color: var(--espresso);
    padding: 50px;
}

.newsletter-content .card {
    color: var(--cream);
}

.newsletter-content h2 {
    font-family: var(--font-display);
    color: var(--cream);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 10px;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(245, 239, 230, 0.7);
}

.newsletter-content .form-control {
    border-radius: 2px;
    border: none;
    padding: 0.85rem 1rem;
    outline: 0;
}

.newsletter-content .btn {
    background: var(--rust);
    border: 1px solid var(--rust);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.newsletter-content .btn:hover {
    transform: translateY(-2px);
    background-color: var(--rust-dark);
}

/* Footer */
.footer-section {
    background-color: var(--espresso);
}

.footer-section .card {
    color: rgba(245, 239, 230, 0.75);
}

.footer-section .nlb-img {
    border: 1px solid var(--tan);
    border-radius: 100%;
}

.footer-section .f-logo {
    color: var(--cream);
    transition: var(--transition);
}

.footer-section .f-logo:hover {
    color: var(--tan);
}

.footer-section .f-icons i {
    border: 1px solid rgba(245, 239, 230, 0.25);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-section .f-icons i:hover {
    background-color: var(--tan);
    color: var(--espresso);
}

.footer-section a {
    color: rgba(245, 239, 230, 0.75);
}

.footer-section .fs-fancy {
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-section .f-links {
    font-size: .92rem;
    transition: var(--transition);
}

.footer-section .f-links:hover {
    color: var(--tan);
}

.footer-section .fl-content {
    color: rgba(245, 239, 230, 0.75);
    font-size: .92rem;
}

.footer-section .f-hz-bar {
    width: 100%;
    height: 1px;
    background-color: rgba(245, 239, 230, 0.14);
}

.footer-section .fc-text {
    font-size: .82rem;
}





/* Shop File Codes */
/* Banner Section */
.banner-section {
    background-color: var(--espresso);
    padding-top: 100px;
}

.banner-section h1 {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

.banner-section a {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--tan);
}

.banner-section .c-page {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: rgba(245, 239, 230, 0.6);
    margin-top: 4.5px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(245, 239, 230, 0.6);
}

/* Filters Section */
.filters-section {
    background-color: var(--cream);
    color: var(--espresso-2);
}

.filters-section .fs-span {
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--espresso);
}

.filters-section .ig-main {
    gap: 12px;
}

.filters-section .form-check-label {
    font-size: .92rem;
}

.filters-section .filter-line {
    width: 90%;
    height: .5px;
    background-color: var(--line);
}

.filters-section .btng-btn {
    font-family: var(--font-mono);
    font-size: .72rem;
    border: 1px solid var(--line);
    padding: 6px 11px;
    color: var(--espresso-2);
    cursor: pointer;
    transition: var(--transition);
}

.filters-section .btng-btn:hover {
    border: 1px solid var(--rust);
    color: var(--rust);
}

.filters-section .apply-btn {
    background: transparent;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 13px 30px;
    border-radius: 2px;
    transition: var(--transition);
}

.filters-section .apply-btn:hover {
    background-color: var(--espresso);
    color: var(--cream);
}

.filters-section .same-para {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(58, 46, 39, 0.6);
}

.filters-section .fsrs-fs {
    font-size: .85rem;
}

.fs-pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--espresso);
    background-color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: var(--transition);
}

.fs-pagination a:hover {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}

.fs-pagination .active2 {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}





/* Product File Codes */
/* Description Section */
.description-section {
    background-color: var(--cream);
}

.description-section .ds-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description-section .dawn-h {
    font-size: 2.2rem;
}

.description-section .reviews {
    font-size: 0.85rem;
    color: rgba(58, 46, 39, 0.6);
}

.description-section .price {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--espresso);
    font-size: 1.6rem;
}

.description-section .ds-para {
    color: rgba(58, 46, 39, 0.75);
}

.description-section .ds-roast-s {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(58, 46, 39, 0.55);
    margin-right: 0.35rem;
}

.description-section .ds-span1 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(58, 46, 39, 0.5);
}

.description-section label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--espresso-2);
    margin-bottom: 0.4rem;
    display: block;
}

.description-section .ds-select:focus {
    border-color: var(--rust);
    box-shadow: 0 0 5px var(--rust);
}

.description-section .ds-icon-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    width: 130px;
}

.description-section .ds-icon {
    width: 40px;
    height: 40px;
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--espresso);
}

.description-section .ds-btn1 {
    background-color: var(--rust);
    color: var(--cream);
    border: 1px solid var(--rust);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.description-section .ds-btn1:hover {
    background-color: var(--rust-dark);
    transform: translateY(-3px);
}

.description-section .ds-btn2 {
    background-color: transparent;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.description-section .ds-btn2:hover {
    background-color: var(--espresso);
    color: var(--cream);
}

.description-section .ds-line {
    height: 1px;
    background-color: var(--line);
}

.description-section .ds-last-c {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(58, 46, 39, 0.6);
}

.description-section .dst-active {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rust) !important;
    border-bottom: 2px solid var(--rust);
    padding-bottom: 0.8rem;
}

.description-section .dst-btn {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(58, 46, 39, 0.55);
    padding-bottom: 0.8rem;
    transition: var(--transition);
}

.description-section .dst-btn:hover {
    color: var(--rust);
    border-bottom: 2px solid var(--rust);
}

.description-section .description-p {
    max-width: 48rem;
    color: rgba(58, 46, 39, 0.75);
}

/* Related Product Section */
.r-product-s {
    background-color: var(--cream-2);
}





/* Our-Story File Codes */
/* Starter Section */
.starter-section {
    background-color: var(--cream);
}

.starter-section h3 {
    font-size: 2rem;
}

.starter-section p {
    color: rgba(58, 46, 39, 0.75);
}

/* Counting Section */
.counting-section {
    background-color: var(--cream-2);
}

.counting-section .cs-heading {
    font-size: 2.6rem;
    width: 40%;
}

.counting-section .cs-para {
    color: rgba(58, 46, 39, 0.72);
    font-size: 1.03rem;
}

.counting-section .cs-line {
    height: 1px;
    background-color: var(--line);
}

.counting-section .cs-serial {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--rust);
    min-width: 2.6rem;
}

.counting-section .cs-h4 {
    font-size: 1.2rem;
}

.counting-section .cs-para2 {
    color: rgba(58, 46, 39, 0.68);
}

/* Values Section */
.vs-container i {
    font-size: 1.8rem;
    color: var(--rust);
}

.vs-container h4 {
    font-size: 1.15rem;
}

.vs-container p {
    color: rgba(58, 46, 39, 0.7);
    font-size: 0.94rem;
}

/* Roast Section */
.roast-section {
    background-color: var(--espresso);
}

.roast-section h2 {
    color: var(--cream);
}

.roast-section p {
    color: rgba(245, 239, 230, 0.72);
    max-width: 34rem;
    margin: 0.6rem auto 1.6rem;
}

.roast-section a {
    background: transparent;
    border: 1px solid rgba(245, 239, 230, 0.6);
    color: var(--cream);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 2px;
    transition: var(--transition);
}

.roast-section a:hover {
    background-color: var(--cream);
    color: var(--espresso);
}





/* Contact File Codes */
/* Form & Info Section */
.form-info-s {
    background-color: var(--cream);
}

.form-info-s .heading-2 {
    font-size: 1.8rem;
}

.form-info-s .form-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--espresso-2);
    margin-bottom: 0.4rem;
    display: block;
}

.form-info-s .form-control:focus {
    border-color: var(--rust);
    box-shadow: 0 0 2px var(--rust);
}

.form-info-s .form-select:focus {
    border-color: var(--rust);
    box-shadow: 0 0 2px var(--rust);
}

.form-info-s .submit-btn {
    background-color: var(--rust);
    border: 1px solid var(--rust);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.form-info-s .submit-btn:hover {
    background-color: var(--rust-dark);
    transform: translateY(-3px);
}

.contact-info i {
    font-size: 1.3rem;
    color: var(--rust);
}

.contact-info h5 {
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 10px;
}

.contact-info p {
    line-height: 8px;
    color: rgba(58, 46, 39, 0.7);
}





/* Responsive Design */
/* Ultra-Wide Monitors & Large Desktops */
@media screen and (max-width: 1400px) {

    /* Index File Codes */
    .home-section h1 {
        font-size: 4rem;
    }

    .home-section p {
        width: 100%;
    }

    .categories-section .cs-card {
        height: 350px;
    }
}

/* Standard Desktop Monitors and Larger Laptops */
@media screen and (max-width: 1200px) {

    /* Index File Codes */
    .home-section h1 {
        font-size: 3.8rem;
    }

    .categories-section .cs-card {
        height: 300px;
    }
}

/* Large Tablets in Landscape mode and Small Laptops */
@media screen and (max-width: 992px) {

    /* Index File Codes */
    .same-heading-2 {
        font-size: 2rem;
    }

    .home-section h1 {
        font-size: 3.3rem;
    }

    .home-section p {
        width: 80%;
    }

    .categories-section .cs-card {
        height: 450px;
    }

    .newsletter-content .card-group {
        flex-direction: column;
    }

    .newsletter-content .card-2 {
        width: 100%;
    }

    /* Shop File Codes */
    .banner-section h1 {
        font-size: 2rem;
    }

    /* Our-Story File Codes */
    .counting-section .cs-heading {
        font-size: 2rem;
        width: 60%;
    }
}

/* Tablets in Portrait mode and Extra Large Smartphones */
@media screen and (max-width: 768px) {

    /* Index File Codes */
    .home-section h1 {
        font-size: 2.4rem;
    }

    .home-section p {
        width: 95%;
    }

    .home-circle {
        bottom: 30px;
        left: 30px;
    }

    .categories-section .cs-card {
        height: 350px;
    }

    .categories-section .cs-para {
        width: 100%;
    }

    /* Product File Codes */
    .py4-2 {
        padding: 40px 0;
    }

    /* Our-Story File Codes */
    .counting-section .cs-heading {
        font-size: 2rem;
        width: 100%;
    }

    .vs-container p {
        width: 80%;
        margin: 0 auto;
    }
}

/* Standard Mobile Phones in Landscape mode */
@media screen and (max-width: 576px) {

    /* Index File Codes */
    .header-container {
        height: 110px;
    }

    .home-section {
        padding: 130px 0px 30px;
    }

    .home-circle {
        width: 100px;
        height: 100px;
    }

    .categories-section .cs-card {
        height: 280px;
    }

    .bss-content {
        flex-direction: column;
        gap: 35px;
        align-items: start !important;
        margin-bottom: 40px;
    }
}

/* Standard Mobile Phone held vertically (Portrait Mode) */
@media screen and (max-width: 450px) {

    /* Index File Codes */
    .home-btn-container {
        align-items: start;
        flex-direction: column;
    }

    .home-circle {
        width: 80px;
        height: 80px;
    }

    .categories-section .cs-card {
        height: 200px;
    }

    .newsletter-content .input-group {
        flex-direction: column;
    }

    .newsletter-content .form-control {
        width: 100%;
    }

    /* Product File Codes */
    .btn2-c {
        flex-direction: column;
        align-items: start !important;
    }

    .dst-container {
        flex-direction: column;
        align-items: center;
    }
}