:root {
    --bg: rgba(243, 233, 225, 1);
    --dark: rgba(72, 62, 53, 1);
    --accent: rgb(131, 60, 30);
    --white: #ffffff;
    --gray: #8b8178;
    --bread-come-gray: rgba(152, 128, 102, 1);
    --brown: rgba(163, 90, 60, 1);
    --black: rgba(26, 26, 26, 1);

    --silver-gray: rgba(153, 153, 153, 1);
    --font: "Onest", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red !important; */
}

/* Set 1rem = 10px */
html {
    font-size: 62.5%;
}
html,
body {
    overflow-x: hidden;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--dark);
    padding: 0;
    margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

main {
    padding: 0 !important;
    margin: 0 !important;
}

.main-layout {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pt-0 {
    padding-top: 0;
}
.pb-0 {
    padding-bottom: 0;
}
/* ==============================
   HEADER
============================== */
.site-header {
    background: var(--bg);
    padding: 1.6rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 2px;
}
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--accent);
    text-align: center;
}

/* Nav */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--brown);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--brown);
    border-radius: 50px;
    padding: 1.4rem 1.6rem;
    background: #ffffff00;
}
.search-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brown);
    font-size: 1.6rem;
    display: none;
    padding: 0;
    line-height: 1;
}
.search-clear .bi-x {
    font-size: 2rem;
}
.search-clear.show {
    display: block;
}
.search-box input {
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 1.6rem;
    width: 140px;
    background: transparent;
    color: var(--brown);
}
.search-box i {
    color: var(--brown);
    font-size: 1.6rem;
}
input::placeholder {
    color: var(--brown);
}

/* Icon Buttons */
.icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    transition: opacity 0.2s;
}
.icon-btn:hover {
    opacity: 0.85;
    color: var(--white);
}

.icon-btn.position-relative {
    position: relative;
}

.badge-count {
    position: absolute;
    top: -16px;
    right: -4px;
    background: #b17c65;
    color: #fff;
    font-size: 1.50rem;
    line-height: 1;
    min-width: 35px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.field-error-text {
    color: #dc3545;
    font-size: 1.3rem;
    margin-top: 4px;
    line-height: 1.3;
}

.has-field-error {
    border-color: #dc3545 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    /* z-index: 99999; */
}

.hamburger span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background: var(--dark);
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

/* .hamburger.active span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg);
} */

.nav-close{
    display: none;
}

/* ==============================
   HERO BANNER
============================== */

/* ==============================
   HERO BANNER SLIDER
============================== */
/* Remove container from banner */
.hero-banner {
    width: 100%;
    margin: 0;
}
.hero-banner {
    padding-top: 16.1rem;
}

.hero-banner .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom indicators */
.hero-banner .carousel-indicators button {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    border: none;
}
.hero-banner .carousel-indicators button.active {
    opacity: 1;
}
/* Full width sections */
.hero-banner,
.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
}

/* ==============================
   SECTION TWO
============================== */
.section-two {
    width: 100%;
    line-height: 0;
}

.section-full-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================
   PRODUCTS SECTION
============================== */
.products-section {
    padding: 8rem 0;
    background: var(--bg);
}

.products-header {
    margin-bottom: 4rem;
}

.products-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.products-title {
    font-size: 5rem;
    font-weight: 600;
    color: var(--black);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.6rem;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font);
    color: var(--silver-gray);
    cursor: pointer;
    border-radius: 5rem;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    /* background: var(--dark); */
    color: var(--dark);
}

/* View All */
.view-all {
    font-size: 1.7rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}
.view-all:hover {
    color: var(--accent);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

/* Product Card */
.product-card {
    background: transparent;
    cursor: pointer;
}
.product-card {
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 1.6rem;
    border-radius: 2rem;
    padding: 0.8rem;
    background: rgba(216, 205, 189, 1);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.6rem;
    transition: transform 0.4s;
    cursor: auto;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark);
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.wishlist-btn .bi-heart::before {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 4;
    color: var(--white);
}
.product-card:hover .wishlist-btn {
    opacity: 1;
}
.wishlist-btn.active {
    opacity: 1;
}
.wishlist-btn .bi-heart-fill::before {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 4;
    color: var(--white);
}

/* Product Info */
.product-info {
    padding: 0 0.4rem;
}

.product-name {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.6rem;
    cursor: pointer;
}

.product-price {
    font-size: 3.4rem;
    color: var(--brown);
    font-weight: 300;
    margin-bottom: 1.2rem;
    cursor: pointer;
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-family: var(--font);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}
.product-card:hover .add-to-cart {
    opacity: 1;
}

/* ==============================
   TIMELESS FABRICS SECTION
============================== */
/* ==============================
   TIMELESS FABRICS SECTION
============================== */
.timeless-section {
    padding: 8rem 0;
    background: var(--bg);
}

.timeless-section .section-full-img {
    width: 100%;
    /*height: 60rem;
    */
    object-fit: cover;
    border-radius: 2.6rem;
    display: block;
    -webkit-border-radius: 2.6rem;
    -moz-border-radius: 2.6rem;
    -ms-border-radius: 2.6rem;
    -o-border-radius: 2.6rem;
}

/* ==============================
   TIMELESS COLLAGE SECTION
============================== */
.timeless-collage-section {
    padding: 8rem 0;
    background: var(--bg);
}

.timeless-collage-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================
   BLOG SECTION
============================== */
.blog-section {
    padding: 8rem 0;
    background: var(--bg);
}

/* Header */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title {
    font-size: 5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.blog-subtitle {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--silver-gray);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: start;
}

/* Blog Card */
.blog-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card {
    cursor: pointer;
    transition: transform 0.2s;
    height: 100%;
    min-width: 0;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    margin-bottom: 1.6rem;
    width: 100%;
    aspect-ratio: 1/1;
}

.blog-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

/* Blog Info */
.blog-info {
    min-width: 0;
}

.blog-name {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-desc {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--silver-gray);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* newsletter section */
.newsletter {
    padding: 0 0rem 5rem;
}

.newsletter-inner {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
}

.newsletter-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.newsletter-form-wrap {
    position: absolute;
    top: 55%;
    left: 24rem;
    transform: translateY(-50%);
    width: 55rem;
}

.newsletter-form {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.8rem;
    border: 0.1rem solid rgba(163, 90, 60, 0.4);
    border-radius: 0.8rem 0 0 0.8rem;
    background: #ffffff00;
    color: var(--text-light);
}

.newsletter-input-wrap svg {
    flex-shrink: 0;
    color: rgba(163, 90, 60, 0.4);
}

.newsletter-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 2rem;
    color: #6e542e;
    outline: none;
}

.newsletter-input-wrap input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0 0.8rem 0.8rem 0;
    padding: 1.4rem 3rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.newsletter-btn::before {
    content: "";
    position: absolute;
    inset: 0.4rem;
    border: 0.1rem dashed rgba(255, 255, 255, 0.5);
    border-radius: 0.4rem;
    pointer-events: none;
}

.newsletter-btn:hover {
    background: var(--accent);
}

.newsletter-feedback {
    flex: 0 0 100%;
    border-radius: 0.8rem;
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
}

.newsletter-feedback.success {
    background: var(--theme-success-bg, #e9f7eb);
    color: var(--theme-success-text, #17653b);
}

.newsletter-feedback.error {
    background: var(--theme-error-bg, #fdecec);
    color: var(--theme-error-text, #9f1d1d);
}

/* ==============================
   FOOTER
============================== */
/* ==============================
   FOOTER
============================== */
.site-footer {
    background-image: url("/assets/images/common/Footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0 0;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

/* Brand Column */
/* Footer Brand */
.footer-brand {
    padding-right: 8.5rem;
}
.footer-logo-img {
    width: 20rem;
    height: auto;
    display: block;
    margin-bottom: 1.6rem;
}

.footer-logo-main {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.3rem;
    line-height: 1.1;
}

.footer-logo-sub {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.3rem;
    line-height: 1.1;
}

.footer-tagline {
    font-size: 2rem;
    font-style: italic;
    color: var(--accent);
    font-family: "Georgia", serif;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.footer-divider span {
    flex: 1;
    height: 0.1rem;
    background-image: linear-gradient(
        to right,
        rgba(163, 90, 60, 0.5) 50%,
        transparent 50%
    );
    background-size: 0.8rem 0.1rem;
    background-repeat: repeat-x;
}

.footer-divider i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-desc {
    font-size: 1.8rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Footer Columns */
.footer-col {
    padding: 0 3rem;
    border-left: 0.15rem dashed rgba(163, 90, 60, 0.4);
}
.footer-heading {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.13rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.footer-heading-divider {
    width: 3rem;
    height: 0.2rem;
    background: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.5;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    transition:
        color 0.2s,
        padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.4rem;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.footer-contact a {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
}
.footer-contact span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
}
.footer-contact li:hover a {
    color: var(--accent);
}

/* Copyright Bar */
.footer-bottom {
    border-top: 0.1rem solid rgba(163, 90, 60, 0.15);
    padding: 1.8rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.8rem;
    color: rgba(91, 79, 62, 1);
    font-weight: 400;
    margin: 0;
}

/* shop page css starts here */

/* ==============================
   BREADCRUMB
============================== */
.breadcrumb-wrap {
    padding: 16.1rem 0 1.4rem 0;
    /* border-bottom: 0.1rem solid rgba(163, 90, 60, 0.15); */
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
}

.breadcrumb-nav a {
    color: var(--bread-come-gray);
    font-weight: 600;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav i {
    font-size: 2rem;
    color: var(--bread-come-gray);
    font-weight: 600;
}

.breadcrumb-nav span {
    color: var(--bread-come-gray);
    font-size: 2rem;
    font-weight: 600;
}

/* ==============================
   SHOP SECTION
============================== */
.shop-section {
    padding: 4rem 0 8rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 35rem 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}
.shop-products {
    position: relative;
}
.sort-wrap {
    position: absolute !important;
    right: 2rem;
    top: 6rem;
}
.sort-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.6rem;
    min-width: 18rem;
    cursor: pointer;
    background: #ffffff00;
    border: 0.1rem solid var(--brown);
    border-radius: 0.8rem;
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font);
    transition: background 0.15s;
}
.sort-btn:hover {
    background: var(--color-cream-dark, #f3ebe0);
}
.sort-btn .label {
    flex: 1;
    text-align: left;
}
.sort-btn .chevron {
    transition: transform 0.2s;
    color: var(--brown);
}
.sort-btn.open .chevron {
    transform: rotate(180deg);
}

.sort-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    background: var(--bg);
    border: 0.1rem solid var(--color-border, #c8a882);
    border-radius: 0.8rem;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 0.4rem 1.6rem rgba(74, 55, 40, 0.12);
    list-style: none;
    margin: 0;
    padding: 0;
}
.sort-menu.open {
    display: block;
}
.sort-menu li {
    padding: 1rem 1.6rem;
    font-size: 1.8rem;
    color: var(--black);
    cursor: pointer;
    transition: background 0.12s;
    border-bottom: 0.1rem solid var(--brown);
}
.sort-menu li:last-child {
    border-bottom: none;
}
.sort-menu li:hover {
    background: var(--brown);
    color: #fff;
}
.sort-menu li.active {
    color: #fff;
    font-weight: 400;
    background: var(--brown);
}
/* ==============================
   SIDEBAR
============================== */
.sidebar-title {
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2.4rem;
}
.shop-side-bar-filter-box {
    background-color: rgba(234, 219, 198, 1);
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
}
.filter-group {
    /* border-bottom: 0.1rem solid var(--brown); */
    margin-bottom: 0;
}

.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2rem 1.4rem;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
    border-bottom: 0.1rem solid var(--brown);
}
.filter-group-header span {
    color: rgba(66, 47, 29, 1);
}
.filter-group-body.show {
    padding: 1.8rem;
}
.filter-group-header:hover {
    color: var(--accent);
}

.filter-group-header i {
    font-size: 2rem;
    font-weight: 600;
    transition: transform 0.3s;
    color: var(--black);
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}

.filter-group-header.open i {
    transform: rotate(180deg);
}

.filter-group-body {
    display: none;
    padding-bottom: 1.4rem;
}

.filter-group-body.show {
    display: block;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.83rem;
    font-weight: 400;
    color: rgba(66, 47, 29, 1);
    margin-bottom: 1rem;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
    accent-color: var(--accent);
    cursor: pointer;
}

/* Price Range */
/* Price Slider */
.price-slider-wrap {
    margin: 1rem 0 1.6rem;
}

/* noUiSlider custom style */
.noUi-connect {
    background: var(--brown) !important;
}

.noUi-horizontal {
    height: 0.4rem !important;
}

.noUi-handle {
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background: var(--brown) !important;
    border: none !important;
    box-shadow: none !important;
    top: -0.7rem !important;
    cursor: pointer !important;
}

.noUi-handle::before,
.noUi-handle::after {
    display: none !important;
}

.noUi-target {
    background: var(--silver-gray) !important;
    border: none !important;
    box-shadow: none !important;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.price-label-box {
    flex: 1;
    text-align: center;
    font-size: 1.3rem;
    color: var(--black);
    background: transparent;
    padding: 0.7rem 1rem;
    border-radius: 0.8rem;
    border: 0.1rem solid var(--brown);
    font-family: var(--font);
}
.border-bottom-zero {
    border: 0;
}

/* ==============================
   SHOP PRODUCTS
============================== */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    margin-bottom: 4rem;
}
.shop-products {
    padding-top: 13rem;
}

/* ==============================
   PAGINATION
============================== */
.pagination-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.results-count {
    font-size: 1.8rem;
    color: rgba(107, 107, 107, 1);
    font-family: var(--font);
    margin: 0;
}

.results-count__current,
.results-count__total {
    font-weight: 500;
    color: var(--brown);
}
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.shop-pagination {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.shop-pagination-count {
    font-size: 1.6rem;
    color: rgba(107, 107, 107, 1);
    font-family: var(--font);
    margin: 0;
    text-align: center;
}

.shop-pagination-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.shop-pagination-list li {
    display: flex;
}

.page-btn {
    background: none;
    border: 0.1rem solid var(--brown);
    border-radius: 0.6rem;
    padding: 0.8rem 1.4rem;
    font-size: 1.7rem;
    font-weight: 500;
    font-family: var(--font);
    color: rgba(107, 107, 107, 1);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.page-btn:hover,
.page-btn.active {
    background: var(--brown);
    border-color: var(--brown);

    color: var(--white);
}

.page-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ==============================
   BEST PRODUCTS
============================== */
.best-products {
    margin-top: 4rem;
}

/* product details page starts*/

/* ==============================
   PRODUCT DETAIL
============================== */
.product-detail-section {
    padding: 4rem 0 8rem;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
    align-items: center;
    padding-top: 2rem;
}

/* Main Image */
.product-main-img {
    border-radius: 3.4rem;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 1/1;
    -webkit-border-radius: 3.4rem;
    -moz-border-radius: 3.4rem;
    -ms-border-radius: 3.4rem;
    -o-border-radius: 3.4rem;
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thumbnails-track {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex: 1;
}

.thumb-item {
    width: 7rem;
    height: 7rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 0.2rem solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--accent);
}

.thumb-arrow {
    background: none;
    border: 0.1rem solid rgba(163, 90, 60, 0.3);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.thumb-arrow:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

/* Product Info Right */
.product-info-detail {
    position: sticky;
    top: 10rem;
    padding-top: 0;
}

.product-detail-name {
    font-size: 5rem;
    font-weight: 500;
    color: rgba(113, 102, 91, 1);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.product-stars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    color: var(--brown);
    font-size: 3rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.product-detail-price {
    font-size: 4.2rem;
    font-weight: 400;
    color: var(--brown);
}

.stock-badge {
    background: var(--brown);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0.4rem 1.2rem;
    border-radius: 5rem;
}

.product-detail-divider {
    border-top: 0.15rem dashed var(--brown);
    margin: 1.6rem 0;
}

.product-detail-desc {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(102, 89, 77, 1);
    line-height: 1.8;
    margin-bottom: 2.4rem;
}

/* Specs Grid */
.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 2.4rem;
    border: 0.1rem solid #e0dede78;
    border-radius: 1.2rem;
    overflow: hidden;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.6rem;
    border-right: 0.1rem solid #a35a3c3d;
    border-bottom: 0.1rem solid #a35a3c3d;
}

/* Remove right border — last column */
.spec-item:nth-child(3),
.spec-item:nth-child(6) {
    border-right: none;
}

/* Remove bottom border — last row */
.spec-item:nth-child(4),
.spec-item:nth-child(5),
.spec-item:nth-child(6) {
    border-bottom: none;
}

.spec-label {
    font-size: 1.6rem;
    color: rgba(128, 125, 126, 1);
    font-weight: 400;
}

.spec-value {
    font-size: 1.6rem;
    color: rgba(60, 66, 66, 1);
    font-weight: 500;
}

.product-option-field {
    display: flex;
    align-items: center;
    min-width: 22rem;
    flex-shrink: 0;
}

.product-option-field label {
    display: none;
}

.product-option-select {
    width: 100%;
    height: 4.4rem;
    padding: 0 4.2rem 0 1.4rem;
    border: 0.1rem solid var(--brown);
    border-radius: 0.8rem;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23835A3C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
    background-size: 1.2rem 0.8rem;
    color: var(--brown);
    font-size: 1.5rem;
    font-weight: 500;
    font-family: var(--font);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Quantity + Add to Cart */
.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 0.1rem solid var(--brown);
    border-radius: 0.8rem;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.4rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--black);
    transition: background 0.2s;
    font-family: var(--font);
    line-height: 1;
}

.qty-value {
    padding: 0.8rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    min-width: 8rem;
    text-align: center;
    /* border-left: 0.1rem solid var(--brown);
    border-right: 0.1rem solid var(--brown); */
}

.add-to-cart-btn {
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: opacity 0.2s;
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.4rem;
    width: auto; /* ← remove flex:1, add this */
}

.add-to-cart-btn:hover {
    opacity: 0.85;
}

/* ==============================
   PRODUCT TABS
============================== */
.product-tabs {
    margin-bottom: 6rem;
    /* border-top: 0.1rem solid rgba(163, 90, 60, 0.15); */
    padding-top: 0;
}

.tabs-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.6rem 2.4rem;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font);
    color: var(--gray);
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 0.2rem solid transparent;
    margin-bottom: -0.1rem;
}

.tab-btn.active {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

.write-review-btn {
    position: absolute; /* ← position it absolutely */
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--font);
    cursor: pointer;
    transition: opacity 0.2s;
}

.write-review-btn:hover {
    opacity: 0.85;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

.tab-desc {
    font-size: 2.2rem;
    color: var(--gray);
    line-height: 1.9;
    text-align: center;
    font-weight: 400;
}

/* ==============================
   REVIEWS
============================== */
.review-form {
    margin-bottom: 3rem;
    display: none;
}

.review-form-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 0;
    border: none;
    border-radius: 0;
}

.rating-selector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;
    border: 0.1rem solid rgba(198, 152, 133, 1);
    border-radius: 1.2rem;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
}

.rating-selector > span {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--black);
}

/* Horizontal rating options */
.rating-options {
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.rating-options label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
}

.rating-options input[type="checkbox"] {
    width: 2.56rem;
    height: 2.56rem;
    color: var(--accent);
    border-radius: 0.2rem;
}

.rating-options i {
    color: var(--brown);
    font-size: 2.2rem;
}

/* Comment section */
.comment-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
    border: 0.1rem solid rgba(198, 152, 133, 1);
    border-radius: 1rem;
}

.review-textarea {
    width: 100%;
    height: 8rem;
    border: none;
    border-bottom: 0.1rem solid rgba(163, 90, 60, 0.2);
    border-radius: 0;
    padding: 0.8rem 0;
    font-family: var(--font);
    font-size: 1.4rem;
    color: var(--dark);
    resize: none;
    outline: none;
    background: transparent;
}

.review-textarea:focus {
    border-bottom-color: var(--accent);
}

.submit-review-btn {
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0.6rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-family: var(--font);
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
    width: auto;
}

.submit-review-btn:hover {
    opacity: 0.85;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.review-card {
    border: 0.1rem solid var(--brown);
    border-radius: 1.2rem;
    padding: 1.6rem;
    background: #ffffff00;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
}

.review-stars {
    color: var(--brown);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(81, 79, 110, 1);
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(23, 15, 73, 1);
    margin: 0;
}

.reviewer-role {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(111, 108, 144, 1);
    margin: 0;
}

/* Similar Products */
.similar-products {
    margin-top: 2rem;
}

/* ==============================
   ABOUT US PAGE
============================== */

/* Banner */
.about-banner {
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

/* Section 1 */
.about-section-1 {
    padding: 6rem 0;
}

.about-layout-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Image Collage */
.about-images-collage {
    position: relative;
    height: 70rem;
}

.about-img-top {
    position: absolute;
    top: 0;
    right: 0;
    height: 60rem;
    object-fit: cover;
    z-index: 2;
}

.about-img-bottom {
    position: absolute;
    top: 170px;
    left: 115px;
    height: 59rem;
    object-fit: cover;
    z-index: 2;
}

/* Text */
.about-heading {
    font-size: 13rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 2rem;
}

.about-text-1 p {
    font-size: 2.2rem;
    color: rgba(149, 149, 149, 1);
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

/* Section 2 */
.about-section-2 {
    width: 100%;
    line-height: 0;
    padding: 6rem 0;
}

.about-full-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 3 */
.about-section-3 {
    padding: 6rem 0;
}

.about-layout-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-3 img {
    width: 100%;
    /* height: 40rem; */
    object-fit: cover;
    border-radius: 1.6rem;
}

.about-label {
    font-size: 2.56rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.1rem;
    display: block;
    margin-bottom: 1rem;
}

.about-text-3 h2 {
    font-size: 5.82rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text-3 p {
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(149, 149, 149, 1);
    line-height: 1.9;
    margin-bottom: 1.6rem;
}

/* Section 4 */
.about-section-4 {
    padding: 6rem 0;
    width: 100%;
    line-height: 0;
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-section {
    padding: 8rem 0 8rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left */
.contact-title {
    font-size: 9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.contact-title span {
    color: var(--brown);
}

.contact-tagline {
    font-size: 3.6rem;
    font-weight: 400;
    /* font-style: italic; */
    color: var(--brown);
    font-family: "Over the Rainbow", cursive;
    margin-bottom: 1.6rem;
}

.contact-desc {
    font-size: 2rem;
    color: rgba(32, 33, 36, 1);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 3.2rem;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.contact-icon {
    width: 5.7rem;
    height: 5.7rem;
    border-radius: 50%;
    border: 0.15rem dashed var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-detail-item span,
.contact-detail-item a {
    font-size: 2.4rem;
    color: rgba(25, 24, 20, 1);
    font-weight: 400;
    text-decoration: none;
    line-height: 1.6;
    padding-top: 0.8rem;
    transition: color 0.2s;
}

.contact-detail-item a:hover {
    color: var(--accent);
}

/* Image Collage */
.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-collage {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 540px;
}

/* Top large image */
.cont-img-top {
    width: 80%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    align-self: flex-end;
}

/* 2x2 grid for bottom 4 images */
.cont-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 12px;
}

.cont-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* First image slightly offset to overlap upward */
.cont-img-grid img:first-child {
    margin-top: -60px;
    height: calc(100% + 60px);
}

/* ── BOTTOM ROW ── */
.collage-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-left: 47%; /* aligns under right column only */
}

.collage-bottom img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Form */
.contact-form-wrap {
    border: 0.15rem dashed var(--brown);
    border-radius: 1.2rem;
    padding: 2.4rem;
}

.form-title {
    font-size: 3.6rem;
    color: var(--brown);
    font-family: "Over the Rainbow", cursive;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.form-desc {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(124, 124, 124, 1);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 0.1rem solid var(--brown);
    border-radius: 0.8rem;
    font-family: var(--font);
    font-weight: 400;
    font-size: 2rem;
    color: rgba(91, 91, 91, 1);
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--accent);
}
.form-input::placeholder {
    color: var(--gray);
}

.form-textarea {
    width: 100%;
    height: 12rem;
    padding: 1.2rem 1.6rem;
    border: 0.1rem solid var(--brown);
    border-radius: 0.8rem;
    font-family: var(--font);
    font-weight: 400;
    font-size: 2rem;
    color: rgba(91, 91, 91, 1);
    background: transparent;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    border-color: var(--accent);
}
.form-textarea::placeholder {
    color: var(--gray);
}

.form-submit {
    width: 50%;
    padding: 1.4rem;
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.85;
}

/* ==============================
   FAQ PAGE
============================== */
.faq-section {
    padding: 4rem 0 8rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.faq-title {
    font-size: 9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.faq-tagline {
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--brown);
    font-family: "Over the Rainbow", cursive;
    margin-bottom: 1.6rem;
}

.faq-desc {
    font-size: 2rem;
    color: rgba(32, 33, 36, 1);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 3.2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(234, 219, 198, 1);
    border-radius: 0.82rem;
    overflow: hidden;
    /* border: 0.1rem solid rgba(163, 90, 60, 0.1); */
    box-shadow: 0 4px 16px rgba(149, 149, 149, 0.25);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2.4rem 2.4rem;
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 2.4rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 2.4rem 2rem 5.6rem;
}

.faq-answer p {
    font-size: 1.8rem;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-right {
    position: sticky;
    top: 10rem;
}

.faq-img {
    width: 100%;
    height: 55rem;
    object-fit: cover;
    border-radius: 1.6rem;
    display: block;
}

/* our blog */

.blog-hero {
    padding: 2rem 6rem;
}

.blog-hero-img {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    /* height: 50rem; */
}

.blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-overlay h1 {
    font-family: var(--font);
    font-size: 13rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.1rem;
    font-family: var(--font);
}

/* section two our blog */
.latest-posts {
    padding: 4rem 6rem;
}

.section-label {
    font-family: var(--font);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: rgba(27, 27, 27, 1);
    margin-bottom: 2.4rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

.post-card {
    cursor: pointer;
}

.post-thumb {
    border-radius: 1rem;
    overflow: hidden;
    height: 26rem;
    margin-bottom: 1.4rem;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-thumb img {
    transform: scale(1.04);
}

.post-tag {
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(151, 122, 80, 1);
    margin-bottom: 0.8rem;
}

.post-title {
    font-family: var(--font);
    font-size: 3.6rem;
    font-weight: 400;
    color: rgba(27, 27, 27, 1);
    line-height: 1.4;
}

/* section three */
.featured-post {
    padding: 0 6rem 5rem;
}

.featured-img {
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
    display: block;
}

/* blog-details */

.blog-detail {
    padding: 4rem 6rem;
    /* max-width: 120rem;
    margin: 0 auto;
    background: #fff; */
}

.blog-detail-header {
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid rgba(32, 33, 36, 1);
    margin-bottom: 4rem;
}

.blog-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 7.9rem;
    height: 7.9rem;
    border-radius: 50%;
    object-fit: cover;
}

.blog-brand span {
    font-family: var(--font);
    font-size: 3.16rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(32, 33, 36, 1);
}

.blog-detail-content {
    /* max-width: 90rem; */
}

.blog-detail-title {
    font-family: var(--font);
    font-size: 6.31rem;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(32, 33, 36, 1);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.blog-detail-body p {
    font-family: var(--font);
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(32, 33, 36, 1);
    line-height: 1.8;
    margin-bottom: 2.4rem;
}

.blog-detail-body p:last-child {
    margin-bottom: 0;
}

.featured-post {
    padding: 0 6rem 5rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 1.6rem;
    overflow: hidden;
    /* border: 0.1rem solid #e5ddd4; */
    background: rgba(255, 244, 234, 1);
    min-height: 36rem;
    align-items: center;
}

.featured-img {
    height: 100%;
    min-height: 36rem;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}

.featured-content {
    padding: 4rem 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.featured-tag {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: rgba(157, 96, 62, 1);
    margin-bottom: 0.8rem;
}

.featured-tag-line {
    width: 3rem;
    height: 0.2rem;
    background-color: var(--rust);
    margin-bottom: 2rem;
}

.featured-title {
    font-family: var(--font);
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(75, 74, 52, 1);
    margin-bottom: 2rem;
}

.featured-desc {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(99, 95, 84, 1);
    line-height: 1.8;
}

.featured-leaf {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    width: 8rem;
    height: auto;
    opacity: 0.4;
}

/* blog section four */
.blog-bottom-posts {
    padding: 0 6rem 6rem;
}

.blog-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.blog-bottom-card {
    background: rgba(255, 244, 234, 1);
    border-radius: 1.4rem;
    overflow: hidden;
    /* border: 0.1rem solid #e5ddd4; */
    cursor: pointer;
    transition: transform 0.25s ease;
}

.blog-bottom-card:hover {
    transform: translateY(-0.4rem);
}

.blog-bottom-thumb {
    position: relative;
    /* height: 22rem; */
    /* padding: 0.8rem; */
}

.blog-bottom-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 0.8rem; */
}

.blog-badge {
    position: absolute;
    top: 2.4rem;
    right: 1.4rem;
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.5rem 2.0rem;
    border-radius: 4rem;
}

.blog-badge-growth {
    background: #c0622b;
}
.blog-badge-ops {
    background: #c0622b;
}
.blog-badge-workflow {
    background: #c0622b;
}

.blog-bottom-body {
    padding: 2.2rem 2.2rem 2.4rem;
    position: relative;
}

.blog-bottom-title {
    font-family: var(--font);
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(27, 27, 27, 1);
    margin-bottom: 1.2rem;
}

.blog-bottom-line {
    width: 2.5rem;
    height: 0.4rem;
    background-color: rgba(219, 197, 179, 1);
    margin-bottom: 1.2rem;
}

.blog-bottom-desc {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 400;
    color: rgba(117, 107, 93, 1);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.blog-bottom-leaf {
    position: absolute;
    bottom: 1.6rem;
    right: 1.8rem;
    width: 6rem;
    height: auto;
    opacity: 0.3;
}

/* cart page */
/* ===========================
   CART MAIN - ALL STYLES
   1rem = 10px
=========================== */

.cart-main-breadcrumb {
    padding: 1.2rem 6rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

.cart-main-breadcrumb span {
    color: var(--rust);
}

.cart-main {
    padding: 3rem 0rem 5rem;
}

.cart-main-content {
    display: grid;
    grid-template-columns: 1fr 55rem;
    gap: 3rem;
    align-items: start;
}

.cart-main-left {
    display: flex;
    flex-direction: column;
}

/* ── VIEWS ── */
.cart-main-view {
    display: none;
}

.cart-main-view.active {
    display: block;
}

/* ===========================
   VIEW 1 - CART ITEMS
=========================== */

.cart-main-table-head {
    display: grid;
    grid-template-columns: 1fr 18rem 12rem;
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid var(--border);
    margin-bottom: 1.6rem;
}

.cart-main-table-head span {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.cart-main-table-head span:nth-child(2),
.cart-main-table-head span:nth-child(3) {
    text-align: center;
}

.cart-main-item {
    display: grid;
    grid-template-columns: 1fr 18rem 12rem;
    align-items: center;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 1rem;
    padding: 1.6rem 2rem;
    margin-bottom: 1.4rem;
    background: #ffffff00;
}

.cart-main-item-info {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.cart-main-item-info img {
    width: 14.5rem;
    object-fit: cover;
    border-radius: 0.8rem;
    display: block;
}

.cart-main-item-meta h4 {
    font-family: var(--font);
    font-size: 2.49rem;
    font-weight: 400;
    color: rgba(60, 66, 66, 1);
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-main-item-meta p {
    font-family: var(--font);
    font-size: 1.94rem;
    color: rgba(128, 125, 126, 1);
    margin-bottom: 0.8rem;
}

.cart-main-remove {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-size: 1.943rem;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.2s;
}
.cart-main-remove svg {
    fill: rgba(163, 90, 60, 1);
    width: 1.94rem;
    height: 2.623rem;
}
.cart-main-remove:hover {
    opacity: 0.7;
}

.cart-main-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-main-qty-box {
    display: flex;
    align-items: center;
    background: rgba(234, 219, 198, 1);
    border-radius: 0.6rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    -ms-border-radius: 0.6rem;
    -o-border-radius: 0.6rem;
}

.cart-main-qty-btn {
    width: 3rem;
    height: 3rem;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    color: var(--text-mid);
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-main-qty-btn:hover {
    color: var(--rust);
}

.cart-main-qty-val {
    font-family: var(--font);
    font-size: 1.65rem;
    font-weight: 400;
    color: rgba(60, 66, 66, 1);
    min-width: 5rem;
    text-align: center;
}

.cart-main-item-price {
    text-align: center;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

/* ===========================
   VIEW 2 - SAVED ADDRESS
=========================== */

.cart-main-addr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.4rem;
}

.cart-main-addr-header h2 {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.cart-main-addr-add-btn {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-main-addr-add-btn:hover {
    background: var(--accent);
}

.cart-main-addr-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3.2rem;
}

.cart-main-addr-card {
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-radius: 1.2rem;
    padding: 2rem;
    background: #ffffff00;
    transition: border-color 0.2s;
}

.cart-main-addr-card.selected {
    border-color: rgba(158, 64, 29, 1);
}

.cart-main-addr-badge {
    display: inline-block;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 0.4rem;
    margin-bottom: 1.2rem;
}

.cart-main-addr-badge.default {
    background: rgba(163, 90, 60, 1);
    color: var(--white);
}

.cart-main-addr-badge.billing {
    background: transparent;
    color: var(--rust);
    border: 0.1rem solid var(--rust);
}

.cart-main-addr-radio {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.cart-main-addr-radio input[type="radio"] {
    accent-color: rgba(163, 90, 60, 1);
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

.cart-main-addr-radio label {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.cart-main-addr-label {
    font-family: var(--font);
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.4rem;
}

.cart-main-addr-text {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.cart-main-addr-contact {
    font-family: var(--font);
    font-size: 1.9rem;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 1.4rem;
}

.cart-main-addr-actions {
    display: flex;
    gap: 1rem;
}

.cart-main-addr-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 1.2rem;
    border: 0.1rem solid var(--border);
    background: rgba(234, 219, 198, 1);
    /* color: rgba(0, 0, 0, 1); */
    cursor: pointer;
    transition: all 0.2s;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
}
.cart-main-addr-btn svg {
    fill: rgba(163, 90, 60, 1);
    color: unset;
}
.cart-main-addr-btn:hover {
    border-color: var(--rust);
    color: var(--rust);
}

/* ── PAYMENT ── */
.cart-main-payment h3 {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 500;
    color: rgba(42, 40, 38, 1);
    margin-bottom: 0.4rem;
}

.cart-main-payment p {
    font-family: var(--font);
    font-size: 1.89rem;
    font-weight: 400;
    color: rgba(60, 66, 66, 1);
    margin-bottom: 1.6rem;
}

.cart-main-payment-option {
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    background: rgba(234, 219, 198, 1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cart-main-payment-option input[type="radio"] {
    accent-color: rgba(60, 66, 66, 1);
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

.cart-main-payment-option label {
    font-family: var(--font);
    font-size: 2.362rem;
    font-weight: 500;
    color: rgba(60, 66, 66, 1);
    cursor: pointer;
}

/* ===========================
   VIEW 3 - ADD NEW ADDRESS
=========================== */

.cart-main-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-size: 1.8rem;
    color: #a35a3c;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0;
    transition: color 0.2s;
}

.cart-main-back-btn:hover {
    color: var(--rust);
}

.cart-main-form-title {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 2.4rem;
}

.cart-main-form-group {
    margin-bottom: 2rem;
}

.cart-main-form-group label {
    display: block;
    font-family: var(--font);
    font-size: 2.22rem;
    font-weight: 500;
    color: rgba(60, 66, 66, 1);
    margin-bottom: 0.8rem;
}

.cart-main-form-group input,
.cart-main-form-group select {
    width: 100%;
    padding: 1.3rem 1.6rem;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 0.8rem;
    background: rgba(234, 219, 198, 1);
    font-family: var(--font);
    font-size: 1.95rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.cart-main-form-group input::placeholder {
    color: var(--text-light);
}

.cart-main-form-group input:focus,
.cart-main-form-group select:focus {
    border-color: var(--rust);
}

.cart-main-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cart-main-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.cart-main-select-wrap {
    position: relative;
}

.cart-main-select-wrap select {
    padding-right: 3.6rem;
    cursor: pointer;
}

.cart-main-select-wrap::after {
    content: "▾";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

.cart-main-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.cart-main-checkbox-wrap input[type="checkbox"] {
    width: 2.5rem;
    height: 2.5rem;
    accent-color: rgba(190, 188, 189, 1);
    cursor: pointer;
}

.cart-main-checkbox-wrap label {
    font-family: var(--font);
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(60, 66, 66, 1);
    cursor: pointer;
}

/* ===========================
   ORDER SUMMARY (RIGHT)
=========================== */

.cart-main-summary {
    background: #ffffff00;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 1.4rem;
    overflow: hidden;
    position: sticky;
    top: 8rem;
}

.cart-main-summary-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.6rem 2rem;
    border-bottom: 0.1rem solid var(--border);
}

.cart-main-summary-head span {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.cart-main-summary-head span:nth-child(2),
.cart-main-summary-head span:nth-child(3) {
    text-align: center;
}

.cart-main-summary-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 1.4rem 2rem;
    border-bottom: 0.1rem solid var(--border);
}

.cart-main-summary-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-main-summary-item-info img {
    width: 5.5rem;
    object-fit: cover;
    border-radius: 0.4rem;
    display: block;
}

.cart-main-summary-item-info span {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.cart-main-summary-portion {
    font-family: var(--font);
    font-size: 2.2rem;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

.cart-main-summary-price {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

.cart-main-summary-totals {
    padding: 1.6rem 2rem;
    border-bottom: 0.1rem solid var(--border);
}

.cart-main-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-main-summary-row:last-child {
    margin-bottom: 0;
}

.cart-main-summary-row span:first-child {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(84, 84, 84, 1);
}

.cart-main-summary-row span:last-child {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.cart-main-summary-row.subtotal span {
    font-weight: 500;
    font-size: 2.2rem;
    color: rgba(0, 0, 0, 1);
}

.cart-main-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 2rem;
}

.cart-main-summary-total-row span {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.cart-main-checkout-btn {
    display: block;
    width: calc(100% - 4rem);
    margin: 2rem 2rem 2rem;
    padding: 1.6rem;
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.05rem;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    -ms-transition: background 0.2s;
    -o-transition: background 0.2s;
}

.cart-main-checkout-btn:hover {
    background: var(--accent);
}

/* /* ===========================
   ORDER SUCCESS SECTION
=========================== */

.order-success {
    width: 100%;
    min-height: 50rem;
    position: relative;
    padding: 6rem 0;
}

.order-success-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.order-success .container {
    position: relative;
    z-index: 1;
}

.order-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100rem;
    width: 100%;
    margin: 0 auto;
}

/* ── ICON ── */
.order-success-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #625a3d;
}

.order-success-leaf {
    position: absolute;
    right: -3.5rem;
    top: -0.5rem;
    width: 3rem;
    height: auto;
    opacity: 0.7;
}

/* ── TEXT ── */
.order-success-title {
    font-family: var(--font);
    font-size: 7rem;
    font-weight: 500;
    color: #625a3d;
    letter-spacing: 0.2rem;
    margin-bottom: 0.6rem;
}

.order-success-subtitle {
    color: var(--brown);
    font-family: "Over the Rainbow";
    font-size: 3.4rem;
    font-weight: 400;
    margin-bottom: 1.4rem;
}

.order-success-desc {
    font-family: var(--font);
    font-size: 2.2rem;
    color: #89786c;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ── ORDER CARD ── */
.order-success-card {
    width: 100%;
    background: var(--bg);
    border: 0.1rem solid #e7d6c7;
    border-radius: 1.2rem;
    padding: 2.4rem 3rem;
    margin-bottom: 3rem;
}

.order-success-order-no {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    color: rgba(163, 90, 60, 1);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid #e7d6c7;
}

.order-success-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.order-success-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.order-success-info-icon {
    flex-shrink: 0;
    color: rgba(163, 90, 60, 1);
    margin-top: 0.2rem;
}

.order-success-info-label {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.order-success-info-val {
    font-family: var(--font);
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ── BUTTONS ── */
.order-success-btn {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    padding: 1.4rem 4rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 36rem;
    text-align: center;
}

.order-success-btn:hover {
    background: var(--accent);
}

.order-success-continue {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.order-success-continue:hover {
    color: var(--rust);
}

/* ===========================
   PROFILE PAGE 
=========================== */

.profile-page {
    padding: 3rem 0rem 5rem;
    display: grid;
    grid-template-columns: 36rem 1fr;
    gap: 3rem;
    align-items: start;
    min-height: 70vh;
}

/* ===========================
   LEFT SIDEBAR
=========================== */

.profile-sidebar {
    background: #ffffff00;
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.6rem;
    overflow: hidden;
    position: sticky;
    top: 8rem;
}

.profile-sidebar-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 0.1rem solid var(--border);
}

.profile-avatar {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    border: 0.2rem solid rgba(233, 216, 200, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(76, 68, 33, 1);
    margin-bottom: 1.2rem;
    background: rgba(242, 227, 214, 1);
}

.profile-sidebar-top h3 {
    font-family: var(--font);
    font-size: 3.6rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
}

.profile-sidebar-nav {
    padding: 1rem 0;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 3.4rem;
    padding: 2.4rem 3.4rem;
    font-family: var(--font);
    font-size: 2.6rem;
    font-weight: 500;
    color: rgba(25, 25, 25, 1);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
    border-top: 0.2rem solid rgba(233, 216, 201, 1);
}

.profile-nav-item:hover {
    color: rgba(163, 90, 60, 1);
    background: rgba(240, 224, 209, 1);
}

.profile-nav-item.active {
    color: rgba(163, 90, 60, 1);
    background: rgba(240, 224, 209, 1);
}

.profile-nav-item svg {
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.7rem;
}

.profile-sidebar-img {
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.profile-sidebar-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* ===========================
   RIGHT CONTENT AREA
=========================== */

.profile-content {
    display: flex;
    flex-direction: column;
}

.profile-view {
    display: none;
}

.profile-view.active {
    display: block;
}

.profile-view-title {
    font-family: var(--font);
    font-size: 5rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 2.4rem;
}

/* ===========================
   VIEW 1 - MY PROFILE
=========================== */

.profile-form-card {
    background: #ffffff00;
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.4rem;
    padding: 3rem;
}

.profile-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.profile-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-form-group label {
    font-family: var(--font);
    font-size: 2.28rem;
    font-weight: 500;
    color: rgba(60, 66, 66, 1);
}

.profile-form-group input {
    padding: 1.3rem 1.6rem;
    border: 0.1rem solid transparent;
    border: none;
    border-radius: 0.2rem;
    background: rgba(240, 224, 209, 1);
    font-family: var(--font);
    font-size: 1.95rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    outline: none;
    transition: border-color 0.2s;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    -ms-border-radius: 0.8rem;
    -o-border-radius: 0.8rem;
}

.profile-form-group input::placeholder {
    color: var(--text-light);
}

.profile-form-group input:focus {
    border-color: var(--rust);
}

.profile-gender-wrap {
    margin-bottom: 2.4rem;
}

.profile-gender-wrap label {
    display: block;
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.profile-gender-btns {
    display: flex;
    gap: 1rem;
}

.profile-gender-btn {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0.9rem 2.8rem;
    border-radius: 0.8rem;
    border: 0.1rem solid rgba(0, 0, 0, 1);
    background: var(--cream);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.2s;
}

.profile-gender-btn.active,
.profile-gender-btn:hover {
    border-color: rgba(163, 90, 60, 1);
    color: #fff;
    background: rgba(163, 90, 60, 1);
}

.profile-save-btn {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    padding: 1.4rem 4rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 26rem;
    text-align: center;
}

.profile-save-btn:hover {
    background: var(--accent);
}

/* ===========================
   VIEW 2 - ADDRESS
=========================== */

.profile-addr-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.profile-addr-add-btn {
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 500;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-addr-add-btn:hover {
    background: var(--accent);
}

.profile-addr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.profile-addr-box {
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.4rem;
    background: #ffffff00;
    padding: 2.4rem;
}
.profile-addr-card {
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-radius: 1.2rem;
    padding: 1.8rem;
    background: var(--cream);
    transition: border-color 0.2s;
}

.profile-addr-card.selected {
    border-color: rgba(158, 64, 29, 1);
    background: #ffffff00;
}

.profile-addr-badge {
    display: inline-block;
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 0.4rem;
    margin-bottom: 1.2rem;
}

.profile-addr-badge.default {
    background: rgba(163, 90, 60, 1);
    color: var(--white);
}

.profile-addr-badge.billing {
    background: transparent;
    color: var(--rust);
    border: 0.1rem solid var(--rust);
}

.profile-addr-radio {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.profile-addr-radio input[type="radio"] {
    accent-color: rgba(163, 90, 60, 1);
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.profile-addr-radio label {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.profile-addr-label {
    font-family: var(--font);
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.4rem;
}

.profile-addr-text {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.profile-addr-contact {
    font-family: var(--font);
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 1.2rem;
}

.profile-addr-actions {
    display: flex;
    gap: 1rem;
}

.profile-addr-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 1.2rem;
    border: none;
    background: rgba(234, 219, 198, 1);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-border-radius: 1.2rem;
    -moz-border-radius: 1.2rem;
    -ms-border-radius: 1.2rem;
    -o-border-radius: 1.2rem;
}
.profile-addr-btn svg {
    /* fill: rgba(163, 90, 60, 1); */
}
.profile-addr-btn:hover {
    border-color: var(--rust);
    color: var(--rust);
}

/* ===========================
   VIEW 3 - NEW ADDRESS FORM
=========================== */

.profile-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(60, 66, 66, 1);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0;
    transition: color 0.2s;
}

.profile-back-btn:hover {
    color: var(--rust);
}

.profile-new-addr-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-new-addr-form .profile-form-group {
    margin-bottom: 2rem;
}

.profile-new-addr-form .profile-form-group input,
.profile-new-addr-form .profile-form-group select {
    width: 100%;
    padding: 1.3rem 1.6rem;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 0.8rem;
    background: rgba(234, 219, 198, 1);
    font-family: var(--font);
    font-size: 1.95rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.profile-new-addr-form .profile-form-group input::placeholder {
    color: var(--text-light);
}

.profile-new-addr-form .profile-form-group input:focus,
.profile-new-addr-form .profile-form-group select:focus {
    border-color: var(--rust);
}

.profile-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-select-wrap {
    position: relative;
}

.profile-select-wrap select {
    padding-right: 3.6rem;
    cursor: pointer;
}

.profile-select-wrap::after {
    content: "▾";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

/* ===========================
   VIEW 4 - MY ORDERS
=========================== */

.profile-orders-tabs {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.4rem;
    border-bottom: 0.1rem solid var(--border);
}

.profile-orders-tab {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 0.2rem solid transparent;
    transition: all 0.2s;
    margin-bottom: -0.1rem;
}

.profile-orders-tab.active {
    color: rgba(163, 90, 60, 1);
    border-bottom-color: rgba(163, 90, 60, 1);
    font-weight: 500;
}

.profile-orders-tab:hover {
    color: rgba(163, 90, 60, 1);
}

/* Order Card */
.profile-order-card {
    background: #ffffff00;
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}
/* ── CANCEL POPUP OVERLAY ── */
.profile-order-cancel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(244, 234, 224, 0.765);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.profile-order-cancel-overlay.active {
    display: flex;
}

.profile-order-cancel-popup {
    background: #f3e9e1;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    width: 100rem;
    padding: 2rem 1.5rem;
    max-width: 90vw;
    position: relative;
    z-index: 101;
    top: 10%;
}

.profile-order-cancel-popup.active {
    display: block;
}
.profile-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    border-bottom: 0.1rem solid rgba(229, 209, 193, 1);
}

.profile-order-head-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.profile-order-head-icon {
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 50%;
    background: rgba(163, 90, 60, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.profile-order-no {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
}

.profile-order-date {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(111, 94, 80, 1);
    margin-top: 0.2rem;
}

.profile-invoice-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    border-radius: 0.8rem;
    border: 0.2rem solid rgba(163, 90, 60, 1);
    background: #ffffff00;
    color: rgba(151, 74, 38, 1);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    -ms-border-radius: 0.8rem;
    -o-border-radius: 0.8rem;
}

.profile-invoice-btn:hover {
    background: rgba(151, 74, 38, 1);
    color: #fff;
}

/* Order Items */
.profile-order-item {
    display: grid;
    grid-template-columns: 9rem 1fr auto auto auto;
    align-items: center;
    gap: 1.6rem;
    padding: 1.8rem 2rem;
    border-bottom: 0.1rem dashed rgba(229, 209, 193, 1);
}

.profile-order-item:last-of-type {
    border-bottom: 0.1rem solid rgba(229, 209, 193, 1);
}

.profile-order-item img {
    width: 17.1rem;
    object-fit: cover;
    border-radius: 0.8rem;
    display: block;
}

.profile-order-item-name {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 0.4rem;
}

.profile-order-item-sub {
    font-family: var(--font);
    font-size: 1.943rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    margin-bottom: 0.8rem;
}

.profile-order-item-price {
    font-family: var(--font);
    font-size: 3.4rem;
    font-weight: 400;
    color: rgba(163, 90, 60, 1);
}

.profile-order-status-wrap {
    text-align: center;
}

.profile-order-status-label {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    margin-bottom: 0.4rem;
}

.profile-order-status {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
}

.profile-order-status.in-progress {
    color: rgba(225, 146, 0, 1);
}
.profile-order-status.cancelled {
    color: rgba(157, 73, 35, 1);
}
.profile-order-status.delivered {
    color: rgba(84, 107, 63, 1);
}

.profile-order-delivery-wrap {
    text-align: center;
}

.profile-order-delivery-label {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(128, 125, 126, 1);
    margin-bottom: 0.4rem;
}

.profile-order-delivery-date {
    font-family: var(--font);
    font-size: 1.6rem;
    color: rgba(72, 62, 53, 1);
    font-weight: 400;
}

.profile-order-checkbox {
    width: 1.8rem;
    height: 1.8rem;
    accent-color: #a35a3c;
    cursor: pointer;
}

/* Order Footer */
.profile-order-footer {
    display: grid;
    align-items: center;
    padding: 0;
}

.profile-order-footer-active {
    grid-template-columns: 1fr 1fr 1fr;
}

.profile-order-footer-cancelled {
    grid-template-columns: 1fr 1fr 1fr;
}

.profile-order-footer-completed {
    grid-template-columns: 1fr 1fr 1fr;
}

.profile-order-footer-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 1rem;
    border-right: 0.1rem solid rgba(229, 209, 193, 1);
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    cursor: pointer;
    transition: color 0.2s;
}

.profile-order-footer-cell:last-child {
    border-right: none;
}

.profile-order-footer-cell.cancel {
    color: rgba(151, 74, 38, 1);
}

.profile-order-footer-cell.cancel:hover {
    color: var(--rust);
}

.profile-order-footer-cell.cancelled-text {
    color: var(--rust);
    cursor: default;
}

.profile-order-footer-cell.payment {
    color: rgba(72, 62, 53, 1);
    cursor: default;
}

.profile-order-footer-cell.total {
    justify-content: flex-end;
    /* font-size: 1.4rem; */
}

.profile-order-footer-cell.total span {
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(163, 90, 60, 1);
}

/* ===========================
   VIEW 4 - CHANGE PASSWORD
=========================== */
.profile-chnage-password-title {
    font-family: var(--font);
    font-size: 5rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 2.4rem;
}
.change-password-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark, #4a3728);
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap .form-input {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 1.4rem;
    font-size: 1.4rem;
    border: 0.1rem solid var(--color-border, #c8a882);
    border-radius: 0.8rem;
    background: var(--color-cream, #faf6f0);
    color: var(--color-dark, #4a3728);
    outline: none;
    transition: border-color 0.2s;
}

.input-wrap .form-input:focus {
    border-color: var(--color-copper, #8b4513);
}

.toggle-password {
    position: absolute;
    right: 1.2rem;
    cursor: pointer;
    color: var(--color-muted, #9c8472);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: var(--color-dark, #4a3728);
}

.btn-update-password {
    align-self: flex-start;
    padding: 1.1rem 3rem;
    background: var(--color-copper, #8b4513);
    color: #fff;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.btn-update-password:hover {
    background: var(--color-brown, #6b3410);
}

/* ===========================
   VIEW 5 - RETURN ORDER
=========================== */

.profile-return-items {
    background: #ffffff00;
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
.shipment-address-details {
    background-color: #ffffff00;
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 1.4rem;
    padding: 2rem;
}

.profile-return-addr-section {
    border: 0.1rem solid var(--border);
    border-radius: 1.4rem;
    padding: 2.4rem;
    margin-bottom: 2rem;
}

.profile-return-addr-section h4 {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 1.2rem;
}

.profile-return-addr-box {
    border: 0.1rem solid rgba(195, 156, 112, 1);
    border-radius: 0.8rem;
    padding: 1.6rem;
    background: var(--cream);
}

.profile-return-addr-box p {
    font-family: var(--font);
    font-size: 1.47rem;
    color: rgba(76, 76, 76, 1);
    line-height: 1.6;
}

.profile-return-reason-section {
    /* background: var(--white); */
    border: 0.1rem solid var(--border);
    border-radius: 1.4rem;
    padding: 2.4rem;
    margin-bottom: 2.4rem;
}

.profile-return-reason-section h4 {
    font-family: var(--font);
    font-size: 1.81rem;
    font-weight: 500;
    color: rgba(28, 28, 28, 1);
    margin-bottom: 1.6rem;
}

.profile-return-reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.profile-return-reason-item input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
    accent-color: rgba(163, 90, 60, 1);
    cursor: pointer;
}

.profile-return-reason-item label {
    font-family: var(--font);
    font-size: 1.7rem;
    color: rgba(56, 56, 56, 1);
    cursor: pointer;
}

.profile-return-checkout-btn {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    text-align: center;
    border: none;
    border-radius: 0.8rem;
    padding: 1.4rem 4rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 26rem;
}

.profile-return-checkout-btn:hover {
    background: var(--accent);
}

/*wishlist page  */
.wishlist-section {
    padding: 4rem 0 8rem;
}
.wishlist-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    margin-bottom: 4rem;
}

/* sign in page */
/* ===========================
   SIGN IN PAGE
   1rem = 10px
=========================== */

.signin-wrap {
    padding: 3rem 0rem 5rem;
}

.signin-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 1.6rem;
    overflow: hidden;
    /* border: 0.15rem dashed var(--border); */
    min-height: 66rem;
}

/* ── LEFT IMAGE PANEL ── */
.signin-left {
    position: relative;
    overflow: hidden;
}

.signin-left-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

/* ── RIGHT FORM PANEL ── */
.signin-right {
    background: #ecdcca;
    padding: 10rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.signin-leaf-decor {
    position: absolute;
    bottom: 2.4rem;
    right: 2.4rem;
    width: 8rem;
    height: auto;
    opacity: 0.25;
}

.signin-title {
    font-family: var(--font);
    font-size: 5rem;
    font-weight: 600;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 0.6rem;
    text-align: center;
}

.signin-subtitle {
    font-family: "Over the Rainbow", cursive;
    font-size: 3.6rem;
    font-weight: 400;
    color: rgba(163, 90, 60, 1);
    text-align: center;
    margin-bottom: 4rem;
}

/* ── FORM ── */
.signin-form-group {
    margin-bottom: 2.4rem;
}

.signin-form-group label {
    display: block;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 0.8rem;
}

.signin-form-group input {
    width: 100%;
    padding: 1.4rem 1.8rem;
    border: 0.1rem solid rgba(163, 90, 60, 1);
    border-radius: 0.8rem;
    background: #ffffff00;
    font-family: var(--font);
    font-size: 2rem;
    color: rgba(72, 62, 53, 1);
    outline: none;
    transition: border-color 0.2s;
}

.signin-form-group input::placeholder {
    color: var(--text-light);
}

.signin-form-group input:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 0.3rem rgba(184, 92, 56, 0.1);
}

.signin-password-wrap {
    position: relative;
}

.signin-password-wrap input {
    padding-right: 5rem;
}

.signin-password-toggle {
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.signin-password-toggle:hover {
    color: var(--rust);
}

/* ── REMEMBER / FORGOT ── */
.signin-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.signin-remember {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.signin-remember input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
    accent-color: rgba(163, 90, 60, 1);
    cursor: pointer;
}

.signin-remember label {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(72, 62, 53, 1);
    cursor: pointer;
}

.signin-forgot {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(160, 86, 53, 1);
    text-decoration: none;
    transition: opacity 0.2s;
}

.signin-forgot:hover {
    opacity: 0.7;
}

/* ── SIGN IN BUTTON ── */
.signin-btn {
    width: 100%;
    padding: 1.6rem;
    background: rgba(163, 90, 60, 1);
    text-align: center;
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 2.4rem;
    letter-spacing: 0.05rem;
}

.signin-btn:hover {
    background: var(--accent);
}

/* ── SIGN UP LINK ── */
.signin-signup-text {
    text-align: center;
    font-family: var(--font);
    font-size: 2rem;
    color: rgba(72, 62, 53, 1);
}

.signin-signup-text a {
    color: rgba(163, 90, 60, 1);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.signin-signup-text a:hover {
    opacity: 0.7;
}

/* verification */

.verify-group label {
    display: block;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(72, 62, 53, 1);
    margin-bottom: 1.2rem;
}

.verify-inputs {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.verify-input {
    width: 5.6rem;
    height: 5.6rem;
    border: 0.15rem solid rgba(163, 90, 60, 1);
    border-radius: 0.8rem;
    background: #ffffff00;
    font-family: var(--font);
    font-size: 2.6rem;
    font-weight: 600;
    color: rgba(72, 62, 53, 1);
    text-align: center;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.verify-input:focus {
    border-color: rgba(163, 90, 60, 1);
    box-shadow: 0 0 0 0.3rem rgba(184, 92, 56, 0.15);
}

/* 404 error page */

.notfound-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 6rem 6rem;
    min-height: 70vh;
    text-align: center;
}

.notfound-img {
    width: 100%;
    max-width: 35rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

.notfound-title {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(14, 20, 34, 1);
    margin-bottom: 1.2rem;
}

.notfound-desc {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(92, 95, 106, 1);
    line-height: 1.7;
    margin-bottom: 3.6rem;
    max-width: 50rem;
}

.notfound-btn {
    display: block;
    width: 100%;
    max-width: 52rem;
    padding: 1.8rem;
    background: rgba(163, 90, 60, 1);
    color: var(--white);
    border: none;
    border-radius: 0.8rem;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.notfound-btn:hover {
    background: var(--accent);
}

/* policy inner pages */

/* ===========================
   TERMS PAGE
   1rem = 10px
=========================== */

.terms-wrap {
    padding: 3rem 6rem 6rem;
    /* max-width: 120rem; */
    margin: 0 auto;
}

.terms-company-name {
    font-family: var(--font);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-bottom: 3.2rem;
}

.terms-body p {
    font-family: var(--font);
    font-weight: 400;
    font-size: 2.8rem;
    color: rgba(67, 67, 67, 1);
    line-height: 4.6rem;
    margin-bottom: 2.8rem;
}

.terms-body p:last-child {
    margin-bottom: 0;
}
