/* Sticky Header */
/* Sticky Header */
#site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    /* important */
}

/* Optional shadow when sticky */
#site-header.sticky-active {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media(max-width:526px) {
    .product-cats-simple {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .slick-track{
        transform: none !important;
    } */
    .shop-details .buttons .btn-wishlist .product-btn {
        text-align: center;
        color: #000;
        margin-left: 5px;
        display: inline-flex;
        cursor: pointer;
        margin-top: 0;
        margin-right: 0;
        vertical-align: top;
        align-items: center;
        font-weight: 500;
        background: transparent;
        border: 0;
        padding: 0;
    }
}

.custom-padding {
    padding: 50px 20px 30px;

    margin-bottom: 0 !important;
}

.custom-sub {
    color: black !important;
}

/* =========================
   CLEAN PREMIUM PRICE CARD
========================= */

.price-card {
    position: relative;
    height: 155px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;

    text-decoration: none;

    background-size: cover;
    background-position: center;

    transition: all .4s ease;
}

/* SOFT OVERLAY (important fix) */
.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: .4s;
    border-radius: 16px;
}

.index-space {
    padding-bottom: 80px;
}

/* ₹ SYMBOL */
.price-card span {
    position: relative;
    z-index: 2;
    font-size: 34px;
    /* ✅ reduced */
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 6px;

    text-shadow: 0 3px 10px rgba(0, 0, 0, .5);
}

/* TEXT */
.price-card h5 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 500;
    font-family: "Cormorant Garamond, serif";
    color: #000000 !important;
    letter-spacing: .4px;
}

/* HOVER */
.price-card:hover {
    transform: translateY(-6px);
    /* box-shadow:0 18px 35px rgba(0,0,0,.18); */
}

/* LIGHTEN IMAGE ON HOVER */
.price-card:hover::before {
    background: rgba(0, 0, 0, 0.30);
}

/* ACTIVE */
.price-card.active {
    outline: 2px solid #b22222;
}

.bg-1 {
    background-image: url("/media/new-home/wedding-card/wedding-card-1.jpg");
}

.bg-2 {
    background-image: url("/media/new-home/purse/purse-1.jpg");
}

.bg-3 {
    background-image: url("/media/new-home/wedding-card/wedding-card-2.jpg");
}

.bg-4 {
    background-image: url("/media/new-home/purse/purse-2.jpg");
}

.bg-5 {
    background-image: url("/media/new-home/wedding-card/wedding-card-3.jpg");
}

.bg-6 {
    background-image: url("/media/new-home/purse/purse-3.jpg");
}

.custom-heading {
    color: #b8292f !important;
}


.wishlist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.wishlist-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.wishlist-img {
    overflow: hidden;
}

.wishlist-img img {
    width: 100%;
    transition: 0.4s;
}

.custom-button:hover,
.custom-button:active {
    background-color: white;
    color: black;
}

/* .wishlist-card:hover img {
    transform: scale(1.05);
} */

/* Content */
.wishlist-content {
    padding: 15px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
}

.product-title a {
    font-size: 22px;
    text-decoration: none;
    color: #222;
}

.stock {
    padding-bottom: 10px;
}

.price {
    font-size: 19px;
    /* font-weight: 700; */
    margin: 6px 0;
}

/* Remove Button */
.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 18px;
}

.wishlist-text {
    font-family: "Cormorant Garamond, serif" !important;
}

.wishlist-heading {
    margin-bottom: 40px !important;
}


/* ================= FAQ MODERN ================= */

.faq-modern {
    margin-top: 40px;
}

.faq-sidebar {
    position: sticky;
    top: 140px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.faq-link {
    display: block;
    padding: 14px 18px;
    color: #666;
    text-decoration: none;
    margin-bottom: 6px;
    border-left: 3px solid transparent;
    transition: .3s;
    font-weight: 500;
}

.faq-link:hover {
    background: #f8f8f8;
}

.faq-link.active {
    background: #fff1f4;
    border-left: 3px solid #e91e63;
    color: #000;
    font-weight: 600;
}

/* remove extra space after last faq */
.faq-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-block h4 {
    font-weight: 500;
    color: black;
    font-family: "Cormorant Garamond, serif";
    margin-bottom: 15px;
}

#faq-content {
    position: relative;
}

.faq-heading {
    margin-top: 20px !important;
}

.faq-heading {
    color: #b8292f;
    font-family: "Cormorant Garamond, serif";
    scroll-margin-top: 160px;
}

.custom-policy h2,
h3,
p {
    color: black;
    font-family: "Lato", serif;
}

.custom-policy ul {
    padding-left: 0;
    color: black;
    list-style: none;
}

/* ===== POLICY WRAPPER ===== */
.custom-policy {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

/* ===== HEADINGS ===== */
.custom-policy h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

.custom-policy h3 {
    /* font-family: "Cormorant Garamond, serif"; */
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
    color: #111;
    position: relative;
    padding-left: 18px;
}

/* left accent line */
.custom-policy h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    height: 70%;
    width: 4px;
    background: #b8292f;
    border-radius: 2px;
}

.custom-span {
    color: #b8292f;
}

/* ===== PARAGRAPH ===== */
.custom-policy p {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    text-align: justify;

}

/* ===== LIST STYLE ===== */
.custom-policy ul {
    padding-left: 0;
    margin-bottom: 20px;
}

/* LIST ITEMS */
.custom-policy ul li {
    list-style: none;
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    font-size: 15.5px;
    color: #333;
    transition: 0.3s ease;
}

/* ICON BEFORE LI */
.custom-policy ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    /* background: #828282; */
    color: #b8292f;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.custom-policy ul li:hover {
    transform: translateX(4px);
    color: #000;
}

/* ===== BOLD SUB TITLES ===== */
.custom-policy b {
    font-size: 17px;
    color: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .custom-policy h2 {
        font-size: 32px;
    }

    .custom-policy h3 {
        font-size: 22px;
    }

    .custom-policy p,
    .custom-policy ul li {
        font-size: 15px;
    }
}











.account-sidebar {
    width: 260px;
    background: #fff;
    border: 1px solid;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.account-menu {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-menu .nav-link {
    border: none !important;
    background: transparent;
    color: #333;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.account-menu .nav-link:hover {
    background: #f5f5f5;
    color: #000;
}

.account-menu .nav-link.active {
    background: #f3f3f3;
    border-left: 4px solid #e74c3c !important;
    border-radius: 0 !important;
    color: #e74c3c !important;
    font-weight: 600;
    padding-left: 12px;
}

.logout-item .nav-link {
    color: #e74c3c;
}

.logout-item .nav-link:hover {
    background: #fff2f0;
}

.my-account-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}




/* ===============================
   SUPPORT SECTION
=================================*/

.account-support {
    font-family: "Cormorant Garamond, serif";
    max-width: 700px;
}

.support-title {
    font-family: "Cormorant Garamond, serif";
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.support-subtitle {
    color: #000000;
    margin-bottom: 25px;
}


/* form spacing */
.support-form .form-group {
    font-family: "Cormorant Garamond, serif";
    margin-bottom: 18px;
}


/* inputs */
.support-input,
.support-textarea,
.support-file {
    color: black;
    font-family: "Cormorant Garamond, serif";
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 14px;
    transition: .3s;
    background: #fff;
}

.label-text {
    font-size: 17px;
    color: black !important;
}

.support-textarea {
    font-family: "Cormorant Garamond, serif";
    height: 140px;
    resize: none;
}


/* focus effect */
.support-input:focus,
.support-textarea:focus {
    outline: none;
    border-color: #b8292f;
    box-shadow: 0 0 0 2px rgba(197, 157, 95, 0.15);
}


/* button */
.support-btn {
    font-family: "Cormorant Garamond, serif";
    background: black;
    color: #fff;
    border: none;
    padding: 12px 26px;
    /* border-radius:8px; */
    font-weight: 600;
    transition: .3s;
}

.support-btn:hover {
    background: #b8292f;
    color: white;

}

.mt-0 {
    margin-top: 0;
}

.custom-container {
    max-width: 1300px !important;
}

.products-content .product-title {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    cursor: default;
}

/* Remove ellipsis on hover and enable sliding */
.products-content .product-title:hover,
.wishlist-content .product-title:hover {
    overflow: hidden;
}

.product-custom-title {
    font-size: 18px !important;
    text-transform: capitalize;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.3s ease;
}

.product-custom-title.can-slide {
    display: block;
}

/* Looping Marquee Animation on Hover - ONLY if name is too big */
.products-content .product-title:hover .product-custom-title.can-slide,
.wishlist-content .product-title:hover .product-custom-title.can-slide {
    display: inline-flex;
    width: auto;
    min-width: 100%;
    text-overflow: clip;
    animation: loop-marquee 10s linear infinite;
    text-align: left;
}

/* Wishlist specific title adjustments */
.wishlist-title {
    margin-bottom: 10px !important;
    overflow: hidden;
    height: 1.5em;
    line-height: 1.5em;
}

@keyframes loop-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-duplicate {
    padding-left: 40px;
    display: inline-block;
}

@media(max-width:526px) {
    .price-card h5 {
        font-size: 17px;
    }

    .wishlist-card {
        margin-bottom: 20px;
    }

    .shop-cart .cart-items .actions .bottom-cart .button {
        padding: 0 20px;
    }
}

.index-banner-custom::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
    transition: opacity 0.3s ease;
}


.ticket-card {
    position: relative;
    height: 160px;
    background: #b12d32;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-top: 20px;

    /* normal shadow */


    /* smooth animation */
    transition: all 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-10px);
    /* move up */

}

.ticket-card span {
    border: 2px solid #fff;
    padding: 20px 16px;
    border-radius: 10px;
    display: inline-block;
}

/* TOP PERFORATION */

.ticket-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;

    background:
        radial-gradient(circle, #fff0f0 8px, transparent 9px) repeat-x;

    background-size: 22px 20px;
}

/* BOTTOM PERFORATION */

.ticket-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;

    background:
        radial-gradient(circle, #fff0f0 8px, transparent 9px) repeat-x;

    background-size: 22px 20px;
}

/* SIDE CUTS */

.ticket-card span::before,
.ticket-card span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35px;
    height: 42px;
    background: #fff0f0;
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket-card span::before {
    left: -21px;
}

.ticket-card span::after {
    right: -21px;
}

.price-card {
    position: relative;
    overflow: visible;
}

.price-card h5 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #8b0000;
    width: 85%;
    text-align: center;
}



/* CTA */

/* SECTION BACKGROUND */
.block-feature.layout-2 {

    border-radius: 10px;
}

/* FEATURE BOX */
.block-feature .box {
    text-align: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.block-feature .box:hover {
    transform: translateY(-6px);
}

/* ICON STYLE */
.box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.box-icon svg {
    width: 32px;
    height: 32px;
    fill: #c62828;
}

/* TITLE */
.box-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
}

/* DESCRIPTION */
.box-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: auto;
}

/* COLUMN SEPARATOR (desktop) */
@media (min-width: 768px) {
    .block-feature .col-md-4 {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .block-feature .col-md-4:last-child {
        border-right: none;
    }
}



/* WEDDING CARDS */

/* PRODUCT CARD */
/* PRODUCT CARD */
.wedding-products .product-wapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.wedding-products .product-wapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* PRODUCT IMAGE */
.wedding-products .products-thumb {
    overflow: hidden;
}

.wedding-products .products-thumb img {
    transition: transform .5s ease;
}

.wedding-products .product-wapper:hover img {
    transform: scale(1.08);
}

/* PRODUCT TITLE */
.wedding-products .product-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.wedding-products .product-title a {
    color: #222;
    text-decoration: none;
}

.wedding-products .product-title a:hover {
    color: #c0392b;
}

/* PRICE */
.wedding-products .price {
    font-size: 20px;
    font-weight: 600;
    color: #c0392b;
}

.wedding-products .price del {
    color: #999;
    margin-right: 6px;
}

.wedding-products .price ins {
    text-decoration: none;
}

/* BUTTON ANIMATION */
.wedding-products .product-button {
    opacity: 0;
    transform: translateY(20px);
    transition: .3s;
}

.wedding-products .product-wapper:hover .product-button {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTON */
.wedding-products .product-btn {
    background: #b88a44;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: .3s;
}

.wedding-products .product-btn:hover {
    background: #222;
}

.sidebar-custom {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.block-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CATEGORY LIST */
.product-cats-list ul {
    list-style: none;
    padding: 0;
}

.product-cats-list li {
    border-bottom: 1px solid #f1f1f1;
}

.product-cats-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #444;
    text-decoration: none;
    transition: .3s;
}

.product-cats-list li a:hover {
    color: #b88a44;
}

.count {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
}



.product-lable .onsale {
    background: #27ae60;
}

/* THEME VARIATIONS FIXES */
.shop-details .variations .attributes ul.text li span {
    width: auto !important;
    height: auto !important;
    padding: 2px 15px;
    border-radius: 30px !important;
    min-width: 45px;
    line-height: 28px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #d5d5d5;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
    color: #333;
}

.shop-details .variations .attributes ul.text li span:hover {
    border-color: #000;
    color: #000;
}

.shop-details .variations .attributes ul.text li span.active {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.shop-details .variations .label {
    width: 80px;
    font-weight: 600;
}

.rating {
    margin-bottom: 6px;
}

.rating .count {
    font-size: 13px;
    color: #777;
}



/* PRODUCT DETAILS */

/* SPECIFICATIONS WRAPPER */
.silver-specs-modern {
    margin-top: 20px;
}

/* HEADING */
.spec-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* ROW */
.spec-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
}

/* LEFT LABEL */
.spec-name {
    font-weight: 600;
    color: #333;
    min-width: 110px;
    /* reduced spacing */
}

/* DOT LINE */
.spec-dots {
    flex: 0.6;
    /* prevents huge gap */
    border-bottom: 1px dotted #ddd;
    margin: 0 8px;
}

/* VALUE */
.spec-value {
    font-weight: 500;
    color: #111;
}

/* STOCK */
.stock {
    color: #27ae60;
    font-weight: 600;
}

.stock.text-danger {
    color: #dc3545 !important;
}

.stock.text-success {
    color: #27ae60 !important;
}

.product-meta {
    margin-top: 20px !important;
    border-top: 1px solid gray;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.meta-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.meta-title {
    width: 120px;
    font-weight: 600;
    color: #222;
}

.meta-value {
    color: #666;
}

.stock {
    color: #2e7d32;
    font-weight: 500;
}

.stock.text-danger {
    color: #dc3545 !important;
}

.stock.text-success {
    color: #2e7d32 !important;
}

.product-images {
    position: sticky;
    top: 100px;
    /* adjust according to your header height */
    height: fit-content;
}

.product-top-info .row {
    overflow: visible;
}

@media(min-width:992px) {

    .product-images {
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }

}

.track-order-wrapper {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
}

.track-title {
    color: black;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.track-label {
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.required {
    color: red;
}

.track-input {
    width: 100%;
    height: 48px;
    border: 1px solid #c1c1c1 !important;
    padding: 10px 15px;
    background: #6c6c6c;
    border-radius: 4px;
    outline: none;
}

.track-input:focus {
    border-color: #8e0000 !important;
    box-shadow: none;
}

.track-btn {
    background: black;
    color: #fff;
    border: none;
    padding: 12px 30px;
    /* border-radius:8px; */
    font-weight: 600;
    margin-top: 25px;
}

.track-btn:hover {
    background: #b8292f;
}

.order-history {
    margin-top: 40px;
}

.track-table {
    background: #fff;
    border: 1px solid #ddd;
}

.track-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.track-table td {
    vertical-align: top;
}

.status-confirmed {
    color: #0056b3;
    font-weight: 600;
}

.status-processing {
    color: #1ca31c;
    font-weight: 600;
}

.status-packed {
    color: #856404;
    font-weight: 600;
}

.status-shipped {
    color: #17a2b8;
    font-weight: 600;
}

.status-delivered {
    color: #28a745;
    font-weight: 600;
}

.status-cancelled {
    color: #dc3545;
    font-weight: 600;
}

.status-fail {
    color: #e60000;
    font-weight: 600;
}

/* TABLE */

.track-table {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    font-size: 15px;
}

/* HEADER */

.track-table thead th {
    background: #f7f7f7;
    font-weight: 600;
    color: #333;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

/* BODY */

.track-table tbody td {
    padding: 16px;
    border: 1px solid #e5e5e5;
    vertical-align: top;
    color: #555;
    line-height: 1.6;
}

/* DATE COLUMN */

.track-table tbody td:first-child {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* STATUS */

/* Status styles are defined above */

/* COMMENT COLUMN */

.track-table tbody td:last-child {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    word-break: break-word;
}

/* ROW HOVER */

.track-table tbody tr:hover {
    background: #fafafa;
}

/* Desktop sticky */
@media (min-width: 992px) {
    .product-images {
        position: sticky;
        top: 120px;
        align-self: flex-start;
        height: fit-content;
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {

    .product-images {
        position: relative;
        top: auto;
    }

    /* thumbnails below main image */
    .product-images .col-md-2 {
        order: 2;
        width: 100%;
        margin-top: 10px;
    }

    .product-images .col-md-10 {
        order: 1;
        width: 100%;
    }

    /* make thumbnails horizontal */
    .image-thumbnail {
        display: none !important;
        flex-direction: row !important;
        justify-content: center;
    }

    .image-thumbnail .img-item {
        width: 70px;
        margin-right: 8px;
    }

}

@media (max-width:768px) {

    .track-table thead {
        display: none;
    }

    .track-table,
    .track-table tbody,
    .track-table tr,
    .track-table td {
        display: block;
        width: 100%;
    }

    .track-table tr {
        background: #fff;
        border: 1px solid #eee;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 6px;
    }

    .track-table td {
        border: none;
        padding: 6px 0;
        font-size: 14px;
        position: relative;
    }

    /* labels before each field */
    .track-table td:nth-child(1)::before {
        content: "Date";
        font-weight: 600;
        display: block;
        color: #666;
    }

    .track-table td:nth-child(2)::before {
        content: "Order Status";
        font-weight: 600;
        display: block;
        color: #666;
    }

    .track-table td:nth-child(3)::before {
        content: "Comment";
        font-weight: 600;
        display: block;
        color: #666;
    }

}

#accountEditForm {
    display: none;
    margin-top: 20px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 6px;
}

.profile-name {
    font-size: 16px;
}

/* Account details card */
.addresses-col {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 25px;
    border: 1px solid #e5e5e5;
    max-width: 450px;
}

/* Header */
.col-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.col-title h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

/* Edit button */
.edit {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.edit:hover {
    text-decoration: underline;
}

/* Profile text */
.profile-space {
    margin: 0;
}

.addresses-col:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-name {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.profile-name b {
    color: #000;
    width: 110px;
    display: inline-block;
}

.wishlist-title {
    margin-top: 0;
}

.site-footer {
    background-color: #eaeaea3b;
}

/* .slick-list {
    padding: 30px 0;
} */
.custom-space-detaila {
    padding: 30px 20px !important;
}

/* Mini Cart Remove Button Override */
.mini-cart-item {
    position: relative;
}

button.remove {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 99 !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    text-align: center !important;
    color: #000 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
}

button.remove:hover {
    color: #b8292f !important;
}

/* Hero Slider Image Fix - Enforce standard banner height */
.hero-slider-main .content-image {
    width: 100%;
    max-height: 600px;
    /* Cap the height so it doesn't take the whole page */
    aspect-ratio: 1920 / 781;
    overflow: hidden;
    background: #f8f8f8;
}

.hero-slider-main .content-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Fix for OTP and New Password inputs in login modal to match other fields */
.form-login-register .box-form-login .content .otp input,
.form-login-register .box-form-login .content .password input[name="new_password"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    height: 45px;
    width: 100%;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    outline: none;
}

.form-login-register .box-form-login .content .otp,
.form-login-register .box-form-login .content .password {
    margin-bottom: 5px;
}

/* Ensure the login modal doesn't cut off on small screens */
.box-form-login {
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding-bottom: 20px !important;
    scrollbar-width: thin;
}

/* Ensure all buttons in the login modal have the same premium style */
.form-login-register .box-form-login .content .button-login input[type=submit],
.form-login-register .box-form-login .content .button-login button,
.form-login-register .box-form-login .content .button-register input[type=submit] {
    background: #000 !important;
    color: #fff !important;
    height: 45px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.form-login-register .box-form-login .content .button-login input[type=submit]:hover,
.form-login-register .box-form-login .content .button-login button:hover,
.form-login-register .box-form-login .content .button-register input[type=submit]:hover {
    background: #b8292f !important;
}

@media (max-width: 768px) {
    .hero-slider-main .content-image {
        aspect-ratio: 16 / 9;
        /* Slightly taller on mobile for better visibility */
        max-height: 400px;
    }
}

/* ==========================================================================
   NESTED CATEGORY DROPDOWN SUPPORT (FLYOUTS)
   ========================================================================== */

@media (min-width: 992px) {

    /* 1. Reset navigation items to auto-height so hover triggers correctly on the name area */
    .site-navigation ul.menu {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
    }

    .site-navigation ul li.level-0 {
        height: auto !important;
        position: relative !important;
        padding: 15px 0 !important;
        /* This creates a reasonable active area around the name */
        margin: 0 7px !important;
    }

    /* 2. Sub-menu base styles with smooth transition and delay */
    .site-navigation .sub-menu {
        display: block !important;
        /* Keep in DOM for transitions */
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease !important;
        transition-delay: 0.1s !important;
        /* Prevents flickering/accidental closing */
        background: #fff;
        min-width: 220px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    /* 3. Show sub-menu on hover with immediate opening */
    .site-navigation ul li:hover>.sub-menu {
        visibility: visible !important;
        opacity: 1 !important;
        transition-delay: 0s !important;
    }

    /* 4. Nested sub-menus (Flyouts) */
    .site-navigation .sub-menu .sub-menu {
        top: 0 !important;
        left: 100% !important;
        margin-top: -10px !important;
        /* Align with parent padding */
        margin-left: -2px !important;
        /* Slight overlap to prevent gap */
    }

    /* Flip flyouts to the left for the last two main categories */
    .site-navigation ul>li.level-0:nth-last-child(-n+2) .sub-menu .sub-menu {
        left: auto !important;
        right: 100% !important;
        margin-left: 0 !important;
        margin-right: -2px !important;
    }

    /* Highlight parent on hover */
    .site-navigation ul li:hover>a {
        color: #b8292f !important;
    }

    /* Arrow for items with children in sub-menu */
    .site-navigation .sub-menu .menu-item-has-children>a::after {
        content: "\f105";
        font-family: "FontAwesome";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }
}

/* Explore Range - Fixed Size Category Images */
.block-product-cats.layout-3 .item-product-cat .item-image {
    height: 380px;
    width: 100%;
    overflow: hidden;
    background-color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.block-product-cats.layout-3 .item-product-cat .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures all images fill the box uniformly */
    transition: transform 0.5s ease;
}

.block-product-cats.layout-3 .item-product-cat:hover .item-image img {
    transform: scale(1.08);
}

.block-product-cats.layout-3 .item-product-cat .item-title {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 991px) {
    .block-product-cats.layout-3 .item-product-cat .item-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .block-product-cats.layout-3 .item-product-cat .item-image {
        height: 400px;
        /* Larger on mobile when in single column */
    }
}



/* ==========================================================================
   DYNAMIC PRODUCT IMAGE SIZE FIXES
   ========================================================================== */

/* 1. Product Detail Main Image */
.shop-details .product-images .image-additional .img-item {
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-details .product-images .image-additional .img-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Contain ensures full product is visible */
    background: #f9f9f9;
}

/* 2. Product Detail Thumbnails */
.shop-details .product-images .image-thumbnail .img-item .img-thumbnail-scroll {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.shop-details .product-images .image-thumbnail .img-item .img-thumbnail-scroll img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* Cover looks better for small thumbnails */
}

/* 3. Product Listing Grid (ProductCard) */
.products-list .product-wapper .products-thumb,
.block-products .product-wapper .products-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-list .product-wapper .products-thumb img,
.block-products .product-wapper .products-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* Cover is best for consistent grid look */
}

/* Ensure slick-slide doesn't break aspect ratio */
.image-additional .slick-slide {
    height: auto !important;
}

/* Fix for product detail thumbnails cutting from right */
.shop-details .product-images .image-thumbnail {
    width: 100% !important;
}

.shop-details .product-images .image-thumbnail .slick-list {
    width: 100% !important;
    padding: 0 !important;
}

.shop-details .product-images .image-thumbnail .slick-slide {
    width: 100% !important;
    padding: 0 2px !important;
    /* Slight padding for breathing room */
}

.shop-details .product-images .image-thumbnail .img-item .img-thumbnail-scroll {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 15px !important;
    /* Center and add bottom spacing */
}

.shop-details .product-images .image-thumbnail .img-item .img-thumbnail-scroll img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Ensure the container doesn't clip the slider track */
.shop-details .product-images .content-thumbnail-scroll {
    overflow: visible !important;
    width: 100% !important;
}

/* Wishlist Popup Fixes */
.wishlist-popup .wishlist-popup-content-bot {
    height: 60px !important;
    position: relative;
    overflow: hidden;
    background: #000;
}

.wishlist-popup .wishlist-popup-content-bot-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}

.wishlist-popup .wishlist-page,
.wishlist-popup .wishlist-continue {
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 60px;
    transition: all 0.3s ease;
}

.wishlist-popup .wishlist-page:hover,
.wishlist-popup .wishlist-continue:hover {
    color: #b8292f !important;
}

.wishlist-popup .wishlist-notice {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.3s ease;
    z-index: 10;
    font-weight: 500;
}

.wishlist-popup .wishlist-notice.wishlist-notice-show {
    top: 0;
}

/* Wishlist Popup Table Fixes */
.wishlist-popup .wishlist-items .wishlist-item-actions {
    text-align: center !important;
}

.wishlist-popup .wishlist-item-stock {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Remove Address Button */
.address-box {
    position: relative;
}

.remove-address {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #999;
    cursor: pointer;
    font-size: 22px;
    transition: color 0.3s;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1 !important;
    z-index: 10;
}

.remove-address:hover {
    color: #b8292f !important;
}

.wishlist-popup .wishlist-item-add a {
    /* display: inline-block !important;
    background: #000 !important;
    color: #fff !important;
    padding: 0 25px !important;
    line-height: 36px !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease; */
}

.wishlist-popup .wishlist-item-add a:hover {
    background: #b8292f !important;
    color: #fff !important;
}

.test {
    padding-right: 3px !important;
    padding-left: 3px !important;
}

/* ==========================================================================
   SIDE-MOUNTED SLIDER NAVIGATION
   ========================================================================== */

.slider-container-wrap {
    position: relative;
}

.side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0;
    z-index: 99;
}

.side-nav.prev {
    left: -25px;
}

.side-nav.next {
    right: -25px;
}

.side-nav:hover {
    background: #b8292f;
    color: #fff;
    border-color: #b8292f;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(184, 41, 47, 0.25);
}

.side-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.side-nav i {
    font-size: 24px;
    line-height: 1;
}

/* Ensure slick-sliders doesn't clip the buttons */
.slick-wrap {
    overflow: visible !important;
}

/* Tablet & Mobile adjustments */
@media (max-width: 1200px) {
    .side-nav.prev { left: -15px; }
    .side-nav.next { right: -15px; }
}

@media (max-width: 768px) {
    .side-nav {
        width: 40px;
        height: 40px;
    }
    .side-nav i {
        font-size: 20px;
    }
    .side-nav.prev { left: -10px; }
    .side-nav.next { right: -10px; }
}

@media (max-width: 576px) {
    .side-nav {
        display: none; /* Hide on very small screens to avoid overlap */
    }
}