/* ================= SHOP HERO ================= */

.shop-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Image container fills section */
.shop-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Make image behave like background-cover */
.shop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* KEY LINE */
}

/* Dark overlay */
.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Text content */
.shop-hero-content {
    width: 420px;
    position: relative;
    z-index: 3;
    color: #fff;
}

.shop-hero h1 {
    font-family: 'Sackers Gothic';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.shop-hero p {
    font-size: 19px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: #ccc;
}

/* ================= FILTER BAR ================= */

.shop-filter {
    background: #ffffff;
    padding: 30px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-left a {
    margin-right: 30px;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.filter-left a.active {
    border-bottom: 2px solid #111;
    color: #111;
}

/* RIGHT SIDE */
/* .filter-right {
    display: flex;
    align-items: center;
    gap: 35px;
} */

.filter-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: #111;
}

/* ICON STYLE */
.filter-right i {
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.filter-right span:hover i {
    opacity: 1;
    transform: translateY(1px);
}

    .filter-right{
        display:flex;
        align-items:center;
        gap:28px;
    }

    .filter-btn,
    .sort-btn{
        background:none;
        border:none;
        padding:0;
        color:inherit;
        font:inherit;
        text-transform:uppercase;
        letter-spacing:3px;
        display:flex;
        align-items:center;
        gap:8px;
        cursor:pointer;
    }

    .shop-modal-backdrop{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,0.35);
        display:none;
        align-items:center;
        justify-content:center;
        z-index:9999;
        padding:20px;
    }

    .shop-modal-backdrop.active{
        display:flex;
    }

    .shop-modal{
        position:relative;
        background:#fff;
        width:100%;
        max-width:430px;
        border-radius:14px;
        padding:28px 28px 30px;
        max-height:90vh;
        overflow-y:auto;
        box-shadow:0 20px 60px rgba(0,0,0,0.18);
    }

    .filter-modal-card{
        max-width:380px;
        border-radius:0;
    }

    .sort-modal-card{
        max-width:430px;
    }

    .shop-modal-close{
        position:absolute;
        top:14px;
        right:16px;
        border:none;
        background:none;
        cursor:pointer;
        font-size:18px;
    }

    .shop-modal-title{
        text-align:center;
        text-transform:uppercase;
        letter-spacing:4px;
        font-size:24px;
        margin:0 0 16px;
    }

    .shop-modal-divider{
        height:1px;
        background:#e5e5e5;
        margin-bottom:24px;
    }

    .shop-modal-group{
        margin-bottom:24px;
    }

    .shop-modal-group h3{
        margin:0 0 16px;
        font-size:16px;
        font-weight:600;
    }

    .shop-radio-row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:16px;
        margin-bottom:18px;
        cursor:pointer;
        font-size:16px;
    }

    .shop-radio-row input[type="radio"]{
        appearance:none;
        -webkit-appearance:none;

        width:20px;
        height:20px;
        border:2px solid #9a9a9a;
        border-radius:50%;
        position:relative;
        cursor:pointer;
        transition:all .25s ease;
    }

    .shop-radio-row input[type="radio"]:checked{
        border-color:#000;
    }

    .shop-radio-row input[type="radio"]:checked::after{
        content:"";
        position:absolute;
        top:50%;
        left:50%;
        width:10px;
        height:10px;
        background:#000;
        border-radius:50%;
        transform:translate(-50%, -50%);
    }

    .shop-modal-apply{
        width:100%;
        height:50px;
        border:none;
        background:#000;
        color:#fff;
        cursor:pointer;
        font-size:16px;
        margin-top:8px;
        margin-bottom:12px;
    }

    .shop-modal-reset{
        width:100%;
        height:48px;
        border:1px solid #8a8a8a;
        background:#fff;
        color:#666;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        font-size:16px;
    }


/* ================= PRODUCTS ================= */

.shop-products {
    background: #ffffff;
    padding: 40px 80px 100px;
}

.shop-products .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.shop-products .product-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
    min-width: 0;
}

.product-card {
    background: #fff;
    padding-bottom: 20px;
}

/* IMAGE CONTAINER (Controls Crop Area) */
.product-image {
    height: 300px; /* Controls how much of image shows */
    overflow: hidden; /* Hides bottom half */
}

/* IMAGE */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* KEY: Crop from top downward */
    transform: scale(1.2); /* Increase this to zoom more */
    transition: 0.4s ease;
}

/* Hover zoom */
.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Sackers Gothic';
    font-weight: 300;
    color: rgba(0, 0, 0, 1);
    text-align: left;
    letter-spacing: 1px;
    margin: 15px 0px;
}

.product-card p {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    text-align: left;
}

/* ================= PAGINATION ================= */

.pagination {
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pagination a {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    color: #111;
}

/* PAGE NUMBERS */
.page-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* NORMAL NUMBER */
.page-numbers a {
    font-size: 14px;
    letter-spacing: 2px;
    color: #111;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ACTIVE PAGE (Black Circle) */
.page-numbers a.active {
    background: #000;
    color: #fff;
}

/* Hover Effect */
.page-numbers a:hover {
    background: #000;
    color: #fff;
    transition: 0.3s ease;
}


/* ================= PRODUCT DETAIL PAGE ================= */

.product-page {
    background: #ffffff;
    padding: 18px 80px 100px;
    font-family: "Helvetica Neue", sans-serif;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 32px;
    color: #777;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.product-container {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 88px;
    align-items: start;
}

.product-gallery {
    width: 100%;
    max-width: 470px;
}

.product-gallery .main-image {
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.thumbnail-row {
    width: 100%;
    max-width: 470px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnail-row::-webkit-scrollbar {
    display: none;
}

.thumbnail-row .thumb-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    flex: 0 0 72px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #d8d8d8 !important;
    background: #fff !important;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.thumbnail-row .thumb-btn img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    object-fit: cover;
}

.thumbnail-row .thumb-btn.active,
.thumbnail-row .thumb-btn:hover {
    border-color: #000 !important;
}

.thumb-label {
    display: none !important;
}

/* ================= RIGHT SIDE ================= */
.product-info h1 {
    font-size: 31px;
    font-family: 'Sackers Gothic', sans-serif;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.price {
    font-size: 24px;
    margin-bottom: 34px;
    color: #111;
}

/* Sizes */
.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 30px;
}

.size-btn {
    min-width: 94px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #777;
    background: #fff;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    color: #111;
}

.size-btn:hover,
.size-btn.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

/* Meta */
.meta {
    display: flex;
    gap: 34px;
    align-items: center;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.meta-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    letter-spacing: inherit;
    text-transform: inherit;
}

/* Buttons / Add to cart area */
.actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.add-cart-form {
    flex: 1;
}

.cart-action-wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.quantity-box {
    width: 104px;
    height: 44px;
    border: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: #fafafa;
    flex-shrink: 0;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #ececec;
    color: #666;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-value {
    min-width: 16px;
    text-align: center;
    font-size: 16px;
    color: #111;
}

.add-to-cart {
    flex: 1;
    background: #000;
    color: #fff;
    height: 44px;
    border: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-order-link {
    width: 195px;
    display: block;
    flex-shrink: 0;
}

.custom-order {
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #999;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-order:hover {
    border-color: #000;
}

.size-error {
    margin-top: 10px;
    color: #c62828;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Accordion */
.accordion {
    border-top: 1px solid #e2e2e2;
}

.accordion-item {
    border-bottom: 1px solid #e2e2e2;
}

.accordion-header {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    color: #111;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.accordion-body {
    display: none;
    padding: 0 0 18px;
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

.accordion-item.open .accordion-body {
    display: block;
}

/* Reviews */
.review-item {
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #efefef;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.review-rating {
    color: #000;
    letter-spacing: 1px;
}

/* Size Guide Modal */
.size-guide-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.size-guide-modal.active {
    display: flex;
}

.size-guide-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.size-guide-card h3 {
    margin: 0 0 18px;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.size-guide-content {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

.size-guide-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* Add to cart success modal */
.cart-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cart-success-modal.active {
    display: flex;
}

.cart-success-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 26px 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.cart-success-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.cart-success-icon-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(127, 191, 72, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-success-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #7fbe48;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-success-card h3 {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c3340;
    margin-bottom: 8px;
    font-family: 'Sackers Gothic', sans-serif;
}

.cart-success-card p {
    font-size: 16px;
    color: #6e7480;
    margin-bottom: 18px;
}

.cart-success-actions {
    display: flex;
    gap: 20px;
}

.cart-success-btn {
    flex: 1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-success-btn.light {
    background: #fff;
    border: 1px solid #222;
    color: #222;
}

.cart-success-btn.dark {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.add-to-cart:disabled{
opacity:0.5;
cursor:not-allowed;
}

@media (max-width: 991px) {
    .actions {
        flex-direction: column;
    }

    .cart-action-wrap {
        width: 100%;
    }

    .custom-order-link {
        width: 100%;
    }

    .cart-success-actions {
        flex-direction: column;
    }
}

/* Related */
.related-section {
    background: #ffffff;
    padding: 80px 80px 120px;
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
}

.related-title {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
    .product-page {
        padding: 20px 16px 70px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery .main-image {
        max-width: 100%;
        height: auto;
    }

    .product-gallery .main-image img {
        height: auto;
        max-height: 520px;
    }

    .thumbnail-row {
        gap: 8px;
    }

    .thumb-btn {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .actions {
        flex-direction: column;
    }

    .custom-order-link {
        width: 100%;
    }
}


/* ================= ABOUT HERO ================= */
.about-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Image container fills section */
.about-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Make image behave like background-cover */
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Text content */
.about-hero-content {
    width: 420px;
    max-width: calc(100% - 32px);
    position: relative;
    z-index: 3;
    color: #fff;
}

.about-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* ================= ABOUT SECTION ================= */

.about-section {
    background: #ffffff;
    padding: 120px 50px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT IMAGE */
.about-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 28px;
    font-family: "Sackers Gothic", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.about-content p {
    font-size: 18px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    line-height: 30px;
    color: #555;
    margin-bottom: 25px;
    max-width: 450px;
}

/* ================= COMMITMENT SECTION ================= */

.commitment-section {
    background: #000;
    color: #fff;
    padding: 60px 80px 60px;
    text-align: center;
}

/* Top Title */
.commitment-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.commitment-title h4 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Sackers Gothic';
    font-size: 18px;
    font-weight: 500;
    color: rgba(122, 72, 0, 1);
}

.commitment-title .line {
    width: 80px;
    height: 1px;
    background: rgba(122, 72, 0, 1);
}

/* Container */
.commitment-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

/* Boxes */
.commitment-box {
    flex: 1;
}

.commitment-box h2 {
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Sackers Gothic";
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.commitment-box p {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    line-height: 28px;
    color: rgba(164, 167, 174, 1);
    max-width: 320px;
    margin: auto;
}

/* ================= STANDOUT SECTION ================= */

.standout-section {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 140px;
    padding-left: 80px;
    padding-right: 80px;
}

/* Title */
.standout-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.standout-title h4 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    font-size: 18px;
    color: rgba(122, 72, 0, 1);
}

.standout-title .line {
    width: 90px;
    height: 1px;
    background: rgba(122, 72, 0, 1);
}

/* Container */
.standout-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

/* Box */
.standout-box {
    text-align: left;
}

/* Number */
.standout-box .number {
    font-size: 16px;
    letter-spacing: 1px;
    color: #222;
    font-weight: 500;
    font-family: 'Sackers Gothic';
    display: block;
    margin-bottom: 25px;
}

/* Heading */
.standout-box h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Sackers Gothic';
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

/* Paragraph */
.standout-box p {
    font-size: 16px;
    line-height: 28px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(83, 88, 98, 1);
    max-width: 260px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .about-section {
        padding: 90px 32px;
    }

    .about-container {
        gap: 40px;
    }
     .about-image {
        height: 500px;
    }

    .commitment-section {
        padding: 60px 32px;
    }

    .commitment-container {
        gap: 50px;
    }

    .standout-section {
        padding: 70px 32px 100px;
    }

    .standout-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        height: 280px;
    }

    .about-hero-content {
        width: 100%;
        padding: 0 16px;
    }

    .about-hero h1 {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-section {
        padding: 70px 20px;
    }

    .about-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .about-image,
    .about-content {
        width: 100%;
        flex: unset;
    }

    .about-image {
        height: 500px;
    }

    .about-content h2 {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .about-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 28px;
    }

    .commitment-section {
        padding: 50px 20px;
    }

    .commitment-title {
        gap: 16px;
        margin-bottom: 45px;
    }

    .commitment-title .line {
        width: 50px;
    }

    .commitment-title h4 {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .commitment-container {
        flex-direction: column;
        gap: 35px;
    }

    .commitment-box p {
        max-width: 100%;
    }

    .standout-section {
        padding: 60px 20px 80px;
    }
    .standout-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .standout-title {
        gap: 16px;
        margin-bottom: 50px;
    }

    .standout-title .line {
        width: 50px;
    }

    .standout-title h4 {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .standout-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .standout-box p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 240px;
    }

    .about-hero h1 {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .about-section {
        padding: 50px 16px;
    }

    .about-image {
        height: 400px;
    }

    .about-content h2 {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 18px;
    }

    .commitment-section {
        padding: 40px 16px;
    }

    .commitment-title {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .commitment-title .line {
        width: 40px;
    }

    .commitment-title h4 {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .commitment-box h2 {
        font-size: 15px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .commitment-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .standout-section {
        padding: 45px 16px 60px;
    }

    .standout-title {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .standout-title .line {
        width: 40px;
    }

    .standout-title h4 {
        font-size: 14px;
        letter-spacing: 2px;
        text-align: center;
    }

    .standout-box .number {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .standout-box h3 {
        font-size: 15px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .standout-box p {
        font-size: 14px;
        line-height: 24px;
    }
}
/* ================= ENQUIRY HERO ================= */

.enquiry-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enquiry-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.enquiry-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enquiry-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.enquiry-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 500px;
}

.enquiry-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.enquiry-hero p {
    font-size: 15px;
    color: #ddd;
}

/* ================= ENQUIRY SECTION ================= */

.enquiry-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.enquiry-container {
    width: 100%;
    max-width: 1000px;
}

.enquiry-intro {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 850px;
}

/* ================= WHATSAPP LINK ================= */

.whatsapp-link {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 850px;
}

.whatsapp-link a {
    color: #b67b3c;
    text-decoration: underline;
}

/* Form layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group small {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group.full-width label{
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(0, 0, 0, 1);

}

.optional{
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(113, 118, 128, 1);
    outline: none;
}

.form-group textarea {
    min-height: 180px;
    resize: none;
}

/* Custom Select */
.custom-select {
    padding: 12px 14px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(113, 118, 128, 1);
    appearance: none;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='1.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.custom-select:focus {
    border-color: #000;
}

/* Upload Box */
/* Upload Box */
.upload-box {
    border: 1px dashed #bdbdbd;
    padding: 50px 20px;
    text-align: center;
    margin-top: 15px;
}

.upload-content{
    text-align:center;
}

.upload-content img {
    width: 40px;
    margin: 0 auto 15px auto;
    display:block;
}

.upload-content p {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(65, 70, 81, 1);
}

.upload-content span {
    color: #b67b3c;
    cursor: pointer;
}

.upload-content small {
    display: block;
    margin-top: 8px;
    color: #888;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #222;
}
/* ================= MEASUREMENT SECTION ================= */

.measurement-section {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.measurement-section.show-measurement {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 30px;
}

.measurement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* ================= DELIVERY TIMELINE ================= */

.delivery-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.delivery-options button {
    padding: 10px 18px;
    border: 1px solid rgba(0, 0, 0, 1);;
    background: #fff;
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: 0.3s ease;
}

.delivery-options button:hover {
    background: #000;
    color: #fff;
}


/* Responsive */
@media (max-width: 992px) {
    .measurement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .measurement-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= ACCOUNT SECTION ================= */

.account-section {
    background: #ffffff;
    padding: 20px 0 40px;
    font-family: "Montserrat", sans-serif;
}

/* ================= BREADCRUMB ================= */

.account-breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

/* Short left line */
.line-left {
    width: 60px;
    height: 1px;
    background: #e6e6e6;
}

/* Expanding right line */
.line-right {
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}

.breadcrumb-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.breadcrumb-text a {
    text-decoration: none;
    color: #777;
}

.account-title {
    font-size: 24px;
    font-family: 'Sackers Gothic';
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(24, 29, 39, 1);
    letter-spacing: 3px;
    margin-bottom: 40px;
    padding: 0 80px;
}

/* Layout */
.account-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 80px;
}

/* LEFT */
.account-left {
    width: 25%;
}

.account-left h2 {
    font-size: 24px;
    font-family: 'Sackers Gothic';
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: rgba(37, 43, 55, 1);
}

.account-left p {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(164, 167, 174, 1);
}

/* Divider */
.account-divider {
    width: 1px;
    background: rgba(233, 234, 235, 1);
    min-height: 300px;
}

/* RIGHT */
.account-right {
    flex: 1;
}

.account-right h3 {
    font-size: 20px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: rgba(24, 29, 39, 1);
}



.leave-review-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-width: 158px;
    height: 36px;
    border: 1px solid #8f8f8f;
    background: #fff;
    color: #222;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.leave-review-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.review-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.review-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.review-modal-title {
    font-size: 22px;
    font-family: 'Sackers Gothic';
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #111;
}

.review-product-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.star-btn {
    border: none;
    background: none;
    font-size: 28px;
    color: #cfcfcf;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: 0.2s ease;
}

.star-btn.active {
    color: #111;
}

.review-form-group {
    margin-bottom: 18px;
}

.review-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #222;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    border-color: #111;
}

.submit-review-btn {
    width: 100%;
    height: 46px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 10px;
}

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

.reviewed-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-width: 158px;
    height: 36px;
    border: 1px solid #dcdcdc;
    background: #f8f8f8;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Order Card */
.order-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(233, 234, 235, 1);
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
}

/* Image Container */
.order-card-image {
    width: 70px; /* same width as before */
    height: 75px; /* smaller height = crop effect */
    overflow: hidden; /* hides bottom half */
    border-radius: 6px;
    margin-right: 20px;
}

/* Image */
.order-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.order-info h4 {
    font-size: 16px;
    font-family: 'Sackers Gothic';
    font-family: 500;
    color: rgba(37, 43, 55, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.order-info .price {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(37, 43, 55, 1);
    margin-bottom: 5px;
}

.order-info .date {
    font-size: 14px;
    color: rgba(113, 118, 128, 1);
    font-family: 'PP Neue Montreal';
    font-weight: 500;
}

/* Status Badge */
.order-status {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-family: 'Inter';
    border-radius: 20px;
    background: #eaeaea;
}

.order-status.in-transit {
    background: rgba(242, 244, 247, 1);
    color: rgba(52, 64, 84, 1);
}

.order-status.delivered {
    background: rgba(242, 244, 247, 1);
    color: rgba(52, 64, 84, 1);
}



/* ================= CART SECTION ================= */

.cart-section {
    background: #ffffff;
    padding: 40px 0 100px;
    font-family: "Montserrat", sans-serif;
}

/* ================= BREADCRUMB ================= */

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

/* Short left line */
.line-left {
    width: 60px;
    height: 1px;
    background: #e6e6e6;
}

/* Expanding right line */
.line-right {
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}

.breadcrumb-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.breadcrumb-text a {
    text-decoration: none;
    color: #777;
}

.cart-title {
    font-size: 24px;
    font-family: 'Sackers Gothic';
    font-weight: 700;
    padding: 0 80px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Layout */
.cart-wrapper {
    display: flex;
    gap: 50px;
    padding: 0 80px;
}

/* LEFT SIDE */
.cart-left {
    flex: 2;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 14px;
    border: 1px solid rgba(233, 234, 235, 1);
    margin-bottom: 20px;
    gap: 10px;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.cart-item-info h3 {
    font-size: 16px;
    font-family: 'Sackers Gothic';
    color: rgba(37, 43, 55, 1);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cart-item-info p {
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(37, 43, 55, 1);
}

/* Quantity */
.cart-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    margin-left: auto;
}

.cart-quantity button {
    background: rgba(245, 245, 245, 1);
    border: none;
    border-radius: 8.97px;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
}

.cart-quantity span {
    padding: 0 12px;
    font-size: 17.94px;
}

/* Delete */
.cart-delete i {
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
}

/* Divider */
.cart-divider {
    width: 1px;
    background: #ddd;
    min-height: 400px;
}

/* RIGHT SIDE */
.cart-right {
    flex: 1;
    background: #fff;
    padding: 30px 0;
    margin: 0;
    border-radius: 14px;
    height: fit-content;
}

.cart-right h2 {
    font-size: 20px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Summary lines */
.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-total {
    font-weight: 600;
    margin-top: 10px;
}

.cart-right hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Checkout button */
.checkout-btn {
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.checkout-btn:hover {
    opacity: 0.85;
}



/* ================= CHECKOUT SECTION ================= */

.checkout-section {
    padding: 20px 0 100px;
    font-family: "Montserrat", sans-serif;
    background: #fff;
}

/* ================= BREADCRUMB ================= */

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.line-left {
    width: 60px;
    height: 1px;
    background: #e6e6e6;
}

.line-right {
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}

.breadcrumb-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #535862;
}

.breadcrumb-text a {
    text-decoration: none;
    color: #535862;
}

/* ================= LAYOUT ================= */

.checkout-wrapper {
    display: flex;
    gap: 60px;
    padding: 0 80px;
}

.checkout-left {
    flex: 2;
}
.checkout-right {
    flex: 1;
}

.checkout-divider {
    width: 1px;
    background: #eee;
}

/* ================= TITLES ================= */

.checkout-title {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-family: "Sackers Gothic";
    font-weight: 700;
}

.card-title {
    font-size: 20px;
    letter-spacing: 2px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    margin-bottom: 25px;

}

.summary-title {
    font-size: 20px;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* ================= CARDS ================= */

.checkout-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
}

/* ================= FORM ================= */

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    border: 0.5px solid #e5e5e5;
    padding: 14px;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.form-group input:focus {
    border-color: #000;
    outline: none;
}

/* ================= ITEMS ================= */

.items-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-item-title{
    font-family: 'Sackers Gothic';
    font-weight: 700;
    font-size: 20px;
    color: rgba(24, 29, 39, 1);
    text-transform: uppercase;
}

.view-details {
    font-size: 14px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color: rgba(84, 84, 84, 1);
    cursor: pointer;
}

.checkout-items {
    display: flex;
    gap: 20px;
}

.checkout-images {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
}

.checkout-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.mini-item p {
    font-size: 14px;
    margin-top: 10px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    color:rgba(24, 29, 39, 1);
}

.mini-item span {
    font-size: 12px;
    font-family: 'PP Neue Montreal';
    color:rgba(71, 84, 103, 1);
    font-weight: 500;
}

/* ================= PAYMENT SECTION ================= */

/* ================= PAYMENT CARD ================= */

.payment-card-ui{
    background:#fff;
    border:1px solid #dfe3e8;
    border-radius:22px;
    padding:28px 34px;
}

.payment-title-ui{
    margin:0 0 26px;
    font-size:22px;
    line-height:1.1;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#1d2430;
    font-family:'Sackers Gothic', sans-serif;
    font-weight:700;
}

.payment-row-ui{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:1px 0;
    cursor:pointer;
}

.payment-row-ui + .payment-row-ui{
    margin-top:10px;
}

.payment-row-left-ui{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.payment-row-ui input[type="radio"]{
    width:20px;
    height:20px;
    margin:0;
    accent-color:#212733;
    cursor:pointer;
    flex-shrink:0;
}

.payment-method-image-box-ui{
    /* width:60px;
    height:46px; */
    border:1px solid #d9dde3;
    border-radius:8px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.payment-method-image-ui{
    max-width:40px;
    max-height:30px;
    object-fit:cover;
    display:block;
}

.payment-method-fallback-ui{
    font-size:18px;
    color:#6b7280;
}

.payment-method-name-ui{
    font-size:18px;
    line-height:1.2;
    color:#1f2937;
    font-weight:500;
    font-family:'PP Neue Montreal', sans-serif;
}

.payment-row-arrow-ui{
    color:#5f6368;
    font-size:30px;
    line-height:1;
    flex-shrink:0;
}
/* ===============================
   BANK TRANSFER DETAILS
================================ */

.bank-transfer-details-ui{
    margin-top:18px;
}

/* container */
.bank-transfer-box-ui{
    border:1px solid #e3e6eb;
    border-radius:12px;
    background:#fafafa;
    padding:18px 20px;
}

/* each row */
.bank-transfer-line-ui{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:12px 0;
    border-bottom:1px solid #e6e6e6;
}

/* remove border on last item */
.bank-transfer-line-ui:last-child{
    border-bottom:none;
}

/* labels */
.bank-transfer-line-ui span{
    font-size:14px;
    color:#6b7280;
    font-family:'PP Neue Montreal', sans-serif;
}

/* values */
.bank-transfer-line-ui strong{
    font-size:15px;
    color:#111827;
    font-weight:600;
    font-family:'PP Neue Montreal', sans-serif;
    text-align:right;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width:768px){

    .bank-transfer-box-ui{
        padding:16px;
    }

    .bank-transfer-line-ui{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .bank-transfer-line-ui strong{
        text-align:left;
    }

}

@media (max-width: 768px){
    .payment-card-ui{
        border-radius:16px;
        padding:20px 18px;
    }

    .payment-title-ui{
        font-size:16px;
        margin-bottom:18px;
        letter-spacing:2px;
    }

    .payment-row-ui input[type="radio"]{
        width:22px;
        height:22px;
    }

    .payment-method-image-box-ui{
        width:48px;
        height:38px;
    }

    .payment-method-image-ui{
        max-width:28px;
        max-height:22px;
    }

    .payment-method-name-ui{
        font-size:15px;
    }

    .payment-row-arrow-ui{
        font-size:22px;
    }
}
/* ================= SUMMARY ================= */

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(83, 88, 88, 1);
}

.summary-amounts{
    font-family: 'PP Neue Montreal';
    font-weight: 600;
    font-size: 16px;
    color: rgba(37, 43, 55, 1);
}



.checkout-right hr {
    margin: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: none;
}

/* ================= BUTTON ================= */

.complete-order-btn {
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    padding: 18px;
    border: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.2s ease;
    border-radius: 8px;
}

.complete-order-btn:hover {
    background: #222;
}

.checkout-alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.checkout-alert ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.checkout-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.checkout-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 12px;
}
/* =========================================
   RESPONSIVE ONLY
   Keeps desktop untouched
========================================= */

/* ---------- Large tablets ---------- */
@media (max-width: 1200px) {
    .cart-title,
    .cart-wrapper,
    .checkout-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .checkout-wrapper {
        gap: 40px;
    }

    .cart-wrapper {
        gap: 35px;
    }
}

/* ---------- Tablets ---------- */
@media (max-width: 991px) {
    .cart-section,
    .checkout-section {
        padding-bottom: 70px;
    }

    .cart-title,
    .cart-wrapper,
    .checkout-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cart-breadcrumb {
        gap: 12px;
        margin-bottom: 28px;
        padding: 0 24px;
    }

    .line-left {
        width: 30px;
    }

    .cart-wrapper,
    .checkout-wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .cart-divider,
    .checkout-divider {
        display: none;
    }

    .cart-left,
    .cart-right,
    .checkout-left,
    .checkout-right {
        width: 100%;
        flex: unset;
    }

    .cart-right,
    .checkout-right {
        border: 1px solid #eee;
        border-radius: 14px;
        padding: 22px 20px;
        background: #fff;
    }

    .cart-title,
    .checkout-title {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .checkout-card {
        padding: 22px 18px;
        margin-bottom: 22px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .checkout-items {
        flex-wrap: wrap;
        gap: 16px;
    }

    .mini-item {
        width: calc(50% - 8px);
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .cart-section {
        padding: 24px 0 60px;
    }

    .checkout-section {
        padding: 16px 0 60px;
    }

    .cart-title,
    .cart-wrapper,
    .checkout-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cart-breadcrumb {
        padding: 0 16px;
        gap: 10px;
        margin-bottom: 22px;
        align-items: center;
    }

    .breadcrumb-text {
        font-size: 10px;
        letter-spacing: 1.2px;
        line-height: 1.5;
        text-align: center;
        white-space: nowrap;
    }

    .line-left {
        width: 22px;
        flex-shrink: 0;
    }

    .line-right {
        min-width: 20px;
    }

    .cart-title,
    .checkout-title {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cart-item {
        display: grid;
        grid-template-columns: auto 72px 1fr auto;
        grid-template-areas:
            "check image info delete"
            ". quantity quantity quantity";
        align-items: center;
        gap: 12px;
        padding: 14px;
        border-radius: 12px;
    }

    .cart-item > input[type="checkbox"] {
        grid-area: check;
        margin: 0;
        align-self: start;
        margin-top: 4px;
    }

    .cart-item-image {
        grid-area: image;
        width: 72px;
        height: 72px;
    }

    .cart-item-info {
        grid-area: info;
        min-width: 0;
    }

    .cart-item-info h3 {
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: 0.8px;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .cart-item-info p {
        font-size: 14px;
    }

    .cart-delete {
        grid-area: delete;
        align-self: start;
    }

    .cart-delete i {
        margin-left: 0;
        font-size: 15px;
    }

    .cart-quantity {
        grid-area: quantity;
        margin-left: 0;
        margin-top: 2px;
        width: fit-content;
        padding: 4px;
    }

    .cart-quantity button {
        padding: 6px 10px;
        font-size: 15px;
    }

    .cart-quantity span {
        padding: 0 10px;
        font-size: 15px;
    }

    .cart-right h2,
    .summary-title,
    .card-title,
    .card-item-title,
    .payment-title {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .cart-right,
    .checkout-right {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .summary-line,
    .summary-total {
        font-size: 14px;
        gap: 12px;
    }

    .summary-amounts {
        font-size: 14px;
        text-align: right;
    }

    .checkout-card,
    .payment-card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input {
        padding: 13px 12px;
        font-size: 14px;
    }

    .items-header {
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .view-details {
        font-size: 13px;
    }

    .checkout-items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mini-item {
        width: 100%;
        min-width: 0;
    }

    .checkout-images {
        width: 100%;
        height: 130px;
        border-radius: 10px;
    }

    .mini-item p {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 8px;
    }

    .mini-item span {
        font-size: 11px;
        line-height: 1.5;
    }

    .payment-option {
        gap: 10px;
        padding: 12px 0;
        align-items: center;
    }

    .payment-left {
        gap: 12px;
        min-width: 0;
    }

    .payment-header {
        font-size: 14px;
        gap: 8px;
        line-height: 1.4;
        flex-wrap: wrap;
    }

    .payment-icon {
        width: 34px;
        height: 26px;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .payment-arrow {
        font-size: 15px;
    }

    .checkout-btn,
    .complete-order-btn {
        height: 46px;
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-top: 18px;
    }

    .checkout-alert {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 16px;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 575px) {
    .cart-breadcrumb {
        gap: 8px;
    }

    .breadcrumb-text {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .line-left {
        width: 16px;
    }

    .cart-item {
        grid-template-columns: auto 62px 1fr auto;
        padding: 12px;
        gap: 10px;
    }

    .cart-item-image {
        width: 62px;
        height: 62px;
        border-radius: 6px;
    }

    .cart-item-info h3 {
        font-size: 12px;
    }

    .cart-item-info p {
        font-size: 13px;
    }

    .cart-quantity {
        transform: scale(0.96);
        transform-origin: left center;
    }

    .checkout-items {
        grid-template-columns: 1fr;
    }

    .checkout-images {
        height: 180px;
    }

    .summary-line,
    .summary-total {
        font-size: 13px;
    }

    .summary-amounts {
        font-size: 13px;
    }
}

/* ---------- Very tiny devices ---------- */
@media (max-width: 380px) {
    .cart-title,
    .checkout-title {
        font-size: 16px;
    }

    .cart-right h2,
    .summary-title,
    .card-title,
    .card-item-title,
    .payment-title {
        font-size: 15px;
    }

    .cart-item {
        grid-template-columns: auto 56px 1fr auto;
    }

    .cart-item-image {
        width: 56px;
        height: 56px;
    }

    .cart-quantity button {
        padding: 5px 8px;
    }

    .cart-quantity span {
        padding: 0 8px;
    }

    .checkout-btn,
    .complete-order-btn {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}
/* ================= SHOP MOBILE MATCH ================= */
@media (max-width: 768px) {

     .shop-hero {
        display: none;
    }

    .shop-filter {
        padding: 12px 10px;
        border-bottom: 1px solid #efefef;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .filter-left {
        display: flex;
        align-items: center;
        min-width: 0;
        flex: 1;
    }

    .filter-left a {
        display: none;
        margin-right: 0;
        font-size: 8px;
        letter-spacing: 1.2px;
        padding-bottom: 0;
        border-bottom: none !important;
        color: #111;
        white-space: nowrap;
    }

    .filter-left a.active,
    .filter-left a:first-child {
        display: inline-block;
    }

    .filter-right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .filter-btn,
    .sort-btn {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 8px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #111;
    }

    .shop-products {
        padding: 10px 8px 24px;
        background: #fff;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .shop-products .product-image {
        height: 200px;
    }

    .shop-products .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transform: none;
    }

    .shop-products .product-card h3 {
        font-size: 8px;
        line-height: 1.45;
        letter-spacing: 0.7px;
        margin: 6px 0 3px;
    }

    .shop-products .product-card p {
        font-size: 8px;
    }

    .pagination {
        margin-top: 12px;
        margin-bottom: 0;
        gap: 10px;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 7px;
        letter-spacing: 1.1px;
    }

    .page-numbers {
        gap: 4px;
    }

    .page-numbers a {
        width: 16px;
        height: 16px;
        font-size: 7px;
    }

    .shop-modal,
    .filter-modal-card,
    .sort-modal-card {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }

    .pagination .prev,
    .pagination .next,
    .pagination a.prev,
    .pagination a.next,
    .pagination span.prev,
    .pagination span.next {
        font-size: 6px;
        letter-spacing: 1.1px;
        color: #111;
    }

    .page-numbers {
        gap: 4px;
    }

    .page-numbers a {
        width: 14px;
        height: 14px;
        font-size: 6px;
        letter-spacing: 0;
    }

    .page-numbers a.active {
        background: #000;
        color: #fff;
    }

    /* modal sizing on mobile */
    .shop-modal-backdrop {
        padding: 14px;
    }

    .shop-modal,
    .filter-modal-card,
    .sort-modal-card {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        padding: 22px 18px 22px;
        max-height: 88vh;
    }

    .shop-modal-title {
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .shop-modal-group h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .shop-radio-row {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .shop-modal-apply,
    .shop-modal-reset {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .shop-filter {
        padding: 10px 8px;
    }

    .filter-left a.active,
    .filter-left a:first-child {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .filter-btn,
    .sort-btn {
        font-size: 7px;
        letter-spacing: 1px;
        gap: 4px;
    }

    .filter-btn i,
    .sort-btn i {
        font-size: 9px;
    }

    .shop-products {
        padding: 8px 6px 20px;
    }

    .shop-products .product-grid {
        gap: 7px 6px;
    }

    .shop-products .product-image {
        height: 104px;
    }

    .shop-products .product-card h3 {
        font-size: 5.4px;
        letter-spacing: 0.6px;
        margin-top: 5px;
    }

    .shop-products .product-card p {
        font-size: 5.4px;
    }

    .pagination {
        gap: 8px;
    }

    .page-numbers {
        gap: 3px;
    }

    .page-numbers a {
        width: 13px;
        height: 13px;
        font-size: 5.5px;
    }
}
/* ================= SHOP RESPONSIVE ================= */

/* SMALL DESKTOP */
@media (max-width: 1200px) {
    .shop-hero {
        height: 300px;
    }

    .shop-filter {
        padding: 22px 40px;
    }

    .filter-left a {
        margin-right: 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .filter-right {
        gap: 20px;
    }

    .filter-btn,
    .sort-btn {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .shop-products {
        padding: 30px 40px 70px;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .shop-products .product-image {
        height: 250px;
    }

    .shop-products .product-card h3 {
        font-size: 11px;
        letter-spacing: 1px;
        margin: 12px 0 6px;
        line-height: 1.45;
    }

    .shop-products .product-card p {
        font-size: 13px;
    }

    .pagination {
        margin-top: 40px;
        gap: 20px;
    }

    .page-numbers {
        gap: 10px;
    }

    .page-numbers a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* TABLET */
@media (max-width: 992px) {
    .shop-hero {
        height: 260px;
    }

    .shop-hero h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .shop-hero p {
        font-size: 15px;
    }

    .shop-filter {
        padding: 18px 24px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .filter-left {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .filter-left a {
        margin-right: 0;
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .filter-right {
        gap: 16px;
        margin-left: auto;
    }

    .filter-btn,
    .sort-btn {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .shop-products {
        padding: 24px 24px 50px;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 14px;
    }

    .shop-products .product-image {
        height: 220px;
    }

    .shop-products .product-image img {
        transform: none;
    }

    .shop-products .product-card h3 {
        font-size: 10px;
        letter-spacing: 0.9px;
        line-height: 1.45;
        margin: 10px 0 5px;
    }

    .shop-products .product-card p {
        font-size: 12px;
    }

    .pagination {
        margin-top: 28px;
        gap: 16px;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .page-numbers {
        gap: 8px;
    }

    .page-numbers a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .shop-modal,
    .filter-modal-card,
    .sort-modal-card {
        max-width: 520px;
    }
}

/* MOBILE */
/* ================= SHOP RESPONSIVE ================= */

/* SMALL DESKTOP */
@media (max-width: 1200px) {
    .shop-hero {
        height: 300px;
    }

    .shop-filter {
        padding: 22px 40px;
    }

    .filter-left a {
        margin-right: 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .filter-right {
        gap: 20px;
    }

    .filter-btn,
    .sort-btn {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .shop-products {
        padding: 30px 40px 70px;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .shop-products .product-image {
        height: 250px;
    }

    .shop-products .product-card h3 {
        font-size: 11px;
        letter-spacing: 1px;
        margin: 12px 0 6px;
        line-height: 1.45;
    }

    .shop-products .product-card p {
        font-size: 13px;
    }

    .pagination {
        margin-top: 40px;
        gap: 20px;
    }

    .page-numbers {
        gap: 10px;
    }

    .page-numbers a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* TABLET */
@media (max-width: 992px) {
    .shop-hero {
        height: 260px;
    }

    .shop-hero h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .shop-hero p {
        font-size: 15px;
    }

    .shop-filter {
        padding: 18px 24px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .filter-left {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .filter-left a {
        margin-right: 0;
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .filter-right {
        gap: 16px;
        margin-left: auto;
    }

    .filter-btn,
    .sort-btn {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .shop-products {
        padding: 24px 24px 50px;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 14px;
    }

    .shop-products .product-image {
        height: 220px;
    }

    .shop-products .product-image img {
        transform: none;
    }

    .shop-products .product-card h3 {
        font-size: 10px;
        letter-spacing: 0.9px;
        line-height: 1.45;
        margin: 10px 0 5px;
    }

    .shop-products .product-card p {
        font-size: 12px;
    }

    .pagination {
        margin-top: 28px;
        gap: 16px;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .page-numbers {
        gap: 8px;
    }

    .page-numbers a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .shop-modal,
    .filter-modal-card,
    .sort-modal-card {
        max-width: 520px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .shop-hero {
        display: none;
    }

    .shop-filter {
        padding: 12px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        margin-top: 3rem;
    }

    .filter-left {
        display: flex;
        align-items: center;
        min-width: 0;
        flex: 1;
    }

    .filter-left a {
        display: none;
        margin-right: 0;
        font-size: 14px;
        letter-spacing: 1.2px;
        padding-bottom: 0;
        border-bottom: none !important;
        color: #111;
        white-space: nowrap;
    }

    .filter-left a.active,
    .filter-left a:first-child {
        display: inline-block;
    }

    .filter-right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .filter-btn,
    .sort-btn {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 14px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #111;
        font-weight: 500;
    }

    .filter-btn i,
    .sort-btn i {
        font-size: 14px;
        font-weight: 500;
    }

    .shop-products {
        padding: 10px 8px 24px;
        background: #fff;
    }

    .shop-products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .shop-products .product-image {
        height: 220px;
    }

    .shop-products .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transform: none;
    }

    .shop-products .product-card h3 {
        font-size: 9.16px;
        line-height: 1.45;
        letter-spacing: 0.7px;
        margin: 6px 0 3px;
        font-weight: 400;
    }

    .shop-products .product-card p {
        font-size: 9.16px;
    }

        .pagination {
        margin-top: 18px;
        margin-bottom: 0;
        gap: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pagination .prev,
    .pagination .next,
    .pagination a.prev,
    .pagination a.next,
    .pagination span.prev,
    .pagination span.next {
        font-size: 8px;
        letter-spacing: 1.2px;
        color: #111;
        text-decoration: none;
    }

    .page-numbers {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .page-numbers a {
        width: 18px;
        height: 18px;
        font-size: 8px;
        letter-spacing: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #111;
        text-decoration: none;
    }

    .page-numbers a.active {
        background: #000;
        color: #fff;
    }



    .shop-modal-backdrop {
        padding: 14px;
    }

    .shop-modal,
    .filter-modal-card,
    .sort-modal-card {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        padding: 22px 18px 22px;
        max-height: 88vh;
    }

    .shop-modal-title {
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .shop-modal-group h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .shop-radio-row {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .shop-modal-apply,
    .shop-modal-reset {
        height: 44px;
        font-size: 14px;
    }
}

/* SMALL PHONES */
@media (max-width: 420px) {
    .shop-filter {
        padding: 10px 8px;
    }

    .filter-left a.active,
    .filter-left a:first-child {
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .filter-btn,
    .sort-btn {
        font-size: 14px;
        letter-spacing: 1px;
        gap: 4px;
        font-weight: 500;
    }

    .filter-btn i,
    .sort-btn i {
        font-size: 14px;
        font-weight: 500;
    }

    .shop-products {
        padding: 8px 6px 20px;
    }

    .shop-products .product-grid {
        gap: 7px 6px;
    }

    .shop-products .product-image {
        height: 200px;
    }

    .shop-products .product-card h3 {
        font-size: 7px;
        letter-spacing: 0.6px;
        margin-top: 5px;
    }

    .shop-products .product-card p {
        font-size: 7px;
    }

  .pagination .prev,
    .pagination .next,
    .pagination a.prev,
    .pagination a.next,
    .pagination span.prev,
    .pagination span.next {
        font-size: 7px;
    }

    .page-numbers {
        gap: 5px;
    }

    .page-numbers a {
        width: 17px;
        height: 17px;
        font-size: 7px;
    }
}
@media (max-width: 768px) {
    .shop-filter {
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .filter-left a.active {
        border-bottom: none !important;
    }
}

/* ================= EXACT GALLERY REPLICA ================= */
.gallery-section{
    padding:20px 10%;
    background:#fff;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:120px;
    gap:10px;
}

/* frame */
.gallery-item{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:15px;
    background:#f6f6f6; /* background behind smaller images */
    display:flex;
    align-items:center;
    justify-content:center;
}

/* image */
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover; /* show full image */
    object-position:center top;
    display:block;
}

/* tall cards */
.gallery-item.tall{
    grid-row:span 4;
}

/* short cards */
.gallery-item.short{
    grid-row:span 2;
}


/* ================= TABLET ================= */

@media (max-width:1024px){
    .gallery-container{
        grid-template-columns:repeat(3,1fr);
    }
}


/* ================= MOBILE ================= */

@media (max-width:768px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:85px;
gap:6px;
}

.gallery-item.tall{
grid-row:span 4;
}

.gallery-item.short{
grid-row:span 2;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:90px;
gap:8px;
}

.gallery-item{
border-radius:12px;
}

}
/* ================= LAUNDRY MOBILE ================= */

@media (max-width: 768px){

    .laundry-section{
        padding:60px 20px;
    }

    .laundry-container{
        flex-direction:column;
        align-items:stretch;
        gap:30px;
    }

    .laundry-image,
    .laundry-content{
        width:100%;
        flex:none;
    }

    .laundry-image{
        height:380px;
    }

    .laundry-image img{
        transform:none;
    }

    .laundry-content{
        text-align:center;
    }

    .laundry-content h2{
        font-size:22px;
        letter-spacing:2px;
        margin-bottom:16px;
    }

    .laundry-content p{
        font-size:15px;
        line-height:26px;
        max-width:100%;
        margin-bottom:20px;
    }

    .laundry-service{
        font-size:13px;
        padding:12px 18px;
    }

    /* enqires extra */

}
.upload-box {
    border: 1px dashed #d7dce3;
    border-radius: 12px;
    background: #fafafa;
    overflow: hidden;
}

.upload-content {
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    cursor: pointer;
    padding: 24px;
}

.upload-content input[type="file"]{
    display: none;
}

.upload-content img{
    width: 48px;
}
/* =========================
   UPLOAD BOX
========================= */

.upload-box{
    position:relative;
    border:1.5px dashed #d7dbe2;
    border-radius:18px;
    background:linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%);
    min-height:260px;
    overflow:hidden;
    transition:.25s ease;
}

.upload-box:hover{
    border-color:#bfc7d4;
    background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.upload-content{
    min-height:260px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:12px;
    padding:28px;
    cursor:pointer;
}

.upload-content input[type="file"]{
    display:none;
}

.upload-placeholder-icon{
    width:56px;
    height:56px;
    object-fit:contain;
    opacity:.9;
}

.upload-content p{
    margin:0;
    font-size:16px;
    font-weight:500;
    color:#1f2937;
}

.upload-content p span{
    color:#111827;
    font-weight:700;
}

.upload-content small{
    display:block;
    max-width:360px;
    color:#8b95a7;
    font-size:12px;
    line-height:1.6;
}

/* =========================
   PREVIEW INSIDE BOX
========================= */

.upload-preview-inside{
    position:absolute;
    inset:0;
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
    background:#f3f4f6;
}

.upload-preview-inside img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.upload-preview-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.28), rgba(0,0,0,0));
}

.upload-preview-details{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}

.upload-preview-details strong{
    color:#fff;
    font-size:14px;
    font-weight:600;
    word-break:break-word;
}

.upload-preview-details span{
    color:rgba(255,255,255,.82);
    font-size:12px;
}

.upload-preview-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.preview-action-btn{
    border:none;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:38px;
    padding:0 16px;
    border-radius:10px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.preview-action-btn.light{
    background:rgba(255,255,255,.92);
    color:#111827;
}

.preview-action-btn.light:hover{
    background:#fff;
}

.preview-action-btn.danger{
    background:rgba(220, 38, 38, .92);
    color:#fff;
}

.preview-action-btn.danger:hover{
    background:rgba(185, 28, 28, .96);
}

/* active state */
.upload-box.has-image{
    border-style:solid;
    border-color:#d1d5db;
    background:#eef2f7;
    box-shadow:0 10px 30px rgba(15, 23, 42, .06);
}

.upload-box.has-image .upload-content{
    opacity:0;
    pointer-events:none;
}

.upload-box.has-image .upload-preview-inside{
    opacity:1;
    pointer-events:auto;
}

/* mobile */
@media (max-width: 640px){
    .upload-box,
    .upload-content{
        min-height:220px;
    }

    .upload-preview-overlay{
        flex-direction:column;
        align-items:flex-start;
    }

    .upload-preview-actions{
        width:100%;
    }

    .preview-action-btn{
        flex:1;
    }
}
/* ================================
   FORM ALERTS
================================ */

.form-alert{
    width:100%;
    padding:14px 18px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:14px;
    line-height:1.6;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

/* SUCCESS */
.form-alert-success{
    background:#e8f8ef;
    border:1px solid #b7ebc6;
    color:#1e7e34;
}

.form-alert-success::before{
    content:"✔";
    font-weight:bold;
    font-size:16px;
    margin-top:1px;
}

/* ERROR */
.form-alert-error{
    background:#fdecec;
    border:1px solid #f5c6cb;
    color:#b02a37;
}

.form-alert-error::before{
    content:"⚠";
    font-weight:bold;
    font-size:16px;
    margin-top:1px;
}

/* error list reset */
.form-alert-error ul{
    margin:0;
    padding-left:18px;
}

.form-alert-error li{
    margin-bottom:4px;
}
/* =========================================================
   ACCOUNT PAGE RESPONSIVE
   Keeps desktop untouched
========================================================= */

/* ---------- Large tablet ---------- */
@media (max-width: 1200px) {
    .account-title,
    .account-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .related-section {
        padding: 70px 40px 100px;
    }
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {
    .account-section {
        padding: 16px 0 50px;
    }

    .account-breadcrumb {
        padding: 0 24px;
        gap: 12px;
        margin-bottom: 26px;
    }

    .account-title,
    .account-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    .account-title {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .account-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .account-divider {
        display: none;
    }

    .account-left,
    .account-right {
        width: 100%;
        flex: unset;
    }

    .account-left {
        padding: 0;
    }

    .account-left h2 {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .account-left p {
        font-size: 14px;
    }

    .account-right h3 {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }

    .order-card {
        padding: 14px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .order-card-image {
        width: 76px;
        height: 82px;
        margin-right: 16px;
        flex-shrink: 0;
    }

    .order-info {
        min-width: 0;
        padding-right: 120px;
    }

    .order-info h4 {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .order-info .price {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .order-info .date {
        font-size: 13px;
    }

    .order-status {
        right: 14px;
        top: 14px;
        font-size: 11px;
        padding: 5px 12px;
    }

    .leave-review-btn,
    .reviewed-badge {
        right: 14px;
        bottom: 14px;
        min-width: 140px;
        height: 34px;
        font-size: 13px;
    }

    .review-modal-card {
        max-width: 500px;
        padding: 28px 22px 22px;
    }

    .review-modal-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .review-stars {
        gap: 6px;
    }

    .star-btn {
        font-size: 26px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .account-section {
        padding: 10px 0 40px;
    }

    .account-breadcrumb {
        padding: 0 16px;
        gap: 10px;
        margin-bottom: 20px;
        align-items: center;
    }

    .account-title,
    .account-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .account-title {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }

    .account-left h2 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .account-left p {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-word;
    }

    .account-right h3 {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .order-card {
        display: grid;
        grid-template-columns: 72px 1fr;
        grid-template-areas:
            "image status"
            "image info"
            "review review";
        align-items: start;
        gap: 10px 12px;
        padding: 12px;
        position: relative;
    }

    .order-card-image {
        grid-area: image;
        width: 72px;
        height: 78px;
        margin-right: 0;
    }

    .order-info {
        grid-area: info;
        padding-right: 0;
        min-width: 0;
    }

    .order-info h4 {
        font-size: 12px;
        letter-spacing: 0.8px;
        line-height: 1.45;
        margin-bottom: 4px;
    }

    .order-info .price {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .order-info .date {
        font-size: 12px;
    }

    .order-status {
        grid-area: status;
        position: static;
        justify-self: end;
        align-self: start;
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .leave-review-btn,
    .reviewed-badge {
        grid-area: review;
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 2px;
        height: 38px;
        font-size: 12px;
    }

    .review-modal {
        padding: 14px;
    }

    .review-modal-card {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        padding: 24px 16px 18px;
    }

    .review-close {
        top: 10px;
        right: 12px;
        font-size: 24px;
    }

    .review-modal-title {
        font-size: 17px;
        letter-spacing: 1px;
        margin-bottom: 6px;
        padding-right: 18px;
    }

    .review-product-name {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .review-stars {
        gap: 4px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .star-btn {
        font-size: 24px;
    }

    .review-form-group {
        margin-bottom: 14px;
    }

    .review-form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .review-form-group input,
    .review-form-group textarea {
        padding: 11px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .submit-review-btn {
        height: 44px;
        font-size: 13px;
        letter-spacing: 0.8px;
        border-radius: 8px;
    }

    .related-section {
        padding: 50px 16px 70px;
    }

    .related-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .related-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
    }

    .related-section .product-image {
        height: 180px;
    }

    .related-section .product-card h3 {
        font-size: 9px;
        margin: 8px 0 4px;
        line-height: 1.4;
    }

    .related-section .product-card p {
        font-size: 10px;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 575px) {
    .account-breadcrumb {
        gap: 8px;
    }

    .order-card {
        grid-template-columns: 64px 1fr;
    }

    .order-card-image {
        width: 64px;
        height: 70px;
        border-radius: 6px;
    }

    .order-info h4 {
        font-size: 11px;
    }

    .order-info .price {
        font-size: 12px;
    }

    .order-info .date {
        font-size: 11px;
    }

    .order-status {
        font-size: 9px;
        padding: 4px 9px;
    }

    .leave-review-btn,
    .reviewed-badge {
        height: 36px;
        font-size: 11px;
    }

    .related-section .product-image {
        height: 150px;
    }

    .related-section .product-card h3 {
        font-size: 8px;
    }

    .related-section .product-card p {
        font-size: 9px;
    }
}

/* ---------- Very tiny screens ---------- */
@media (max-width: 380px) {
    .account-title {
        font-size: 16px;
    }

    .account-left h2 {
        font-size: 16px;
    }

    .account-right h3 {
        font-size: 15px;
    }

    .order-card {
        grid-template-columns: 58px 1fr;
        padding: 10px;
    }

    .order-card-image {
        width: 58px;
        height: 64px;
    }

    .review-modal-card {
        padding: 22px 14px 16px;
    }

    .review-modal-title {
        font-size: 15px;
    }

    .star-btn {
        font-size: 22px;
    }
}
