/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Global Container Rule */
.container-fluid {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.inner-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

/* ============================================
   SECTION 1: TOP INFO BAR
   ============================================ */

.top-info-bar {
    width: 100%;
    max-width: 1920px;
    height: 50px;
    background-color: #A8863B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.top-info-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* ============================================
   SECTION 2: NAVBAR
   ============================================ */

.main-navbar {
    width: 100%;
    max-width: 1920px;
    height: 80px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.navbar-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    gap: 0;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 134px;
    max-width: calc(747px + 268px);
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-image {
    width: 83px;
    height: 60px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #A8863B;
    line-height: 1.2;
}

.logo-subtext {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #A8863B;
    line-height: 1.2;
}

/* Location Dropdown */
.navbar-location {
    flex-shrink: 0;
    width: 186px;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #A8863B;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: #FFFFFF;
    position: relative;
    gap: 12px;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.location-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #CBA75E;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.location-dropdown {
    width: 100%;
    min-height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #000000;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.location-icon {
    width: 14px;
    height: 7.78px;
    object-fit: contain;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.location-icon:hover {
    opacity: 0.7;
}

.location-dropdown option {
    background-color: #FFFFFF;
    color: #000000;
}

/* Search Bar */
.navbar-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 747px;
}

.search-input {
    width: 100%;
    height: 52px;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background-color: #F3F4F7;
    color: #000000;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-icon-image {
    position: absolute;
    right: 20px;
    width: 36px;
    height: 36px;
    object-fit: contain;
    cursor: pointer;
    pointer-events: none;
}

/* Right Icons */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-icon-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    cursor: pointer;
}

.cart-icon-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.mobile-cart-icon-wrapper {
    display: none;
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: 0px;
    width: 20px;
    height: 20px;
    background-color: #A8863B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: Lexend Deca, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    z-index: 10;
}

/* ============================================
   SECTION 3: HERO / BANNER IMAGE
   ============================================ */

.hero-section {
    width: 100%;
    max-width: 1920px;
    height: 650px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-image: url('images/homepage1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content-card {
    position: absolute;
    width: 709px;
    height: 331px;
    top: 160px;
    left: 241px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-button {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #A8863B;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-button .button-arrow {
    width: auto;
    height: 16px;
    object-fit: contain;
    display: inline-block;
}

.hero-button:hover {
    background-color: #8B6F47;
}

/* ============================================
   SECTION 4: OUR PRODUCTS
   ============================================ */

.products-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
}

.products-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}

.products-heading {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: bold;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    padding-bottom: 10px;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: flex-start;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
    -webkit-overflow-scrolling: touch;
    user-select: none; /* Prevent text selection while dragging */
}

.products-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card {
    width: 233px;
    height: 233px;
    background-color: #F6F7F9;
    border: 1px solid #F6F7F9;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

.product-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #A8863B;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.product-image {
    height: auto;
  top: 60px;
  width: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 0;
    object-fit: cover;
    display: block;
    background-color: transparent;
}

/* Override for p2 image inside wrapper */
.product-card-2 .product-image-bg .product-image {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Product Card 2 - p2: 196x108px, top 115px, left 18px (adjusted for card width) */
.product-card-2 .product-image-bg {
    position: absolute;
    width: 196px;
    height: 108px;
    top: 115px;
    left: 18px;
    background-color: #F6F7F9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.product-card-2 .product-image-bg .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Product Card 1 - p1: 217x126px, top 97px, left 5px */
.product-card-1 .product-image {
  height: auto;
  top: 60px;
  width: 100%;
}

/* Product Card 2 - p2: 196x108px, top 115px, left 18px (adjusted for card width) */
.product-card-2 .product-image {
    width: 196px;
    height: 108px;
    top: 115px;
    left: 18px;
    background-color: #F6F7F9;
}

/* Product Card 3 - p3: 223x137px, top 86px, left 5px, radius 20px */
.product-card-3 .product-image {
    width: 223px;
    height: 137px;
    top: 86px;
    left: 5px;
    border-radius: 20px;
}

/* Product Card 4 - p4: 186x121px, top 102px, left 24px (adjusted for card width) */
.product-card-4 .product-image {
    width: 186px;
    height: 121px;
    top: 108px;
    left: 35px;
}

/* Product Card 5 - p5: 188x118px, top 105px, left 23px (adjusted for card width) */
.product-card-5 .product-image {
    width: 188px;
    height: 118px;
    top: 110px;
    left: 43px;
}

/* Product Card 6 - p6: 162x140px, top 83px, left 36px (adjusted for card width) */
.product-card-6 .product-image {
    width: 162px;
    height: 140px;
    top: 95px;
    left: 84px;
}

.view-all-button {
    width: 217px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #A8863B;
    border: none;
    padding: 12px 17px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    align-self: center;
}

.view-all-button .button-arrow {
    height: 14px;
    width: auto;
    object-fit: contain;
}

.view-all-button:hover {
    background-color: #8B6F47;
}

/* ============================================
   SECTION 5: FOOTER
   ============================================ */

.main-footer {
    width: 100%;
    max-width: 1920px;
    height: 180px;
    margin: 0 auto;
    background-color: #F5F5F5;
}

.footer-top {
    width: 100%;
    height: 120px;
    background-color: #F3F4F7;
    display: flex;
    align-items: center;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #A8863B;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0 30px;
    position: relative;
}

.social-icon:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #333;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-bottom {
    width: 100%;
    height: 60px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom .footer-social {
    display: none; /* Hide social icons in desktop footer-bottom */
}

.copyright-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* Hide mobile menu on desktop */
.mobile-menu {
    display: none;
}

/* CSS Variable for menu icon */
:root {
    --menu-icon: '☰';
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* SECTION 1: MAIN PRODUCT DETAIL */
.detail-main-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 0 20px 0;
}

.detail-main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-main-container:last-of-type {
    margin-bottom: 10px;
}

.detail-main-image-container {
    width: 710px;
    height: 664px;
    position: relative;
    flex-shrink: 0;
    margin-left: 0;
}

.detail-main-image {
    width: 710px;
    height: 664px;
    border-radius: 40px;
    object-fit: cover;
    display: block;
}

.detail-discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-image: url('images/ld1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 117px;
    height: 117px;
    padding: 10px;
}

.detail-discount-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.detail-discount-percent {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    display: block;
}

.detail-discount-label {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    display: block;
}

.detail-content-box {
    width: 710px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
}

.detail-product-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 140%;
    color: #333;
    margin: 0;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-current-price {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    color: #333;
}

.detail-old-price {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: line-through;
    color: #999;
}

/* SECTION 2: QUANTITY + ADD TO CART */
.detail-action-container {
    width: 532px;
    height: 60px;
    display: flex;
    gap: 20px;
}

.detail-quantity-box {
    width: 167px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-quantity-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 160%;
    color: #333;
}

.detail-add-to-cart-button {
    width: 345px;
    height: 60px;
    border-radius: 12px;
    background-color: #A8863B;
    border: none;
    color: #FFFFFF;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.detail-add-to-cart-button:hover {
    background-color: #8B6F47;
}

.detail-cart-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* SECTION 3: THUMBNAIL IMAGES */
.detail-thumbnails-container {
    width: 710px;
    height: 120px;
    display: flex;
    gap: 20px;
    margin-top: 0;
    margin-left: 0;
}

.detail-thumbnail-image {
    width: 126px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.detail-thumbnail-image:hover {
    opacity: 0.8;
}

.detail-thumbnail-image.active {
    border: 3px solid #A8863B;
    opacity: 1;
}

/* SECTION 4: RELATED PRODUCTS */
.detail-related-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: center;
}

.detail-related-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.detail-related-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #333;
    margin: 0 0 20px 0;
}

.detail-related-description {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #666;
    width: 1195px;
    height: 35px;
    margin: 0;
}

.detail-related-description .mobile-description {
    display: none;
}

/* SECTION 5: RELATED PRODUCTS GRID */
.detail-related-grid-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.detail-related-grid-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    user-select: none; /* Prevent text selection while dragging */
}

.detail-related-grid-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.detail-related-card {
    width: 345px;
    height: 361px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.detail-related-image {
    width: 345px;
    height: 299px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.detail-related-name {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    color: #333;
    margin: 0;
    padding-left: 10px;
}

.detail-related-price-row {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-left: 10px;
}

.detail-related-current-price {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #333;
}

.detail-related-old-price {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: line-through;
    color: #999;
}

.detail-related-shop-icon {
    display: none;
}

.detail-related-arrow-icon {
    width: 11.98px;
    height: 23.38px;
    object-fit: contain;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.detail-order-info-panel {
    max-width: 1440px;
    margin: 30px auto 0;
    padding: 30px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    display: none !important;
    min-height: 200px;
    visibility: hidden;
}

.detail-order-info-panel.active {
    display: block !important;
    visibility: visible;
}

/* ============================================
   LISTING PAGE STYLES
   ============================================ */

/* SECTION 1: PAGE TITLE & DESCRIPTION */
.listing-header-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 0 50px 0;
}

.listing-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.listing-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #333;
    margin: 0 0 20px 0;
}

.listing-description {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #666;
    width: 1195px;
    max-width: 1195px;
    height: 35px;
    margin: 0 auto;
}

/* SECTION 2: PRODUCT LISTING GRID */
.listing-products-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.listing-products-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.listing-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 345px);
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.listing-product-card {
    width: 345px;
    height: 361px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.listing-product-image {
    width: 345px;
    height: 299px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    margin-top: 0px;
}

.listing-product-name {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    color: #333;
    margin: 0 0 8px 0;
    padding-left: 10px;
}

.listing-price-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 10px;
}

.listing-current-price {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #333;
}

.listing-old-price {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: line-through;
    color: #999;
}

/* SECTION 3: PAGINATION */
.listing-pagination-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.listing-pagination-container {
    max-width: 1440px;
    height: 36px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.listing-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.listing-pagination-number {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #333;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.listing-pagination-number:hover {
    color: #A8863B;
}

.listing-pagination-number-active {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333333;
    color: #FFFFFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.listing-pagination-number-active:hover {
    color: #FFFFFF;
}

.listing-pagination-ellipsis {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #333;
    width: auto;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    visibility: visible !important;
}

.listing-pagination-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.listing-pagination-arrow:hover {
    background-color: #333333;
    opacity: 0.8;
}

.listing-pagination-arrow-icon {
    width: 7.17px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.listing-pagination-arrow-icon-left {
    transform: none;
}

.listing-pagination-arrow-icon-right {
    transform: rotate(180deg);
}

/* ============================================
   CART PRODUCT LIST PAGE
   ============================================ */

.cart-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: flex;
    justify-content: center;
}

.cart-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cart-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    color: #333;
    margin: 0;
}

.cart-main-box {
    width: 1440px;
    min-height: 991px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-table-header {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
}

.cart-header-product {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: left;
    color: #333;
    width: 442px;
    flex-shrink: 0;
}

.cart-header-quantity {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    color: #333;
    width: 115px;
    margin-left: 150px;
    flex-shrink: 0;
}

.cart-header-action {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    color: #333;
    width: 100px;
    margin-left: 180px;
    flex-shrink: 0;
}

.cart-header-price {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: left;
    color: #333;
    margin-left: 120px;
    margin-right: 0;
    flex-shrink: 0;
    min-width: 150px;
}

.cart-product-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #F0F0F0;
}

.cart-product-code {
    width: 442px;
    height: 120px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
}

.cart-product-image {
    width: 135px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-product-details {
    width: 293px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-product-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: #333;
    margin: 0;
}

.cart-product-meta {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #333333;
    margin: 0;
}

.cart-meta-value {
    color: #666666;
}

.cart-quantity-box {
    width: 115px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    margin-left: 150px;
    flex-shrink: 0;
}

.cart-quantity-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    color: #333;
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.cart-quantity-text::placeholder {
    color: #333333;
}

.cart-quantity-box input {
    border: none;
    outline: none;
    background: transparent;
}

.cart-action-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    margin-left: 180px;
    flex-shrink: 0;
}

.cart-delete-icon {
    width: 21.66px;
    height: 26px;
    object-fit: contain;
    cursor: pointer;
}

.cart-price-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    margin-left: 120px;
    flex-shrink: 0;
    min-width: 150px;
}

.cart-price-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #333;
}

.cart-total-section {
    display: flex;
    align-items: center;
    padding: 30px 0 0 0;
    margin-top: auto;
    position: relative;
}

.cart-total-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #666666;
    margin-left: calc(442px + 150px + 115px + 180px - 30px);
    width: 100px;
}

.cart-total-amount {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #333;
    position: absolute;
    left: calc(442px + 150px + 115px + 180px + 100px + 120px - 10px);
}

.cart-total-amount {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #333;
}

.cart-confirm-button {
    width: 420px;
    height: 60px;
    border-radius: 12px;
    background-color: #A8863B;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: -1.5%;
    color: #FFFFFF;
}

.cart-confirm-button:hover {
    background-color: #8d6f2f;
}

.cart-button-arrow {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ============================================
   ENTER YOUR DETAILS PAGE
   ============================================ */

body.details-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.details-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.details-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 138px 20px 138px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.details-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2%;
    color: #333333;
    text-align: center;
    margin: 0 0 60px 0;
}

.details-form-container {
    width: 466px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
}

.details-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
}

.details-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -2%;
    color: #333333;
    position: absolute;
    top: -8px;
    left: 20px;
    background-color: #FFFFFF;
    padding: 0 8px;
    z-index: 1;
}

.details-input {
    width: 466px;
    height: 72px;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    padding: 0 27px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -2%;
    color: #333333;
    background-color: #FFFFFF;
    box-sizing: border-box;
    vertical-align: middle;
}

.details-input::placeholder {
    color: #999999;
}

.details-done-button {
    width: 466px;
    height: 60px;
    background-color: #A8863B;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: -1%;
    color: #FFFFFF;
    margin: 60px auto 0;
}

.details-done-button:hover {
    background-color: #8d6f2f;
}

.details-button-arrow {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.details-footer .footer-top {
    display: none;
}

.details-footer {
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    height: auto;
}

.details-footer .footer-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}

.details-page-wrapper .main-footer {
    margin-bottom: 0;
    padding-bottom: 0;
    height: auto;
}

body.details-page-body {
    padding-bottom: 0;
    margin-bottom: 0;
}

.details-page-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ============================================
   USER DETAILS PAGE
   ============================================ */

.userdetails-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 20px 316px;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: calc(540px + 60px + 190px + 60px + 316px);
}

.userdetails-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
}

.userdetails-left-block {
    width: 741px;
    min-height: 732px;
    height: auto;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.userdetails-product-list {
    width: 681px;
    height: 480px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.userdetails-product-divider {
    width: 681px;
    height: 0px;
    border-top: 1px solid #D9D9D9;
    opacity: 1;
    margin: 30px 0;
}

.userdetails-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.userdetails-product-info {
    width: 442px;
    height: 120px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.userdetails-product-image {
    width: 135px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.userdetails-product-title-block {
    width: 293px;
    height: 72px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.userdetails-product-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: #333333;
    margin: 0;
    margin-bottom: 4px;
}

.userdetails-product-meta {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #333333;
    margin: 0;
}

.userdetails-meta-value {
    color: #666666;
}

.userdetails-product-price {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.userdetails-divider {
    width: 681px;
    border-top: 1px solid #D9D9D9;
}

.userdetails-price-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.userdetails-price-accordion-header {
    display: none;
}

.userdetails-price-accordion-content {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 0 !important;
}

.userdetails-price-row {
    width: 681px;
    min-height: 58px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.userdetails-price-row:first-of-type {
    margin-bottom: 0px;
}

.userdetails-price-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.userdetails-price-value {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.userdetails-price-divider {
    width: 681px;
    height: 0px;
    border-top: 1px solid #D9D9D9;
    opacity: 1;
    margin: 5px 0;
}

.userdetails-total-row {
    height: auto;
    margin-top: 0;
}


.userdetails-price-row {
    width: 681px;
    min-height: 58px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.userdetails-price-row:first-of-type {
    margin-bottom: 0px;
}

.userdetails-price-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.userdetails-price-value {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.userdetails-price-divider {
    width: 681px;
    height: 0px;
    border-top: 1px solid #D9D9D9;
    opacity: 1;
    margin: 5px 0;
}

.userdetails-total-row {
    height: auto;
    margin-top: 0;
}

.userdetails-right-block {
    width: 588px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.userdetails-user-card {
    width: 588px;
    height: 241px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.userdetails-user-heading {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.userdetails-user-details {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.userdetails-details-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.userdetails-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.userdetails-detail-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.userdetails-detail-value {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.userdetails-details-column:first-child .userdetails-detail-item:nth-child(2) .userdetails-detail-value {
    width: 224px;
    height: 31px;
}

.userdetails-address-section {
    width: 588px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 15px;
    border: 1px solid #D9D9D9;
}

.userdetails-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.userdetails-address-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.userdetails-manage-address-link {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A8863B;
    text-decoration: underline;
    cursor: pointer;
}

.userdetails-address-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    position: relative;
}

.userdetails-address-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.userdetails-address-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.userdetails-address-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-top: -8px;
    line-height: 1.5;
    width: 457px;
}

.userdetails-address-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.userdetails-address-edit,
.userdetails-address-delete {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A8863B;
    text-decoration: none;
    cursor: pointer;
}

.userdetails-address-edit:hover,
.userdetails-address-delete:hover {
    text-decoration: underline;
}

.userdetails-address-divider {
    color: #A8863B;
    font-size: 16px;
}

.userdetails-address-item-divider {
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin: 10px 0;
}

.userdetails-address-radio {
    width: 20px;
    height: 20px;
    margin-top: 35px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #D9D9D9;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.userdetails-address-radio:checked {
    background-color: #FFFFFF;
}

.userdetails-address-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A8863B;
}

.userdetails-radio-label {
    display: none;
}

.userdetails-coupon-section {
    width: 588px;
    height: 94px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.userdetails-coupon-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.userdetails-optional {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.userdetails-coupon-input-row {
    display: flex;
    gap: 14px;
}

.userdetails-coupon-input {
    width: 407px;
    height: 60px;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    padding: 0 20px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    box-sizing: border-box;
}

.userdetails-coupon-input::placeholder {
    color: #999999;
}

.userdetails-apply-button {
    width: 167px;
    height: 60px;
    border-radius: 16px;
    background-color: #E6E6E6;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0%;
    color: #333333;
    cursor: pointer;
}

.userdetails-apply-button:hover {
    background-color: #D9D9D9;
}

.userdetails-add-address {
    width: 588px;
    height: 79px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    cursor: pointer;
}

.userdetails-add-address-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.userdetails-add-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.userdetails-checkout-button {
    width: 420px;
    height: 60px;
    border-radius: 12px;
    background-color: #A8863B;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1%;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(775px + 60px + 190px);
}

.userdetails-checkout-button:hover {
    background-color: #8d6f2f;
}

.userdetails-checkout-arrow {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.userdetails-footer .footer-top {
    display: none;
}

.userdetails-footer {
    margin-bottom: 0;
    padding-bottom: 0;
    height: auto;
}

.userdetails-footer .footer-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}

body {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ============================================
   YOUR ORDER PAGE
   ============================================ */

.yourorder-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 200px 240px 60px;
    position: relative;
}

.yourorder-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #333333;
    position: absolute;
    top: 80px;
    left: 240px;
    margin: 0;
}

.yourorder-title-mobile {
    display: none;
}

.yourorder-title-desktop {
    display: inline;
}

.yourorder-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: -10px;
}

.yourorder-left-column {
    width: 741px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yourorder-card {
    width: 741px;
    border: 1px solid #A8863B;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.yourorder-card-header {
    display: contents;
}

.yourorder-card-divider {
    display: none;
}

.yourorder-card-content {
    display: none;
}

.yourorder-card-left {
    display: flex;
    gap: 14px;
    align-items: center;
    flex: 1;
}

.yourorder-product-image {
    width: 135px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.yourorder-product-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.yourorder-product-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: #333333;
    margin: 0;
    margin-bottom: 4px;
}

.yourorder-product-meta {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #333333;
    margin: 0;
}

.yourorder-meta-value {
    color: #666666;
}

.yourorder-arrow-icon {
    width: 11.98px;
    height: 23.38px;
    object-fit: contain;
    cursor: pointer;
    flex-shrink: 0;
    display: block;
}

/* Desktop arrow - show in desktop, hide in mobile */
.yourorder-arrow-desktop {
    display: block;
}

.yourorder-arrow-mobile {
    display: none;
}

.yourorder-right-column {
    width: 588px;
}

.yourorder-info-panel {
    width: 588px;
    height: 329px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 30px;
    display: none !important;
    flex-direction: column;
    gap: 20px;
    visibility: hidden;
}

.yourorder-info-panel.active {
    display: flex !important;
    visibility: visible;
}

.yourorder-status-image {
    width: 209px;
    height: 24px;
    object-fit: contain;
}

.yourorder-info-heading {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #333333;
    margin: 0;
}

.yourorder-info-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.yourorder-details-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.yourorder-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.yourorder-detail-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.yourorder-detail-value {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.yourorder-details-column:last-child .yourorder-detail-item:last-child .yourorder-detail-value {
    width: 212px;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.yourorder-footer .footer-top {
    display: none;
}

.yourorder-footer {
    margin-bottom: 0;
    padding-bottom: 0;
    height: auto;
}

.yourorder-footer .footer-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ============================================
   POPUP STYLES
   ============================================ */

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-overlay.active {
    display: block;
}

/* Sign In Popup - Desktop */
.signin-popup {
    display: none;
    position: fixed;
    width: 600px;
    height: 446px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    padding: 40px;
    border: none;
    background: #FFFFFF;
    z-index: 1000;
}

.signin-popup.active {
    display: block;
}

.signin-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -2%;
    color: #333333;
    margin: 0;
}

.signin-subtitle {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -2%;
    color: #666666;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Desktop Input Container */
.signin-input-container.mobile-input {
    display: none;
}

.signin-input-container.desktop-input {
    display: flex;
    align-items: center;
    width: 500px;
    height: 66px;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    position: relative;
    margin-top: 30px;
}

.signin-floating-label {
    display: block;
    font-size: 16px;
    color: #333333;
    position: absolute;
    top: -13px;
    left: 12px;
    background: #FFFFFF;
    padding: 0 6px;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
}

.signin-country-code {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -2%;
    color: #666666;
    padding-left: 16px;
    padding-top: 10px;
}

.signin-vertical-divider {
    width: 2px;
    height: 39px;
    background: #666666;
    border-radius: 1px;
    margin-left: 20px;
    margin-right: 12px;
    margin-top: 10px;
}

.signin-input {
    flex: 1;
    height: 100%;
    font-size: 18px;
    padding: 0 16px;
    border: none;
    outline: none;
    font-family: 'Lexend Deca', sans-serif;
    border-radius: 12px;
}

/* Desktop Continue Button */
.signin-continue-btn {
    width: 500px;
    height: 60px;
    border-radius: 14px;
    margin-top: 50px;
    background: #A8863B;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    color: #FFFFFF;
    cursor: pointer;
}

/* Desktop: Show divider and signup text */
.signin-divider-line {
    width: 500px;
    height: 0px;
    border: 1px solid #A8863B;
    margin-top: 40px;
    display: block;
}

.signin-signup-text {
    display: block;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -2%;
    color: #333333;
    margin-top: 30px;
    text-align: center;
}

.signin-signup-text .signup-link {
    font-weight: 700;
    color: #333333;
    cursor: pointer;
    font-style: bold;
    font-size: 18px;
}

/* Demo Page Styles */
.popup-demo-page {
    padding: 50px 20px;
    min-height: 100vh;
    background: #F6F7F9;
}

.popup-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.popup-demo-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
}

.popup-demo-button {
    padding: 12px 30px;
    background: #A8863B;
    border: none;
    border-radius: 6px;
    color: #FFFFFF;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 15px;
}

.popup-demo-button:hover {
    background: #8B6F47;
}

/* ============================================
   OTP VERIFICATION POPUP STYLES
   ============================================ */

/* OTP Verify Popup - Desktop */
.otp-verify-popup {
    display: none;
    position: fixed;
    width: 470px;
    border-radius: 20px;
    padding: 40px 40px 40px 60px;
    background: #FFFFFF;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.otp-verify-popup.active {
    display: block;
}

.otp-verify-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #666666;
    margin: 0 0 4px 0;
}

.otp-phone-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.otp-phone-number {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333333;
}

.otp-edit-icon {
    width: 15.27px;
    height: 14.53px;
    margin-left: 15px;
    cursor: pointer;
}

.otp-section-container {
    width: 269px;
    height: 119px;
    margin-top: 30px;
}

.otp-label {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #666666;
    display: block;
    margin-bottom: 14px;
}

.otp-input-row {
    width: 261px;
    height: 54px;
    display: flex;
    gap: 14px;
}

.otp-input {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    border: 1px solid #666666;
    text-align: center;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    outline: none;
    background: #FFFFFF;
}

.otp-input:focus {
    border-color: #A8863B;
}

.otp-input.has-value {
    border-color: #A8863B;
}

.otp-resend-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-top: -10px;
    margin-bottom: 40px;
}

.otp-resend-link {
    font-weight: 600;
    color: #A8863B;
    cursor: pointer;
}

.otp-verify-btn {
    width: 370px;
    height: 56px;
    border-radius: 10px;
    background: #E4E3E8;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 15px;
}

.otp-verify-btn:disabled {
    cursor: not-allowed;
}

.otp-terms-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #666666;
    margin: 0;
    text-align: center;
    margin-left: -10px;
}

.otp-terms-link {
    font-weight: 700;
    cursor: pointer;
}

/* ============================================
   USER ADDRESS POPUP STYLES
   ============================================ */

/* User Address Popup - Desktop */
.user-address-popup {
    display: none;
    position: fixed;
    width: 364px;
    border-radius: 20px;
    padding: 25px;
    background: #FFFFFF;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 650px;
    overflow-y: auto;
}

.user-address-popup.active {
    display: block;
}

.user-address-popup-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #333333;
    margin: 0 0 5px 0;
    text-align: left;
}

.user-address-popup-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.user-address-popup-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5px 0;
    gap: 15px;
}

.user-address-popup-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.user-address-popup-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.user-address-popup-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

.user-address-popup-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0px;
}

.user-address-popup-edit,
.user-address-popup-delete {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #A8863B;
    text-decoration: none;
    cursor: pointer;
}

.user-address-popup-edit:hover,
.user-address-popup-delete:hover {
    text-decoration: underline;
}

.user-address-popup-divider {
    color: #A8863B;
    font-size: 16px;
}

.user-address-popup-item-divider {
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin: 10px 0;
}

.user-address-popup-radio {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 30px;
    margin-left: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #D9D9D9;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.user-address-popup-radio:checked {
    border-color: #A8863B;
    background-color: #FFFFFF;
}

.user-address-popup-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A8863B;
}

.user-address-popup-radio-label {
    display: none;
}

.user-address-popup-done-btn {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    background-color: #A8863B;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-address-popup-done-btn:hover {
    background-color: #977a2f;
}

/* ============================================
   DELETE PRODUCT POPUP STYLES
   ============================================ */

/* Delete Product Popup - Desktop */
.delete-product-popup {
    display: none;
    position: fixed;
    width: 388px;
    height: 274px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    background: #FFFFFF;
    padding: 24px;
    z-index: 1000;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.delete-product-popup.active {
    display: flex;
}

.delete-product-image-box {
    width: 86px;
    height: 86px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.delete-product-image {
    width: 78px;
    height: 86px;
    object-fit: contain;
}

.delete-product-text {
    font-family: 'Anek Odia', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #333333;
    text-align: center;
    margin: 0 0 8px 0;
}

.delete-product-buttons {
    width: 308px;
    height: 54px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.delete-product-yes-btn,
.delete-product-cancel-btn {
    width: 149px;
    height: 54px;
    border-radius: 12px;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease, transform 0.05s ease;
}

.delete-product-yes-btn {
    background-color: #A8863B;
    color: #FFFFFF;
}

.delete-product-yes-btn:hover {
    background-color: #977a2f;
}

.delete-product-yes-btn:active {
    transform: scale(0.98);
}

.delete-product-cancel-btn {
    background-color: #FFFFFF;
    color: #A8863B;
    border: 1px solid #A8863B;
}

.delete-product-cancel-btn:hover {
    background-color: #F9F9F9;
}

.delete-product-cancel-btn:active {
    transform: scale(0.98);
}

/* Delete Address Popup - Desktop */
.delete-address-popup {
    display: none;
    position: fixed;
    width: 388px;
    height: 274px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    background: #FFFFFF;
    padding: 24px;
    z-index: 1000;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.delete-address-popup.active {
    display: flex;
}

.delete-address-image-box {
    width: 86px;
    height: 86px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.delete-address-image {
    width: 78px;
    height: 86px;
    object-fit: contain;
}

.delete-address-text {
    font-family: 'Anek Odia', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #333333;
    text-align: center;
    margin: 0 0 8px 0;
}

.delete-address-buttons {
    width: 308px;
    height: 54px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.delete-address-yes-btn,
.delete-address-cancel-btn {
    width: 149px;
    height: 54px;
    border-radius: 12px;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease, transform 0.05s ease;
}

.delete-address-yes-btn {
    background-color: #A8863B;
    color: #FFFFFF;
}

.delete-address-yes-btn:hover {
    background-color: #977a2f;
}

.delete-address-yes-btn:active {
    transform: scale(0.98);
}

.delete-address-cancel-btn {
    background-color: #FFFFFF;
    color: #A8863B;
    border: 1px solid #A8863B;
}

.delete-address-cancel-btn:hover {
    background-color: #F9F9F9;
}

.delete-address-cancel-btn:active {
    transform: scale(0.98);
}

/* ============================================
   POP-UP.HTML STYLES (from style2.css)
   ============================================ */

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.modal-card {
  width: 638px;
  height: 514px;
  background: #ffffff;
  border-radius: 30px;
  opacity: 1;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  padding: 24px;
  box-sizing: border-box;
}

.modal-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-card__icon {
  width: 122px;
  height: 104px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card__icon svg {
  width: 100%;
  height: 100%;
}

.modal-card__text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-card__primary-text {
  width: 562px;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: #111111;
  margin-bottom: 24px;
}

.modal-card__divider {
  display: none;
}

.modal-card__secondary-text {
  width: 578px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 20px 8px;
  background: transparent;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: #333333;
  margin-bottom: 28px;
}

.modal-card__button {
  width: 90%;
  height: 56px;
  background: #b08d3f;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.05s ease;
}

.modal-card__button:hover {
  background: #9a7b34;
}

.modal-card__button:active {
  transform: scale(0.98);
}

.modal-card__triggers {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-card__trigger {
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  background: #b08d3f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: lowercase;
}

.modal-card__trigger:hover {
  background: #9a7b34;
}

.is-hidden {
  display: none;
}

/* LNA POPUP START: Location not available modal */
.lna-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.lna-hidden {
  display: none;
}

.lna-modal {
  width: 558.5px;
  height: 361px;
  background: #ffffff;
  border-radius: 24.31px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lna-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 19px;
  height: 19px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.lna-close:hover {
  opacity: 0.7;
}

.lna-illustration {
  width: 223.25px;
  height: 201.87px;
  opacity: 1;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lna-illustration svg {
  width: 100%;
  height: 100%;
}

.lna-text {
  width: 425.9px;
  text-align: center;
  margin-top: 16px;
  z-index: 2;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 500;
  font-size: 31.67px;
  line-height: 130%;
  letter-spacing: -2%;
  color: #333333;
}

.lna-text-line {
  display: block;
  white-space: nowrap;
}

.lna-bottom-layer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1282.62px;
  height: 227.66px;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lna-bottom-layer svg {
  width: 1282.62px;
  height: 227.66px;
  display: block;
}
/* LNA POPUP END */

/* EML POPUP START: Enter map location modal */
.eml-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.eml-hidden {
  display: none;
}

.eml-modal {
  width: 600px;
  height: 360px;
  background: #ffffff;
  border-radius: 24.31px;
  opacity: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eml-content {
  width: 500px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.eml-heading {
  width: 500px;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: -2%;
  color: #333333;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  white-space: nowrap;
}

.eml-input-wrapper {
  width: 500px;
  height: 76px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #ffffff;
  margin-bottom: 24px;
}

.eml-input-label {
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  background: #ffffff;
  padding: 4px 6px;
  position: absolute;
  top: -10px;
  left: 12px;
}

.eml-input-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eml-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-family: "Lexend Deca", sans-serif;
  font-size: 16px;
  color: #333333;
  padding-left: 36px;
  background: transparent;
}

.eml-button {
  width: 500px;
  height: 66px;
  background: #a8863b;
  border-radius: 12px;
  border: none;
  font-family: "Lexend Deca", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.2s ease, transform 0.05s ease;
}

.eml-button:hover {
  background: #967536;
}

.eml-button:active {
  transform: scale(0.98);
}
/* EML POPUP END */