* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styles (Brown Theme) */
html, body, * {
    scrollbar-width: thin !important;
    scrollbar-color: #8e4822 #f5e6d3 !important;
}

/* Chrome, Edge, Safari, Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
    display: block !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background: #f5e6d3 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background-color: #8e4822 !important;
    border-radius: 6px !important;
    border: 3px solid #f5e6d3 !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background-color: #733a1b !important;
}

body {
      font-family: "Teachers", sans-serif;
}

/* =========================
        Navbar
========================= */

.navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    position: relative;
    z-index: 1000;
}

.navbar-container{

    width:90%;
    max-width:1300px;
    height:85px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;  

}

.navbar-left{
    flex:1;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}


.navbar-heading {
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}
.navbar-logo:hover {
    transform: scale(1.04);
}

.navbar-menu{

    flex:2;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
}


.navbar-icons{

    flex:1;

    display:flex;
    justify-content:flex-end;
    gap:30px;

}

.navbar-link--mobile-only {
    display: none;
}


.navbar-link {
    color: #222222;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}


.navbar-heading{

    font-size:28px;
    font-weight:bold;
    color:#222;
    text-decoration:none;
    display: inline-flex;
    align-items: center;
    gap: 12px;

}


.navbar-link{

    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
}

.navbar-icons a{

    color:#222;
    font-size:18px;
    transition:.3s;
}

.navbar-icons a::after {
    content: attr(aria-label);
    padding: 7px 10px;

    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 6px);

    background-color: #2c1c12;
    color: #ffffff;

    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}

.navbar-icons a::before {
    content: "";

    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translate(-50%, 6px);

    border: 6px solid transparent;
    border-bottom-color: #2c1c12;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}

.navbar-icons a:hover::after,
.navbar-icons a:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.navbar-icons a:last-child::after {
    left: auto;
    right: 0;
    transform: translate(0, 6px);
}

.navbar-icons a:last-child::before {
    left: auto;
    right: 8px;
    transform: translate(0, 6px);
}

.navbar-icons a:last-child:hover::after,
.navbar-icons a:last-child:hover::before {
    transform: translate(0, 0);
}

.navbar-cart-link,
.navbar-wishlist-link,
.navbar-icons a {
    position: relative;
}

.navbar-cart-count,
.navbar-wishlist-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;

    position: absolute;
    top: -10px;
    right: -13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #8e4822;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.navbar-wishlist-count {
    background-color: #c2415d;
}

.navbar-icons a:hover{

    color:#b45f06;

}


.navbar-link::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #111111;

    position: absolute;
    left: 0;
    bottom: -6px;

    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

/* Hide buttons on desktop */

.menu-button,
.close-button {
    display: none;
}

/* Small Desktop & Large Tablet Transition (991px to 1200px) */
@media screen and (min-width: 991px) and (max-width: 1200px) {
    .navbar-heading {
        font-size: 22px !important;
    }
    .navbar-logo {
        max-height: 60px !important;
    }
    .navbar-menu {
        gap: 20px !important;
    }
    .navbar-link {
        font-size: 14px !important;
    }
    .navbar-icons {
        gap: 15px !important;
    }
}

/* Tablet Transition (768px to 990px) */
@media screen and (min-width: 768px) and (max-width: 990px) {
    .navbar-container {
        width: 96% !important;
    }
    .navbar-heading {
        font-size: 14px !important;
        gap: 6px !important;
    }
    .navbar-logo {
        max-height: 55px !important;
    }
    .navbar-menu {
        gap: 10px !important;
    }
    .navbar-link {
        font-size: 12px !important;
    }
    .navbar-icons {
        gap: 10px !important;
    }
    .navbar-icons a {
        font-size: 12px !important;
    }
}

/* =========================
    Tablet and Mobile
 ========================= */

@media screen and (max-width: 767px) {

    .navbar-container {
        width: 92%;
        min-height: 90px;
    }

    .navbar-heading {
        font-size: 16px;
    }

    .navbar-logo {
        max-height: 55px;
    }

    /* Hamburger menu */

    .menu-button {
        width: 32px;
        height: 32px;
        padding: 4px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;

        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-button span {
        width: 20px;
        height: 2px;
        background-color: #111111;
        border-radius: 5px;
        transition: 0.3s ease;
    }

    /* Full-screen mobile menu */

    .navbar-menu {
        width: 100%;
        height: 100vh;

        position: fixed;
        top: 0;
        left: 0;

        background-color: #ffffff;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);

        transition:
            opacity 0.4s ease,
            visibility 0.4s ease,
            transform 0.4s ease;

        z-index: 1050;
    }

    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-link {
        font-size: 16px;
        font-weight: 600;
    }

    .navbar-link--mobile-only {
        display: block;
    }

    /* Close icon in the center */

    .close-button {
        width: 40px;
        height: 40px;

        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        justify-content: center;
        align-items: center;

        background-color: transparent;
        border: 2px solid #111111;
        border-radius: 50%;

        color: #111111;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;

        transition:
            background-color 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease;
    }

    .close-button:hover {
        color: #ffffff;
        background-color: #111111;
        transform: translateX(-50%) rotate(90deg);
    }

    /* Prevent hamburger from showing over open menu */

    .menu-button.hidden {
        visibility: hidden;
    }

    /* Stop page scrolling when menu is open */

    body.menu-open {
        overflow: hidden;
    }

    .navbar-icons {
        display: none;
    }
}

/* Smaller mobile screen */

@media screen and (max-width: 576px) {

    .navbar-container {
        min-height: 85px;
    }

    .navbar-heading {
        font-size: 14px;
    }

    .navbar-logo {
        max-height: 50px;
    }

    .navbar-link {
        font-size: 14px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .close-button {
        top: 20px;
    }
}





/* Banner Section */
/* ===============================
          Hero Banner
================================ */
.hero-banner-section {
    width: 100%;
    padding: 0;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    width: 100%;
    min-height: calc(100vh - 80px);

    position: relative;
    overflow: hidden;

    background-color: #d9c6b6;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-banner-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;
    object-position: center;

    animation: bannerImageReveal 1.5s ease forwards;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(24, 14, 9, 0.06) 0%,
        rgba(24, 14, 9, 0.2) 42%,
        rgba(24, 14, 9, 0.78) 100%
    );

    z-index: 1;
}

.hero-banner-content {
    width: 50%;
    max-width: 650px;
    padding: 70px 7% 70px 30px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;
}
.hero-banner-label {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(22px);

    animation: bannerTextReveal 0.8s ease 0.25s forwards;
}

.hero-banner-content h1 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.06;

    text-shadow: 0 5px 24px rgba(0, 0, 0, 0.25);

    opacity: 0;
    transform: translateY(28px);

    animation: bannerTextReveal 0.9s ease 0.45s forwards;
}

.hero-banner-content p {
    max-width: 570px;
    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;

    opacity: 0;
    transform: translateY(28px);

    animation: bannerTextReveal 0.9s ease 0.65s forwards;
}

/* Buttons */

.hero-banner-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;

    opacity: 0;
    transform: translateY(28px);

    animation: bannerTextReveal 0.9s ease 0.85s forwards;
}

.hero-primary-button,
.hero-secondary-button {
    min-height: 52px;
    padding: 0 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        gap 0.35s ease;
}

.hero-primary-button {
    background-color: #ffffff;
    color: #6f351c;
    border: 1px solid #ffffff;
}

.hero-primary-button:hover {
    background-color: #8e4822;
    color: #ffffff;
    border-color: #8e4822;

    transform: translateY(-3px);
    gap: 16px;
}

.hero-secondary-button {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.hero-secondary-button:hover {
    background-color: #ffffff;
    color: #6f351c;

    transform: translateY(-3px);
}

/* Smooth opening animation */

@keyframes bannerImageReveal {
    from {
        opacity: 0;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bannerTextReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
              Tablet
================================ */

@media screen and (max-width: 991px) {

    .hero-banner-section {
        padding: 24px 4% 60px;
    }

    .hero-banner {
        min-height: 620px;
    }

    .hero-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(24, 14, 9, 0.12) 0%,
                rgba(24, 14, 9, 0.42) 35%,
                rgba(24, 14, 9, 0.82) 100%
            );
    }

    .hero-banner-content {
        width: 60%;
        padding: 60px 6% 60px 25px;
    }

    .hero-banner-content h1 {
        font-size: clamp(40px, 6vw, 58px);
    }
}

/* ===============================
              Mobile
================================ */

@media screen and (max-width: 600px) {

    .hero-banner-section {
        padding: 18px 18px 50px;
    }

    .hero-banner {
        min-height: 600px;
        border-radius: 16px;

        justify-content: flex-start;
        align-items: flex-end;
    }

    .hero-banner-image {
        object-position: center;
    }

    .hero-banner-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(24, 14, 9, 0.08) 0%,
                rgba(24, 14, 9, 0.35) 42%,
                rgba(24, 14, 9, 0.9) 100%
            );
    }

    .hero-banner-content {
        width: 100%;
        max-width: none;
        padding: 40px 24px;
    }

    .hero-banner-label {
        margin-bottom: 13px;
        font-size: 12px;
    }

    .hero-banner-content h1 {
        margin-bottom: 17px;
        font-size: 38px;
    }

    .hero-banner-content p {
        margin-bottom: 27px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-banner-buttons {
        width: 100%;
    }

    .hero-primary-button,
    .hero-secondary-button {
        padding: 0 20px;
    }
}

/* Very small mobile */

@media screen and (max-width: 400px) {

    .hero-banner {
        min-height: 560px;
    }

    .hero-banner-content h1 {
        font-size: 33px;
    }

    .hero-banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }
}

/* Respect users who disable animations */

@media (prefers-reduced-motion: reduce) {

    .hero-banner-image,
    .hero-banner-label,
    .hero-banner-content h1,
    .hero-banner-content p,
    .hero-banner-buttons {
        animation: none;
        opacity: 1;
        transform: none;
    }
}   







/* ===============================
      Latest Products Section
================================ */

.latest-products {
    width: 100%;
    padding: 90px 5%;
    background-color: #fffaf4;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section heading */

.products-heading {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-heading span {
    display: inline-block;
    margin-bottom: 10px;

    color: #a85927;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products-heading h2 {
    margin: 0 0 15px;

    color: #2c1c12;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
}

.products-heading p {
    margin: 0;

    color: #76665d;
    font-size: 16px;
    line-height: 1.7;
}

/* ===============================
          Products Flexbox
================================ */

.products-grid {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;

    column-gap: 28px;
    row-gap: 45px;
}

/* Product card */

.product-card {
    min-width: 0;

    /*
        3 cards per row.

        56px means:
        2 gaps × 28px
    */

    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);

    display: flex;
    flex-direction: column;
}

/* Product image area */

.product-image-wrapper {
    position: relative;

    width: 100%;
    height: 420px;

    overflow: hidden;
    background-color: #efe4d7;
    border-radius: 8px;

    flex-shrink: 0;
}



/* ===============================
        Product Thumbnails
================================ */

.product-thumbnails {
    width: 100%;
    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.thumbnail-button {
    width: 68px;
    height: 68px;
    padding: 4px;

    flex: 0 0 68px;

    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 10px;

    cursor: pointer;
    overflow: hidden;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.thumbnail-button img,
.thumbnail-button video {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    border-radius: 8px;
}

/* Selected thumbnail */

.thumbnail-button.active {
    border-color: #8e4822;
    box-shadow: 0 5px 14px rgba(142, 72, 34, 0.18);
}

/* Hover effect */

.thumbnail-button:hover {
    border-color: #b87950;
    transform: translateY(-2px);
}

/* Main image changing animation */

.product-image {
    transition:
        opacity 0.25s ease,
        transform 0.7s ease,
        filter 0.5s ease;
}

.product-image.image-changing {
    opacity: 0;
}  



.product-image {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.07);
    filter: brightness(0.88);
}

/* Product badge */

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 8px 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #ffffff;
    color: #7a3f1d;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    box-shadow: 0 8px 25px rgba(35, 19, 10, 0.12);
}

/* ===============================
      Left Product Action Buttons
================================ */

.product-actions {
    position: absolute;
    top: 50%;
    left: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;

    transform: translate(-80px, -50%);
    opacity: 0;
    visibility: hidden;

    transition:
        transform 0.45s ease,
        opacity 0.4s ease,
        visibility 0.4s ease;

    z-index: 5;
}

.product-card:hover .product-actions,
.all-product-card:hover .product-actions {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}

/* Circular button */

.action-button {
    width: 48px;
    max-width: 48px;
    height: 48px;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;

    overflow: hidden;
    white-space: nowrap;

    background-color: #ffffff;
    color: #3d2619;

    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;

    transition:
        max-width 0.45s cubic-bezier(.22, 1, .36, 1),
        gap 0.45s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.action-button i {
    min-width: 18px;
    flex: 0 0 18px;
    text-align: center;
}

.action-button span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;

    transition:
        max-width 0.45s cubic-bezier(.22, 1, .36, 1),
        opacity 0.3s ease;
}

/* Expand only toward the right */

.action-button:hover {
    width: auto;
    max-width: 180px;
    gap: 10px;

    background-color: #8e4822;
    color: #ffffff;
}

.action-button:hover span {
    max-width: 120px;
    opacity: 1;
}

.product-actions form {
    margin: 0;
}

.action-button.is-wishlisted {
    background-color: #8e4822;
    color: #ffffff;
}

.wishlist-remove-form {
    margin-top: 14px;
}

.wishlist-remove-button {
    min-height: 42px;
    padding: 0 18px;

    background-color: transparent;
    color: #a43e3e;

    border: 1px solid #e1bbbb;
    border-radius: 24px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.wishlist-remove-button:hover {
    background-color: #fff0f0;
}

/* ===============================
         Product Information
================================ */

.product-details {
    width: 100%;
    padding: 20px 5px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;
}

.product-category {
    display: inline-block;
    margin-bottom: 8px;

    color: #9a785f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.3s ease;
}

.product-category:hover {
    color: #8e4822;
}

.product-name {
    margin: 0 0 9px;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.product-name a {
    color: #2d1d14;
    text-decoration: none;

    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #9a4e24;
}

.product-price {
    margin: 0;

    color: #8e4822;
    font-size: 18px;
    font-weight: 700;
}

/* ===============================
             Tablet
================================ */

@media screen and (max-width: 991px) {

    .latest-products {
        padding: 70px 4%;
    }

    .products-heading h2 {
        font-size: 28px;
    }

    .products-heading p {
        font-size: 14px;
    }

    .products-grid {
        column-gap: 22px;
        row-gap: 38px;
    }

    .product-card {
        flex: 0 0 calc((100% - 22px) / 2);
        max-width: calc((100% - 22px) / 2);
    }

    .product-name {
        font-size: 17px;
    }

    .product-price {
        font-size: 15px;
    }

    .product-category {
        font-size: 12px;
    }

    .product-image-wrapper {
        height: 400px;
    }

    /* Keep buttons visible on touch devices */

    .product-actions {
        left: 14px;

        transform: translate(0, -50%);
        opacity: 1;
        visibility: visible;
    }

    .action-button {
        width: 44px;
        max-width: 44px;
        height: 44px;

        padding: 0 13px;
    }

    .action-button:hover {
        max-width: 180px;
    }
}

/* ===============================
              Mobile
================================ */

@media screen and (max-width: 600px) {

    .latest-products {
        padding: 55px 18px;
    }

    .products-heading {
        margin-bottom: 35px;
    }

    .products-heading h2 {
        font-size: 22px;
    }

    .products-heading p {
        font-size: 13px;
    }

    .products-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 38px;
    }

    .product-card {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-category {
        font-size: 11px;
    }

    .product-image-wrapper {
        height: 390px;
    }

    .product-details {
        padding-top: 16px;
    }

    /*
        Keep the buttons circular on mobile.
        Text will not expand.
    */

    .action-button:hover {
        width: 44px;
        max-width: 44px;
        padding: 0 13px;
        gap: 0;

        justify-content: flex-start;
        border-radius: 50%;

        background-color: #8e4822;
        color: #ffffff;
    }

    .action-button:hover span {
        max-width: 0;
        opacity: 0;
    }
}

/* Very small mobile */

@media screen and (max-width: 400px) {

    .products-heading h2 {
        font-size: 20px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-image-wrapper {
        height: 340px;
    }
}





/* Story Section */
/* ===============================
        Mitticraft Story Section
================================ */

.story-section {
    width: 100%;
    padding: 100px 5%;
    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.story-row {
    width: 100%;
    max-width: 1300px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/* Reverse second row */

.story-row-reverse {
    flex-direction: row-reverse;
}

/* Image side */

.story-image {
    width: 50%;
    height: 540px;

    position: relative;
    overflow: hidden;

    border-radius: 14px;
    background-color: #eadfce;

    flex-shrink: 0;
}

.story-image::before {
    content: "";
    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;

    z-index: 2;
    pointer-events: none;
}

.story-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.story-row:hover .story-image img {
    transform: scale(1.05);
}

/* Content side */

.story-content {
    width: 50%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-label {
    display: inline-block;
    margin-bottom: 13px;

    color: #a85927;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-content h2 {
    max-width: 570px;
    margin: 0 0 25px;

    color: #2c1c12;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
}

.story-content p {
    max-width: 620px;
    margin: 0 0 17px;

    color: #6f6259;
    font-size: 16px;
    line-height: 1.85;
}

/* Button */

.story-button {
    margin-top: 15px;
    padding: 15px 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;

    background-color: #8e4822;
    color: #ffffff;

    border: 1px solid #8e4822;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;
}

.story-button:hover {
    background-color: transparent;
    color: #8e4822;
    gap: 16px;
}

/* ===============================
             Tablet
================================ */

@media screen and (max-width: 991px) {

    .story-section {
        padding: 75px 4%;
        gap: 70px;
    }

    .story-row,
    .story-row-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .story-image,
    .story-content {
        width: 100%;
    }

    .story-image {
        height: 480px;
    }

    .story-content {
        align-items: center;
        text-align: center;
    }

    .story-content h2,
    .story-content p {
        max-width: 750px;
    }
}

/* ===============================
              Mobile
================================ */

@media screen and (max-width: 600px) {

    .story-section {
        padding: 55px 18px;
        gap: 60px;
    }

    .story-row,
    .story-row-reverse {
        gap: 28px;
    }

    .story-image {
        height: 350px;
        border-radius: 10px;
    }

    .story-image::before {
        inset: 12px;
        border-radius: 7px;
    }

    .story-content h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .story-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .story-button {
        padding: 13px 21px;
    }
}

/* Very small mobile */

@media screen and (max-width: 400px) {

    .story-image {
        height: 300px;
    }

    .story-content h2 {
        font-size: 28px;
    }
}





/* benefit story section */
/* ==========================================
        Benefit and Blog Section
========================================== */

.benefit-blog-wrapper {
    width: 100%;
    padding: 90px 5%;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main connected container */

.benefit-blog-section {
    width: 100%;
    max-width: 1300px;
    min-height: 500px;

    position: relative;
    display: flex;
    align-items: stretch;

    overflow: hidden;
    border-radius: 22px;

    box-shadow: 0 20px 55px rgba(70, 37, 20, 0.12);
}

/* ==========================================
                Both Panels
========================================== */

.benefit-panel,
.blog-panel {
    width: 50%;
    min-height: 500px;
    padding: 75px 6%;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    isolation: isolate;
}

/* ==========================================
                Left Panel
========================================== */

.benefit-panel {
    background-color: #fff2f3;
}

/* Diagonal lines on left */

.benefit-panel::before {
    content: "";

    width: 260px;
    height: 260px;

    position: absolute;
    top: -90px;
    left: -80px;

    background-image: repeating-linear-gradient(
        135deg,
        rgba(142, 72, 34, 0.14) 0,
        rgba(142, 72, 34, 0.14) 2px,
        transparent 2px,
        transparent 15px
    );

    border-radius: 50%;
    transform: rotate(10deg);

    z-index: -2;
}

/* Decorative circle on left */

.benefit-panel::after {
    content: "";

    width: 210px;
    height: 210px;

    position: absolute;
    right: -90px;
    bottom: -90px;

    border: 1px solid rgba(142, 72, 34, 0.25);
    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(142, 72, 34, 0.04),
        0 0 0 58px rgba(142, 72, 34, 0.025);

    z-index: -2;
}

.benefit-content {
    width: 100%;
    max-width: 560px;

    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-quote-icon {
    margin-bottom: 24px;

    color: #8e4822;
    font-size: 44px;
    opacity: 0.35;
}

.benefit-text {
    margin: 0 0 36px;

    color: #4e352a;
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 500;
    line-height: 1.55;
}

.benefit-author {
    padding-left: 18px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    border-left: 3px solid #8e4822;
}

.benefit-author h3 {
    margin: 0;

    color: #2c1c12;
    font-size: 20px;
    font-weight: 700;
}

.benefit-author span {
    color: #9a785f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ==========================================
                Right Panel
========================================== */

.blog-panel {
    background-color: #8e4822;
}

/* White diagonal lines */

.blog-panel::before {
    content: "";

    width: 280px;
    height: 280px;

    position: absolute;
    top: -100px;
    right: -95px;

    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0,
        rgba(255, 255, 255, 0.18) 2px,
        transparent 2px,
        transparent 16px
    );

    border-radius: 50%;
    transform: rotate(-8deg);

    z-index: -2;
}

/* White decorative circle */

.blog-panel::after {
    content: "";

    width: 225px;
    height: 225px;

    position: absolute;
    left: -100px;
    bottom: -100px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;

    box-shadow:
        0 0 0 30px rgba(255, 255, 255, 0.035),
        0 0 0 62px rgba(255, 255, 255, 0.02);

    z-index: -2;
}

.blog-content {
    width: 100%;
    max-width: 560px;

    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-label {
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-content h2 {
    margin: 0 0 35px;

    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
}

.blog-link {
    padding-bottom: 7px;

    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.65);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        gap 0.35s ease,
        border-color 0.35s ease;
}

.blog-link:hover {
    gap: 18px;
    border-color: #ffffff;
}

.blog-link i {
    font-size: 14px;
}

/* ==========================================
          Mouse Tail Effect
========================================== */

.mouse-tail {
    width: 90px;
    height: 90px;

    position: absolute;
    top: 0;
    left: 0;

    border-radius: 50%;
    pointer-events: none;

    transform: translate(-50%, -50%) scale(0);
    opacity: 0;

    filter: blur(4px);

    transition:
        transform 0.18s ease-out,
        opacity 0.25s ease;

    z-index: 1;
}

/* Brown tail inside pink panel */

.benefit-panel .mouse-tail {
    background: radial-gradient(
        circle,
        rgba(142, 72, 34, 0.28) 0%,
        rgba(142, 72, 34, 0.12) 45%,
        rgba(142, 72, 34, 0) 75%
    );
}

/* Pink tail inside brown panel */

.blog-panel .mouse-tail {
    background: radial-gradient(
        circle,
        rgba(255, 225, 229, 0.34) 0%,
        rgba(255, 225, 229, 0.16) 45%,
        rgba(255, 225, 229, 0) 75%
    );
}

.benefit-panel:hover .mouse-tail,
.blog-panel:hover .mouse-tail {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ==========================================
                Tablet
========================================== */

@media screen and (max-width: 991px) {

    .benefit-blog-wrapper {
        padding: 70px 4%;
    }

    .benefit-blog-section {
        flex-direction: column;
        min-height: auto;
    }

    .benefit-panel,
    .blog-panel {
        width: 100%;
        min-height: 430px;
        padding: 65px 8%;
    }

    .benefit-content,
    .blog-content {
        max-width: 760px;
    }

    .benefit-panel::after {
        right: -100px;
        bottom: -100px;
    }

    .blog-panel::after {
        left: auto;
        right: -100px;
        bottom: -100px;
    }
}

/* ==========================================
                Mobile
========================================== */

@media screen and (max-width: 600px) {

    .benefit-blog-wrapper {
        padding: 55px 18px;
    }

    .benefit-blog-section {
        border-radius: 16px;
    }

    .benefit-panel,
    .blog-panel {
        min-height: auto;
        padding: 55px 24px;
    }

    .benefit-quote-icon {
        margin-bottom: 19px;
        font-size: 35px;
    }

    .benefit-text {
        margin-bottom: 30px;
        font-size: 21px;
        line-height: 1.55;
    }

    .blog-content h2 {
        margin-bottom: 30px;
        font-size: 34px;
    }

    .benefit-panel::before,
    .blog-panel::before {
        width: 190px;
        height: 190px;
    }

    .benefit-panel::after,
    .blog-panel::after {
        width: 160px;
        height: 160px;
    }

    /* Disable mouse tail on touch screens */

    .mouse-tail {
        display: none;
    }
}











/* ===============================
        Trust & Assurance
================================ */

.trust-section{

    width:100%;
    padding:90px 5%;

    background:#ffffff;

    display:flex;
    justify-content:center;
}

.trust-container{

    width:100%;
    max-width:1300px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Heading */

.trust-heading{

    max-width:760px;
    margin-bottom:65px;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.trust-heading span{

    margin-bottom:12px;

    color:#8e4822;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.trust-heading h2{

    margin-bottom:20px;

    color:#2c1c12;

    font-size:clamp(32px,4vw,50px);
    font-weight:700;
    line-height:1.2;
}

.trust-heading p{

    color:#76665d;

    font-size:16px;
    line-height:1.9;
}

/* Logos */

.trust-logos{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.trust-logo{

    flex:1;
    min-width:180px;

    height:160px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:transparent;
    border:none;

    transition:.35s ease;
}

.trust-logo:hover{

    transform:translateY(-8px);
}

.trust-logo img{

    width:100%;
    max-width:180px;
    max-height:110px;

    object-fit:contain;

    transition:.35s;
}

.trust-logo:hover img{

    transform:scale(1.05);
}

/* ===============================
            Tablet
================================ */

@media(max-width:991px){

    .trust-section{

        padding:70px 4%;
    }

    .trust-logos{

        justify-content:center;
        gap:25px;
    }

    .trust-logo{

        flex:0 0 calc(50% - 15px);
        height:120px;
        min-width:auto;
    }

    .trust-logo img{
        max-width:130px;
        max-height:85px;
    }

}

/* ===============================
            Mobile
================================ */

@media(max-width:600px){

    .trust-section{

        padding:55px 18px;
    }

    .trust-heading{

        margin-bottom:40px;
    }

    .trust-heading h2{

        font-size:30px;
    }

    .trust-heading p{

        font-size:15px;
    }

    .trust-logo{

        flex:0 0 calc(50% - 15px);
        height:90px;
        min-width:auto;
    }

    .trust-logo img{
        max-width:110px;
        max-height:60px;
    }

}








/* ===============================
            Footer
================================ */

.footer{

    width:100%;

    background:#2d1d14;

    color:#ffffff;

    padding:80px 5% 0;
}

.footer-container{

    width:100%;
    max-width:1300px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:60px;
}

/* Columns */

.footer-column{

    flex:1;
    min-width:220px;

    display:flex;
    flex-direction:column;
}

/* About */

.footer-about{

    max-width:320px;
}

.footer-logo{

    margin-bottom:22px;

    color:#ffffff;

    font-size:34px;
    font-weight:700;
}

.footer-about p{

    color:#d6c9c0;

    font-size:15px;
    line-height:1.9;
}

/* Heading */

.footer-column h3{

    margin-bottom:25px;

    color:#ffffff;

    font-size:22px;
    font-weight:600;

    position:relative;
}

.footer-column h3::after{

    content:"";

    width:45px;
    height:2px;

    position:absolute;
    left:0;
    bottom:-10px;

    background:#b56a45;
}

/* List */

.footer-column ul{

    list-style:none;

    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-column li{

    color:#d6c9c0;

    font-size:15px;
    line-height:1.8;
}

.footer-column a{
    color:#d6c9c0;
    text-decoration:none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 2px 4px;
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-column a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
}

.footer-column a:hover{
    color:#ffffff;
    padding-left:12px;
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-column a:active{
    transform: scale(0.94) translateX(4px);
}

.footer-column a:active::after {
    width: 140px;
    height: 140px;
    opacity: 1;
    transition: 0s;
}

@keyframes footerLinkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.93) translateX(6px); color: #e5a782; }
    100% { transform: scale(1); }
}

.footer-column a.clicked-anim {
    animation: footerLinkPulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Bottom */

.footer-bottom{

    width:100%;

    margin-top:70px;
    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.1);

    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-bottom p{

    color:#bfb3aa;

    font-size:14px;
}

/* ===============================
            Tablet
================================ */

@media(max-width:991px){

    .footer{

        padding:70px 4% 0;
    }

    .footer-container{

        gap:45px;
    }

    .footer-column{

        flex:0 0 calc(50% - 25px);
    }

    .footer-logo{
        font-size: 28px;
        margin-bottom: 18px;
    }

    .footer-column h3{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-about p,
    .footer-column li,
    .footer-column a{
        font-size: 14px;
    }

    .footer-bottom p{
        font-size: 13px;
    }

}

/* ===============================
            Mobile
================================ */

@media(max-width:600px){

    .footer{

        padding:55px 20px 0;
    }

    .footer-container{

        flex-direction:column;
        gap:40px;
    }

    .footer-column{

        width:100%;
    }

    .footer-logo{

        font-size:24px;
        margin-bottom: 14px;
    }

    .footer-column h3{

        font-size:16px;
        margin-bottom: 16px;
    }

    .footer-about p,
    .footer-column li,
    .footer-column a{
        font-size: 13px;
    }

    .footer-bottom p{
        font-size: 12px;
    }

}








/* authentication */
/* ===============================
      Login/Register Section
================================ */

.auth-section {
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 40px 5%;
    background: #fffaf4;

    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    width: 100%;
    max-width: 1050px;
    min-height: 580px;

    display: flex;
    overflow: hidden;

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(55, 31, 18, 0.12);
}

/* Left image */

.auth-image-panel {
    width: 45%;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #8e4822;
}

.auth-background-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: imageEntry 0.9s ease forwards;
}

.auth-image-overlay {
    position: absolute;
    inset: 0;

    background: rgba(65, 28, 12, 0.65);
}

.auth-side-content {
    width: 100%;
    padding: 40px;

    position: absolute;
    z-index: 2;

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.auth-small-heading {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-side-content h2 {
    margin: 0 0 15px;
    font-size: 38px;
}

.auth-side-content p {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.7;
}

.auth-switch-button {
    padding: 12px 23px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: transparent;
    color: #fff;

    border: 1px solid #fff;
    border-radius: 30px;

    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.auth-switch-button:hover {
    background: #fff;
    color: #8e4822;
    text-decoration: none;
}

/* Side-content switching */

.register-side-content {
    opacity: 1;
    transform: translateX(0);
}

.login-side-content {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-35px);
}

.auth-container.show-login .register-side-content {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-35px);
}

.auth-container.show-login .login-side-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Right form */

.auth-form-panel {
    width: 55%;
    padding: 40px 6%;

    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 430px;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.login-form-wrapper {
    position: absolute;
    width: 76%;

    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
}

.auth-container.show-login .register-form-wrapper {
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
}

.auth-container.show-login .login-form-wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Heading */

.auth-form-heading {
    margin-bottom: 22px;
}

.auth-form-heading > span {
    color: #8e4822;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-form-heading h2 {
    margin: 8px 0 10px;

    color: #2c1c12;
    font-size: 32px;
}

.auth-form-heading p {
    margin: 0;

    color: #76665d;
    font-size: 14px;
    line-height: 1.6;
}

/* Form */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-input-group label {
    color: #3b291f;
    font-size: 13px;
    font-weight: 600;
}

.auth-input-box {
    min-height: 48px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #fffaf7;
    border: 1px solid #eadfd7;
    border-radius: 9px;
}

.auth-input-box:focus-within {
    border-color: #8e4822;
    box-shadow: 0 0 0 3px rgba(142, 72, 34, 0.08);
}

.auth-input-box input {
    width: 100%;
    min-width: 0;

    background: transparent;
    border: none;
    outline: none;

    font: inherit;
    font-size: 14px;
}

.password-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
}

.auth-checkbox,
.login-form-options {
    font-size: 13px;
}

.login-form-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.forgot-password,
.auth-checkbox a {
    color: #8e4822;
    text-decoration: none;
}

/* Buttons */

.auth-submit-button,
.google-auth-button {
    width: 100%;
    min-height: 48px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 30px;
    cursor: pointer;
}

.auth-submit-button {
    background: #8e4822;
    color: #fff;
    border: none;
}

.google-auth-button {
    background: #fff;
    color: #3b291f;
    border: 1px solid #ddd2ca;
}

.auth-divider {
    margin: 18px 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #8d7d73;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #eadfd7;
}

.mobile-auth-switch {
    display: none;
}

/* Opening animation */

@keyframes imageEntry {
    from {
        opacity: 0;
        transform: translateX(-35px) scale(1.04);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Tablet */

@media screen and (max-width: 900px) {

    .auth-section {
        padding: 35px 4%;
    }

    .auth-container {
        min-height: 540px;
    }

    .auth-image-panel {
        width: 42%;
    }

    .auth-form-panel {
        width: 58%;
        padding: 35px 4%;
    }

    .auth-side-content {
        padding: 30px;
    }

    .auth-side-content h2 {
        font-size: 31px;
    }
}

/* Mobile */

@media screen and (max-width: 700px) {

    .auth-section {
        min-height: auto;
        padding: 25px 16px;
    }

    .auth-container {
        min-height: auto;
        flex-direction: column;
    }

    .auth-image-panel {
        width: 100%;
        min-height: 260px;
    }

    .auth-side-content {
        padding: 28px 22px;
        align-items: center;
        text-align: center;
    }

    .auth-side-content h2 {
        font-size: 29px;
    }

    .auth-side-content p {
        margin-bottom: 0;
    }

    .auth-switch-button {
        display: none;
    }

    .auth-form-panel {
        width: 100%;
        padding: 35px 22px;
    }

    .login-form-wrapper {
        width: calc(100% - 44px);
    }

    .auth-form-heading {
        text-align: center;
    }

    .auth-form-heading h2 {
        font-size: 28px;
    }

    .mobile-auth-switch {
        display: block;
        margin: 20px 0 0;
        text-align: center;
        font-size: 13px;
    }

    .mobile-auth-switch button {
        padding: 0;

        background: transparent;
        color: #8e4822;

        border: none;
        font-weight: 700;
        cursor: pointer;
    }
}

/* Small mobile */

@media screen and (max-width: 420px) {

    .auth-image-panel {
        min-height: 230px;
    }

    .auth-form-panel {
        padding: 30px 16px;
    }

    .login-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}






/* =====================================
        Authentication Section
===================================== */

.auth-section {
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 50px 5%;

    background-color: #fffaf4;

    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    width: 100%;
    max-width: 1100px;
    min-height: 620px;

    position: relative;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background-color: #ffffff;
    border-radius: 20px;

    box-shadow: 0 20px 55px rgba(61, 34, 19, 0.13);
}

/* =====================================
             Left Image Side
===================================== */

.auth-image-panel {
    width: 45%;
    min-height: 620px;

    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #8e4822;
}

.auth-background-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;
    object-position: center;

    animation: authImageAppear 1s ease forwards;
}

.auth-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(42, 19, 9, 0.45),
        rgba(104, 44, 18, 0.76)
    );

    z-index: 1;
}

.auth-side-content {
    width: 100%;
    max-width: 470px;
    padding: 45px;

    position: absolute;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;

    transition:
        opacity 0.45s ease,
        transform 0.55s ease,
        visibility 0.45s ease;
}

.auth-small-heading {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-side-content h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
}

.auth-side-content p {
    margin: 0 0 27px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
    line-height: 1.75;
}

.auth-switch-button {
    min-height: 46px;
    padding: 0 22px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-color: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;
}

.auth-switch-button:hover {
    background-color: #ffffff;
    color: #8e4822;
    gap: 15px;
    text-decoration: none;
}

/* Image-panel content states */

.register-side-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.login-side-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-45px);
}

.auth-container.show-login .register-side-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-45px);
}

.auth-container.show-login .login-side-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}

/* =====================================
             Right Form Side
===================================== */

.auth-form-panel {
    width: 55%;
    min-height: 620px;
    padding: 45px 6%;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 460px;

    transition:
        opacity 0.45s ease,
        transform 0.55s ease,
        visibility 0.45s ease;
}

/* Register form is visible by default */

.register-form-wrapper {
    position: relative;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}

/* Login form is hidden by default */

.login-form-wrapper {
    width: calc(100% - 12%);
    max-width: 460px;

    position: absolute;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(55px);
}

/* Login state */

.auth-container.show-login .register-form-wrapper {
    position: absolute;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(55px);
}

.auth-container.show-login .login-form-wrapper {
    width: 100%;

    position: relative;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}

/* =====================================
              Form Heading
===================================== */

.auth-form-heading {
    margin-bottom: 25px;
}

.auth-form-heading > span {
    display: inline-block;
    margin-bottom: 8px;

    color: #8e4822;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-form-heading h2 {
    margin: 0 0 10px;

    color: #2c1c12;

    font-size: clamp(29px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
}

.auth-form-heading p {
    margin: 0;

    color: #76665d;

    font-size: 14px;
    line-height: 1.65;
}

/* =====================================
                  Form
===================================== */

.auth-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-input-group {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-input-group label {
    color: #3b291f;

    font-size: 13px;
    font-weight: 600;
}

.auth-input-box {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 10px;

    background-color: #fffaf7;

    border: 1px solid #e7dcd4;
    border-radius: 9px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.auth-input-box:focus-within {
    background-color: #ffffff;
    border-color: #8e4822;

    box-shadow: 0 0 0 3px rgba(142, 72, 34, 0.08);
}

.auth-input-box > i {
    width: 18px;
    flex-shrink: 0;

    color: #9b745e;
    text-align: center;
}

.auth-input-box input {
    width: 100%;
    min-width: 0;

    background-color: transparent;
    color: #2c1c12;

    border: none;
    outline: none;

    font-family: inherit;
    font-size: 14px;
}

.auth-input-box input::placeholder {
    color: #aa9990;
}

.password-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    color: #8d786b;

    border: none;
    cursor: pointer;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: #76665d;

    font-size: 12px;
    line-height: 1.5;
}

.auth-checkbox input {
    margin-top: 3px;
    accent-color: #8e4822;
}

.auth-checkbox a,
.forgot-password {
    color: #8e4822;
    font-weight: 600;
    text-decoration: none;
}

.login-form-options {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* =====================================
                 Buttons
===================================== */

.auth-submit-button,
.google-auth-button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 30px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.auth-submit-button {
    background-color: #8e4822;
    color: #ffffff;

    border: 1px solid #8e4822;
}

.auth-submit-button:hover {
    background-color: #713718;
    border-color: #713718;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(142, 72, 34, 0.2);
}

.google-auth-button {
    background-color: #ffffff;
    color: #3b291f;

    border: 1px solid #ddd2ca;
}

.google-auth-button:hover {
    border-color: #8e4822;
    transform: translateY(-2px);
}

.google-auth-button i {
    color: #db4437;
    font-size: 17px;
}

/* Divider */

.auth-divider {
    width: 100%;
    margin: 18px 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #918077;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";

    height: 1px;
    flex: 1;

    background-color: #eadfd7;
}

.mobile-auth-switch {
    display: none;
}

/* =====================================
               Animation
===================================== */

@keyframes authImageAppear {
    from {
        opacity: 0;
        transform: translateX(-35px) scale(1.04);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =====================================
              Small Desktop
===================================== */

@media screen and (max-width: 1100px) {

    .auth-section {
        padding: 40px 4%;
    }

    .auth-container {
        max-width: 950px;
    }

    .auth-image-panel {
        width: 43%;
    }

    .auth-form-panel {
        width: 57%;
        padding: 40px 5%;
    }

    .auth-side-content {
        padding: 35px;
    }
}

/* =====================================
                  Tablet
===================================== */

@media screen and (max-width: 900px) {

    .auth-section {
        min-height: auto;
        padding: 35px 24px;
    }

    .auth-container {
        max-width: 720px;
        min-height: auto;

        flex-direction: column;
    }

    .auth-image-panel {
        width: 100%;
        min-height: 300px;
    }

    .auth-side-content {
        max-width: 600px;
        padding: 38px;

        align-items: center;
        text-align: center;
    }

    .auth-side-content h2 {
        font-size: 35px;
    }

    .auth-side-content p {
        max-width: 520px;
    }

    .auth-form-panel {
        width: 100%;
        min-height: auto;
        padding: 45px 55px;

        display: block;
    }

    .auth-form-wrapper,
    .register-form-wrapper,
    .login-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .login-form-wrapper {
        top: 45px;
        left: 55px;
        right: 55px;

        width: auto;
    }

    .auth-container.show-login .register-form-wrapper {
        top: 45px;
        left: 55px;
        right: 55px;

        width: auto;
    }

    .auth-container.show-login .login-form-wrapper {
        width: 100%;

        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
}

/* =====================================
                  Mobile
===================================== */

@media screen and (max-width: 600px) {

    .auth-section {
        padding: 20px 14px;
    }

    .auth-container {
        width: 100%;
        max-width: 100%;

        border-radius: 14px;
    }

    .auth-image-panel {
        min-height: 240px;
    }

    .auth-side-content {
        padding: 28px 22px;
    }

    .auth-small-heading {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .auth-side-content h2 {
        margin-bottom: 11px;
        font-size: 28px;
    }

    .auth-side-content p {
        margin-bottom: 0;

        font-size: 13px;
        line-height: 1.6;
    }

    .auth-switch-button {
        display: none;
    }

    .auth-form-panel {
        padding: 34px 22px;
    }

    .login-form-wrapper {
        top: 34px;
        left: 22px;
        right: 22px;
    }

    .auth-container.show-login .register-form-wrapper {
        top: 34px;
        left: 22px;
        right: 22px;
    }

    .auth-form-heading {
        margin-bottom: 22px;
        text-align: center;
    }

    .auth-form-heading h2 {
        font-size: 27px;
    }

    .auth-form-heading p {
        font-size: 13px;
    }

    .auth-input-box {
        min-height: 46px;
    }

    .auth-submit-button,
    .google-auth-button {
        min-height: 46px;
        font-size: 13px;
    }

    .mobile-auth-switch {
        display: block;
        margin-top: 20px;

        color: #76665d;

        font-size: 13px;
        text-align: center;
    }

    .mobile-auth-switch button {
        padding: 0;

        background-color: transparent;
        color: #8e4822;

        border: none;

        font-family: inherit;
        font-weight: 700;
        cursor: pointer;
    }
}

/* =====================================
              Small Mobile
===================================== */

@media screen and (max-width: 420px) {

    .auth-section {
        padding: 12px 8px;
    }

    .auth-container {
        border-radius: 10px;
    }

    .auth-image-panel {
        min-height: 210px;
    }

    .auth-side-content {
        padding: 23px 17px;
    }

    .auth-side-content h2 {
        font-size: 24px;
    }

    .auth-side-content p {
        font-size: 12px;
    }

    .auth-form-panel {
        padding: 28px 15px;
    }

    .login-form-wrapper {
        top: 28px;
        left: 15px;
        right: 15px;
    }

    .auth-container.show-login .register-form-wrapper {
        top: 28px;
        left: 15px;
        right: 15px;
    }

    .auth-form-heading h2 {
        font-size: 24px;
    }

    .auth-form {
        gap: 12px;
    }

    .auth-input-group label {
        font-size: 12px;
    }

    .login-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .auth-divider span {
        font-size: 11px;
    }
}

/* =====================================
            Very Small Mobile
===================================== */

@media screen and (max-width: 340px) {

    .auth-section {
        padding: 8px 5px;
    }

    .auth-image-panel {
        min-height: 190px;
    }

    .auth-side-content h2 {
        font-size: 21px;
    }

    .auth-form-panel {
        padding: 24px 11px;
    }

    .login-form-wrapper {
        top: 24px;
        left: 11px;
        right: 11px;
    }

    .auth-container.show-login .register-form-wrapper {
        top: 24px;
        left: 11px;
        right: 11px;
    }

    .auth-form-heading h2 {
        font-size: 21px;
    }
}
/* =====================================
       Desktop and Large Screens
===================================== */

@media screen and (min-width: 901px) {

    .auth-section {
        min-height: auto;
        padding: 35px 5%;
    }

    .auth-container {
        max-width: 980px;
        min-height: 520px;
    }

    .auth-image-panel,
    .auth-form-panel {
        min-height: 520px;
    }

    .auth-image-panel {
        width: 43%;
    }

    .auth-form-panel {
        width: 57%;
        padding: 32px 5%;
    }

    .auth-side-content {
        padding: 32px;
    }

    .auth-side-content h2 {
        font-size: clamp(29px, 3vw, 38px);
    }

    .auth-side-content p {
        margin-bottom: 22px;
        font-size: 13px;
        line-height: 1.65;
    }

    .auth-form-heading {
        margin-bottom: 18px;
    }

    .auth-form-heading h2 {
        font-size: clamp(27px, 2.5vw, 34px);
    }

    .auth-form-heading p {
        font-size: 13px;
    }

    .auth-form {
        gap: 11px;
    }

    .auth-input-box {
        min-height: 43px;
        padding: 0 12px;
    }

    .auth-input-box input {
        font-size: 13px;
    }

    .auth-submit-button,
    .google-auth-button {
        min-height: 43px;
        font-size: 13px;
    }

    .auth-divider {
        margin: 14px 0;
    }

    .auth-switch-button {
        min-height: 43px;
        padding: 0 20px;
        font-size: 13px;
    }
}






/* blogs section here */
/* ===============================
             Blogs Section
================================ */

.blogs-section {
    width: 100%;
    padding: 85px 5%;
    background-color: #fffaf4;

    display: flex;
    justify-content: center;
}

.blogs-container {
    width: 100%;
    max-width: 1300px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */

.blogs-heading {
    width: 100%;
    max-width: 720px;
    margin-bottom: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.blogs-heading span {
    margin-bottom: 10px;

    color: #8e4822;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blogs-heading h2 {
    margin: 0 0 15px;

    color: #2c1c12;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
}

.blogs-heading p {
    margin: 0;

    color: #76665d;
    font-size: 15px;
    line-height: 1.8;
}

/* Blog cards flex container */

.blogs-list {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    align-items: stretch;

    gap: 28px;
}

/* Three columns */

.blog-card {
    width: calc((100% - 56px) / 3);
    min-height: 430px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-end;

    border-radius: 14px;
    background-color: #2c1c12;
}

/* Full image */

.blog-card-image-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

/* Slight dark shade */

.blog-card-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(22, 12, 7, 0.12) 0%,
        rgba(22, 12, 7, 0.38) 48%,
        rgba(22, 12, 7, 0.88) 100%
    );

    transition: background 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(22, 12, 7, 0.22) 0%,
        rgba(22, 12, 7, 0.52) 48%,
        rgba(22, 12, 7, 0.94) 100%
    );
}

.blog-card:hover .blog-card-image {
    transform: scale(1.07);
}

/* Content over image */

.blog-card-content {
    width: 100%;
    padding: 28px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-card-category {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* View button hidden slightly below */

.blog-view-button {
    max-height: 0;
    margin-top: 0;

    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    overflow: hidden;

    background-color: #ffffff;
    color: #8e4822;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    opacity: 0;
    transform: translateY(25px);

    transition:
        max-height 0.45s ease,
        margin-top 0.45s ease,
        padding 0.45s ease,
        opacity 0.35s ease,
        transform 0.45s ease,
        gap 0.3s ease;
}

.blog-card:hover .blog-view-button {
    max-height: 45px;
    min-height: 42px;
    margin-top: 20px;
    padding: 0 18px;

    opacity: 1;
    transform: translateY(0);
}

.blog-view-button:hover {
    gap: 14px;
}

/* ===============================
              Tablet
================================ */

@media screen and (max-width: 991px) {

    .blogs-section {
        padding: 70px 4%;
    }

    .blogs-heading h2 {
        font-size: 28px;
    }

    .blogs-heading p {
        font-size: 14px;
    }

    .blogs-list {
        gap: 24px;
    }

    .blog-card {
        width: calc((100% - 24px) / 2);
        min-height: 410px;
    }

    .blog-card h3 {
        font-size: 18px;
    }

    .blog-card-category {
        font-size: 10px;
    }

    /* Keep button visible on touch screens */

    .blog-view-button {
        max-height: 45px;
        min-height: 36px;
        margin-top: 18px;
        padding: 0 14px;
        font-size: 11px;

        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
              Mobile
================================ */

@media screen and (max-width: 600px) {

    .blogs-section {
        padding: 55px 18px;
    }

    .blogs-heading {
        margin-bottom: 35px;
    }

    .blogs-heading h2 {
        font-size: 22px;
    }

    .blogs-heading p {
        font-size: 13px;
    }

    .blogs-list {
        flex-direction: column;
        gap: 24px;
    }

    .blog-card {
        width: 100%;
        min-height: 380px;
    }

    .blog-card-content {
        padding: 23px;
    }

    .blog-card h3 {
        font-size: 16px;
    }

    .blog-card-category {
        font-size: 9px;
    }

    .blog-view-button {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }
}

/* ===============================
           Small Mobile
================================ */

@media screen and (max-width: 400px) {

    .blogs-heading h2 {
        font-size: 20px;
    }

    .blog-card {
        min-height: 340px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 15px;
    }
}







/* specific blog page */
/* ==================================
           Blog Detail Page
=================================== */

.single-blog-section {
    width: 100%;
    padding: 75px 5%;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
}

.single-blog-container {
    width: 100%;
    max-width: 1050px;

    display: flex;
    flex-direction: column;
}

/* Blog header */

.single-blog-header {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 42px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.single-blog-category {
    margin-bottom: 14px;

    color: #8e4822;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.single-blog-header h1 {
    margin: 0 0 25px;

    color: #2c1c12;

    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
}

.single-blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 28px;

    color: #897970;

    font-size: 13px;
}

.single-blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-blog-meta i {
    color: #a85927;
}

/* Featured image */

.single-blog-featured-image {
    width: 100%;
    height: 560px;
    margin: 0;

    overflow: hidden;

    background-color: #e8ddd4;
    border-radius: 18px;
}

.single-blog-featured-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.single-blog-featured-image:hover img {
    transform: scale(1.04);
}

/* Article content */

.single-blog-content {
    width: 100%;
    max-width: 820px;
    margin: 55px auto 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-blog-content p {
    margin: 0 0 24px;

    color: #5f5047;

    font-size: 17px;
    line-height: 1.95;
}

.single-blog-content .single-blog-intro {
    color: #3d2a20;

    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
}

.single-blog-content h2 {
    margin: 24px 0 17px;

    color: #2c1c12;

    font-size: clamp(27px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.3;
}

/* Quote */

.single-blog-quote {
    width: 100%;
    margin: 18px 0 35px;
    padding: 35px 38px;

    position: relative;

    background-color: #fff3f2;

    border-left: 4px solid #8e4822;
    border-radius: 0 13px 13px 0;
}

.single-blog-quote i {
    margin-bottom: 15px;

    color: #8e4822;
    font-size: 29px;
    opacity: 0.45;
}

.single-blog-quote p {
    margin: 0;

    color: #4b3327;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
}

/* Middle image */

.single-blog-middle-image {
    width: 100%;
    margin: 25px 0 35px;
}

.single-blog-middle-image img {
    width: 100%;
    max-height: 500px;

    display: block;
    object-fit: cover;

    border-radius: 14px;
}

.single-blog-middle-image figcaption {
    margin-top: 11px;

    color: #97867c;

    font-size: 12px;
    font-style: italic;
    text-align: center;
}

/* Highlight */

.single-blog-highlight {
    width: 100%;
    margin-top: 22px;
    padding: 28px;

    display: flex;
    align-items: flex-start;
    gap: 20px;

    background-color: #fffaf4;

    border: 1px solid #eee0d5;
    border-radius: 13px;
}

.single-blog-highlight-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #8e4822;
    color: #ffffff;

    border-radius: 50%;
}

.single-blog-highlight h3 {
    margin: 0 0 8px;

    color: #2c1c12;
    font-size: 21px;
}

.single-blog-highlight p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;
}

/* Tags and sharing */

.single-blog-footer {
    width: 100%;
    max-width: 820px;
    margin: 55px auto 0;
    padding-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;

    border-top: 1px solid #eadfd8;
}

.single-blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.single-blog-tags > span {
    margin-right: 3px;

    color: #2c1c12;
    font-size: 14px;
    font-weight: 700;
}

.single-blog-tags a {
    padding: 7px 12px;

    background-color: #fff6f1;
    color: #8e4822;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.single-blog-tags a:hover {
    background-color: #8e4822;
    color: #ffffff;
}

.single-blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-blog-share > span {
    color: #2c1c12;
    font-size: 14px;
    font-weight: 700;
}

.single-blog-share-icons {
    display: flex;
    align-items: center;
    gap: 9px;
}

.single-blog-share-icons a,
.single-blog-share-icons button {
    width: 40px;
    height: 40px;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #fff5ef;
    color: #8e4822;

    border: none;
    border-radius: 50%;

    font-size: 14px;
    text-decoration: none;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.single-blog-share-icons a:hover,
.single-blog-share-icons button:hover {
    background-color: #8e4822;
    color: #ffffff;

    transform: translateY(-3px);
}

/* ==================================
          Shared Section Styles
=================================== */

.blog-related-products,
.single-related-blogs {
    width: 100%;
    padding: 80px 5%;

    display: flex;
    justify-content: center;
}

.blog-related-products {
    background-color: #fffaf4;
}

.single-related-blogs {
    background-color: #ffffff;
}

.blog-related-container {
    width: 100%;
    max-width: 1300px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-related-heading {
    max-width: 700px;
    margin-bottom: 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.blog-related-heading > span {
    margin-bottom: 10px;

    color: #8e4822;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-related-heading h2 {
    margin: 0 0 13px;

    color: #2c1c12;

    font-size: clamp(31px, 4vw, 45px);
    line-height: 1.2;
}

.blog-related-heading p {
    margin: 0;

    color: #76665d;

    font-size: 15px;
    line-height: 1.75;
}

/* ==================================
             Related Products
=================================== */

.blog-product-list {
    width: 100%;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 28px;
}

.blog-product-card {
    width: calc((100% - 56px) / 3);

    display: flex;
    flex-direction: column;
}

.blog-product-image {
    width: 100%;
    height: 360px;

    position: relative;
    overflow: hidden;

    background-color: #eadfd5;
    border-radius: 12px;
}

.blog-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background-color: rgba(39, 20, 11, 0.12);

    transition: background-color 0.4s ease;
}

.blog-product-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.blog-product-image span {
    padding: 11px 18px;

    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;

    background-color: #ffffff;
    color: #8e4822;

    border-radius: 25px;

    font-size: 12px;
    font-weight: 700;

    opacity: 0;
    transform: translate(-50%, 25px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.blog-product-image:hover img {
    transform: scale(1.06);
}

.blog-product-image:hover::after {
    background-color: rgba(39, 20, 11, 0.32);
}

.blog-product-image:hover span {
    opacity: 1;
    transform: translate(-50%, 0);
}

.blog-product-details {
    padding: 17px 4px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-product-category {
    margin-bottom: 7px;

    color: #9c7b68;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-product-details h3 {
    margin: 0 0 8px;

    font-size: 20px;
    line-height: 1.35;
}

.blog-product-details h3 a {
    color: #2c1c12;
    text-decoration: none;
}

.blog-product-details p {
    margin: 0;

    color: #8e4822;

    font-size: 17px;
    font-weight: 700;
}

/* ==================================
              Related Blogs
=================================== */

.single-related-blog-list {
    width: 100%;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 28px;
}

.single-related-blog-card {
    width: calc((100% - 56px) / 3);
    min-height: 400px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background-color: #2c1c12;
    border-radius: 13px;
}

.single-related-blog-card > img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.single-related-blog-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(27, 14, 8, 0.08) 0%,
        rgba(27, 14, 8, 0.35) 45%,
        rgba(27, 14, 8, 0.9) 100%
    );

    transition: background 0.4s ease;
}

.single-related-blog-content {
    width: 100%;
    padding: 26px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-related-blog-content > span {
    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.73);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.single-related-blog-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.4;

    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.single-related-blog-content a {
    margin-top: 17px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        gap 0.3s ease;
}

.single-related-blog-card:hover > img {
    transform: scale(1.06);
}

.single-related-blog-card:hover .single-related-blog-overlay {
    background: linear-gradient(
        180deg,
        rgba(27, 14, 8, 0.2) 0%,
        rgba(27, 14, 8, 0.52) 45%,
        rgba(27, 14, 8, 0.95) 100%
    );
}

.single-related-blog-card:hover
.single-related-blog-content a {
    opacity: 1;
    transform: translateY(0);
}

.single-related-blog-content a:hover {
    gap: 14px;
}

/* ==================================
                 Tablet
=================================== */

@media screen and (max-width: 991px) {

    .single-blog-section {
        padding: 65px 4%;
    }

    .single-blog-featured-image {
        height: 460px;
    }

    .blog-related-products,
    .single-related-blogs {
        padding: 65px 4%;
    }

    .blog-product-list,
    .single-related-blog-list {
        gap: 22px;
    }

    .blog-product-card,
    .single-related-blog-card {
        width: calc((100% - 22px) / 2);
    }

    .blog-product-image {
        height: 340px;
    }

    .blog-product-image span,
    .single-related-blog-content a {
        opacity: 1;
        transform: none;
    }
}

/* ==================================
                 Mobile
=================================== */

@media screen and (max-width: 600px) {

    .single-blog-section {
        padding: 48px 18px;
    }

    .single-blog-header {
        margin-bottom: 30px;
    }

    .single-blog-header h1 {
        font-size: 30px;
    }

    .single-blog-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .single-blog-featured-image {
        height: 275px;
        border-radius: 12px;
    }

    .single-blog-content {
        margin-top: 36px;
    }

    .single-blog-content p {
        margin-bottom: 20px;

        font-size: 15px;
        line-height: 1.8;
    }

    .single-blog-content .single-blog-intro {
        font-size: 17px;
        line-height: 1.7;
    }

    .single-blog-content h2 {
        margin-top: 18px;
        font-size: 24px;
    }

    .single-blog-quote {
        padding: 27px 22px;
    }

    .single-blog-quote p {
        font-size: 17px;
    }

    .single-blog-highlight {
        padding: 22px;
        flex-direction: column;
    }

    .single-blog-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-blog-share {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-related-products,
    .single-related-blogs {
        padding: 55px 18px;
    }

    .blog-related-heading {
        margin-bottom: 34px;
    }

    .blog-related-heading h2 {
        font-size: 30px;
    }

    .blog-product-list,
    .single-related-blog-list {
        flex-direction: column;
        gap: 28px;
    }

    .blog-product-card,
    .single-related-blog-card {
        width: 100%;
    }

    .blog-product-image {
        height: 350px;
    }

    .single-related-blog-card {
        min-height: 365px;
    }
}

/* ==================================
             Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .single-blog-header h1 {
        font-size: 27px;
    }

    .single-blog-featured-image {
        height: 235px;
    }

    .single-blog-share-icons {
        gap: 7px;
    }

    .single-blog-share-icons a,
    .single-blog-share-icons button {
        width: 37px;
        height: 37px;
    }

    .blog-product-image {
        height: 310px;
    }

    .single-related-blog-card {
        min-height: 330px;
    }
}






/* products page section */
/* ==================================
           All Products Page
=================================== */
.all-products-section {
    width: 100%;
    padding: 85px 5% 100px;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #faf3eb 60%, #f4e9dd 100%);
    position: relative;
    display: flex;
    justify-content: center;
}

.all-products-container {
    width: 100%;
    max-width: 1320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */

.all-products-heading {
    width: 100%;
    max-width: 780px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.all-products-heading > span {
    margin-bottom: 14px;
    color: #8e4822;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(142, 72, 34, 0.12) 0%, rgba(217, 119, 6, 0.12) 100%);
    padding: 7px 22px;
    border-radius: 30px;
    border: 1px solid rgba(142, 72, 34, 0.2);
    box-shadow: 0 4px 15px rgba(142, 72, 34, 0.06);
}

.all-products-heading h1 {
    margin: 0 0 16px;
    color: #2c1c12;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.all-products-heading p {
    margin: 0;
    color: #6d5d54;
    font-size: 16px;
    line-height: 1.85;
}

/* Products flex layout */

.all-products-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 45px 30px;
}

.all-products-empty {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 42px 24px;
    background-color: #ffffff;
    border: 1px solid #eaded6;
    border-radius: 14px;
    text-align: center;
}

.all-products-empty h2 {
    margin: 0 0 10px;
    color: #2c1c12;
    font-size: 26px;
}

.all-products-empty p {
    margin: 0;
    color: #76665d;
    font-size: 14px;
}

/* Ultra-Unique Luxurious Boutique Card Design for Products Page */

.all-product-card {
    width: calc((100% - 60px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e8dacd;
    border-radius: 24px;
    padding: 20px;
    position: relative;
    box-shadow: 0 12px 35px rgba(78, 42, 20, 0.05);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Full 4-Sided Glowing Amber Accent Frame (Top, Left, Right, Bottom) with matching 24px border-radius */
.all-product-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 3px solid #d97706;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.all-product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 50px rgba(78, 42, 20, 0.14);
    border-color: #d97706;
}

.all-product-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Main image */

.all-product-main-image {
    width: 100%;
    height: 390px;
    position: relative;
    overflow: hidden;
    background-color: #f3e9df;
    border-radius: 18px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

.all-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.all-product-card:hover .all-product-image {
    transform: scale(1.07);
}

.all-product-image.image-changing {
    opacity: 0;
}

/* Glassmorphism Badge */

.all-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #8e4822;
    border: 1px solid rgba(142, 72, 34, 0.15);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Sub-images Thumbnails */

.all-product-thumbnails {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.all-thumbnail {
    width: 58px;
    height: 58px;
    padding: 3px;
    flex: 0 0 58px;
    overflow: hidden;
    background-color: #ffffff;
    border: 2px solid #eddcd1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.all-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.all-thumbnail:hover {
    border-color: #d97706;
    transform: translateY(-3px) scale(1.05);
}

.all-thumbnail.active {
    border-color: #8e4822;
    box-shadow: 0 6px 16px rgba(142, 72, 34, 0.22);
}

/* Product Details */

.all-product-details {
    width: 100%;
    padding: 20px 6px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.all-product-category {
    margin-bottom: 8px;
    color: #b45309;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(217, 119, 6, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
}

.all-product-details h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.all-product-details h2 a {
    color: #2c1c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

.all-product-details h2 a:hover {
    color: #8e4822;
}

.all-product-price {
    margin: 0 0 20px;
    color: #8e4822;
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

/* View product button */

.all-product-button {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8e4822 0%, #6f3414 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(142, 72, 34, 0.22);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.all-product-button:hover {
    background: linear-gradient(135deg, #a35327 0%, #8e4822 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(142, 72, 34, 0.35);
    color: #ffffff;
}

.all-product-button i {
    transition: transform 0.3s ease;
}

.all-product-button:hover i {
    transform: translateX(5px);
};

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease,
        transform 0.3s ease;
}

.all-product-button:hover {
    background-color: transparent;
    color: #8e4822;

    gap: 14px;
    transform: translateY(-2px);
}

/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 991px) {

    .all-products-section {
        padding: 65px 4%;
    }

    .all-products-heading h1 {
        font-size: 28px;
    }

    .all-products-heading p {
        font-size: 14px;
    }

    .all-products-list {
        gap: 38px 22px;
    }

    .all-product-card {
        width: calc((100% - 22px) / 2);
    }

    .all-product-details h2 {
        font-size: 17px;
    }

    .all-product-price {
        font-size: 15px;
    }

    .all-product-category {
        font-size: 11px;
    }

    .all-product-button {
        min-height: 38px;
        padding: 0 15px;
        font-size: 11px;
    }

    .all-product-main-image {
        height: 390px;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 600px) {

    .all-products-section {
        padding: 50px 18px;
    }

    .all-products-heading {
        margin-bottom: 35px;
    }

    .all-products-heading h1 {
        font-size: 22px;
    }

    .all-products-heading p {
        font-size: 13px;
    }

    .all-products-list {
        flex-direction: column;
        gap: 38px;
    }

    .all-product-card {
        width: 100%;
    }

    .all-product-main-image {
        height: 380px;
    }

    .all-thumbnail {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .all-product-details h2 {
        font-size: 15px;
    }

    .all-product-price {
        font-size: 14px;
    }

    .all-product-category {
        font-size: 10px;
    }

    .all-product-button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }
}

/* ==================================
              Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .all-products-section {
        padding: 45px 13px;
    }

    .all-products-heading h1 {
        font-size: 20px;
    }

    .all-product-details h2 {
        font-size: 14px;
    }

    .all-product-main-image {
        height: 330px;
    }

    .all-product-thumbnails {
        gap: 7px;
    }

    .all-thumbnail {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .all-product-button {
        width: 100%;
    }
}





/* specific-product */
/* ==================================
        Product Detail Section
=================================== */

.product-detail-section {
    width: 100%;
    padding: 65px 5%;
    background-color: #fffaf4;

    display: flex;
    justify-content: center;
}

.product-detail-container {
    width: 100%;
    max-width: 1250px;

    display: flex;
    flex-direction: column;
    gap: 42px;
}

/* ==================================
             Top Area
=================================== */

.product-top-area {
    width: 100%;

    display: flex;
    align-items: stretch;
    gap: 55px;
}

/* ==================================
          Left Product Gallery
=================================== */

.product-gallery {
    width: 52%;

    display: flex;
    flex-direction: column;
}

.product-main-image-box {
    width: 100%;
    height: 620px;

    position: relative;
    overflow: hidden;

    background-color: #ffffff;
    border-radius: 16px;
}

.product-detail-main-image {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: opacity 0.25s ease, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-detail-main-image.image-changing {
    opacity: 0;
}

.product-detail-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    padding: 8px 14px;

    background-color: #ffffff;
    color: #8e4822;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow: 0 8px 22px rgba(48, 26, 14, 0.12);
}

/* Thumbnails */

.product-detail-thumbnails {
    width: 100%;
    margin-top: 14px;

    display: flex;
    align-items: center;
    gap: 12px;

    overflow-x: auto;
    padding-bottom: 4px;
}

.product-detail-thumbnail {
    width: 78px;
    height: 78px;
    padding: 5px;
    flex: 0 0 78px;

    overflow: hidden;

    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 11px;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-detail-thumbnail img,
.product-detail-thumbnail video {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;

    background-color: #ffffff;
    border-radius: 7px;
}

.product-detail-thumbnail:hover {
    border-color: #c69070;
    transform: translateY(-2px);
}

.product-detail-thumbnail.active {
    border-color: #8e4822;
    box-shadow: 0 5px 15px rgba(142, 72, 34, 0.18);
}

/* ==================================
         Right Product Information
=================================== */

.product-information {
    width: 48%;
    padding: 20px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-detail-category {
    margin-bottom: 12px;

    color: #8e4822;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-information h1 {
    margin: 0 0 15px;

    color: #2c1c12;

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

.product-detail-price {
    margin: 0 0 20px;
    font-size: 21px;
    color: #8e4822;
    font-weight: 700;
}



.product-main-purchase {
    width: 100%;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;
}

.product-main-purchase .product-quantity {
    flex-shrink: 0;
}

.product-main-purchase .product-add-cart-button {
    flex: 1;
    width: auto;
}


.product-detail-description {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-detail-description p {
    margin: 0;

    color: #66574e;

    font-size: 15px;
    line-height: 1.78;
}

/* Detail info panel */

.product-info-panel {
    width: 100%;
    margin: 28px 0 16px;
    padding: 16px;

    background:
        linear-gradient(135deg, #fff8f2 0%, #ffffff 55%, #fff1e8 100%);
    border: 1px solid #ead6c8;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(92, 48, 22, 0.09);
}

.product-dimensions {
    width: 100%;
    margin: 0;

    display: flex;
    gap: 14px;
}

.dimension-item {
    width: calc(50% - 7px);
    min-height: 76px;
    padding: 14px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background:
        linear-gradient(180deg, #ffffff 0%, #fff1e8 100%);

    border: 1px solid #e7c9b6;
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 18px rgba(142, 72, 34, 0.08);
}

.dimension-item span {
    color: #9b6b50;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.dimension-item strong {
    color: #2c1c12;
    font-size: 18px;
    text-align: center;
}

/* Handmade note */

.product-feature-note {
    width: 100%;
    margin-top: auto;
    padding: 19px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 11px;
}

.product-feature-note > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #8e4822;
    color: #ffffff;

    border-radius: 50%;
}

.product-feature-note h3 {
    margin: 0 0 5px;

    color: #2c1c12;
    font-size: 17px;
}

.product-feature-note p {
    margin: 0;

    color: #75665d;

    font-size: 12px;
    line-height: 1.65;
}

/* ==================================
       Bottom Purchase Section
=================================== */

.product-purchase-section {
    width: 100%;
    padding: 32px;

    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 16px;

    box-shadow: 0 14px 38px rgba(70, 37, 20, 0.08);
}

/* Ideal For */

.product-ideal-for {
    width: 100%;
}

.product-ideal-for h2 {
    margin-bottom: 25px;
}

.product-ideal-for ul {
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.product-ideal-for li {
    width: calc(33.333% - 20px);

    display: flex;
    align-items: center;
    gap: 12px;

    color: #5d4c42;
    font-size: 15px;
    font-weight: 500;
}

.product-ideal-for li i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff3ed;
    color: #8e4822;

    border-radius: 50%;

    font-size: 12px;
}

/* Quantity and cart */

.product-purchase-controls {
    width: 28%;
    padding: 0 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;

    border-left: 1px solid #eaded6;
    border-right: 1px solid #eaded6;
}

.quantity-block {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    color: #2c1c12;

    font-size: 13px;
    font-weight: 700;
}

.product-quantity {
    height: 44px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #fffaf7;

    border: 1px solid #ddcfc5;
    border-radius: 25px;
}

.product-quantity button {
    width: 36px;
    height: 100%;

    background-color: transparent;
    color: #3d2b21;

    border: none;

    font-size: 18px;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.product-quantity button:hover {
    background-color: #8e4822;
    color: #ffffff;
}

.product-quantity input {
    width: 38px;
    height: 100%;

    background-color: transparent;
    color: #2c1c12;

    border: none;
    outline: none;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: center;

    appearance: textfield;
}

.product-quantity input::-webkit-inner-spin-button,
.product-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.product-add-cart-button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-color: #8e4822;
    color: #ffffff;

    border: 1px solid #8e4822;
    border-radius: 28px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-add-cart-button:hover {
    background-color: #713718;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(142, 72, 34, 0.2);
}

.product-add-cart-button.is-adding {
    background-color: #1f9d55;
    border-color: #1f9d55;
    pointer-events: none;
    animation: addCartSuccessPulse 0.65s ease;
}

.product-add-cart-button.is-adding i {
    animation: addCartCheckPop 0.38s ease;
}

@keyframes addCartSuccessPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(31, 157, 85, 0);
    }

    45% {
        transform: scale(1.04);
        box-shadow: 0 0 0 9px rgba(31, 157, 85, 0.16);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 16px rgba(31, 157, 85, 0);
    }
}

@keyframes addCartCheckPop {
    0% {
        transform: scale(0) rotate(-25deg);
    }

    70% {
        transform: scale(1.25) rotate(0deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Product meta */

.product-purchase-meta {
    width: 30%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-meta {
    width: 100%;
    margin: 15px 0 0;
    padding: 14px 4px 2px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    border-top: 1px solid #ead8cc;
}

.product-detail-meta p {
    margin: 0;
    min-height: 42px;
    padding: 9px 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;

    color: #6f5d52;

    background-color: rgba(255, 255, 255, 0.68);
    border: 1px solid #efe0d6;
    border-radius: 999px;

    font-size: 12px;
    text-align: center;
}

.product-detail-meta strong {
    color: #2c1c12;
}

.product-detail-meta a {
    color: #8e4822;
    text-decoration: none;
}

.product-enquire-button {
    width: 100%;
    min-height: 47px;
    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    background-color: transparent;
    color: #8e4822;

    border: 1px solid #8e4822;
    border-radius: 27px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.product-enquire-button:hover {
    background-color: #8e4822;
    color: #ffffff;

    transform: translateY(-2px);
}



.product-tab-panel h3{
    margin:32px 0 14px;

    color:#2c1c12;

    font-size:22px;
    font-weight:700;
}
/* ============================
    Product Feature Lists
============================ */

.product-description-list{
    width:100%;

    margin:22px 0 0;
    padding:0;

    list-style:none;

    display:flex;
    flex-wrap:wrap;
    gap:14px 20px;
}

/* Two columns */

.product-description-list li{
    width:calc(50% - 10px);
    min-height:55px;

    padding:14px 18px;

    display:flex;
    align-items:center;
    gap:12px;

    background:#fff8f4;

    border:1px solid #ead9ce;
    border-radius:12px;

    color:#5d4d43;

    font-size:15px;
    font-weight:500;
    line-height:1.6;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

/* Check icon */

.product-description-list li::before{

    content:"\f00c";

    font-family:"Font Awesome 6 Free";
    font-weight:900;

    width:34px;
    height:34px;
    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#8e4822;
    color:#ffffff;

    border-radius:50%;

    font-size:12px;
}

/* Hover */

.product-description-list li:hover{

    transform:translateY(-3px);

    border-color:#8e4822;

    box-shadow:0 10px 24px rgba(142,72,34,.12);
}

/* Mobile */

@media (max-width:768px){

    .product-description-list li{

        width:100%;
    }

}
/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 991px) {

    .product-detail-section {
        padding: 55px 4%;
    }

    .product-top-area {
        flex-direction: column;
        gap: 40px;
    }

    .product-gallery,
    .product-information {
        width: 100%;
    }

    .product-information h1 {
        font-size: 26px;
    }

    .product-detail-price {
        font-size: 18px;
    }

    .product-detail-description p {
        font-size: 13.5px;
    }

    .dimension-item {
        min-height: 62px;
        padding: 10px 16px;
    }

    .dimension-item strong {
        font-size: 15px;
    }

    .product-main-image-box {
        height: 600px;
    }

    .product-purchase-section {
        flex-wrap: wrap;
    }

    .product-ideal-for {
        width: 100%;
    }

    .product-purchase-controls,
    .product-purchase-meta {
        width: calc(50% - 15px);
    }

    .product-purchase-controls {
        padding-left: 0;

        border-left: none;
        border-right: 1px solid #eaded6;
    }

    .product-whatsapp-enquiry {
        min-height: 44px;
        padding: 0 20px;
        font-size: 13px;
    }

    .product-whatsapp-enquiry i {
        font-size: 17px;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 600px) {

    .product-detail-section {
        padding: 38px 16px;
    }

    .product-main-image-box {
        height: 430px;
        border-radius: 12px;
    }

    .product-detail-thumbnail {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
    }

    .product-information h1 {
        font-size: 20px;
    }

    .product-detail-price {
        font-size: 16px;
    }

    .product-detail-description p {
        font-size: 12px;
    }

    .product-dimensions {
        flex-direction: column;
    }

    .dimension-item {
        width: 100%;
        min-height: 52px;
        padding: 8px 12px;
    }

    .dimension-item span {
        font-size: 9px;
    }

    .dimension-item strong {
        font-size: 13px;
    }

    .product-detail-meta {
        grid-template-columns: 1fr;
    }

    .product-detail-meta p {
        font-size: 11.5px;
    }

    .product-feature-note h3 {
        font-size: 13.5px;
    }

    .product-feature-note p {
        font-size: 11.5px;
    }

    .product-ideal-for h2 {
        font-size: 15px;
    }

    .product-ideal-for li {
        font-size: 11.5px;
    }

    .product-purchase-section {
        padding: 23px 19px;

        flex-direction: column;
        gap: 28px;
    }

    .product-ideal-for,
    .product-purchase-controls,
    .product-purchase-meta {
        width: 100%;
    }

    .product-ideal-for li {
        width: 100%;
    }

    .product-purchase-controls {
        padding: 25px 0;

        border-left: none;
        border-right: none;
        border-top: 1px solid #eaded6;
        border-bottom: 1px solid #eaded6;
    }

    .quantity-block {
        align-items: center;
    }


        .product-main-purchase {
        align-items: stretch;
        flex-direction: column;
    }

    .product-main-purchase .product-quantity {
        width: 130px;
    }

    .product-main-purchase .product-add-cart-button {
        width: 100%;
    }

    .product-whatsapp-enquiry {
        min-height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }

    .product-whatsapp-enquiry i {
        font-size: 15px;
    }

}

/* ==================================
             Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .product-detail-section {
        padding: 28px 11px;
    }

    .product-main-image-box {
        height: 350px;
    }

    .product-information h1 {
        font-size: 18px;
    }

    .product-detail-thumbnail {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .quantity-block {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* ==================================
       Description and Reviews Tabs
=================================== */

.product-tabs-section {
    width: 100%;
    padding: 20px 5% 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    background-color: #fffaf4;
}

.product-tabs-container {
    width: 100%;
    max-width: 1250px;

    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 16px;

    box-shadow: 0 12px 35px rgba(70, 37, 20, 0.07);
}

/* Tab buttons */

.product-tabs-header {
    width: 100%;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #eaded6;
}

.product-tab-button {
    width: 50%;
    min-height: 64px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-color: #fffaf7;
    color: #76665d;

    border: none;
    border-right: 1px solid #eaded6;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.product-tab-button:last-child {
    border-right: none;
}

.product-tab-button:hover {
    color: #8e4822;
}

.product-tab-button.active {
    background-color: #8e4822;
    color: #ffffff;
}

/* Tab content */

.product-tabs-content {
    width: 100%;
    min-height: 320px;
    padding: 38px;
}

.product-tab-panel {
    display: none;

    opacity: 0;
    transform: translateY(14px);
}

.product-tab-panel.active {
    display: block;

    animation: productTabReveal 0.45s ease forwards;
}

.product-tab-panel h2 {
    margin: 0 0 20px;

    color: #2c1c12;
    font-size: 27px;
}

.product-tab-panel p {
    margin: 0 0 17px;

    color: #66574e;
    font-size: 15px;
    line-height: 1.8;
}

@keyframes productTabReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews */

.product-review-summary {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.review-rating {
    width: 220px;
    flex-shrink: 0;
    padding: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    background-color: #fff4ee;
    border-radius: 13px;
}

.review-rating > strong {
    color: #2c1c12;
    font-size: 44px;
}

.review-rating > span {
    color: #85736a;
    font-size: 12px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;

    color: #d9902c;
}

.single-product-review {
    flex: 1;
    padding: 25px;

    background-color: #fffdfb;

    border: 1px solid #eaded6;
    border-radius: 13px;
}

.review-heading {
    margin-bottom: 15px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.review-heading h3 {
    margin: 0 0 7px;

    color: #2c1c12;
    font-size: 18px;
}

.review-heading > span {
    color: #9b8a80;
    font-size: 12px;
}

.review-author {
    color: #8e4822;
    font-size: 13px;
}

/* WhatsApp button */

.product-whatsapp-enquiry {
    min-height: 52px;
    padding: 0 27px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;

    background-color: #25d366;
    color: #ffffff;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-whatsapp-enquiry i {
    font-size: 20px;
}

.product-whatsapp-enquiry:hover {
    background-color: #1fb75a;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.22);
}

/* Tablet */

@media screen and (max-width: 991px) {

    .product-tabs-section {
        padding: 18px 4% 60px;
    }

    .product-tabs-content {
        padding: 32px;
    }

    .product-tab-panel h2 {
        font-size: 24px;
    }

    .product-tab-panel h3 {
        font-size: 19px;
    }

    .product-tab-panel p {
        font-size: 14px;
    }

    .product-review-summary {
        flex-direction: column;
    }

    .review-rating {
        width: 100%;
    }
}

/* Mobile */

@media screen and (max-width: 600px) {

    .product-tabs-section {
        padding: 15px 16px 50px;
    }

    .product-tabs-header {
        flex-direction: column;
    }

    .product-tab-button {
        width: 100%;
        min-height: 56px;

        border-right: none;
        border-bottom: 1px solid #eaded6;
    }

    .product-tab-button:last-child {
        border-bottom: none;
    }

    .product-tabs-content {
        min-height: auto;
        padding: 25px 20px;
    }

    .product-tab-panel h2 {
        font-size: 20px;
    }

    .product-tab-panel h3 {
        font-size: 16px;
    }

    .product-tab-panel p,
    .product-description-list li {
        font-size: 13px;
    }

    .review-heading {
        flex-direction: column;
        gap: 8px;
    }

    .product-whatsapp-enquiry {
        width: 100%;
        max-width: 1250px;
    }
}



/* ==================================
           Related Products
=================================== */

.related-products-section {
    width: 100%;
    padding: 75px 5%;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
}

.related-products-container {
    width: 100%;
    max-width: 1250px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */

.related-products-heading {
    width: 100%;
    max-width: 700px;
    margin-bottom: 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.related-products-heading > span {
    margin-bottom: 10px;

    color: #8e4822;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.related-products-heading h2 {
    margin: 0 0 14px;

    color: #2c1c12;
    font-size: clamp(31px, 4vw, 45px);
    line-height: 1.2;
}

.related-products-heading p {
    margin: 0;

    color: #76665d;
    font-size: 15px;
    line-height: 1.75;
}

/* Product list */

.related-products-list {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 28px;
}

/* Product card */

.related-product-card {
    width: calc((100% - 56px) / 3);
    min-width: 0;

    display: flex;
    flex-direction: column;
}

/* Product image */

.related-product-image {
    width: 100%;
    height: 390px;

    position: relative;
    overflow: hidden;

    display: block;

    background-color: #f2e9e1;
    border-radius: 13px;
}

.related-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background-color: rgba(44, 24, 13, 0);

    transition: background-color 0.4s ease;
}

.related-product-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.06);
}

.related-product-card:hover .related-product-image::after {
    background-color: rgba(44, 24, 13, 0.12);
}

/* Product details */

.related-product-details {
    width: 100%;
    padding: 18px 4px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.related-product-category {
    margin-bottom: 7px;

    color: #9a785f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.3s ease;
}

.related-product-category:hover {
    color: #8e4822;
}

.related-product-details h3 {
    margin: 0 0 8px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.related-product-details h3 a {
    color: #2c1c12;
    text-decoration: none;

    transition: color 0.3s ease;
}

.related-product-details h3 a:hover {
    color: #8e4822;
}

.related-product-price {
    margin: 0;

    color: #8e4822;
    font-size: 17px;
    font-weight: 700;
}

/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 991px) {

    .related-products-section {
        padding: 65px 4%;
    }

    .related-products-heading h2 {
        font-size: 26px;
    }

    .related-products-heading p {
        font-size: 14px;
    }

    .related-products-list {
        gap: 22px;
    }

    .related-product-card {
        width: calc((100% - 22px) / 2);
    }

    .related-product-details h3 {
        font-size: 17px;
    }

    .related-product-price {
        font-size: 15px;
    }

    .related-product-image {
        height: 370px;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 600px) {

    .related-products-section {
        padding: 55px 18px;
    }

    .related-products-heading {
        margin-bottom: 35px;
    }

    .related-products-heading h2 {
        font-size: 20px;
    }

    .related-products-heading p {
        font-size: 13px;
    }

    .related-products-list {
        flex-direction: column;
        gap: 32px;
    }

    .related-product-card {
        width: 100%;
    }

    .related-product-details h3 {
        font-size: 15px;
    }

    .related-product-price {
        font-size: 14px;
    }

    .related-product-image {
        height: 380px;
    }
}

/* ==================================
              Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .related-products-section {
        padding: 48px 13px;
    }

    .related-products-heading h2 {
        font-size: 18px;
    }

    .related-product-image {
        height: 330px;
    }

    .related-product-details h3 {
        font-size: 14px;
    }
}




/* Our - Story Section */
/* ==================================
             Our Story Page
=================================== */

.our-story-page {
    width: 100%;
    padding: 55px 5% 90px;

    display: flex;
    justify-content: center;

    background-color: #fffaf4;
}

.our-story-container {
    width: 100%;
    max-width: 1250px;

    display: flex;
    flex-direction: column;
    gap: 75px;
}

/* ==================================
             Hero Image
=================================== */

.our-story-hero {
    width: 100%;
    height: 580px;
    min-height: 580px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background-color: #8e4822;
    border-radius: 0;
}

.our-story-hero picture {
    display: contents;
}

.our-story-hero img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;
    object-position: center 30%;

    transition: transform 0.8s ease;
}

.our-story-hero:hover img {
    transform: scale(1.04);
}

.our-story-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(34, 17, 9, 0.08) 0%,
        rgba(34, 17, 9, 0.4) 55%,
        rgba(34, 17, 9, 0.9) 100%
    );
}

.our-story-hero-content {
    width: 100%;
    max-width: 760px;
    padding: 65px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;
}

.our-story-hero-content span {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.our-story-hero-content h1 {
    margin: 0 0 16px;

    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
}

.our-story-hero-content p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;
}

/* ==================================
          Introduction Content
=================================== */

.our-story-introduction {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our-story-label {
    margin-bottom: 12px;

    color: #8e4822;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.our-story-introduction h2,
.our-story-journey-content h2 {
    margin: 0 0 25px;

    color: #2c1c12;
    font-size: clamp(33px, 4vw, 49px);
    line-height: 1.2;
}

.our-story-introduction p,
.our-story-journey-content p {
    margin: 0 0 20px;

    color: #62534a;
    font-size: 16px;
    line-height: 1.9;
}

/* ==================================
             Journey Section
=================================== */

.our-story-journey {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 60px;
}

.our-story-journey-content {
    width: 50%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our-story-journey-image {
    width: 50%;
    height: 500px;

    overflow: hidden;

    background-color: #eaded5;
    border-radius: 16px;
}

.our-story-journey-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.our-story-journey:hover .our-story-journey-image img {
    transform: scale(1.05);
}

/* ==================================
          Mission and Vision
=================================== */

.mission-vision-wrapper {
    width: 100%;

    display: flex;
    align-items: stretch;
    gap: 32px;
}

.mission-vision-card {
    width: calc(50% - 16px);
    padding: 50px;

    display: flex;
    flex-direction: column;

    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.mission-card {
    background-color: #fcfbf9;
    border: 1px solid #e7e3dc;
    box-shadow: 0 10px 40px rgba(142, 72, 34, 0.04);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(142, 72, 34, 0.08);
    border-color: #8e4822;
}

.vision-card {
    background-color: #8e4822;
    border: 1px solid transparent;
    box-shadow: 0 15px 40px rgba(142, 72, 34, 0.12);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(142, 72, 34, 0.24);
}

.mission-vision-heading {
    margin-bottom: 35px;
}

.mission-vision-heading span {
    display: inline-block;
    margin-bottom: 9px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-card .mission-vision-heading span {
    color: #8e4822;
}

.vision-card .mission-vision-heading span {
    color: rgba(255, 255, 255, 0.72);
}

.mission-vision-heading h2 {
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 15px;

    font-size: 38px;
    line-height: 1.2;
}

.mission-vision-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    border-radius: 2px;
}

.mission-card h2::after {
    background-color: #8e4822;
}

.vision-card h2::after {
    background-color: #ffffff;
}

.mission-card h2 {
    color: #2c1c12;
}

.vision-card h2 {
    color: #ffffff;
}

.mission-vision-heading p {
    margin: 15px 0 0;

    font-size: 15px;
    line-height: 1.7;
}

.mission-card .mission-vision-heading p {
    color: #6c5b52;
}

.vision-card .mission-vision-heading p {
    color: rgba(255, 255, 255, 0.82);
}

.mission-vision-card ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-vision-card li {
    position: relative;
    padding-left: 36px;

    font-size: 15px;
    line-height: 1.7;

    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.2s, background-color 0.3s;
}

.mission-vision-card.animate li {
    opacity: 1;
    transform: translateY(0);
}

.mission-vision-card.animate li:nth-child(1) { transition-delay: 0.15s; }
.mission-vision-card.animate li:nth-child(2) { transition-delay: 0.3s; }
.mission-vision-card.animate li:nth-child(3) { transition-delay: 0.45s; }
.mission-vision-card.animate li:nth-child(4) { transition-delay: 0.6s; }
.mission-vision-card.animate li:nth-child(5) { transition-delay: 0.75s; }
.mission-vision-card.animate li:nth-child(6) { transition-delay: 0.9s; }
.mission-vision-card.animate li:nth-child(7) { transition-delay: 1.05s; }
.mission-vision-card.animate li:nth-child(8) { transition-delay: 1.2s; }
.mission-vision-card.animate li:nth-child(9) { transition-delay: 1.35s; }
.mission-vision-card.animate li:nth-child(10) { transition-delay: 1.5s; }

.mission-vision-heading span,
.mission-vision-heading h2,
.mission-vision-heading p {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-vision-card.animate .mission-vision-heading span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.mission-vision-card.animate .mission-vision-heading h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.mission-vision-card.animate .mission-vision-heading p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.mission-vision-card li::before {
    content: "\f00c";

    width: 24px;
    height: 24px;

    position: absolute;
    top: 1px;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
}

.mission-card li {
    color: #5d4e46;
}

.mission-card li::before {
    background-color: #e7e3dc;
    color: #8e4822;
}

.mission-card li:hover::before {
    background-color: #8e4822;
    color: #ffffff;
}

.vision-card li {
    color: rgba(255, 255, 255, 0.88);
}

.vision-card li::before {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.vision-card li:hover::before {
    background-color: #ffffff;
    color: #8e4822;
}

/* ==================================
          Reveal Animation
=================================== */

.reveal-item {
    opacity: 1;
    transform: none;
}

.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.js-enabled .reveal-item.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 991px) {

    .our-story-page {
        padding: 45px 4% 70px;
    }

    .our-story-container {
        gap: 60px;
    }

    .our-story-hero {
        min-height: 500px;
    }

    .our-story-hero-content {
        padding: 50px;
    }

    .our-story-hero-content h1 {
        font-size: 36px;
    }

    .our-story-hero-content p {
        font-size: 15px;
    }

    .our-story-introduction h2,
    .our-story-journey-content h2 {
        font-size: 28px;
    }

    .our-story-introduction p,
    .our-story-journey-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .our-story-journey {
        flex-direction: column;
        gap: 38px;
    }

    .our-story-journey-content,
    .our-story-journey-image {
        width: 100%;
    }

    .our-story-journey-image {
        height: 470px;
    }

    .mission-vision-wrapper {
        flex-direction: column;
    }

    .mission-vision-card {
        width: 100%;
        padding: 35px;
    }

    .mission-vision-heading h2 {
        font-size: 26px;
    }

    .mission-vision-heading p,
    .mission-vision-card li {
        font-size: 14px;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 600px) {

    .our-story-page {
        padding: 25px 16px 55px;
    }

    .our-story-container {
        gap: 48px;
    }

    .our-story-hero {
        min-height: 390px;
        border-radius: 0;
    }

    .our-story-hero-content {
        padding: 35px 24px;
    }

    .our-story-hero-content h1 {
        font-size: 28px;
    }

    .our-story-hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .our-story-introduction h2,
    .our-story-journey-content h2 {
        font-size: 22px;
    }

    .our-story-introduction p,
    .our-story-journey-content p {
        font-size: 13.5px;
        line-height: 1.8;
    }

    .our-story-journey-image {
        height: 350px;
    }

    .mission-vision-card {
        padding: 24px 20px;
    }

    .mission-vision-heading h2 {
        font-size: 20px;
    }

    .mission-vision-heading p,
    .mission-vision-card li {
        font-size: 13px;
    }
}

/* ==================================
              Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .our-story-page {
        padding: 18px 11px 45px;
    }

    .our-story-hero {
        min-height: 370px;
    }

    .our-story-hero-content {
        padding: 28px 19px;
    }

    .our-story-hero-content h1 {
        font-size: 24px;
    }

    .our-story-introduction h2,
    .our-story-journey-content h2 {
        font-size: 20px;
    }

    .our-story-journey-image {
        height: 300px;
    }

    .mission-vision-card {
        padding: 20px 15px;
    }

    .mission-vision-heading h2 {
        font-size: 18px;
    }
}

/* profile-section */
/* ==================================
           Profile Page
=================================== */

.profile-section {
    width: 100%;
    padding: 60px 5%;

    display: flex;
    justify-content: center;

    background-color: #fffaf4;
}

.profile-container {
    width: 100%;
    max-width: 1250px;
    /* allow vertical responsiveness on desktop */
    min-height: auto;

    display: flex;
    align-items: stretch;
    gap: 30px;
}

/* ==================================
              Sidebar
=================================== */

.profile-sidebar {
    width: 285px;
    flex: 0 0 285px;

    /* allow the sidebar to stretch to match the right content's height
       and avoid sticky positioning which prevented equal height */
    align-self: stretch;
    position: relative;

    display: flex;
    flex-direction: column;
}

.profile-navigation {
    flex: 1;
}
.profile-logout-button {
    margin-top: auto;
}


.profile-content {
    min-width: 0;
    /* let content determine height so page is responsive vertically */
    min-height: auto;
    flex: 1;

    display: flex;
    flex-direction: column;
}


.profile-tab-panel.active {
    min-height: 760px;
}



.profile-tab-panel {
    width: 100%;
    padding: 32px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 16px;

    box-shadow: 0 13px 35px rgba(66, 35, 19, 0.07);
}


.profile-tab-panel {
    display: none;
}

.profile-tab-panel.active {
    display: block;
    /* remove fixed panel height for responsiveness */
    min-height: auto;

    animation: profilePanelReveal 0.45s ease;
}


.profile-user {
    padding: 28px 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    background-color: #8e4822;
}

.profile-avatar {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #ffffff;
    color: #8e4822;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 800;
}

.profile-user-info {
    min-width: 0;
}

.profile-user-info > span {
    display: block;
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-user-info h2 {
    margin: 0 0 3px;

    color: #ffffff;
    font-size: 17px;
}

.profile-user-info p {
    margin: 0;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-navigation {
    width: 100%;
    padding: 13px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-tab-button,
.profile-logout-button {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;

    display: flex;
    align-items: center;
    gap: 12px;

    position: relative;
    overflow: hidden;

    background-color: transparent;
    color: #69584f;

    border: none;
    border-radius: 10px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-tab-button::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    bottom: 6px;
    width: 4px;
    background-color: #8e4822;
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.profile-tab-button i,
.profile-logout-button i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.profile-tab-button:hover {
    background-color: #fff4ed;
    color: #8e4822;
    transform: translateX(4px);
}

.profile-tab-button:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #8e4822;
}

.profile-tab-button.active {
    background: linear-gradient(90deg, #fff0e9 0%, #ffffff 100%);
    color: #8e4822;
    font-weight: 700;
    transform: translateX(6px);
    box-shadow: 0 4px 14px rgba(142, 72, 34, 0.08);
}

.profile-tab-button.active::before {
    transform: scaleY(1);
    opacity: 1;
}

.profile-tab-button.active i {
    transform: scale(1.18);
    color: #8e4822;
}

.profile-tab-button:active {
    transform: translateX(2px) scale(0.98);
}

.profile-logout-button {
    margin-top: auto;
    color: #a83f3f;
    border-top: 1px solid #eee1d9;
    border-radius: 0 0 12px 12px;
}

.profile-logout-button:hover {
    background-color: #fff0f0;
    color: #8e2020;
    transform: translateX(4px);
}

.profile-logout-button:hover i {
    transform: translateX(3px) scale(1.15);
}

/* ==================================
             Main Content
=================================== */

.profile-content {
    min-width: 0;
    flex: 1;
}

.profile-tab-panel {
    display: none;
}

.profile-tab-panel.active {
    display: block;

    animation: profilePanelReveal 0.45s ease;
}

/* Horizontal sub-tabs style inside Profile & Addresses */
.account-sub-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #eaded6;
    margin-bottom: 25px;
    padding-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.account-sub-tabs::-webkit-scrollbar {
    display: none;
}

.account-sub-tab {
    padding: 12px 18px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #76665d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color 0.3s ease;
}

.account-sub-tab i {
    font-size: 12px;
    opacity: 0.8;
}

.account-sub-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #8e4822;
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.account-sub-tab:hover {
    color: #8e4822;
}

.account-sub-tab.active {
    color: #8e4822;
}

.account-sub-tab.active::after {
    width: 100%;
}


@keyframes profilePanelReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading */

.profile-page-heading {
    margin-bottom: 28px;
}

.profile-page-heading > span,
.profile-page-heading > div > span {
    display: inline-block;
    margin-bottom: 8px;

    color: #8e4822;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-page-heading h1 {
    margin: 0 0 10px;

    color: #2c1c12;

    font-size: clamp(29px, 4vw, 41px);
    line-height: 1.2;
}

.profile-page-heading p {
    max-width: 650px;
    margin: 0;

    color: #76665d;

    font-size: 14px;
    line-height: 1.7;
}

.profile-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
}


@media screen and (max-width: 991px) {

    .profile-container {
        min-height: auto;
        align-items: stretch;
    }

    .profile-sidebar {
        min-height: auto;
    }

    .profile-content {
        min-height: auto;
    }

    .profile-tab-panel.active {
        min-height: auto;
    }
}


/* ==================================
          Dashboard Summary
=================================== */

.profile-summary-list {
    width: 100%;
    margin-bottom: 26px;

    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.profile-summary-card {
    width: calc((100% - 36px) / 3);
    padding: 22px;

    display: flex;
    align-items: center;
    gap: 15px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 13px;
}

.profile-summary-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #fff0e9;
    color: #8e4822;

    border-radius: 50%;
}

.profile-summary-card span {
    display: block;
    margin-bottom: 4px;

    color: #8b7a70;
    font-size: 12px;
}

.profile-summary-card strong {
    color: #2c1c12;
    font-size: 25px;
}

.profile-dashboard-grid {
    width: 100%;

    display: flex;
    align-items: stretch;
    gap: 20px;
}

.profile-dashboard-card {
    width: calc(50% - 10px);
    padding: 24px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 14px;

    /* make cards stretch equally and distribute content */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-card-heading {
    margin-bottom: 22px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.profile-card-heading span {
    color: #9a8172;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.profile-card-heading h2 {
    margin: 0 0 8px;

    color: #2c1c12;
    font-size: 21px;
}

.profile-card-heading button {
    padding: 0 0 2px 0;

    background-color: transparent;
    color: #8e4822;

    border: none;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease, padding-right 0.3s ease;
}

.profile-card-heading button::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.profile-card-heading button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #8e4822;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.profile-card-heading button:hover {
    color: #b35d2d;
    padding-right: 16px;
}

.profile-card-heading button:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: #b35d2d;
}

.profile-card-heading button:hover::before {
    width: calc(100% - 16px);
    background-color: #b35d2d;
}

/* Recent order */

.recent-order-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-order-item img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;

    object-fit: cover;

    border-radius: 10px;
}

.recent-order-info {
    min-width: 0;
    flex: 1;
}

.recent-order-info > span {
    color: #9a8172;
    font-size: 10px;
}

.recent-order-info h3 {
    margin: 5px 0;

    color: #2c1c12;

    font-size: 15px;
    line-height: 1.35;
}

.recent-order-info p {
    margin: 0;

    color: #86756c;
    font-size: 11px;
}

.recent-order-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.recent-order-status strong {
    color: #8e4822;
    font-size: 14px;
}

.recent-order-status span {
    padding: 6px 9px;

    background-color: #fff2d9;
    color: #9a6410;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
}

/* Dashboard address */

.dashboard-address {
    color: #65554d;

    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
}

.dashboard-address strong {
    display: block;
    margin-bottom: 8px;

    color: #2c1c12;
    font-size: 15px;
}

.dashboard-address p {
    margin: 0 0 8px;
}

.dashboard-address a {
    color: #8e4822;

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* ==================================
               Orders
=================================== */

.profile-orders-list {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.profile-order-card {
    overflow: visible;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 14px;
}

.profile-order-top {
    padding: 18px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    background-color: #fff7f2;
    border-bottom: 1px solid #eaded6;
}

.profile-order-top > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-order-top span {
    color: #918078;
    font-size: 10px;
}

.profile-order-top strong {
    color: #2c1c12;
    font-size: 13px;
}

.order-status {
    padding: 7px 11px;

    border-radius: 20px;

    font-size: 10px !important;
    font-weight: 700;
}

.order-status.processing {
    background-color: #fff1d8;
    color: #9b650f;
}

.order-status.delivered {
    background-color: #e9f8ee;
    color: #23834c;
}

.profile-order-product {
    padding: 22px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-order-product > img {
    width: 95px;
    height: 95px;
    flex: 0 0 95px;

    object-fit: cover;

    border-radius: 10px;
}

.profile-order-product-info {
    min-width: 0;
    flex: 1;
}

.profile-order-product-info > span {
    color: #9d806e;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-order-product-info h2 {
    margin: 6px 0;

    color: #2c1c12;
    font-size: 18px;
}

.profile-order-product-info p {
    margin: 0;

    color: #837168;
    font-size: 12px;
}

.profile-order-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.profile-order-actions .btn-text {
    display: none;
}

.profile-order-actions a.order-action-btn,
.profile-order-actions button.order-action-btn {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background-color: #f5efe9;
    color: #8e4822;

    border: 1px solid #e0d0c3;
    font-size: 15px;
    position: relative;

    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none !important;
}

.profile-order-actions a.order-action-btn:hover,
.profile-order-actions button.order-action-btn:hover {
    background-color: #8e4822;
    color: #ffffff;
    border-color: #8e4822;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 72, 34, 0.25);
    text-decoration: none !important;
}

/* Tooltip on hover */
.order-action-btn::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;

    padding: 6px 10px;
    background-color: #2c1c12;
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.2s ease;
    z-index: 999;
}

.order-action-btn::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 2px);
    right: 14px;

    border: 5px solid transparent;
    border-top-color: #2c1c12;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.2s ease;
    z-index: 999;
}

.order-action-btn:hover::after,
.order-action-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==================================
          Purchase History
=================================== */

.purchase-history-table-wrapper {
    width: 100%;
    overflow-x: auto;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 14px;
}

.purchase-history-table {
    width: 100%;
    min-width: 720px;

    border-collapse: collapse;
}

.purchase-history-table th,
.purchase-history-table td {
    padding: 18px 20px;

    text-align: left;

    border-bottom: 1px solid #eee2da;
}

.purchase-history-table th {
    background-color: #fff5ef;
    color: #4c392f;

    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.purchase-history-table td {
    color: #6d5c53;
    font-size: 13px;
}

.purchase-history-table tbody tr:last-child td {
    border-bottom: none;
}

.history-status {
    padding: 6px 10px;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
}

.history-status.delivered {
    background-color: #eaf8ee;
    color: #23834c;
}

.history-status.cancelled {
    background-color: #fff0f0;
    color: #b03737;
}

/* ==================================
           Saved Addresses
=================================== */

.add-address-button {
    min-height: 44px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    background-color: #8e4822;
    color: #ffffff;

    border: 1px solid #8e4822;
    border-radius: 25px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.saved-address-list {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.saved-address-card {
    width: calc(50% - 10px);
    padding: 24px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 14px;
}

.saved-address-top {
    margin-bottom: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.saved-address-top > span {
    padding: 6px 11px;

    background-color: #fff0e9;
    color: #8e4822;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.saved-address-top strong {
    color: #28824c;
    font-size: 10px;
}

.saved-address-card h2 {
    margin: 0 0 10px;

    color: #2c1c12;
    font-size: 18px;
}

.saved-address-card address {
    margin-bottom: 12px;

    color: #6d5d54;

    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
}

.saved-address-card > p {
    margin: 0;

    color: #8e4822;
    font-size: 12px;
    font-weight: 600;
}

.saved-address-actions {
    margin-top: 20px;
    padding-top: 16px;

    display: flex;
    gap: 12px;

    border-top: 1px solid #eee2da;
}

.saved-address-actions button {
    padding: 0;

    display: flex;
    align-items: center;
    gap: 7px;

    background-color: transparent;
    color: #79685f;

    border: none;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.saved-address-actions button:hover {
    color: #8e4822;
}

/* ==================================
            Profile Details
=================================== */

.profile-details-form {
    width: 100%;
    max-width: 760px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 14px;
}

.profile-form-row {
    width: 100%;

    display: flex;
    gap: 18px;
}

.profile-input-group {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.profile-form-row .profile-input-group {
    width: calc(50% - 9px);
}

.profile-input-group label {
    color: #3f2e25;

    font-size: 12px;
    font-weight: 700;
}

.profile-input-group input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;

    background-color: #fffaf7;
    color: #2c1c12;

    border: 1px solid #e5d8d0;
    border-radius: 9px;
    outline: none;

    font-family: inherit;
    font-size: 13px;
}

.profile-input-group input:focus {
    background-color: #ffffff;
    border-color: #8e4822;

    box-shadow: 0 0 0 3px rgba(142, 72, 34, 0.08);
}

.profile-save-button {
    min-height: 46px;
    padding: 0 22px;
    align-self: flex-start;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    background-color: #8e4822;
    color: #ffffff;

    border: 1px solid #8e4822;
    border-radius: 25px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 991px) {

    .profile-section {
        padding: 45px 4%;
    }

    .profile-container {
        flex-direction: column;
    }

    .profile-sidebar {
        width: 100%;
        flex: none;

        position: static;
    }

    .profile-user {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 24px 16px !important;
    }

    .profile-user-info h2 {
        font-size: 14px;
        text-align: center !important;
    }

    .profile-user-info p {
        font-size: 10.5px;
        text-align: center !important;
    }

    .profile-page-heading h1 {
        font-size: 22px;
    }

    .profile-page-heading p {
        font-size: 13px;
    }

    .profile-card-heading h2 {
        font-size: 16px;
    }

    .profile-summary-card strong {
        font-size: 18px;
    }

    .account-sub-tab {
        font-size: 11.5px;
        padding: 10px 14px;
    }

    .profile-navigation {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        overflow-x: visible !important;
        gap: 8px;
        padding: 12px 16px;
        background-color: #fcf6f0;
        border-bottom: 1px solid #eaded6;
        scrollbar-width: none;
    }

    .profile-navigation::-webkit-scrollbar {
        display: none;
    }

    .profile-tab-button,
    .profile-logout-button {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center !important;
        min-height: 40px;
        padding: 0 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        border: 1px solid #eaded6;
        background-color: #ffffff;
        color: #69584f;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 4px rgba(44, 28, 18, 0.02);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .profile-tab-button:hover,
    .profile-tab-button.active {
        background-color: #8e4822 !important;
        color: #ffffff !important;
        border-color: #8e4822 !important;
        box-shadow: 0 4px 8px rgba(142, 72, 34, 0.15) !important;
    }

    .profile-tab-button.active {
        transform: none !important;
    }

    .profile-logout-button {
        margin-top: 0;
        border: 1px solid #fee2e2 !important;
        background-color: #fef2f2 !important;
        color: #b91c1c !important;
        border-radius: 20px !important;
    }

    .profile-logout-button:hover {
        background-color: #fee2e2 !important;
        color: #991b1b !important;
        border-color: #fca5a5 !important;
        box-shadow: 0 4px 8px rgba(185, 28, 28, 0.1) !important;
    }

    .profile-content {
        width: 100%;
    }

    .profile-dashboard-grid {
        flex-direction: column;
    }

    .profile-dashboard-card {
        width: 100%;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 650px) {

    .profile-section {
        padding: 28px 15px;
    }

    .profile-tab-panel {
        padding: 20px;
    }

    .profile-user {
        justify-content: flex-start;
    }

    .profile-user-info h2 {
        font-size: 13px;
    }

    .profile-user-info p {
        font-size: 9.5px;
    }

    .profile-page-heading h1 {
        font-size: 18px;
    }

    .profile-page-heading p {
        font-size: 11.5px;
    }

    .profile-card-heading h2 {
        font-size: 14px;
    }

    .profile-summary-card strong {
        font-size: 16px;
    }

    .account-sub-tab {
        font-size: 11px;
        padding: 8px 10px;
    }

    .profile-navigation {
        padding: 10px;
    }

    .profile-tab-button,
    .profile-logout-button {
        min-height: 43px;
        padding: 0 13px;

        font-size: 11px;
    }

    .profile-summary-list {
        flex-direction: column;
    }

    .profile-summary-card {
        width: 100%;
    }

    .recent-order-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .recent-order-status {
        width: 100%;
        align-items: flex-start;
    }

    .profile-order-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-order-product {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-order-product > img {
        width: 100%;
        height: 260px;
    }

    .profile-order-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
    }

    .profile-order-actions a.order-action-btn,
    .profile-order-actions button.order-action-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        min-height: 38px;
        height: auto;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        background-color: #8e4822;
        color: #ffffff;
        border: 1px solid #8e4822;
    }

    .profile-order-actions a.order-action-btn:last-child {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .profile-order-actions a.order-action-btn i,
    .profile-order-actions button.order-action-btn i {
        display: none !important;
    }

    .profile-order-actions .btn-text {
        display: inline-block !important;
    }

    .order-action-btn::after,
    .order-action-btn::before {
        display: none !important;
    }

    .profile-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .saved-address-list {
        flex-direction: column;
    }

    .saved-address-card {
        width: 100%;
    }

    .profile-form-row {
        flex-direction: column;
    }

    .profile-form-row .profile-input-group {
        width: 100%;
    }

    .profile-tab-panel table,
    .profile-tab-panel th,
    .profile-tab-panel td {
        font-size: 11px;
    }
}

/* ==================================
             Small Mobile
=================================== */

@media screen and (max-width: 400px) {

    .profile-section {
        padding: 20px 10px;
    }

    .profile-sidebar {
        border-radius: 11px;
    }

    .profile-user {
        padding: 22px 17px;
    }

    .profile-page-heading h1 {
        font-size: 28px;
    }

    .profile-dashboard-card,
    .profile-details-form,
    .saved-address-card {
        padding: 20px 16px;
    }

    .profile-order-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        gap: 8px !important;
    }
}




/*  add to cart section  */
/* ==================================
              Cart Page
=================================== */

.cart-page-section {
    width: 100%;
    padding: 70px 5%;
    background-color: #fffaf4;

    display: flex;
    justify-content: center;
}

.cart-page-container {
    width: 100%;
    max-width: 1250px;

    display: flex;
    flex-direction: column;
}

/* Heading */

.cart-page-heading {
    max-width: 720px;
    margin: 0 auto 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.cart-page-heading > span {
    margin-bottom: 9px;

    color: #8e4822;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-page-heading h1 {
    margin: 0 0 13px;

    color: #2c1c12;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.cart-page-heading p {
    margin: 0;

    color: #76665d;
    font-size: 14px;
    line-height: 1.75;
}

/* Main layout */

.cart-layout {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 28px;
}

/* ==================================
             Cart Products
=================================== */

.cart-products {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    width: 100%;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 20px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 15px;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        max-height 0.5s ease,
        padding 0.5s ease,
        margin 0.5s ease;
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(-40px);
    pointer-events: none;
}

/* Image */

.cart-product-image {
    width: 145px;
    height: 145px;
    flex: 0 0 145px;

    overflow: hidden;

    background-color: #eee2d9;
    border-radius: 12px;
}

.cart-product-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.cart-item:hover .cart-product-image img {
    transform: scale(1.05);
}

/* Product information */

.cart-product-information {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-product-category {
    margin-bottom: 6px;

    color: #9a785f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-decoration: none;
    text-transform: uppercase;
}

.cart-product-information h2 {
    margin: 0 0 7px;

    font-size: 20px;
    line-height: 1.35;
}

.cart-product-information h2 a {
    color: #2c1c12;
    text-decoration: none;

    transition: color 0.3s ease;
}

.cart-product-information h2 a:hover {
    color: #8e4822;
}

.cart-product-sku {
    margin: 0 0 9px;

    color: #98867b;
    font-size: 11px;
}

.cart-product-unit-price {
    margin: 0;

    color: #8e4822;
    font-size: 16px;
    font-weight: 700;
}

/* Cart controls */

.cart-item-controls {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 23px;
}

.cart-quantity-wrapper,
.cart-subtotal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-quantity-wrapper > span,
.cart-subtotal-wrapper > span {
    color: #938077;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cart-subtotal-wrapper {
    min-width: 95px;
}

.cart-subtotal-wrapper strong {
    color: #2c1c12;
    font-size: 14px;
}

/* Quantity controls */

.cart-quantity-control {
    height: 44px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #fffaf7;

    border: 1px solid #decfc6;
    border-radius: 25px;
}

.cart-quantity-button {
    width: 36px;
    height: 100%;

    background-color: transparent;
    color: #3d2b21;

    border: none;

    font-size: 18px;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.cart-quantity-button:hover {
    background-color: #8e4822;
    color: #ffffff;
}

/* Animated number box */

.cart-quantity-number {
    width: 38px;
    height: 100%;

    position: relative;
    overflow: hidden;
}

.quantity-current,
.quantity-next {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #2c1c12;
    font-size: 14px;
    font-weight: 700;
}

.quantity-next {
    pointer-events: none;
}

/* Increase: number enters from bottom */

.cart-quantity-number.increasing .quantity-current {
    animation: quantityCurrentUp 0.3s ease forwards;
}

.cart-quantity-number.increasing .quantity-next {
    animation: quantityNextUp 0.3s ease forwards;
}

/* Decrease: number enters from top */

.cart-quantity-number.decreasing .quantity-current {
    animation: quantityCurrentDown 0.3s ease forwards;
}

.cart-quantity-number.decreasing .quantity-next {
    animation: quantityNextDown 0.3s ease forwards;
}

@keyframes quantityCurrentUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes quantityNextUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes quantityCurrentDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes quantityNextDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Delete button */

.cart-delete-button {
    width: 44px;
    max-width: 44px;
    height: 44px;
    padding: 0 13px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;

    overflow: hidden;
    white-space: nowrap;

    background-color: #fff0f0;
    color: #b73c3c;

    border: 1px solid #f0cece;
    border-radius: 25px;

    cursor: pointer;

    transition:
        max-width 0.4s cubic-bezier(.22, 1, .36, 1),
        gap 0.4s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.cart-delete-button i {
    width: 16px;
    flex: 0 0 16px;

    text-align: center;
}

.cart-delete-button span {
    max-width: 0;

    overflow: hidden;

    opacity: 0;

    font-size: 12px;
    font-weight: 700;

    transition:
        max-width 0.4s cubic-bezier(.22, 1, .36, 1),
        opacity 0.3s ease;
}

.cart-delete-button:hover {
    max-width: 110px;
    gap: 9px;

    background-color: #b73c3c;
    color: #ffffff;

    border-color: #b73c3c;
}

.cart-delete-button:hover span {
    max-width: 60px;
    opacity: 1;
}

/* Bottom cart actions */

.cart-actions {
    margin-top: 6px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.continue-shopping-button,
.clear-cart-button {
    min-height: 44px;
    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    border-radius: 24px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
    cursor: pointer;
}

.continue-shopping-button {
    background-color: transparent;
    color: #8e4822;

    border: 1px solid #8e4822;
}

.clear-cart-button {
    background-color: transparent;
    color: #a43e3e;

    border: 1px solid #e1bbbb;
}

/* ==================================
             Cart Summary
=================================== */

.cart-summary {
    width: 350px;
    flex: 0 0 350px;
    padding: 28px;

    position: sticky;
    top: 25px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 16px;

    box-shadow: 0 14px 38px rgba(69, 37, 20, 0.08);
}

.cart-summary-heading {
    margin-bottom: 25px;
}

.cart-summary-heading > span {
    color: #8e4822;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.cart-summary-heading h2 {
    margin: 6px 0 0;

    color: #2c1c12;
    font-size: 25px;
}

.cart-summary-row,
.cart-summary-total {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cart-summary-row {
    margin-bottom: 17px;

    color: #79685f;
    font-size: 13px;
}

.cart-summary-row strong {
    color: #2c1c12;
    font-size: 13px;
}

.cart-coupon {
    margin: 26px 0;
    padding: 22px 0;

    border-top: 1px solid #eaded6;
    border-bottom: 1px solid #eaded6;
}

.cart-coupon label {
    display: block;
    margin-bottom: 9px;

    color: #3f2d24;

    font-size: 12px;
    font-weight: 700;
}

.cart-coupon-box {
    width: 100%;
    min-height: 44px;

    display: flex;

    overflow: hidden;

    background-color: #fffaf7;

    border: 1px solid #dfd1c8;
    border-radius: 24px;
}

.cart-coupon-box input {
    min-width: 0;
    padding: 0 14px;
    flex: 1;

    background-color: transparent;

    border: none;
    outline: none;

    font-family: inherit;
    font-size: 12px;
}

.cart-coupon-box button {
    padding: 0 16px;

    background-color: #8e4822;
    color: #ffffff;

    border: none;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.cart-summary-total {
    margin-bottom: 23px;
}

.cart-summary-total span {
    color: #2c1c12;
    font-size: 15px;
    font-weight: 700;
}

.cart-summary-total strong {
    color: #8e4822;
    font-size: 23px;
}

.cart-checkout-button {
    width: 100%;
    min-height: 49px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-color: #8e4822;
    color: #ffffff;

    border-radius: 28px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        gap 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cart-checkout-button:hover {
    background-color: #713718;

    gap: 15px;
    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(142, 72, 34, 0.22);
}

.cart-security-note {
    margin-top: 18px;

    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: #8c7b72;
}

.cart-security-note i {
    margin-top: 2px;

    color: #8e4822;
    font-size: 12px;
}

.cart-security-note p {
    margin: 0;

    font-size: 10px;
    line-height: 1.6;
}

/* Empty cart */

.cart-empty-message {
    padding: 60px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    background-color: #ffffff;

    border: 1px solid #eaded6;
    border-radius: 15px;

    text-align: center;
}

.cart-empty-message i {
    color: #8e4822;
    font-size: 45px;
}

.cart-empty-message h2 {
    margin: 0;

    color: #2c1c12;
}

.cart-empty-message p {
    margin: 0;

    color: #76665d;
    font-size: 13px;
}

/* ==================================
                Tablet
=================================== */

@media screen and (max-width: 1050px) {

    .cart-page-section {
        padding: 55px 4%;
    }

    .cart-page-heading h1 {
        font-size: 28px;
    }

    .cart-page-heading p {
        font-size: 14px;
    }

    .cart-layout {
        flex-direction: column;
    }

    .cart-products,
    .cart-summary {
        width: 100%;
    }

    .cart-product-information h2 {
        font-size: 17px;
    }

    .cart-product-unit-price {
        font-size: 15px;
    }

    .cart-subtotal-wrapper strong {
        font-size: 13px;
    }

    .cart-summary-heading h2 {
        font-size: 18px;
    }

    .cart-summary {
        flex: none;
        position: static;
    }
}

/* ==================================
                Mobile
=================================== */

@media screen and (max-width: 700px) {

    .cart-page-section {
        padding: 40px 16px;
    }

    .cart-page-heading {
        margin-bottom: 33px;
    }

    .cart-page-heading h1 {
        font-size: 22px;
    }

    .cart-page-heading p {
        font-size: 13px;
    }

    .cart-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cart-product-image {
        width: 115px;
        height: 115px;
        flex-basis: 115px;
    }

    .cart-product-information {
        width: calc(100% - 135px);
        flex: none;
    }

    .cart-product-information h2 {
        font-size: 15px;
    }

    .cart-product-unit-price {
        font-size: 14px;
    }

    .cart-product-sku {
        font-size: 10px;
    }

    .cart-item-controls {
        width: 100%;

        justify-content: space-between;
        gap: 14px;

        padding-top: 17px;

        border-top: 1px solid #eee1d9;
    }

    .cart-subtotal-wrapper strong {
        font-size: 13px;
    }

    .cart-delete-button {
        max-width: 44px;
    }

    .cart-delete-button:hover {
        max-width: 44px;
        gap: 0;
    }

    .cart-delete-button:hover span {
        max-width: 0;
        opacity: 0;
    }

    .cart-summary-heading h2 {
        font-size: 16px;
    }

    .cart-summary-row span,
    .cart-summary-row strong {
        font-size: 13px;
    }

    .cart-summary-total strong {
        font-size: 18px;
    }

    .cart-summary {
        padding: 24px 20px;
    }
}

/* ==================================
              Small Mobile
=================================== */

@media screen and (max-width: 460px) {

    .cart-page-section {
        padding: 30px 10px;
    }

    .cart-page-heading h1 {
        font-size: 20px;
    }

    .cart-item {
        padding: 16px;
    }

    .cart-product-image {
        width: 100%;
        height: 280px;
        flex-basis: auto;
    }

    .cart-product-information {
        width: 100%;
    }

    .cart-product-information h2 {
        font-size: 14px;
    }

    .cart-item-controls {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cart-subtotal-wrapper {
        flex: 1;
    }

    .cart-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .continue-shopping-button,
    .clear-cart-button {
        width: 100%;
    }
}





/* signin */

/* signin */
/* ===============================
            Login Page
================================ */

.login-section {
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 35px 5%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #fffaf4;
}

.login-container {
    width: 100%;
    max-width: 980px;
    min-height: 520px;

    display: flex;
    align-items: stretch;

    overflow: hidden;
    background-color: #ffffff;
    border-radius: 18px;

    box-shadow: 0 18px 48px rgba(61, 34, 19, 0.13);
}

/* Left image panel */

.login-image-panel {
    width: 43%;
    min-height: 520px;

    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #8e4822;
}

.login-background-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;
    object-position: center;

    animation: loginImageAppear 1s ease forwards;
}

.login-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(44, 20, 9, 0.42),
        rgba(105, 45, 18, 0.78)
    );

    z-index: 1;
}

.login-side-content {
    width: 100%;
    padding: 35px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;

    opacity: 0;
    transform: translateX(-35px);

    animation: loginContentAppear 0.8s ease 0.25s forwards;
}

.signin-side-content {
    width: 100%;
    padding: 35px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;

    opacity: 1;
    visibility: visible;
    transform: none;
}

.signin-side-content > span {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.signin-side-content h2 {
    margin: 0 0 16px;

    color: #ffffff;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.15;
}

.signin-side-content p {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.7;
}

.login-side-content > span {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-side-content h2 {
    margin: 0 0 16px;

    color: #ffffff;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.15;
}

.login-side-content p {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.7;
}

.login-register-button {
    min-height: 43px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #ffffff;
    background-color: transparent;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;
}

.login-register-button:hover {
    background-color: #ffffff;
    color: #8e4822;
    gap: 15px;
}

/* Right form panel */

.login-form-panel {
    width: 57%;
    min-height: 520px;
    padding: 40px 6%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.signin-form-panel {
    width: 57%;
    min-height: 520px;
    padding: 40px 6%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-wrapper {
    width: 100%;
    max-width: 430px;

    opacity: 0;
    transform: translateX(35px);

    animation: loginContentAppear 0.8s ease 0.35s forwards;
}

.signin-form-wrapper {
    width: 100%;
    max-width: 430px;

    opacity: 1;
    visibility: visible;
    transform: none;
}

/* Heading */

.login-heading {
    margin-bottom: 25px;
}

.login-heading > span {
    color: #8e4822;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-heading h1 {
    margin: 8px 0 10px;

    color: #2c1c12;
    font-size: clamp(28px, 3vw, 35px);
    line-height: 1.2;
}

.login-heading p {
    margin: 0;

    color: #76665d;
    font-size: 13px;
    line-height: 1.6;
}

/* Form */

.login-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-input-group {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-input-group label {
    color: #3b291f;
    font-size: 13px;
    font-weight: 600;
}

.login-input-box {
    width: 100%;
    min-height: 45px;
    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 10px;

    background-color: #fffaf7;

    border: 1px solid #e7dcd4;
    border-radius: 9px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.login-input-box:focus-within {
    background-color: #ffffff;
    border-color: #8e4822;

    box-shadow: 0 0 0 3px rgba(142, 72, 34, 0.08);
}

.login-input-box > i {
    width: 18px;
    flex-shrink: 0;

    color: #9b745e;
    text-align: center;
}

.login-input-box input {
    width: 100%;
    min-width: 0;

    background-color: transparent;
    color: #2c1c12;

    border: none;
    outline: none;

    font-family: inherit;
    font-size: 13px;
}

.login-password-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    color: #8d786b;

    border: none;
    cursor: pointer;
}

/* Login options */

.login-options {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #76665d;
    font-size: 12px;
}

.login-remember input {
    accent-color: #8e4822;
}

.forgot-password {
    color: #8e4822;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* Buttons */

.login-submit-button,
.login-google-button {
    width: 100%;
    min-height: 45px;
    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 30px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.login-submit-button {
    background-color: #8e4822;
    color: #ffffff;
    border: 1px solid #8e4822;
}

.login-submit-button:hover {
    background-color: #713718;
    border-color: #713718;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(142, 72, 34, 0.2);
}

.login-google-button {
    background-color: #ffffff;
    color: #3b291f;

    border: 1px solid #ddd2ca;
}

.login-google-button i {
    color: #db4437;
    font-size: 17px;
}

.login-google-button:hover {
    border-color: #8e4822;
    transform: translateY(-2px);
}

/* Divider */

.login-divider {
    width: 100%;
    margin: 19px 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #918077;
    font-size: 12px;
}

.login-divider::before,
.login-divider::after {
    content: "";

    height: 1px;
    flex: 1;

    background-color: #eadfd7;
}

.login-mobile-register {
    display: none;
}

.auth-message {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 14px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.auth-message-error {
    background-color: #fff1f1;
    color: #a33a3a;
    border: 1px solid #edc8c8;
}

.auth-message-success {
    background-color: #effaf4;
    color: #247044;
    border: 1px solid #bfe7cf;
}

/* Animation */

@keyframes loginImageAppear {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loginContentAppear {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
              Tablet
================================ */

@media screen and (max-width: 900px) {

    .login-section {
        min-height: auto;
        padding: 35px 24px;
    }

    .login-container {
        max-width: 700px;
        min-height: auto;

        flex-direction: column;
    }

    .login-image-panel {
        width: 100%;
        min-height: 300px;
    }

    .login-side-content,
    .signin-side-content {
        max-width: 600px;
        padding: 38px;

        align-items: center;
        text-align: center;
    }

    .login-side-content p,
    .signin-side-content p {
        max-width: 520px;
    }

    .login-form-panel {
        width: 100%;
        min-height: auto;
        padding: 45px 55px;
    }

    .signin-form-panel {
        width: 100%;
        min-height: auto;
        padding: 45px 55px;
    }

    .login-form-wrapper {
        max-width: 100%;
    }

    .signin-form-wrapper {
        max-width: 100%;
    }
}

/* ===============================
              Mobile
================================ */

@media screen and (max-width: 600px) {

    .login-section {
        padding: 20px 14px;
    }

    .login-container {
        border-radius: 14px;
    }

    .login-image-panel {
        min-height: 235px;
    }

    .login-side-content,
    .signin-side-content {
        padding: 27px 21px;
    }

    .login-side-content > span,
    .signin-side-content > span {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .login-side-content h2,
    .signin-side-content h2 {
        margin-bottom: 11px;
        font-size: 20px;
    }

    .login-side-content p,
    .signin-side-content p {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.6;
    }

    .login-register-button {
        display: none;
    }

    .login-form-panel {
        padding: 34px 22px;
    }

    .signin-form-panel {
        padding: 34px 22px;
    }

    .login-heading {
        text-align: center;
    }

    .login-heading h1 {
        font-size: 22px;
    }

    .login-heading p {
        font-size: 12px;
    }

    .login-mobile-register {
        display: block;
        margin-top: 20px;

        color: #76665d;
        font-size: 13px;
        text-align: center;
    }

    .login-mobile-register a {
        color: #8e4822;
        font-weight: 700;
        text-decoration: none;
    }
}

/* ===============================
            Small Mobile
================================ */

@media screen and (max-width: 420px) {

    .login-section {
        padding: 12px 8px;
    }

    .login-container {
        border-radius: 10px;
    }

    .login-image-panel {
        min-height: 205px;
    }

    .login-side-content,
    .signin-side-content {
        padding: 22px 16px;
    }

    .login-side-content h2,
    .signin-side-content h2 {
        font-size: 17px;
    }

    .login-form-panel {
        padding: 28px 15px;
    }

    .signin-form-panel {
        padding: 28px 15px;
    }

    .login-heading h1 {
        font-size: 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}




/* terms and condition */
/*===================================
        Terms & Conditions
===================================*/

.terms-section{

    width:100%;
    padding:80px 5%;

    display:flex;
    justify-content:center;

    background:#fffaf4;

}

.terms-container{

    width:100%;
    max-width:1300px;

}

.terms-header{

    margin-bottom:55px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

}

.terms-header span{

    margin-bottom:12px;

    color:#8e4822;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;

}

.terms-header h1{

    margin-bottom:18px;

    color:#2c1c12;

    font-size:clamp(36px,5vw,56px);

}

.terms-header p{

    max-width:700px;

    color:#74645b;

    line-height:1.9;

    font-size:16px;

}

.terms-date{

    margin-top:22px;
    padding:12px 18px;

    display:flex;
    align-items:center;
    gap:10px;

    background:#ffffff;

    border-radius:30px;

    color:#8e4822;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.terms-content{

    display:flex;
    flex-direction:column;

    gap:24px;

}

.terms-card{

    padding:35px;

    background:#ffffff;

    border-radius:16px;

    border:1px solid #eaded6;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.terms-card:hover{

    transform:translateY(-5px);

    border-color:#cda992;

}

.terms-card h2{

    margin-bottom:18px;

    color:#2c1c12;

    font-size:26px;

}

.terms-card p{

    color:#6d5d54;

    line-height:1.9;

    font-size:15px;

}

/*===================================
        Reveal Animation
===================================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*===================================
        Tablet
===================================*/

@media(max-width:991px){

    .terms-section{

        padding:60px 4%;

    }

    .terms-header h1{
        font-size:26px !important;
    }

    .terms-header p{
        font-size:13.5px !important;
    }

    .terms-card{

        padding:28px !important;

    }

    .terms-card h2{
        font-size:17px !important;
    }

    .terms-card p,
    .terms-card ul,
    .terms-card li {
        font-size:13.5px !important;
    }

}

/*===================================
        Mobile
===================================*/

@media(max-width:600px){

    .terms-section{

        padding:45px 18px;

    }

    .terms-header h1{

        font-size:20px !important;

    }

    .terms-header p{
        font-size:12px !important;
    }

    .terms-date{
        font-size:12px !important;
        padding:8px 14px !important;
    }

    .terms-card{

        padding:20px !important;

    }

    .terms-card h2{

        font-size:14px !important;

    }

    .terms-card p,
    .terms-card ul,
    .terms-card li {

        font-size:12px !important;

    }

}





/* Footer  */
 .whatsapp-float-btn {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 56px;
        height: 56px;
        background-color: #25d366;
        color: #ffffff !important;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        z-index: 9999;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        text-decoration: none;
    }
    .whatsapp-float-btn:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }
    .scroll-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #8e4822;
        color: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        box-shadow: 0 8px 24px rgba(142, 72, 34, 0.25);
        z-index: 9998;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .scroll-top-btn.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .scroll-top-btn:hover {
        background-color: #a2542a;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(142, 72, 34, 0.4);
    }
    /* Tablet Responsive */
    @media (max-width: 991px) {
        .whatsapp-float-btn {
            bottom: 85px;
            right: 20px;
            width: 48px;
            height: 48px;
            font-size: 24px;
        }
        .scroll-top-btn {
            bottom: 25px;
            right: 20px;
            width: 42px;
            height: 42px;
            font-size: 16px;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 600px) {
        .whatsapp-float-btn {
            bottom: 75px;
            right: 15px;
            width: 42px;
            height: 42px;
            font-size: 20px;
        }
        .scroll-top-btn {
            bottom: 20px;
            right: 15px;
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
    }

/*===================================
        FAQ Accordion Styles
===================================*/

.faq-section {
    width: 100%;
    padding: 80px 5% 100px;
    background: #fffaf4;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 900px;
}

.faq-header {
    margin-bottom: 50px;
    text-align: center;
}

.faq-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: #8e4822;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-header h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: #2c1c12;
    margin-bottom: 16px;
}

.faq-header p {
    color: #74645b;
    font-size: 16px;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eaded6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(142, 72, 34, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: #cda992;
    box-shadow: 0 12px 35px rgba(142, 72, 34, 0.06);
}

.faq-item.active {
    border-color: #8e4822;
    box-shadow: 0 15px 40px rgba(142, 72, 34, 0.08);
}

.faq-question-btn {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question-btn h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c1c12;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-btn h3 {
    color: #8e4822;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background-color: #f7f3ed;
    color: #8e4822;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: #8e4822;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 30px 24px;
    color: #6d5d54;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer-content p {
    margin: 0 0 12px;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/*===================================
      FAQ Responsive Overrides
===================================*/

@media screen and (max-width: 991px) {
    .faq-section {
        padding: 60px 4% 80px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h1 {
        font-size: 25px;
    }

    .faq-header p {
        font-size: 13.5px;
    }

    .faq-question-btn {
        padding: 18px 22px;
    }

    .faq-question-btn h3 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 22px 18px;
        font-size: 13.5px;
    }
}

@media screen and (max-width: 600px) {
    .faq-section {
        padding: 45px 18px 60px;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-header h1 {
        font-size: 20px;
    }

    .faq-header p {
        font-size: 12px;
    }

    .faq-question-btn {
        padding: 14px 18px;
    }

    .faq-question-btn h3 {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 18px 14px;
        font-size: 12px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

/*===================================
     Navbar CTA Link Highlight
===================================*/

.navbar-link-highlight {
    background-color: #8e4822;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(142, 72, 34, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navbar-link-highlight:hover {
    background-color: #a2542a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 72, 34, 0.35);
}
.navbar-link-highlight::after {
    display: none !important;
}

/* Responsive overrides for the CTA Highlight Button */
@media screen and (min-width: 991px) and (max-width: 1200px) {
    .navbar-link-highlight {
        padding: 6px 16px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
    .navbar-link-highlight {
        font-size: 12px !important;
        padding: 5px 12px !important;
    }
}

@media screen and (max-width: 767px) {
    .navbar-link-highlight {
        font-size: 15px !important;
        padding: 6px 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .navbar-link-highlight {
        font-size: 13px !important;
        padding: 5px 12px !important;
    }
}

/*===================================
   All Products Grid Scroll Stagger
===================================*/

.all-products-list .all-product-card.reveal-item:nth-child(3n+1) {
    transition-delay: 0.05s;
}
.all-products-list .all-product-card.reveal-item:nth-child(3n+2) {
    transition-delay: 0.15s;
}
.all-products-list .all-product-card.reveal-item:nth-child(3n+3) {
    transition-delay: 0.25s;
}

/*===================================
   Interactive Magnifying Glass Lens
===================================*/

.img-zoom-lens {
    position: absolute;
    border: 3px solid #8e4822; /* matching warm brand color */
    border-radius: 50%;
    width: 160px;
    height: 160px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    pointer-events: none; /* Let events pass to the container */
    display: none; /* Hidden by default */
    background-repeat: no-repeat;
    z-index: 10;
}

/*===================================
     Navbar Mobile Logout Link
===================================*/

.navbar-logout-icon-link {
    display: none;
}

@media screen and (max-width: 767px) {
    .navbar-logout-icon-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: #8e4822;
        font-size: 16px;
        margin-right: 12px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .navbar-logout-icon-link:hover {
        color: #b45f06;
    }
}

/* ==================================
     Dedicated Track Order Page CSS
=================================== */

.track-order-page-wrapper {
    background-color: #faf6f2;
    min-height: calc(100vh - 120px);
    padding: 40px 0;
}

.track-order-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.track-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaded6;
}

.track-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8e4822;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: rgba(142, 72, 34, 0.06);
    border: 1px solid rgba(142, 72, 34, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-back-link i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-back-link:hover {
    color: #ffffff;
    background-color: #8e4822;
    border-color: #8e4822;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(142, 72, 34, 0.25);
}

.track-back-link:hover i {
    transform: translateX(-4px) scale(1.15);
}

.track-back-link:active {
    transform: translateX(-2px) scale(0.97);
}

.track-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #2c1c12;
    margin: 0 0 6px 0;
}

.track-page-meta {
    font-size: 13px;
    color: #837168;
    margin: 0;
}

.track-page-meta strong {
    color: #2c1c12;
}

.track-invoice-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: #8e4822;
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(142, 72, 34, 0.25);
    transition: all 0.25s ease;
}

.track-invoice-btn:hover {
    background-color: #723717;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Split Layout Rows */
.track-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.track-top-row {
    margin-bottom: 28px;
}

.track-top-row .track-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.track-right-cards-row .track-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.track-card {
    background-color: #ffffff;
    border: 1px solid #eaded6;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.track-card.margin-top {
    margin-top: 24px;
}

.track-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #2c1c12;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f2e7e0;
}

.track-card-title i {
    color: #8e4822;
}

/* Items List Left Panel */
.track-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.track-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5efe9;
}

.track-item-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.track-item-img {
    width: 105px;
    height: 105px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #eaded6;
    flex-shrink: 0;
}

.track-item-details {
    flex: 1;
}

.track-item-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9d806e;
    letter-spacing: 0.5px;
    display: block;
}

.track-item-name {
    font-size: 17px;
    font-weight: 800;
    color: #2c1c12;
    margin: 4px 0 8px 0;
}

.track-item-name a {
    color: #2c1c12;
    text-decoration: none;
    transition: color 0.2s ease;
}

.track-item-name a:hover {
    color: #8e4822;
}

.track-item-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #837168;
}

.track-item-meta strong {
    color: #2c1c12;
}

.track-item-total {
    font-size: 18px;
    font-weight: 800;
    color: #8e4822;
}

/* Price Summary */
.track-price-summary {
    background-color: #fff7f2;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #f0e2d8;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6d5d54;
}

.summary-row.grand-total {
    border-top: 1px solid #eaded6;
    padding-top: 10px;
    font-size: 17px;
    font-weight: 800;
    color: #2c1c12;
}

.summary-row.grand-total strong {
    color: #8e4822;
}

/* Delivery Address Body Styling */
.track-address-body {
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.address-line i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff7f2;
    color: #8e4822;
    border: 1px solid #f0e2d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.addr-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9d806e;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.track-address-body strong {
    font-size: 15px;
    font-weight: 800;
    color: #2c1c12;
}

.track-address-body p {
    font-size: 14px;
    color: #4b382a;
    margin: 0;
    line-height: 1.45;
}

.track-address-body p.phone {
    font-size: 14px;
    font-weight: 700;
    color: #8e4822;
}

/* Right Panel Vertical Timeline */
.status-primary-card {
    background-color: #ffffff;
}

.status-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f2e7e0;
}

.status-badge-row span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #837168;
}

.status-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: capitalize;
}

.status-pill.status-pending { background: #fff1d8; color: #9b650f; }
.status-pill.status-processing { background: #e0f2fe; color: #0369a1; }
.status-pill.status-shipped { background: #fae8ff; color: #86198f; }
.status-pill.status-delivered { background: #dcfce7; color: #15803d; }

.vertical-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 6px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.v-step {
    display: flex;
    gap: 18px;
    position: relative;
}

.v-step::after {
    content: "";
    position: absolute;
    top: 42px;
    left: 21px;
    width: 2px;
    height: calc(100% + 30px);
    background-color: #e0d0c3;
    z-index: 1;
}

.v-step:last-child::after {
    display: none;
}

.v-step-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f5efe9;
    color: #9d806e;
    border: 2px solid #e0d0c3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.v-step-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: #9d806e;
    margin: 0 0 5px 0;
}

.v-step-content p {
    font-size: 13px;
    color: #6d5d54;
    margin: 0;
    line-height: 1.45;
}

.v-step-time {
    font-size: 11px;
    font-weight: 700;
    color: #8e4822;
    display: block;
    margin-top: 6px;
}

.v-step.active .v-step-marker {
    background-color: #8e4822;
    color: #ffffff;
    border-color: #8e4822;
    box-shadow: 0 0 0 4px rgba(142, 72, 34, 0.2);
    animation: statusMarkerPulse 2s infinite ease-in-out;
}

.v-step.active .v-step-marker i {
    animation: statusIconActiveAnim 2.2s infinite ease-in-out;
    display: inline-block;
}

/* Specific icon-tailored continuous animations */
.v-step.active .v-step-marker i.fa-gears,
.v-step.active .v-step-marker i.fa-gear,
.v-step.active .v-step-marker i.fa-cog {
    animation: statusGearRotate 3s linear infinite !important;
}

.v-step.active .v-step-marker i.fa-truck-fast,
.v-step.active .v-step-marker i.fa-truck {
    animation: statusTruckDrive 1.8s ease-in-out infinite !important;
}

.v-step.active .v-step-marker i.fa-clock {
    animation: statusClockSpin 3s ease-in-out infinite !important;
}

.v-step.active .v-step-marker i.fa-house-chimney-check,
.v-step.active .v-step-marker i.fa-box-circle-check,
.v-step.active .v-step-marker i.fa-circle-check,
.v-step.active .v-step-marker i.fa-house {
    animation: statusHousePulse 1.6s ease-in-out infinite !important;
}

.v-step.completed .v-step-marker i {
    animation: statusCheckPulse 2.5s ease-in-out infinite;
    display: inline-block;
}

.v-step.active .v-step-content h4 {
    color: #8e4822;
}

.v-step.completed .v-step-marker {
    background-color: #23834c;
    color: #ffffff;
    border-color: #23834c;
}

.v-step.completed::after {
    background-color: #23834c;
}

.v-step.completed .v-step-content h4 {
    color: #23834c;
}

/* Keyframe animations for track-order status icons */
@keyframes statusMarkerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 72, 34, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(142, 72, 34, 0);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(142, 72, 34, 0);
        transform: scale(1);
    }
}

@keyframes statusIconActiveAnim {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.15);
    }
}

@keyframes statusGearRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes statusTruckDrive {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(3px) translateY(-1px);
    }
    75% {
        transform: translateX(-2px) translateY(0);
    }
}

@keyframes statusClockSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes statusHousePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes statusCheckPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

.track-details-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-row span {
    font-size: 11px;
    color: #837168;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-row strong {
    font-size: 14px;
    color: #2c1c12;
}

.payment-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    width: fit-content;
}

.payment-badge.paid { background: #dcfce7; color: #15803d; }
.payment-badge.unpaid { background: #fee2e2; color: #b91c1c; }

.notes-para {
    font-size: 13px;
    color: #4b382a;
    background: #fff7f2;
    padding: 10px 14px;
    border-radius: 10px;
    border-left: 3px solid #8e4822;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .track-grid-row {
        grid-template-columns: 1fr;
    }
    .track-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==================================
     Order Tracking Modal Styles
=================================== */

.order-track-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-track-modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 620px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #eaded6;
    overflow: hidden;
    animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.order-track-modal-header {
    padding: 22px 28px;
    background-color: #fff7f2;
    border-bottom: 1px solid #eaded6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-track-modal-subtitle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8e4822;
    display: block;
    margin-bottom: 2px;
}

.order-track-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #2c1c12;
    margin: 0;
}

.order-track-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d0c3;
    background: #ffffff;
    color: #6d5d54;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.order-track-modal-close:hover {
    background-color: #8e4822;
    color: #ffffff;
    border-color: #8e4822;
}

.order-track-modal-body {
    padding: 28px;
}

/* Stepper Timeline */
.order-track-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.track-step .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f5efe9;
    color: #9d806e;
    border: 2px solid #e0d0c3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.track-step .step-label {
    font-size: 11px;
    font-weight: 700;
    color: #9d806e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-step.active .step-icon {
    background-color: #8e4822;
    color: #ffffff;
    border-color: #8e4822;
    box-shadow: 0 0 0 5px rgba(142, 72, 34, 0.2);
}

.track-step.active .step-label {
    color: #8e4822;
}

.track-step.completed .step-icon {
    background-color: #23834c;
    color: #ffffff;
    border-color: #23834c;
}

.track-step.completed .step-label {
    color: #23834c;
}

.track-line {
    flex: 1;
    height: 3px;
    background-color: #e0d0c3;
    margin: 0 4px;
    margin-bottom: 22px;
}

/* Detailed Grid */
.order-track-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.track-info-box {
    background-color: #faf6f2;
    border: 1px solid #eaded6;
    border-radius: 12px;
    padding: 14px 16px;
}

.track-info-box span {
    display: block;
    font-size: 11px;
    color: #837168;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-info-box strong {
    font-size: 14px;
    color: #2c1c12;
    font-weight: 700;
}

.order-track-notes-box {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 14px 16px;
}

.order-track-notes-box .notes-title {
    font-size: 12px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-track-notes-box p {
    font-size: 13px;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 576px) {
    .order-track-modal-card {
        max-width: 100%;
        border-radius: 16px;
    }
    .order-track-modal-body {
        padding: 20px 16px;
    }
    .order-track-timeline .step-label {
        font-size: 9px;
    }
    .track-step .step-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .order-track-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================
     Scroll Reveal Left & Right & Up CSS
=================================== */

.reveal-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered vertical transitions for product grid cards, all-products grid cards, blog grid cards, FAQ items & trust logos */
.product-card.reveal-up:nth-child(1), .all-product-card.reveal-up:nth-child(1), .blog-card.reveal-up:nth-child(1), .faq-item.reveal-up:nth-child(1), .trust-logo.reveal-up:nth-child(1) { transition-delay: 0.08s; }
.product-card.reveal-up:nth-child(2), .all-product-card.reveal-up:nth-child(2), .blog-card.reveal-up:nth-child(2), .faq-item.reveal-up:nth-child(2), .trust-logo.reveal-up:nth-child(2) { transition-delay: 0.16s; }
.product-card.reveal-up:nth-child(3), .all-product-card.reveal-up:nth-child(3), .blog-card.reveal-up:nth-child(3), .faq-item.reveal-up:nth-child(3), .trust-logo.reveal-up:nth-child(3) { transition-delay: 0.24s; }
.product-card.reveal-up:nth-child(4), .all-product-card.reveal-up:nth-child(4), .blog-card.reveal-up:nth-child(4), .faq-item.reveal-up:nth-child(4), .trust-logo.reveal-up:nth-child(4) { transition-delay: 0.32s; }
.product-card.reveal-up:nth-child(5), .all-product-card.reveal-up:nth-child(5), .blog-card.reveal-up:nth-child(5), .faq-item.reveal-up:nth-child(5) { transition-delay: 0.40s; }
.product-card.reveal-up:nth-child(6), .all-product-card.reveal-up:nth-child(6), .blog-card.reveal-up:nth-child(6), .faq-item.reveal-up:nth-child(6) { transition-delay: 0.48s; }
.faq-item.reveal-up:nth-child(7) { transition-delay: 0.56s; }
.faq-item.reveal-up:nth-child(8) { transition-delay: 0.64s; }
.faq-item.reveal-up:nth-child(9) { transition-delay: 0.72s; }
.faq-item.reveal-up:nth-child(10) { transition-delay: 0.80s; }

@media screen and (max-width: 767px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(30px);
    }
    .reveal-left.animate,
    .reveal-right.animate {
        transform: translateY(0);
    }
}
