/* ================= GLOBAL ================= */

:root {
    --font-body-family: "Manuale", serif;
    --font-body-style: normal;
    --font-body-weight: 300;
    --font-body-weight-bold: 600;

    --font-heading-family: "Trirong", serif;
    --font-heading-style: normal;
    --font-heading-weight: 400;
}

body {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    overflow-x: hidden;
}

/* All headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.video-title,
.about-title,
.contact-title,
.product-title-single,
.cart-title {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
}


.about-section p,
.about-section ul li,
.about-section ol li,
.footer-text,
.product-title,
.product-price,
.cart-table,
.custom-cart {
    font-family: var(--font-body-family);
}

.section-title,
.video-title,
.about-title,
.contact-title,
.footer-title,
.product-title-single,
.cart-heading {
    font-family: var(--font-heading-family);
}


button,
a,
.choose-btn,
.shop-now-btn,
.view-all-btn,
.contact-btn,
.checkout-btn {
    font-family: var(--font-body-family);
    font-weight: var(--font-body-weight-bold);
}

strong,
b {
    font-weight: var(--font-body-weight-bold);
}


/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    height: 150px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-center {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
}

.logo img {
    height: 90px;
    width: auto;
}

/* Icons */
.menu-icon,
.header-right i {
    font-size: 22px;
    cursor: pointer;
    color: #646161;
}

.header-right {
    gap: 22px;
}

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

/* Cart */
.header-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    bottom: -10px;
    right: -12px;
    width: 20px;
    height: 20px;
    background: #0a2540;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
}

/* ================= SIDEBAR ================= */
.side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1101;
    padding: 30px;
    transition: left 0.35s ease;
}

.side-menu.active {
    left: 0;
}

.close-menu {
    font-size: 22px;
    cursor: pointer;
    text-align: right;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.side-menu ul li {
    padding: 14px 0;
}

.side-menu ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #123a52;
}

/* ================= OVERLAY ================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ================= SEARCH BELOW HEADER ================= */
.header-search-overlay {
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    z-index: 999;
    display: none;
}

.search-close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
	color: #000 !important;
	background: transparent !important;
}

.search-close:hover {
    background: #f5f5f5;
    border-radius: 50%;
}


.header-search-overlay.active {
    display: block;
}

.search-inner {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.search-inner input {
    width: 100%;
    height: 54px;
    padding: 0 55px 0 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ===== TOP ROW ===== */
.search-top {
    position: relative;
}

#header-search-product {
    width: 100%;
    height: 54px;
    padding: 0 50px 0 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ===== SEARCH RESULTS ===== */
.header-search-results {
    border: 1px solid #eee;
    background: #fff;
    max-height: 320px;
    overflow-y: auto;
}

/* ===== INDIVIDUAL RESULT ===== */
.header-search-results .search-item {
    padding: 12px 16px;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
}

.header-search-results .search-item:last-child {
    border-bottom: none;
}

.header-search-results .search-item:hover {
    background: #f7f7f7;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .header-inner {
        height: 80px;
        padding: 0 20px;
    }

    .logo img {
        height: 48px;
    }

    .header-search-overlay {
        top: 80px;
    }
}

@media (max-width: 576px) {
    .header-inner {
        height: 70px;
        padding: 0 15px;
    }

    .logo img {
        height: 38px;
    }

    .header-search-overlay {
        top: 70px;
    }

    .side-menu {
        width: 260px;
    }
}

/* ================= HERO ================= */
.hero-swiper {
    height: calc(100vh - 90px);
}

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

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet {
    background: #bbb;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .site-header {
        height: 82px;
    }

    .logo img {
        height: 36px;
    }

    .hero-swiper {
        height: calc(100vh - 70px);
        height: 250px;
    }

    .side-menu {
        width: 260px;
    }

    .header-icons i {
        font-size: 18px;
        margin-right: 5px !important;
        cursor: pointer;
    }

    .menu-icon {
        margin-left: 5px;
    }
}


/* ================= PRODUCT SECTION ================= */
.product-section {
    background: #fff;
}

.section-title {
    font-size: 42px;
    color: #123a52;
}

.product-title {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #35383a;
    text-decoration: none;
}

.product-title:hover {
    text-decoration: underline;
    color: #35383a;
}

.product-price {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #123a52;
}

.product-name {
    margin-top: 26px;
}

/* View all button */
.view-all-btn {
    padding: 14px 34px;
    border-radius: 50px;
    background: #123a52;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #0d2d40;
    color: #fff !important;
}


@media (width > 991px) {

    .product-card img {
            width: 358px;
            height: 448px;
    }
	.section-title {
        font-size: 28px;
    }
}

@media (width < 768px) {
    .section-title {
        font-size: 16px;
    }

    .product-card img {
        height: 190px;
		width: 190px;
    }
}

/* ================= COLLECTIONS ================= */
.collections-section {
    background: #fff;
}

.collection-card img {
    width: 358px;
    height: 358px;
    object-fit: cover;
}

.collection-link {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 16px;
    color: #123a52;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.collection-link:hover {
    text-decoration: underline;
}

/* Image Heights */
.col-lg-6 .collection-card img {
    height: 520px;
}

.col-lg-3 .collection-card img {
    height: 250px;
}

/* Responsive */
@media (max-width: 991px) {
    .col-lg-6 .collection-card img {
        height: 420px;
    }

    .col-lg-3 .collection-card img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .collection-link {
        font-size: 15px;
    }

    .col-lg-6 .collection-card img,
    .col-lg-3 .collection-card img {
        height: auto;
    }
}


/* ================= VIDEO SECTION ================= */
.video-section {
    padding: 80px 0;
    background: #fff;
}

/* Full width container */
.video-container {
    width: 100%;
}

/* Title */
.video-title {
    font-size: 38px;
    color: #123a52;
    margin-bottom: 35px;
    margin-left: 100px;
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}

/* Video element */
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Play button */
.video-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-play-btn i {
    font-size: 30px;
    color: #123a52;
    margin-left: 4px;
}

/* Hover */
.video-play-btn:hover {
    transform: scale(1.05);
}

/* Hide button when playing */
.video-wrapper.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .video-title {
        font-size: 32px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .video-play-btn i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .video-title {
        font-size: 26px;
    }
}


/* ================= FULL WIDTH IMAGE BANNER ================= */
.full-banner {
    width: 100%;
    height: 600px;
    background-image: url("https://h2homecollection.com/cdn/shop/files/Christmas_Ornaments_with_a_Cause.png?v=1759980490&width=1500");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button styling */
.shop-now-btn {
    padding: 14px 34px;
    border: 2px solid #123a52;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #123a52;
    background: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    background: #123a52;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .full-banner {
        height: 450px;
    }
}

@media (max-width: 575px) {
    .full-banner {
        height: 320px;
    }

    .shop-now-btn {
        padding: 12px 26px;
        font-size: 13px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #c9d1d92b;
    padding: 70px 0 40px;
    border-top: 1px solid #eee;
}

.footer-title {
    font-size: 20px;
    letter-spacing: 1px;
    color: #123a52;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #5f7d90;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 14px;
    color: #5f7d90;
    line-height: 1.6;
}

.footer-text a {
    color: #5f7d90;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Logo */
.footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

/* PAYMENT ICONS */
.list-payment {
    display: flex;
    justify-content: center; /* icons centered */
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.list-payment__item svg {
    width: 38px;
    height: 24px;
}

/* COPYRIGHT TEXT */
.footer-copy {
    font-size: 13px;
    color: #8a9aa6;
    text-align: left;        /* 👈 LEFT aligned */
    margin: 0;
}

/* LINKS */
.footer-copy a {
    color: #8a9aa6;
    text-decoration: none;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-logo {
        margin-top: 20px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .site-footer {
        padding: 50px 0 30px;
    }
}

/* ================= HERO CONTROLS ================= */
.hero-controls {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0px 26px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    z-index: 10;
	height: 35px;
}

/* Pagination dots */
.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1.5px solid #123a52;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #123a52;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    color: #123a52;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
}

/* Pause button */
.swiper-pause {
    background: none;
    border: none;
    color: #123a52;
    font-size: 14px;
    cursor: pointer;
    padding-left: 6px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero-controls {
        bottom: 12px;
        padding: 8px 14px;
        gap: 12px;
    }

    .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }
}


.product-card {
    padding: 10px;
}

.product-image {
    position: relative;
    display: block;
    width: 100%;
}

.product-image img {
    width: 100%;
    display: block;
}

/* HOVER IMAGE */
.product-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* MAIN IMAGE */
.product-image .img-main {
    transition: opacity 0.35s ease;
}

/* HOVER EFFECT */
.product-image:hover .img-main {
    opacity: 0;
}

.product-image:hover .img-hover {
    opacity: 1;
}



/* PRICE */
.product-price {
    font-size: 14px;
    color: #1f3a5f;
    margin-bottom: 18px;
}

/* BUTTON */
.choose-btn {
    display: inline-block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 12px 0;
    border: 1.5px solid #1f3a5f;
    color: #1f3a5f;
    background: transparent;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.choose-btn:hover {
    background: #1f3a5f;
    color: #fff;
}

/* MOBILE TWEAKS */
@media (max-width: 576px) {
    .product-title {
        font-size: 13px;
    }

    .product-price {
        font-size: 13px;
    }

    .choose-btn {
        padding: 10px 0;
        font-size: 12px;
    }
}


.shop-toolbar {
    padding: 25px;
    font-size: 16px;
    color: #1f3a5f;
}

.toolbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.toolbar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}

.label {
    font-weight: 400;
    color: #1f3a5f;
}

.dropdown-link {
    color: #1f3a5f;
    text-decoration: none;
    font-weight: 400;
    width: 140px;
}

.dropdown-link i {
    font-size: 10px;
    margin-left: 4px;
}

.product-count {
    color: #1f3a5f;
    margin-left: 20px;
}

/* MOBILE */
@media (max-width: 767px) {
    .toolbar-right {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 10px;
    }

    .product-count {
        margin-left: 0;
    }
}



.single-product {
    color: #0f2d3f;
}

/* MAIN PRODUCT IMAGE */
.main-image {
    width: 100%;              /* 🔑 always follow col width */
    aspect-ratio: 1 / 1;      /* square image area */
    overflow: hidden;
    border-radius: 6px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* no crop */
    object-position: center;
}



.thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
}

.thumb {
    border: 1px solid #ddd;
    padding: 2px;
    background: transparent;
    border-radius: 4px;
}

.thumb.active {
    border-color: #0f2d3f;
}

.thumb img {
    width: 80px;
    height: auto;
}

/* INFO */
.brand {
    letter-spacing: 1px;
    font-size: 11px;
}

.product-title-single {
    font-size: 34px;
    margin: 12px 0;
}

.price {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-info {
    font-size: 18px;
    color: #555;
}

.payment-info a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.payment-info a:hover {
    text-decoration: underline;
}

.shop-pay {
    background: #5a31f4;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* OPTIONS */
.option-group {
    margin-top: 25px;
}

.option-group label {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    border: 1px solid #0f2d3f;
    padding: 8px 18px;
    border-radius: 30px;
    background: #323451;
    font-size: 14px;
}

.size-btn.active {
    background: #0f2d3f;
    color: #fff;
}

/* QUANTITY */
.qty-box {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 55px;
}

.qty-box button {
    width: 50px;
    background: transparent;
    border: none;
    color:#000 !important;
    padding: 2px !important;
    font-weight: 500 !important;
}

.qty-box input {
    width: 70px;
    border: none;
    text-align: center;
    height: 53px !important;
}

/* CTA */
.cta-buttons {
    margin-top: 30px;
}

.btn-outline {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    border: 1.5px solid #000;
    background: #fff;
    color:#000;
    margin-bottom: 14px;
}

.btn-solid {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    background: #0f2d3f;
    color: #fff;
    border: none;
}

/* MOBILE */
@media (max-width: 767px) {
    .product-title {
        font-size: 15px;
    }

    .thumb img {
        width: 64px;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .main-image {
        height: 400px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .main-image {
        height: 320px;
    }
}

.cta-description h2 {
    font-size: 28px;
    color: #103948;
    letter-spacing: 0.63px;
    font-weight: 400;
    line-height: 36px;
}

.cta-description p {
    color: #103948;
    letter-spacing: 0.63px;
    font-weight: 400;
    line-height: 36px;
}


/* Large desktops */
@media (min-width: 1200px) {
    .main-image {
        width: 100%;
        height: 550px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .main-image {
        height: 400px;
    }

    .product-title-single {
        font-size: 28px;
    }

    .price {
        font-size: 16px;
    }

    .option-group label {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .row.g-5 {
        flex-direction: column;
    }

    .main-image {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    .thumb img {
        width: 60px;
    }

    .product-title-single {
        font-size: 20px;
    }

    .price {
        font-size: 16px;
    }

    .size-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .cta-buttons button {
        padding: 12px;
        font-size: 14px;
    }

    .product-info {
        position: static; /* sticky not needed for mobile */
        top: auto;
    }
}

/* Sticky product info for desktop */
@media (min-width: 992px) {
    .product-info {
        position: sticky;
        top: 100px; /* adjust depending on header height */
    }
}




.about-section {
    padding: 80px 0;
}

/* Title */
.about-title {
    font-size: 52px;
    font-weight: 500;
    color: #0f3b46;
    margin-bottom: 50px;
    text-align: start;
}

/* Content text */
.about-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f7f8c;
    /* soft muted blue */
    margin-bottom: 24px;
}

.about-section ul li {
    font-size: 17px;
    line-height: 1.9;
    color: #5f7f8c;
    /* soft muted blue */
    margin-bottom: 24px;
}

.about-section ol li {
    font-size: 17px;
    line-height: 1.9;
    color: #5f7f8c;
    /* soft muted blue */
    margin-bottom: 24px;
}

.about-section h4 {
    font-size: 26px;
    line-height: 1.9;
    color: #38525c;
    margin-bottom: 10px;
}

/* Highlight line */
.about-section .fw-semibold {
    color: #0f3b46;
    font-weight: 600;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }

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


.contact-section {
    padding: 80px 0;
}

/* Heading */
.contact-title {
    font-size: 52px;
    font-weight: 500;
    color: #0f3b46;
    margin-bottom: 50px;
}

/* Inputs */
.custom-input,
.custom-textarea {
    font-size: 16px;
    color: #0f3b46;
    padding: 16px 18px;
    border-radius: 6px;
    border: 1px solid #d6e0e6;
    background-color: #fff;
    box-shadow: none;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #6f8d9a;
    letter-spacing: 1px;
}

/* Focus state */
.custom-input:focus,
.custom-textarea:focus {
    border-color: #0f3b46;
    box-shadow: none;
}

/* Button */
.contact-btn {
    margin-top: 20px;
    background-color: #0f3b46;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-family: "Georgia", serif;
    font-size: 15px;
    letter-spacing: 1px;
    border: none;
}

.contact-btn:hover {
    background-color: #0b2e36;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }

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


.custom-cart {
    font-family: serif;
}

.cart-title {
    font-size: 42px;
}

.continue-shopping {
    text-decoration: underline;
    font-size: 14px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.cart-product {
    display: flex;
    gap: 20px;
    width: 45%;
}

.cart-product img {
    width: 120px;
}

.cart-product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 14px;
    margin: 0;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty input {
    width: 50px;
    text-align: center;
}

.cart-qty button {
    border: 1px solid #ccc;
    background: #fff;
    width: 30px;
    height: 30px;
}

.cart-total {
    font-size: 18px;
    width: 15%;
    text-align: right;
}

.checkout-btn {
    display: inline-block;
    background: #0b3442;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
}


/* Custom cart container */
.cart-container {
    max-width: 1100px;
    margin: 50px auto;
    color: #1c2b35;
}

/* Custom heading */
.cart-heading {
    font-size: 32px;
    font-weight: 400;
}

/* Continue shopping link */
.continue-shopping {
    font-size: 14px;
    color: #1c2b35;
    text-decoration: underline;
}

/* Table styling */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-width:1px 1px 1px 1px;
}

.cart-table thead th {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: #8c9aa3;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #eaeaea;
    vertical-align: middle;
}

.cart-item td {
    padding: 20px 10px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-details strong {
    font-size: 16px;
}

.product-details span {
    font-size: 14px;
    color: #6c7a89;
}

/* Trash icon */
.trash-icon {
    font-size: 20px;
    color: #c1c1c1;
    cursor: pointer;
    transition: color 0.2s;
    padding-left: 13px;
}

.trash-icon:hover {
    color: #ff4c4c;
}

/* Total column */
.cart-item td:last-child {
    font-weight: 500;
    font-size: 16px;
}

/* Cart summary */
.cart-summary {
    margin-top: 40px;
    text-align: right;
}

.cart-summary h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-summary small {
    display: block;
    color: #8c9aa3;
    margin-bottom: 20px;
}

/* Checkout buttons */
.checkout-btn {
    background-color: #123e4b;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background-color: #0f323d;
}

/* Alternative checkout buttons */
.checkout-alts {
    gap: 10px;
    justify-content: flex-end;
}

.checkout-alts button {
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}

.checkout-alts .shop {
    background-color: #6f33ff;
}

.checkout-alts .paypal {
    background-color: #ffc439;
    color: #003087;
}

.checkout-alts .gpay {
    background-color: #000;
}

@media (max-width: 768px) {

    .cart-container {
        padding: 0 15px;
        margin: 30px auto;
    }

    /* Hide table header on mobile */
    .cart-table thead {
        display: none;
    }

    /* Make table & rows behave like cards */
    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-item {
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .cart-item td {
        padding: 0;
        border: none;
    }

    /* Product row */
    .cart-item td:first-child {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .product-details strong {
        font-size: 15px;
    }

    .product-details span {
        font-size: 13px;
    }

    /* Quantity + remove row */
    .cart-item td:nth-child(2),
    .cart-item td:nth-child(3) {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
        margin-top: 10px;
    }

    .qty-box {
        display: flex;
        align-items: center;
        border: 1px solid #d1d7db;
        border-radius: 30px;
        overflow: hidden;
        width: 120px;
    }

    .qty-box button {
        width: 35px;
        height: 35px;
        border: none;
        background: #fff;
        font-size: 18px;
        cursor: pointer;
    }

    .qty-box input {
        width: 50px;
        text-align: center;
        border: none;
        font-size: 14px;
    }

    .trash-icon {
        font-size: 22px;
    }

    /* Total price */
    .cart-item td:last-child {
        font-size: 16px;
        font-weight: 600;
        margin-top: 12px;
        text-align: right;
    }

    /* Cart summary */
    .cart-summary {
        text-align: left;
        margin-top: 30px;
        padding: 20px;
        border: 1px solid #eaeaea;
        border-radius: 12px;
    }

    .checkout-btn {
        width: 100%;
        text-align: center;
    }

    .checkout-alts {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .checkout-alts a,
    .checkout-alts button {
        width: 100%;
        text-align: center;
    }
}

.image-color.active {
    border: 1px solid #000;
}

.shop-toolbar {
    padding: 15px 0;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.label {
    font-size: 14px;
    color: #222;
}

/* Filter Button */
.filter-dropdown {
    position: relative;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #4b4949;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    letter-spacing: 0.75px;
}

.filter-btn:hover {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #4b4949;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
}

.filter-btn .arrow {
    border: solid #333335;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -2px;
    margin-left: 5px;
}

/* Dropdown Panel */
.filter-panel {
    position: absolute;
    top: 32px;
    left: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 100;
}

/* Header */
.filter-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.filter-header .reset {
    color: #1a5cff;
    text-decoration: underline;
    cursor: pointer;
}

/* Options */
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.filter-option.disabled {
    color: #aaa;
}


.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

select.sort-select {
    max-width: 160px !important;
    padding: 6px 34px 6px 10px;
    color: #333;
    border: 2px solid #fff;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select:focus {
    outline: none;
    border-color: #5c7f84;
}

/* Dropdown options look */
.sort-select option {
    font-size: 14px;
    padding: 6px;
}


/* Price filter container */
.filter-panel.price-filter {
    padding: 14px;
    width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Price inputs */
.filter-panel.price-filter input {
    width: 100%;
    height: 42px;
    padding: 8px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.filter-panel.price-filter input:focus {
    outline: none;
    border-color: #ffc84d;
}

/* APPLY BUTTON */
.filter-panel.price-filter .apply-price-filter {
    width: 100%;
    height: 44px;
    background: #ffc84d;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
.filter-panel.price-filter .apply-price-filter:hover {
    background: #ffb703;
    transform: translateY(-1px);
}

/* Active (click) */
.filter-panel.price-filter .apply-price-filter:active {
    transform: scale(0.98);
}

.apply-price-filter {
    width: 100%;
    height: 44px;
    background: #403d78;
    /* your background */
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    /* your text color */
    cursor: pointer;

    /* CENTER TEXT */
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.25s ease, transform 0.15s ease;
}

/* Hover */
.apply-price-filter:hover {
    background: #322f63;
}

/* Active */
.apply-price-filter:active {
    transform: scale(0.97);
}


.quick-view-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.quick-view-modal.active {
    display: block;
}

.quick-view-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.quick-view-content {
    position: relative;
    background: #fff;
    max-width: 950px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

.product-share-single {
    display: flex;
    justify-content: flex-start;
}

.share-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #000;
}

.share-btn i {
    font-size: 26px;
}

.share-btn:hover {
    opacity: 0.7;
    background: none !important;
}


/* Popup container */
.cart-popup {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    max-width: 300px;
    background: #fff;
    border: 1px solid #d1d9dd;
    z-index: 1050;
    display: none;
}

.cart-popup.show {
    display: block;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(-50%) translateX(50px);}
    100% { opacity: 1; transform: translateY(-50%) translateX(0);}
}

.cart-popup .btn-dark {
    background-color: #0f2d3f;
    border: none;
    border-radius: 30px;
}
.cart-popup .btn-dark:hover {
    background-color: #0b212f;
}
.cart-popup .btn-outline-dark {
    border: 1px solid #0f2d3f;
    color: #0f2d3f;
    border-radius: 30px;
}
.cart-popup .btn-outline-dark:hover {
    background-color: #0f2d3f;
    color: #fff;
}

/* Close button smaller */
.btn-close.btn-sm {
    font-size: 0.8rem;
}

a#continueShopping {
    color: #000;
    font-size: 16px;
}


.filter-panel.price-filter {
    padding: 14px;
}

.filter-panel.price-filter .price-info {
    font-size: 14px;
    color: #1f4ed8; /* blue text like screenshot */
    margin-bottom: 10px;
}

.filter-panel.price-filter .price-reset {
    margin-left: 8px;
    text-decoration: underline;
    color: #1f4ed8;
    font-weight: 500;
}

.filter-panel.price-filter input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
}

.filter-panel.price-filter input:last-child {
    margin-bottom: 0;
}


.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1877f2; /* Facebook Blue */
    color: #fff;
    transition: all 0.3s ease;
}

.facebook-icon svg {
    width: 46px;
    height: 34px;
}

.facebook-icon:hover {
    background: #145dbf;
    transform: translateY(-2px);
}


.price-filter.redesigned {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 16px;
    width: 320px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Top text row */
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #1f4e79;
    margin-bottom: 14px;
}

.reset-link {
    color: #1f4e79;
    text-decoration: underline;
    font-size: 14px;
}

/* Inputs */
.price-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.price-field {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    padding: 8px 10px;
    width: 100%;
    border-radius: 4px;
}

.price-field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.price-field .currency {
    margin-right: 6px;
    color: #777;
}

/* Apply button */
.apply-price-filter {
    width: 100%;
    padding: 10px;
    border: 1px solid #1f4e79;
    background: #1f4e79;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.apply-price-filter:hover {
    background: #163a5d;
}


