:root {
    --primary-color: #C19A6B;
    /* Luxury Tan */
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --white: #fffaf0;
    --bg-light: #F8F8F8;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    position: absolute;
    /* Header sits on top of Hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    /* White background */
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    position: fixed;
    background-color: #fffaf0 !important;
    background: #fffaf0 !important;
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 2px;
    color: #C19A6B;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hot-badge {
    background-color: #e67e22;
    color: white;
    font-size: 7px;
    padding: 2px 5px;
    border-radius: 2px;
    position: absolute;
    top: -12px;
    right: -10px;
    text-transform: uppercase;
    font-weight: 800;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    align-items: center;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8%;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.hero-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slide-1 {
    background-image: url('../images/hero1.png');
    justify-content: flex-end;
    /* Content on right */
}

.hero-slide-2 {
    background-image: url('../images/hero2.png');
    justify-content: flex-start;
    /* Content on left */
}

.hero-content-right {
    max-width: 500px;
    text-align: left;
}

.hero-content-left {
    max-width: 500px;
    text-align: left;
    margin-right: auto;
    /* Push to left */
}

.hero-content-right span,
.hero-content-left span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.hero-content-right h1,
.hero-content-left h1 {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

@keyframes shopBtnFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.shop-btn {
    background-color: #C19A6B; /* Luxury Tan */
    color: #FFFFFF !important;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.2);
    text-transform: uppercase;
    animation: shopBtnFloat 3s ease-in-out infinite;
}

.shop-btn:hover {
    animation: none; /* Stop floating on hover */
    background-color: #1A1A1A; /* Invert to black on hover */
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Swiper Nav Arrows */
.nav-arrow {
    width: 50px !important;
    height: 50px !important;
    color: var(--white) !important;
}

.nav-arrow:after {
    font-size: 25px !important;
}

/* Banner Section Styles */
.banner-section {
    padding: 60px 5%;
    background: var(--white);
}

.banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
}

.banner-content a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #1A1A1A;
    padding-bottom: 5px;
    transition: 0.3s;
}

.banner-content a:hover {
    color: #C19A6B;
    border-color: #C19A6B;
}

.banner-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .banner-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .banner-container {
        grid-template-columns: 1fr;
    }

    .banner-item {
        height: 300px;
    }
}

/* Featured Products Styles */
.featured-products {
    padding: 80px 5%;
    background-color: var(--white);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.featured-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.featured-nav {
    display: flex;
    gap: 15px;
}

.featured-nav div {
    width: 35px;
    height: 35px;
    border: 1px solid #EEE;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    color: #C19A6B;
}

.featured-nav div:hover {
    background-color: #C19A6B;
    color: var(--white);
    border-color: #C19A6B;
}

.featured-slider {
    padding-bottom: 20px;
}

/* Categories Section Styles */
.categories {
    padding: 80px 5%;
    background-color: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f0f0f0;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.category-item:hover .category-img img {
    transform: scale(1.1);
}

.category-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.category-link i {
    font-size: 14px;
    color: #C19A6B;
    /* Arrow color */
}

.category-link:hover {
    color: #C19A6B;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Seller Section Styles */
.best-seller {
    padding: 80px 5%;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #C19A6B;
}

.section-header p {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-img {
    background-color: #F8F8F8;
    /* Light gray background like reference */
    aspect-ratio: 1 / 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    font-weight: 700;
    color: #C19A6B;
    font-size: 14px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Latest Collection Styles */
.latest-collection {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 40px;
    background-color: var(--white);
}

.col-side {
    flex: 1;
}

.col-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.col-content {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.col-content .sub-title {
    font-size: 14px;
    color: #C19A6B;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.col-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.separator {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator:before,
.separator:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #C19A6B;
    margin: 0 10px;
}

.banner-content h3 {
    font-size: 32px;
    color: #ffffff !important;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.banner-content a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #ffffff !important;
    text-transform: uppercase;
}

.col-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.shop-btn-alt {
    background-color: #C19A6B;
    /* Tan/Brown color from reference */
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.3s;
}

.shop-btn-alt:hover {
    background-color: #A67C52;
}

@media (max-width: 992px) {
    .latest-collection {
        flex-direction: column;
    }

    .col-side {
        width: 100%;
    }

    .col-content {
        order: -1;
        /* Text on top for mobile */
        padding: 40px 0;
    }
}

/* Deals Section Styles */
.deals {
    padding: 100px 0;
    position: relative;
    background-image: url('../images/latest1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.deals-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.deals-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 5%;
}

.section-header.white h2 {
    color: var(--white);
}

.section-header.white h2:after {
    background-color: var(--white);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.deal-card {
    background-color: var(--white);
    padding: 50px 40px;
    /* Increased vertical padding for more height */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    /* Set a minimum height */
}

.deal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #3498db;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    letter-spacing: 1px;
}

.deal-flex {
    display: flex;
    gap: 50px;
    /* Further increased gap */
    margin-bottom: 40px;
    /* More space before footer */
}

.deal-img {
    flex: 0 0 35%;
    background-color: #F8F8F8;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    /* More padding inside image box */
}

.deal-img img {
    max-width: 100%;
    object-fit: contain;
}

.deal-info {
    flex: 1;
}

.deal-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.deal-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 20px 0;
    line-height: 1.6;
}

.deal-actions {
    display: flex;
    gap: 10px;
}

.add-cart-btn {
    background-color: #F8F8F8;
    border: none;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.add-cart-btn:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.icon-btn {
    width: 35px;
    height: 35px;
    background-color: #F8F8F8;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.icon-btn:hover {
    background-color: #C19A6B;
    color: var(--white);
}

.deal-footer {
    border-top: 1px solid #EEE;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.hurry-up {
    color: #e74c3c;
    font-weight: 700;
}

.expired {
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 2px 15px;
    border-radius: 20px;
    margin-left: 5px;
}

@media (max-width: 992px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .deal-flex {
        flex-direction: column;
    }
}

/* Footer Styles */
.footer {
    background-color: #F8F8F8;
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 60px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #EEE;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 30px 0;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-dark);
    font-size: 16px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #C19A6B;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--text-dark);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #EEE;
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-gray);
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 25px;
    opacity: 0.8;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: 0.3s;
}

.back-to-top:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-col {
        flex: 0 0 100%;
    }
}

/* Newsletter Styles */
.newsletter {
    padding: 100px 5%;
    background-color: #F8F8F8;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.newsletter-form button {
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 0 35px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #C19A6B;
}

/* Instagram Styles */
.instagram {
    padding: 100px 5%;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.insta-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover:after,
.insta-item:hover i {
    opacity: 1;
}

@media (max-width: 1200px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 30px;
    display: block !important;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-mobile-menu {
    font-size: 24px;
    color: var(--text-dark);
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Header Icons & Mobile Toggle Fix */
.header-icons a {
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: 0.3s;
}

.header-icons a:hover {
    color: var(--primary-color) !important;
}

.mobile-menu-toggle {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}

.cart-icon {
    position: relative;
}

.cart-icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Full Width Collection Banner */
.collection-banner {
    height: 350px;
    background: url('../images/collection-banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 80px 5%;
    position: relative;
}

.collection-banner .collection-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.collection-banner .collection-banner-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
}

.collection-banner .shop-now-btn {
    display: inline-block;
    padding: 15px 45px;
    border: 1.5px solid #fff;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.collection-banner .shop-now-btn:hover {
    background: #fff;
    color: #1A1A1A;
}

@media (max-width: 992px) {
    .collection-banner {
        height: 350px;
    }

    .collection-banner .collection-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .collection-banner {
        height: 300px;
    }

    .collection-banner .collection-banner-content h1 {
        font-size: 28px;
    }
}

/* Banner Hover Overlay Effect */
.banner-item {
    position: relative;
    overflow: hidden;
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(193, 154, 107, 0.4);
    /* Tan/Gold Transparent Overlay */
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
    pointer-events: none;
}

.banner-item:hover::after {
    opacity: 1;
}

.banner-item img {
    transition: 0.6s;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* ===== FOOTER STYLES ===== */
footer.footer {
    background: #fdfdfd;
    padding: 80px 0 0;
    border-top: 1px solid #f1f1f1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0 5%;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1A1A1A;
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #C19A6B;
}

.footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #1A1A1A;
    font-size: 16px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #C19A6B;
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #888;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #C19A6B;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid #f1f1f1;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.copyright {
    font-size: 13px;
    color: #aaa;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 24px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.payment-methods img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== NEW FOOTER DESIGN ===== */
footer.footer {
    background: #f8f8f8;
    padding: 70px 0 0;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0 5%;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #C19A6B;
    margin-bottom: 15px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 400;
    color: #999;
    margin-top: 2px;
}

.footer-desc {
    color: #666;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-desc strong {
    color: #1a1a1a;
}

.footer-newsletter-form {
    display: flex;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    overflow: hidden;
    max-width: 280px;
}

.footer-newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    background: #fff;
    color: #444;
}

.footer-newsletter-form button {
    background: #1a1a1a;
    border: none;
    padding: 0 18px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.footer-newsletter-form button:hover {
    background: #C19A6B;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #C19A6B;
    border-color: #C19A6B;
    color: #fff;
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 12px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #C19A6B;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #777;
    font-size: 13.5px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-links li a:hover {
    color: #C19A6B;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid #e8e8e8;
    background: #f8f8f8;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.copyright {
    font-size: 13px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
}

.footer-link-gold {
    color: #C19A6B !important;
    text-decoration: none;
    font-weight: 500;
}

.footer-link-gold:hover {
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-methods img {
    height: 22px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }
}

/* ================================================
   COMPLETE RESPONSIVE CSS - ALL BREAKPOINTS
   ================================================ */

/* ---- TABLET: max-width 992px ---- */
@media (max-width: 992px) {

    /* Header */
    .header-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: block !important;
    }

    .header-icons .search-bar {
        display: none;
    }

    /* Hero Slider */
    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 14px;
    }

    /* Top Banner Section */
    .banner-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .banner-item {
        height: 280px;
    }

    /* Featured Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 26px;
    }

    /* Collection Banner */
    .collection-banner {
        height: 280px;
        margin: 60px 3%;
    }

    .collection-banner .collection-banner-content h1 {
        font-size: 30px;
    }

    .collection-banner .collection-banner-content p {
        font-size: 15px;
    }

    /* Best Seller */
    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* New Category Banners (3-col) */
    .banner-section .banner-container {
        grid-template-columns: 1fr;
    }

    .banner-section .banner-item {
        height: 260px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ---- MOBILE: max-width 768px ---- */
@media (max-width: 768px) {

    /* Header */
    .logo {
        font-size: 20px;
    }

    .header-icons a {
        font-size: 16px;
        margin-left: 12px;
    }

    /* Hero */
    .hero-slider {
        height: 50vh;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 13px;
        display: none;
    }

    .slide-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    /* Top Banner */
    .banner-item {
        height: 220px;
    }

    .banner-content h3 {
        font-size: 22px !important;
    }

    .banner-content a {
        font-size: 12px !important;
    }

    /* Featured Products */
    .featured-products {
        padding: 50px 4%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-item h3 {
        font-size: 14px;
    }

    /* Collection Banner */
    .collection-banner {
        height: 220px;
        margin: 40px 3%;
    }

    .collection-banner .collection-banner-content h1 {
        font-size: 22px;
    }

    .collection-banner .collection-banner-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .collection-banner .shop-now-btn {
        padding: 10px 28px;
        font-size: 12px;
    }

    /* Best Seller */
    .best-seller {
        padding: 50px 4%;
    }

    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* New Category Banners */
    .banner-section {
        padding: 40px 4%;
    }

    .banner-section .banner-item {
        height: 200px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 4%;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ---- SMALL MOBILE: max-width 480px ---- */
@media (max-width: 480px) {

    /* Header */
    .header-icons span.cart-count {
        display: none;
    }

    /* Hero */
    .hero-slider {
        height: 45vh;
    }

    .slide-content h1 {
        font-size: 20px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Best Seller */
    .best-seller-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* Collection Banner */
    .collection-banner {
        height: 200px;
    }

    .collection-banner .collection-banner-content h1 {
        font-size: 18px;
    }

    /* Banner Items */
    .banner-item {
        height: 180px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .copyright {
        font-size: 11px;
    }

    .payment-methods img {
        height: 18px;
    }
}

/* ================================================
   MOBILE MENU - COMPLETE FIX
   ================================================ */

/* Hamburger - desktop pe hide, mobile pe show */
.mobile-menu-toggle {
    display: none !important;
    font-size: 20px;
    color: #1a1a1a !important;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-block !important;
    }

    header nav {
        display: none !important;
    }
}

/* Mobile Nav Sidebar */
.mobile-nav {
    position: fixed;
    top: 0 !important;
    right: -320px;
    width: 300px;
    height: 100vh !important;
    background: var(--white);
    z-index: 99999 !important;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0 !important;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-header .logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #C19A6B;
}

.close-mobile-menu {
    font-size: 22px;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.close-mobile-menu:hover {
    color: #C19A6B;
}

.mobile-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.mobile-menu li a:hover {
    color: #C19A6B;
    padding-left: 35px;
    background: #fdf8f3;
}

/* Overlay when mobile menu is open */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.mobile-nav-overlay.active {
    display: block;
}

/* ================================================
   HEADER MOBILE FIX - FINAL OVERRIDE
   ================================================ */

/* Desktop: hamburger hidden */
a.mobile-menu-toggle {
    display: none !important;
}

/* Mobile: hamburger visible, nav hidden */
@media (max-width: 992px) {
    a.mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #1a1a1a !important;
        text-decoration: none;
        cursor: pointer;
        width: 38px;
        height: 38px;
    }

    a.mobile-menu-toggle i {
        color: #1a1a1a !important;
    }

    header nav {
        display: none !important;
    }

    /* Mobile Header Layout: logo center, icons right */
    header {
        padding: 15px 4%;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 3px;
    }

    /* Hide some icons on small mobile */
    .header-icons a:not(.cart-icon):not(.account-icon):not(.mobile-menu-toggle) {
        display: none !important;
    }

    .header-icons {
        gap: 15px;
        margin-left: auto !important;
    }
}

/* Show all icons on tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .header-icons a {
        display: flex !important;
    }
}

/* ================================================
   MOBILE RESPONSIVE - COMPLETE REFINED FIX
   ================================================ */

@media (max-width: 992px) {

    /* === HEADER === */
    header {
        padding: 15px 5%;
        position: fixed !important;
        background-color: #fffaf0 !important;
        background: #fffaf0 !important;
    }

    /* Show hamburger */
    a.mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        font-size: 20px;
        color: #1a1a1a !important;
        text-decoration: none;
    }

    /* Hide desktop nav */
    header nav {
        display: none !important;
    }

    /* === HERO SLIDER === */
    .hero-slider {
        height: 55vh;
        min-height: 300px;
    }

    .swiper-slide {
        padding-top: 70px;
    }

    .slide-content {
        padding: 20px 5%;
    }

    .slide-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 13px;
    }

    .slide-btn {
        padding: 10px 22px;
        font-size: 11px;
    }

    /* === TOP BANNER (3 col) === */
    .banner-container {
        grid-template-columns: 1fr !important;
        gap: 10px;
        padding: 0;
    }

    .banner-item {
        height: 220px;
    }

    .banner-content h3 {
        font-size: 24px !important;
    }

    /* === FEATURED PRODUCTS === */
    .featured-products {
        padding: 50px 5%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* === COLLECTION BANNER === */
    .collection-banner {
        margin: 40px 3% !important;
        height: 250px !important;
    }

    .collection-banner-content h1 {
        font-size: 24px !important;
    }

    .collection-banner-content p {
        font-size: 13px !important;
    }

    /* === BEST SELLER === */
    .best-seller {
        padding: 50px 5%;
    }

    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* === SECTION CATEGORY BANNERS === */
    .banner-section {
        padding: 30px 5%;
    }

    .banner-section .banner-container {
        grid-template-columns: 1fr !important;
    }

    .banner-section .banner-item {
        height: 220px;
    }

    /* === FOOTER === */
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px;
    }
}

@media (max-width: 576px) {

    /* === HEADER === */
    header {
        padding: 12px 4%;
    }

    .logo {
        font-size: 18px !important;
        letter-spacing: 2px;
    }

    .logo span {
        font-size: 8px !important;
    }

    /* Hide extra icons - keep only cart, login + hamburger */
    .header-icons a:not(.cart-icon):not(.account-icon):not(.mobile-menu-toggle) {
        display: none !important;
    }

    a.mobile-menu-toggle {
        display: flex !important;
    }

    /* === HERO === */
    .hero-slider {
        height: 45vh;
        min-height: 250px;
    }

    .slide-content h1 {
        font-size: 22px;
    }

    .slide-content p {
        display: none;
    }

    /* === PRODUCTS === */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-item h3 {
        font-size: 13px;
    }

    .product-item .price {
        font-size: 13px;
    }

    /* === COLLECTION BANNER === */
    .collection-banner {
        margin: 30px 3% !important;
        height: 200px !important;
    }

    .collection-banner-content h1 {
        font-size: 18px !important;
    }

    .collection-banner-content p {
        display: none;
    }

    .shop-now-btn {
        padding: 10px 22px !important;
        font-size: 11px !important;
    }

    /* === BEST SELLER === */
    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* === SECTION HEADER === */
    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* === BANNER ITEMS === */
    .banner-item {
        height: 180px;
    }

    .banner-content h3 {
        font-size: 18px !important;
    }

    .banner-content a {
        font-size: 11px !important;
    }

    /* === FOOTER === */
    .footer {
        padding: 50px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 5%;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 5%;
    }

    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }

    .copyright {
        font-size: 11px;
    }
}

/* ================================================
   HERO SLIDER - MOBILE COMPLETE FIX
   ================================================ */

@media (max-width: 992px) {

    /* Hero height aur padding-top for fixed header */
    .hero {
        height: 60vh !important;
        min-height: 350px;
        padding: 0 5% !important;
        padding-top: 80px !important;
        justify-content: center !important;
        align-items: center;
    }

    .hero-slide-1,
    .hero-slide-2 {
        justify-content: center !important;
    }

    .hero-content-right,
    .hero-content-left {
        max-width: 100% !important;
        text-align: center !important;
        width: 100%;
        margin: 0 auto !important;
    }

    .hero-content-right h1,
    .hero-content-left h1 {
        font-size: 40px !important;
        line-height: 1.2;
        margin-bottom: 20px !important;
    }

    .hero-content-right span,
    .hero-content-left span {
        font-size: 13px !important;
        margin-bottom: 8px;
    }

    .shop-btn {
        padding: 12px 30px !important;
        font-size: 11px !important;
    }

    /* Swiper arrows smaller */
    .nav-arrow {
        width: 35px !important;
        height: 35px !important;
    }

    .nav-arrow:after {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 55vh !important;
        min-height: 300px;
        padding-top: 70px !important;
    }

    .hero-content-right h1,
    .hero-content-left h1 {
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }

    .hero-content-right span,
    .hero-content-left span {
        font-size: 11px !important;
    }

    .shop-btn {
        padding: 10px 24px !important;
        font-size: 10px !important;
        letter-spacing: 1.5px;
    }

    /* Hide arrows on very small screen */
    .nav-arrow {
        display: none !important;
    }

    /* Pagination dots visible */
    .swiper-pagination {
        bottom: 10px !important;
    }
}

/* ================================================
   HERO SLIDER - BUTTON VISIBILITY FINAL FIX
   ================================================ */

/* Make swiper-slide full height and flex */
.hero-slider .swiper-slide {
    height: auto;
}

.hero-slider .hero {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
}

@media (max-width: 992px) {

    /* Give enough height so all content fits */
    .hero-slider {
        height: auto !important;
        min-height: 420px !important;
    }

    .hero {
        height: auto !important;
        min-height: 420px !important;
        padding: 90px 5% 50px !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .hero-content-right,
    .hero-content-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-content-right h1,
    .hero-content-left h1 {
        font-size: 38px !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
    }

    .hero-content-right span,
    .hero-content-left span {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .shop-btn {
        display: inline-block !important;
        padding: 13px 32px !important;
        font-size: 11px !important;
        margin-top: 5px;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 380px !important;
    }

    .hero {
        min-height: 380px !important;
        padding: 80px 5% 40px !important;
    }

    .hero-content-right h1,
    .hero-content-left h1 {
        font-size: 28px !important;
    }

    .shop-btn {
        padding: 12px 28px !important;
        font-size: 10px !important;
    }
}

/* ================================================
   CONSISTENT SECTION SPACING - DESKTOP
   ================================================ */

/* Universal section gap - 80px top/bottom */
.banner-section,
.featured-products,
.best-seller,
.collection-banner {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
}

/* Collection banner side margins remain, only top adjusted */
.collection-banner {
    margin: 80px 5% !important;
}

/* Remove any extra top padding from sections */
.featured-products {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 5%;
    padding-right: 5%;
}

.best-seller {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 5%;
    padding-right: 5%;
}

.banner-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 5%;
    padding-right: 5%;
}

/* Section header spacing inside sections */
.section-header {
    margin-bottom: 50px !important;
}

/* Footer top gap */
footer.footer {
    margin-top: 0 !important;
}

/* Mobile: reduce section gap */
@media (max-width: 992px) {

    .banner-section,
    .featured-products,
    .best-seller {
        margin-top: 50px !important;
    }

    .collection-banner {
        margin: 50px 3% !important;
    }

    footer.footer {
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {

    .banner-section,
    .featured-products,
    .best-seller {
        margin-top: 40px !important;
    }

    .collection-banner {
        margin: 40px 3% !important;
    }

    footer.footer {
        margin-top: 0 !important;
    }
}


/* ==========================================================================
   ADVANCED LUXURY SINGLE PRODUCT PAGE OVERRIDES (WOOCOMMERCE)
   ========================================================================== */

.single-product {
    background-color: #faf9f6 !important;
    /* Premium luxury cream background */
}

/* Page spacing to clear the absolute transparent header - Balanced Luxury Full-Width */
.single-product .site-main {
    padding-top: 140px !important;
    padding-bottom: 80px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

@media (max-width: 768px) {
    .single-product .site-main {
        padding-top: 110px !important;
        padding-bottom: 50px !important;
    }
}

/* Clean, modern breadcrumb styling */
.woocommerce-breadcrumb {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #999999 !important;
    margin-bottom: 35px !important;
    font-weight: 500;
}

.woocommerce-breadcrumb a {
    color: #666666 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.woocommerce-breadcrumb a:hover {
    color: #C19A6B !important;
}

/* Modern Split Column layout on Desktop */
@media (min-width: 768px) {
    .single-product div.product {
        display: flex !important;
        flex-flow: row wrap !important;
        gap: 6% !important;
        align-items: flex-start !important;
    }

    .single-product div.product .woocommerce-product-gallery {
        width: 46% !important;
        float: none !important;
        margin-bottom: 0 !important;
    }

    .single-product div.product .summary {
        width: 48% !important;
        float: none !important;
        margin-bottom: 0 !important;
        background-color: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        border-radius: 8px !important;
        padding: 40px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
        box-sizing: border-box !important;
    }
}

/* Product Gallery Card Design */
.single-product .woocommerce-product-gallery {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
}

.single-product .woocommerce-product-gallery:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
}

.single-product .woocommerce-product-gallery img {
    border-radius: 6px !important;
    transition: transform 0.3s ease !important;
}

/* Product Info (Right Column Summary) */
.single-product .product_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    line-height: 1.25 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
}

@media (max-width: 576px) {
    .single-product .product_title {
        font-size: 28px !important;
    }
}

/* Product rating with elegant alignment */
.single-product .woocommerce-product-rating {
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.single-product .star-rating {
    color: #C19A6B !important;
    /* Premium gold stars */
    font-size: 14px !important;
    letter-spacing: 2px !important;
}

.single-product .woocommerce-review-link {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500;
    color: #888888 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.single-product .woocommerce-review-link:hover {
    color: #C19A6B !important;
}

/* Huge Gold Price Panel */
.single-product .price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #C19A6B !important;
    /* Majestic Gold Accent */
    margin-bottom: 25px !important;
    display: block !important;
    line-height: 1 !important;
}

.single-product .price del {
    font-size: 18px !important;
    color: #999999 !important;
    margin-right: 12px !important;
    font-weight: 400 !important;
}

.single-product .price ins {
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* Short description clean spacing */
.single-product .woocommerce-product-details__short-description {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #555555 !important;
    margin-bottom: 30px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-bottom: 25px !important;
}

/* Majestic Custom Add-To-Cart Row */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 35px !important;
    flex-wrap: wrap !important;
}

/* Refined qty field */
.single-product .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    height: 52px !important;
    padding: 0 8px !important;
}

.single-product .quantity input.qty {
    width: 45px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    background: transparent !important;
}

.single-product .quantity input.qty:focus {
    outline: none !important;
}

/* Solid forest green to gold transition buy CTA */
.single-product .single_add_to_cart_button {
    height: 52px !important;
    padding: 0 45px !important;
    background-color: #053736 !important;
    /* Premium dark forest green */
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: 1px solid #053736 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
}

.single-product .single_add_to_cart_button:hover {
    background-color: #C19A6B !important;
    /* Premium gold on hover */
    border-color: #C19A6B !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Organized Product Meta data */
.single-product .product_meta {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    line-height: 2.1 !important;
    color: #777777 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-top: 25px !important;
}

.single-product .product_meta span {
    display: block !important;
    font-weight: 400 !important;
}

.single-product .product_meta span strong {
    color: #222222 !important;
    font-weight: 600 !important;
}

.single-product .product_meta span a {
    color: #555555 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease;
}

.single-product .product_meta span a:hover {
    color: #C19A6B !important;
}

/* Luxury secure purchase guarantee bullet list - dynamic HTML styling rules */
.luxury-trust-badges {
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
    margin-top: 25px !important;
    padding-top: 25px !important;
}

.luxury-trust-badges .trust-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #111111 !important;
    text-transform: uppercase !important;
    margin: 0 0 15px 0 !important;
}

.luxury-trust-badges .trust-points {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.luxury-trust-badges .trust-points li {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    line-height: 2 !important;
    color: #666666 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 500 !important;
}

.luxury-trust-badges .trust-points li i {
    color: #C19A6B !important;
    /* Premium Gold Icons */
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

/* Premium Minimal Tabs section */
.single-product .woocommerce-tabs {
    width: 100% !important;
    clear: both !important;
    float: none !important;
    margin-top: 60px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-top: 50px !important;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    float: none !important;
    width: 100% !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    padding: 0 0 15px 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    float: none !important;
    display: inline-block !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #888888 !important;
    text-decoration: none !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    border-bottom: 2px solid transparent !important;
    display: inline-block !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #C19A6B !important;
    border-bottom: 2px solid #C19A6B !important;
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #C19A6B !important;
}

.single-product .woocommerce-Tabs-panel {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.8;
    color: #555555 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    float: none !important;
    clear: both !important;
}

.single-product .woocommerce-Tabs-panel h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    text-align: left !important;
    font-weight: 700 !important;
}

/* Related Products Premium Grid matching Homepage */
.single-product .related.products,
.single-product .upsells.products {
    margin-top: 80px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-top: 60px !important;
}

.single-product .related.products h2,
.single-product .upsells.products h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    text-align: center !important;
    margin-bottom: 45px !important;
}

/* Unbreakable High-Specificity Flexbox Layout for Related & Upsell products loop */
.woocommerce .single-product .related.products ul.products,
.woocommerce-page .single-product .related.products ul.products,
.woocommerce .single-product .upsells.products ul.products,
.woocommerce-page .single-product .upsells.products ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    /* Distribute items perfectly to both edges of the screen */
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    float: none !important;
    width: 100% !important;
}

/* Hide non-product tags (like scripts/styles) to be absolutely secure */
.woocommerce .single-product .related.products ul.products>*:not(li.product),
.woocommerce .single-product .upsells.products ul.products>*:not(li.product) {
    display: none !important;
}

.woocommerce .single-product .related.products ul.products li.product,
.woocommerce-page .single-product .related.products ul.products li.product,
.woocommerce .single-product .upsells.products ul.products li.product,
.woocommerce-page .single-product .upsells.products ul.products li.product {
    width: 24% !important;
    /* 100% stable width, leaves 4% for perfect spacing */
    margin: 0 0 30px 0 !important;
    /* Clear side margins to eliminate unexpected gaps */
    background: #ffffff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    clear: none !important;
    /* Override default WooCommerce float wraps */
    float: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 991px) and (min-width: 576px) {

    .woocommerce .single-product .related.products ul.products li.product,
    .woocommerce-page .single-product .related.products ul.products li.product {
        width: 48% !important;
        /* Tablets: 2 columns */
    }
}

@media (max-width: 575px) {

    .woocommerce .single-product .related.products ul.products li.product,
    .woocommerce-page .single-product .related.products ul.products li.product {
        width: 100% !important;
        /* Mobile: 1 column */
    }
}

.single-product .related.products ul.products li.product:hover,
.single-product .upsells.products ul.products li.product:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-4px) !important;
}

.single-product .related.products ul.products li.product img,
.single-product .upsells.products ul.products li.product img {
    border-radius: 6px !important;
    margin-bottom: 15px !important;
}

.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
    font-weight: 600 !important;
}

.single-product .related.products ul.products li.product .price,
.single-product .upsells.products ul.products li.product .price {
    font-size: 15px !important;
    color: #C19A6B !important;
    margin-bottom: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.single-product .related.products ul.products li.product .button,
.single-product .upsells.products ul.products li.product .button {
    margin-top: 15px !important;
    display: block !important;
    text-align: center !important;
    padding: 10px 15px !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.single-product .related.products ul.products li.product .button:hover,
.single-product .upsells.products ul.products li.product .button:hover {
    background-color: #C19A6B !important;
}


/* ==========================================================================
   PREMIUM SINGLE PRODUCT REVIEWS & STAR RATING CUSTOM STYLING (ADVANCED)
   ========================================================================== */

/* Modern Split Screen Columns inside Reviews Tab on Desktop */
@media (min-width: 992px) {
    .single-product #reviews {
        display: flex !important;
        flex-direction: row !important;
        gap: 6% !important;
        align-items: flex-start !important;
    }

    .single-product #comments {
        width: 44% !important;
        float: none !important;
        margin: 0 !important;
    }

    .single-product #review_form_wrapper {
        width: 50% !important;
        float: none !important;
        margin: 0 !important;
    }
}

/* Luxury Alert Notification for Empty Reviews state */
.woocommerce-noreviews {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px !important;
    padding: 30px !important;
    color: #666666 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    line-height: 1.6 !important;
}

/* WooCommerce Review List Cards Premium Styling */
.single-product .commentlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 25px 0 0 0 !important;
}

.single-product .commentlist li.review {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01) !important;
    overflow: hidden;
}

.single-product .commentlist li.review img.avatar {
    border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    float: left !important;
    margin-right: 20px !important;
}

.single-product .commentlist li.review .comment-text {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.single-product .commentlist li.review .meta {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
}

.single-product .commentlist li.review .description {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
}

/* Floating Feedback Form Card */
.single-product #review_form_wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px !important;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    box-sizing: border-box !important;
}

.single-product #reply-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    display: block !important;
    letter-spacing: -0.3px;
}

/* Custom interactive Gold Star Rating selectors */
.single-product p.stars {
    display: inline-flex !important;
    gap: 5px !important;
    margin: 0 !important;
}

.single-product p.stars a {
    position: relative !important;
    height: 1em !important;
    width: 1em !important;
    text-indent: -999em !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.single-product p.stars a::before {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 1em !important;
    height: 1em !important;
    text-indent: 0 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    content: "\f005" !important;
    /* FontAwesome empty star */
    color: #e0e0e0 !important;
    font-size: 18px !important;
    transition: all 0.2s ease !important;
}

.single-product p.stars:hover a::before {
    color: #C19A6B !important;
    /* solid gold on hover */
    font-weight: 900 !important;
}

.single-product p.stars:hover a:hover~a::before {
    color: #e0e0e0 !important;
    /* empty stars after hover cursor */
    font-weight: 400 !important;
}

.single-product p.stars.selected a.active::before {
    color: #C19A6B !important;
    font-weight: 900 !important;
}

.single-product p.stars.selected a.active~a::before {
    color: #e0e0e0 !important;
    font-weight: 400 !important;
}

.single-product p.stars.selected a:not(.active)::before {
    color: #C19A6B !important;
    font-weight: 900 !important;
}

/* Multi-column Flex fields for desktop */
@media (min-width: 576px) {
    .single-product .comment-form {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .single-product .comment-form-rating {
        width: 100% !important;
    }

    .single-product .comment-form-comment {
        width: 100% !important;
    }

    .single-product .comment-form-author,
    .single-product .comment-form-email {
        width: calc(50% - 10px) !important;
    }

    .single-product .comment-form-cookies-consent {
        width: 100% !important;
    }

    .single-product .form-submit {
        width: 100% !important;
    }
}

.single-product .comment-form-rating {
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.single-product .comment-form-rating label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
}

.single-product .comment-form label {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
}

/* Premium input card slots */
.single-product .comment-form input[type="text"],
.single-product .comment-form input[type="email"],
.single-product .comment-form textarea {
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    padding: 14px 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    background: #faf9f6 !important;
    color: #111111 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.single-product .comment-form input[type="text"]:focus,
.single-product .comment-form input[type="email"]:focus,
.single-product .comment-form textarea:focus {
    border-color: #C19A6B !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.05) !important;
    outline: none !important;
}

/* Checkbox alignment */
.single-product .comment-form-cookies-consent {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 10px 0 !important;
}

.single-product .comment-form-cookies-consent input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
    accent-color: #053736 !important;
}

.single-product .comment-form-cookies-consent label {
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #666666 !important;
}

/* Premium solid buy button submit */
.single-product .comment-form input[type="submit"] {
    background-color: #053736 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 15px 45px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
}

.single-product .comment-form input[type="submit"]:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px);
}


/* ==========================================================================
   PREMIUM WORDPRESS & WOOCOMMERCE SIDEBAR WIDGETS STYLING OVERRIDES
   ========================================================================== */

/* High-End Sidebar Container Card */
.widget-area,
#secondary,
.sidebar {
    background: #ffffff !important;
    border-radius: 8px !important;
    padding: 35px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-sizing: border-box !important;
    margin-bottom: 50px !important;
}

/* Individual Widget Blocks */
.widget {
    margin-bottom: 45px !important;
    clear: both !important;
    list-style: none !important;
}

.widget:last-child {
    margin-bottom: 0 !important;
}

/* Luxury Editorial Widget Titles with Gold underline accent */
.widget h2.widget-title,
.widget-title,
.widgettitle {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 25px 0 !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    position: relative !important;
}

.widget h2.widget-title::after,
.widget-title::after,
.widgettitle::after {
    content: "" !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background-color: #C19A6B !important;
    /* Premium Gold underline accent */
}

/* Clean Lists (Pages, Categories, Archives, Menus) */
.widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.widget ul li {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 12px 0 !important;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06) !important;
    display: block !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.widget ul li:last-child {
    border-bottom: none !important;
}

.widget ul li a {
    color: #555555 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.widget ul li a:hover {
    color: #C19A6B !important;
    /* Gold on hover */
    transform: translateX(6px) !important;
}

/* Category Counts & List Metadata indicators */
.widget ul li span.count,
.widget ul li .post_limit,
.widget .post-date {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    background-color: #faf9f6 !important;
    color: #888888 !important;
    padding: 3px 9px !important;
    border-radius: 20px !important;
    float: right !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.widget ul li:hover span.count {
    background-color: #053736 !important;
    /* Premium Brand Dark Green on hover */
    color: #ffffff !important;
    border-color: #053736 !important;
}

/* Slick Search Widget styling */
.widget_search form,
.search-form {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background-color: #faf9f6 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.widget_search form:focus-within,
.search-form:focus-within {
    border-color: #C19A6B !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.06) !important;
}

.widget_search input[type="search"],
.widget_search .search-field,
.search-form input.search-field {
    flex-grow: 1 !important;
    border: none !important;
    background: transparent !important;
    padding: 14px 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #111111 !important;
    width: 100% !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.widget_search input[type="submit"],
.widget_search .search-submit,
.search-form .search-submit,
.search-form button.search-submit {
    background-color: #053736 !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 14px 22px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.widget_search input[type="submit"]:hover,
.search-form .search-submit:hover {
    background-color: #C19A6B !important;
}


/* ==========================================================================
   FORCE COMPLETE REMOVAL OF SIDEBARS & FULL-WIDTH MAIN CONTENT
   ========================================================================== */

/* Hide sidebars and widget containers everywhere */
.widget-area,
#secondary,
.sidebar,
.woocommerce-sidebar,
aside[role="complementary"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force main content container to occupy 100% full width */
#primary,
.content-area,
.site-main,
.woocommerce-content-area {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    box-sizing: border-box !important;
}


/* ==========================================================================
   ULTRA-PREMIUM WOOCOMMERCE CART PAGE STYLING OVERRIDES
   ========================================================================== */

/* Cart Main Layout Wrappers & Split Columns */
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
    padding: 170px 2% 120px !important;
    /* Raised to fully clear the absolutely positioned header */
    background-color: #fffaf0 !important;
    /* Elegant Soft Luxury Off-White Background */
}

/* Force header to sit on top of content */
header {
    z-index: 99999 !important;
}

/* Hide duplicated unstyled titles */
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header {
    display: none !important;
}

/* Force content to expand from 900px to 1420px luxury wide profile */
.woocommerce-cart article,
.woocommerce-checkout article,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Elegant Checkout Progress Steps Header */
.woocommerce-cart .site-main::before,
.woocommerce-checkout .site-main::before {
    content: "01. SHOPPING CART  ➔  02. SECURE CHECKOUT  ➔  03. ORDER COMPLETE" !important;
    display: block !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: #C19A6B !important;
    /* Premium Gold Step Accent */
    margin-bottom: 50px !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
}

@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 40px !important;
        align-items: flex-start !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* Left Column: Cart Form + List Items */
    .woocommerce-cart .woocommerce-cart-form {
        flex: 1 !important;
        max-width: 64% !important;
        width: 64% !important;
        margin: 0 !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        padding: 35px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        box-sizing: border-box !important;
    }

    /* Right Column: Floating Cart Totals */
    .woocommerce-cart .cart-collaterals {
        flex: 0 0 33% !important;
        max-width: 33% !important;
        width: 33% !important;
        margin: 0 !important;
        position: sticky !important;
        top: 140px !important;
        /* Stay sticky when scrolling! */
        box-sizing: border-box !important;
    }
}

/* Cart Table Standard Styles */
.woocommerce-cart table.shop_table.cart {
    border: none !important;
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
}

/* Table Header */
.woocommerce-cart table.shop_table.cart thead {
    background-color: #faf9f6 !important;
    border-bottom: 2px solid rgba(193, 154, 107, 0.15) !important;
}

.woocommerce-cart table.shop_table.cart thead th {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #053736 !important;
    /* Brand Dark Forest Green */
    padding: 16px 15px !important;
    border: none !important;
}

/* Table Body Item Rows */
.woocommerce-cart table.shop_table.cart tbody tr.cart_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart table.shop_table.cart tbody tr.cart_item:hover {
    background-color: rgba(193, 154, 107, 0.02) !important;
}

.woocommerce-cart table.shop_table.cart tbody td {
    padding: 22px 15px !important;
    vertical-align: middle !important;
    border: none !important;
}

/* Elegant Image Frame */
.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail:hover img {
    transform: scale(1.05) !important;
    border-color: #C19A6B !important;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.15) !important;
}

/* Product Titles */
.woocommerce-cart table.shop_table.cart td.product-name a {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    line-height: 1.4 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a:hover {
    color: #C19A6B !important;
}

/* Product Prices and Subtotals */
.woocommerce-cart table.shop_table.cart td.product-price,
.woocommerce-cart table.shop_table.cart td.product-subtotal {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111111 !important;
}

.woocommerce-cart table.shop_table.cart td.product-subtotal span {
    color: #053736 !important;
    /* Elite Forest Green */
    font-weight: 700 !important;
}

/* Premium Interactive Quantity Selector Box */
.woocommerce-cart .quantity input.qty {
    width: 65px !important;
    height: 42px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #faf9f6 !important;
    border-radius: 4px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #111111 !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-cart .quantity input.qty:focus {
    border-color: #C19A6B !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.08) !important;
}

/* Red Circle Remove Button */
.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
    font-size: 18px !important;
    color: #d11a2a !important;
    background-color: rgba(209, 26, 42, 0.05) !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    margin: 0 auto !important;
    border: 1px solid rgba(209, 26, 42, 0.05) !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
    background-color: #d11a2a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(209, 26, 42, 0.2) !important;
}

/* Actions Row - Coupon + Update Buttons */
.woocommerce-cart table.shop_table.cart td.actions {
    padding: 30px 0 0 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-cart .actions .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    float: left !important;
}

.woocommerce-cart .actions .coupon input[name="coupon_code"] {
    height: 44px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #faf9f6 !important;
    border-radius: 4px !important;
    padding: 0 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    width: 200px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .actions .coupon input[name="coupon_code"]:focus {
    border-color: #C19A6B !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(193, 154, 107, 0.05) !important;
}

.woocommerce-cart .actions .coupon button.button,
.woocommerce-cart .actions .coupon input[type="submit"] {
    height: 44px !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0 25px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .actions .coupon button.button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2) !important;
}

/* Update Cart Button (Transparent Premium Look) */
.woocommerce-cart .actions button[name="update_cart"] {
    height: 44px !important;
    background-color: transparent !important;
    color: #053736 !important;
    border: 1px solid #053736 !important;
    border-radius: 4px !important;
    padding: 0 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    float: right !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .actions button[name="update_cart"]:hover {
    background-color: #053736 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(5, 55, 54, 0.15) !important;
}

/* ==========================================
   RIGHT COLUMN: CART TOTALS FLOATING STICKY CARD
   ========================================== */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: #fffaf0 !important;
    border-radius: 12px !important;
    padding: 40px !important;
    border: 1px solid rgba(193, 154, 107, 0.15) !important;
    box-sizing: border-box !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 25px 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
    position: relative !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2::after {
    content: "" !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background-color: #C19A6B !important;
}

/* Totals Table List */
.woocommerce-cart .cart-collaterals .cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 30px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr:last-child {
    border-bottom: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
    padding: 18px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    vertical-align: middle !important;
    background: transparent !important;
    border: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
    font-weight: 600 !important;
    color: #666666 !important;
    text-align: left !important;
    width: 40% !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
    font-weight: 600 !important;
    color: #111111 !important;
    text-align: right !important;
}

/* Grand Total Row highlight */
.woocommerce-cart .cart-collaterals .cart_totals table tr.order-total th {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr.order-total td {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #053736 !important;
    /* Premium brand green */
}

/* Luxury "PROCEED TO CHECKOUT" Buy Button */
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a,
.woocommerce-cart a.checkout-button,
.woocommerce-cart .wc-forward {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 18px 0 !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
    box-sizing: border-box !important;
}

.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a:hover,
.woocommerce-cart a.checkout-button:hover,
.woocommerce-cart .wc-forward:hover {
    background-color: #C19A6B !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================
   EMPTY CART LUXURY LANDING STYLE
   ========================================== */
.woocommerce-cart .cart-empty {
    text-align: center !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    padding: 60px 0 20px !important;
}

.woocommerce-cart .return-to-shop {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.woocommerce-cart .return-to-shop a.button {
    display: inline-block !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 16px 40px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.12) !important;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* Responsive adjustments for Tablets/Mobile */
@media (max-width: 991px) {
    .woocommerce-cart .site-main {
        padding: 50px 5% 80px !important;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }

    /* Make Cart Table Responsive Cards on Small Screens */
    .woocommerce-cart table.shop_table.cart thead {
        display: none !important;
        /* Hide head on mobile */
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item {
        display: block !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        text-align: center !important;
        position: relative !important;
    }

    .woocommerce-cart table.shop_table.cart tbody td {
        display: block !important;
        padding: 10px 0 !important;
        text-align: center !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-remove {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 5 !important;
    }

    .woocommerce-cart .actions .coupon {
        float: none !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    .woocommerce-cart .actions button[name="update_cart"] {
        float: none !important;
        display: block !important;
        width: 100% !important;
    }
}


/* ==========================================================================
   WOOCOMMERCE GUTENBERG BLOCKS CART OVERRIDES (DYNAMIC STYLE)
   ========================================================================== */

/* Split main structure for block layout on desktop */
@media (min-width: 992px) {
    .wc-block-cart {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 40px !important;
        align-items: flex-start !important;
        max-width: 1420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* Left Side: Cart Items list */
    .wc-block-cart__main,
    .wc-block-cart .wc-block-cart__main {
        flex: 1 !important;
        max-width: 63% !important;
        width: 63% !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        padding: 35px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        box-sizing: border-box !important;
    }

    /* Right Side: Sidebar card */
    .wc-block-cart__sidebar,
    .wc-block-cart .wc-block-cart__sidebar {
        flex: 0 0 33% !important;
        max-width: 33% !important;
        width: 33% !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        padding: 40px !important;
        border: 1px solid rgba(193, 154, 107, 0.15) !important;
        box-sizing: border-box !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
        position: sticky !important;
        top: 140px !important;
    }
}

/* Style Gutenberg Totals Card inside sidebar */
.wc-block-cart__sidebar .wc-block-components-totals,
.wc-block-cart .wc-block-components-totals {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.wc-block-cart__sidebar-title,
.wc-block-components-totals__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 25px 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
    position: relative !important;
}

.wc-block-cart__sidebar-title::after,
.wc-block-components-totals__title::after {
    content: "" !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background-color: #C19A6B !important;
}

/* Itemized rows */
.wc-block-components-totals-item,
.wc-block-components-totals-item-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 15px 0 !important;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
}

.wc-block-components-totals-item:last-of-type,
.wc-block-components-totals-item-row:last-of-type {
    border-bottom: none !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item-row__label {
    font-weight: 600 !important;
    color: #666666 !important;
}

.wc-block-components-totals-item__value,
.wc-block-components-totals-item-row__value {
    font-weight: 600 !important;
    color: #111111 !important;
}

/* Total price line highlight */
.wc-block-components-totals-footer-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    margin-top: 15px !important;
    padding: 20px 0 0 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    font-family: 'Montserrat', sans-serif !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #053736 !important;
    /* Premium brand green */
}

/* Gutenberg Cart Block Table Headers styling */
.wc-block-cart__items-header {
    border-bottom: 2px solid rgba(193, 154, 107, 0.15) !important;
    padding-bottom: 12px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    justify-content: space-between !important;
}

.wc-block-cart__items-header-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #053736 !important;
}

/* Cart item row cards */
.wc-block-cart-items,
.wc-block-cart-item {
    border: none !important;
}

.wc-block-cart-items__row,
.wc-block-cart-item__row {
    padding: 25px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.wc-block-cart-items__row:hover,
.wc-block-cart-item__row:hover {
    background-color: rgba(193, 154, 107, 0.02) !important;
}

/* Image styling */
.wc-block-cart-item__image img {
    border-radius: 6px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: 80px !important;
    height: auto !important;
}

.wc-block-cart-item__image:hover img {
    transform: scale(1.05) !important;
    border-color: #C19A6B !important;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.1) !important;
}

/* Title / Name */
.wc-block-cart-item__title,
.wc-block-cart-item__name {
    font-family: 'Playfair Display', serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    line-height: 1.4 !important;
}

.wc-block-cart-item__title a,
.wc-block-cart-item__name a {
    color: #111111 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.wc-block-cart-item__title a:hover,
.wc-block-cart-item__name a:hover {
    color: #C19A6B !important;
}

/* Quantity input and components inside cart */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    background: #faf9f6 !important;
    overflow: hidden !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.wc-block-cart-item__quantity .wc-block-components-quantity-selector input {
    border: none !important;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    text-align: center !important;
}

.wc-block-cart-item__quantity .wc-block-components-quantity-selector button {
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    color: #555555 !important;
    transition: all 0.2s ease !important;
}

.wc-block-cart-item__quantity .wc-block-components-quantity-selector button:hover {
    color: #C19A6B !important;
    background-color: rgba(0, 0, 0, 0.02) !important;
}

/* Delete / Remove Trash trigger */
.wc-block-cart-item__remove,
.wc-block-cart-item__remove-link {
    background-color: rgba(209, 26, 42, 0.05) !important;
    color: #d11a2a !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.wc-block-cart-item__remove:hover,
.wc-block-cart-item__remove-link:hover {
    background-color: #d11a2a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(209, 26, 42, 0.2) !important;
}

/* Coupon components inside blocks cart */
.wc-block-components-totals-discount,
.wc-block-components-totals-coupon {
    font-family: 'Montserrat', sans-serif !important;
}

.wc-block-components-totals-discount__form input[type="text"],
.wc-block-components-totals-coupon__input input {
    height: 44px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #faf9f6 !important;
    border-radius: 4px !important;
    padding: 0 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-totals-discount__form input[type="text"]:focus,
.wc-block-components-totals-coupon__input input:focus {
    border-color: #C19A6B !important;
    background-color: #ffffff !important;
}

.wc-block-components-totals-discount__form button[type="submit"],
.wc-block-components-totals-coupon__button {
    height: 44px !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-totals-discount__form button[type="submit"]:hover,
.wc-block-components-totals-coupon__button:hover {
    background-color: #C19A6B !important;
}


/* ==========================================
   MASTER TARGETING FOR PROCEED TO CHECKOUT BUTTON
   ========================================== */
.wc-block-cart__submit a,
.wc-block-cart__submit-button,
.wc-block-components-checkout-button,
.wc-block-components-checkout-button__button,
.wc-block-cart a.wc-block-components-checkout-button__button,
a.wc-block-components-checkout-button__button,
.wc-block-cart__sidebar .wc-block-components-checkout-button__button,
.wc-block-cart__sidebar a.wc-block-components-checkout-button__button,
.wc-block-cart__sidebar .wc-block-components-button,
.wc-block-components-totals-footer .wc-block-components-button,
.wc-block-components-totals-footer a.wc-block-components-button,
.wc-block-components-totals-footer-item+.wc-block-components-button,
.woocommerce-cart .wc-block-components-totals-footer .wc-block-components-button,
.wc-block-cart__sidebar .wc-block-components-checkout-button a {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 18px 25px !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
    box-sizing: border-box !important;
}

.wc-block-cart__submit a:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-button:hover,
.wc-block-components-checkout-button__button:hover,
.wc-block-cart a.wc-block-components-checkout-button__button:hover,
a.wc-block-components-checkout-button__button:hover,
.wc-block-cart__sidebar .wc-block-components-checkout-button__button:hover,
.wc-block-cart__sidebar a.wc-block-components-checkout-button__button:hover,
.wc-block-cart__sidebar .wc-block-components-button:hover,
.wc-block-components-totals-footer .wc-block-components-button:hover,
.wc-block-components-totals-footer a.wc-block-components-button:hover,
.wc-block-components-totals-footer-item+.wc-block-components-button:hover,
.woocommerce-cart .wc-block-components-totals-footer .wc-block-components-button:hover,
.wc-block-cart__sidebar .wc-block-components-checkout-button a:hover {
    background-color: #C19A6B !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}


/* ==========================================================================
   FIX CHECKOUT ORDER SUMMARY TEXT TOUCHING BORDERS (COMFORTABLE PADDING)
   ========================================================================== */
.wc-block-components-totals-item,
.wc-block-components-totals-footer-item,
.wc-block-components-product-summary-item,
.wc-block-components-totals-discount,
.wc-block-components-totals-coupon,
.wc-block-components-totals-coupon-link,
.wc-block-components-totals-discount__form,
.wc-block-components-totals-coupon__input-wrapper,
.wc-block-components-sidebar .wc-block-components-totals-coupon {
    padding-left: 25px !important;
    padding-right: 25px !important;
    box-sizing: border-box !important;
}

/* Perfect alignment for Sidebar title and outer elements */
.wc-block-checkout__sidebar .wc-block-components-title,
.wc-block-components-sidebar .wc-block-components-title,
.wc-block-components-sidebar h2,
.wc-block-components-sidebar-accordion,
.wc-block-components-totals-coupon-link {
    padding-left: 25px !important;
    padding-right: 25px !important;
    box-sizing: border-box !important;
}

/* Ensure coupon input field also gets neat alignment inside padding */
.wc-block-components-totals-coupon__input-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ==========================================================================
   ULTRA-LUXURY WOOCOMMERCE ORDER RECEIVED / THANK YOU PAGE STYLING
   ========================================================================== */

/* Main Confirmation Hero Text styling */
.woocommerce-thankyou-order-received,
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    color: #053736 !important;
    /* Elite Forest Green */
    text-align: center !important;
    font-weight: 700 !important;
    margin: 45px auto 35px !important;
    letter-spacing: 0.5px !important;
    display: block !important;
}

/* Luxury Checkmark Badge Icon before the title */
.woocommerce-thankyou-order-received::before,
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    content: "✓" !important;
    display: block !important;
    width: 70px !important;
    height: 70px !important;
    line-height: 70px !important;
    background-color: rgba(5, 55, 54, 0.04) !important;
    color: #053736 !important;
    border-radius: 50% !important;
    font-size: 34px !important;
    text-align: center !important;
    margin: 0 auto 25px !important;
    border: 2px solid #053736 !important;
}

/* Pay with cash upon delivery message wrapper */
p.woocommerce-notice.woocommerce-notice--success+p {
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #666666 !important;
    margin-bottom: 40px !important;
}

/* Order Details Floating Metrics Card (Order Number, Date, Total, Payment) */
ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 25px 30px !important;
    margin: 35px auto 45px !important;
    background: #fffaf0 !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    box-sizing: border-box !important;
}

ul.woocommerce-order-overview li {
    flex: 1 1 20% !important;
    text-align: center !important;
    border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 8px 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
}

ul.woocommerce-order-overview li:last-child {
    border-right: none !important;
}

ul.woocommerce-order-overview li strong {
    display: block !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 17px !important;
    color: #111111 !important;
    margin-top: 8px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
}

/* Table Header Title styling */
.woocommerce-order-received h2,
.woocommerce-order-received .woocommerce-order-details__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Order Details Master Table Design */
.woocommerce-order-received .shop_table.order_details {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 25px auto 45px !important;
    border-collapse: collapse !important;
    background: #fffaf0 !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
}

.woocommerce-order-received .shop_table.order_details th {
    background-color: #faf9f6 !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 14px !important;
    color: #111111 !important;
    padding: 18px 25px !important;
    text-align: left !important;
    font-weight: 700 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.woocommerce-order-received .shop_table.order_details td,
.woocommerce-order-received .shop_table.order_details tfoot td,
.woocommerce-order-received .shop_table.order_details tfoot th {
    padding: 18px 25px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #444444 !important;
}

.woocommerce-order-received .shop_table.order_details tfoot th {
    font-weight: 600 !important;
    color: #111111 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order-received .shop_table.order_details tr:last-child td,
.woocommerce-order-received .shop_table.order_details tr:last-child th,
.woocommerce-order-received .shop_table.order_details tfoot tr:last-child td,
.woocommerce-order-received .shop_table.order_details tfoot tr:last-child th {
    border-bottom: none !important;
}

.woocommerce-order-received .shop_table.order_details td a {
    color: #111111 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.woocommerce-order-received .shop_table.order_details td a:hover {
    color: #C19A6B !important;
}

/* Style totals value on the thank-you page */
.woocommerce-order-received .shop_table.order_details tfoot tr:nth-last-child(2) td span,
.woocommerce-order-received .shop_table.order_details tfoot tr:last-child td span {
    font-weight: 700 !important;
    color: #053736 !important;
    /* Elegant Forest Green for Totals */
}

/* Billing & Shipping Addresses Column Layout */
.woocommerce-order-received .woocommerce-customer-details {
    max-width: 1200px !important;
    margin: 50px auto !important;
    box-sizing: border-box !important;
}

.woocommerce-order-received .woocommerce-customer-details h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    text-align: left !important;
}

.woocommerce-order-received .woocommerce-columns--addresses,
.woocommerce-order-received .woocommerce-columns--customer-details {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-order-received .woocommerce-column--billing-address,
.woocommerce-order-received .woocommerce-column--shipping-address {
    flex: 0 0 48% !important;
    width: 48% !important;
    background: #fffaf0 !important;
    padding: 35px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
    box-sizing: border-box !important;
}

.woocommerce-order-received .woocommerce-column__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #C19A6B !important;
    /* Premium Gold Titles */
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(193, 154, 107, 0.15) !important;
    padding-bottom: 12px !important;
    text-transform: none !important;
}

.woocommerce-order-received address {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #555555 !important;
    line-height: 1.8 !important;
    font-style: normal !important;
}

/* Responsive tweaks for Mobile/Tablet */
@media (max-width: 768px) {
    ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }

    ul.woocommerce-order-overview li {
        width: 100% !important;
        text-align: left !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
        padding: 12px 0 !important;
    }

    ul.woocommerce-order-overview li:last-child {
        border-bottom: none !important;
    }

    .woocommerce-order-received .woocommerce-column--billing-address,
    .woocommerce-order-received .woocommerce-column--shipping-address {
        flex: 1 1 100% !important;
    }
}

/* Product thumbnail styles in thank you page */
.wc-order-item-thumbnail-link img,
.wc-order-item-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wc-order-item-thumbnail-link:hover img {
    transform: scale(1.1) !important;
}

.wc-order-item-name-link {
    transition: color 0.2s ease !important;
}

.wc-order-item-name-link:hover {
    color: #C19A6B !important;
}


/* ==========================================================================
   PREMIUM ARCHIVE / CATEGORY SHOP PAGE PRODUCT GRID STYLING
   ========================================================================== */
.woocommerce-page ul.products,
.archive.tax-product_cat ul.products,
.post-type-archive-product ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
    padding: 0 15px !important;
    list-style: none !important;
}

/* Clear WooCommerce clearfix pseudo-elements which behave as grid items and leave cell 1 empty */
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.archive.tax-product_cat ul.products::before,
.archive.tax-product_cat ul.products::after,
.post-type-archive-product ul.products::before,
.post-type-archive-product ul.products::after {
    content: none !important;
    display: none !important;
}


@media (max-width: 991px) {

    .woocommerce-page ul.products,
    .archive.tax-product_cat ul.products,
    .post-type-archive-product ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 540px) {

    .woocommerce-page ul.products,
    .archive.tax-product_cat ul.products,
    .post-type-archive-product ul.products {
        grid-template-columns: 1fr !important;
    }
}

.woocommerce-page ul.products li.product,
.archive.tax-product_cat ul.products li.product,
.post-type-archive-product ul.products li.product {
    background: #fffaf0 !important;
    padding: 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
}

.woocommerce-page ul.products li.product:hover,
.archive.tax-product_cat ul.products li.product:hover,
.post-type-archive-product ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.07) !important;
    border-color: rgba(193, 154, 107, 0.2) !important;
}

/* Image zoom effect & boundaries */
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
.archive.tax-product_cat ul.products li.product a.woocommerce-LoopProduct-link,
.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
    text-decoration: none !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

.woocommerce-page ul.products li.product img,
.archive.tax-product_cat ul.products li.product img,
.post-type-archive-product ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    transition: transform 0.5s ease !important;
    background: #fbfbfb !important;
}

.woocommerce-page ul.products li.product:hover img,
.archive.tax-product_cat ul.products li.product:hover img,
.post-type-archive-product ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

/* Product Title Styling (Unifying from the blue default links) */
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2,
.woocommerce-page ul.products li.product h3,
.woocommerce-page ul.products li.product h2.woocommerce-loop-product__title,
.archive.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.archive.tax-product_cat ul.products li.product h2,
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.post-type-archive-product ul.products li.product h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 15px 0 8px !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease !important;
    padding: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    display: block !important;
}

.woocommerce-page ul.products li.product a:hover,
.woocommerce-page ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product:hover h2 {
    color: #C19A6B !important;
    /* Luxury Gold Hover */
}

/* Price styling */
.woocommerce-page ul.products li.product .price,
.woocommerce-page ul.products li.product span.price,
.archive.tax-product_cat ul.products li.product .price,
.post-type-archive-product ul.products li.product .price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #C19A6B !important;
    margin-bottom: 18px !important;
    display: block !important;
}

/* Add to Cart Button (Forest Green Premium styling) */
.woocommerce-page ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button.add_to_cart_button,
.archive.tax-product_cat ul.products li.product a.button,
.post-type-archive-product ul.products li.product a.button {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    /* Elite Forest Green */
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 13px 20px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 10px rgba(5, 55, 54, 0.1) !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    margin-top: auto !important;
    /* Push buttons to bottom of cards for perfect grid alignment */
    text-align: center !important;
}

.woocommerce-page ul.products li.product a.button:hover,
.woocommerce-page ul.products li.product a.button.add_to_cart_button:hover,
.archive.tax-product_cat ul.products li.product a.button:hover,
.post-type-archive-product ul.products li.product a.button:hover {
    background-color: #C19A6B !important;
    /* Luxury Gold Hover */
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(193, 154, 107, 0.2) !important;
    transform: translateY(-1px) !important;
}


/* ==========================================================================
   INTERACTIVE PREMIUM SHOP FILTERS BAR DESIGN
   ========================================================================== */
.edwins-filters-bar {
    display: none !important;
}



.edwins-filters-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    padding: 13px 26px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    user-select: none !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
}

.edwins-filters-trigger:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.2) !important;
}

.edwins-filters-content {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    background: #fffaf0 !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
    margin-top: 15px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}


.edwins-filter-group {
    flex: 1 1 250px !important;
    box-sizing: border-box !important;
}

.edwins-filter-group h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.filter-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.filter-links a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #666666 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.filter-links a:hover {
    color: #C19A6B !important;
    padding-left: 5px !important;
}

/* Highlight active filter link if active */
.filter-links a.active-filter {
    color: #053736 !important;
    font-weight: 700 !important;
}

.reset-group {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.reset-filters-btn {
    display: inline-block !important;
    background: #faf9f6 !important;
    color: #c19a6b !important;
    border: 1px dashed #c19a6b !important;
    padding: 12px 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.reset-filters-btn:hover {
    background: #c19a6b !important;
    color: #ffffff !important;
    border-style: solid !important;
}

/* Simple collapsible toggler logic */
/* ==========================================================================
   CSS COLLISION SOLVED: PREVENT WOOCOMMERCE LOOP HEADERS FROM OVERLAPPING THE MAIN SITE HEADER
   ========================================================================== */

/* 1. Main site header tag must stay clean and high z-index */
body header:not(.woocommerce-products-header):not(.entry-header) {
    z-index: 10001 !important;
}

/* 1b. Style standard Page Header banners (like My Account, Cart, Checkout, etc.) */
header.entry-header,
.entry-header.page-hero-header,
.woocommerce-account .entry-header {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #053736 !important;
    /* Premium brand green */
    padding: 65px 20px !important;
    text-align: center !important;
    z-index: 10 !important;
    height: auto !important;
    min-height: 160px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-sizing: border-box !important;
    float: none !important;

    /* 100vw Viewport Breakout Trick to achieve full width */
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 82px !important;
    margin-bottom: 40px !important;
}




header.entry-header h1.entry-title,
.entry-header.page-hero-header h1.entry-title,
.woocommerce-account .entry-header h1.entry-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #C19A6B !important;
    /* Brand Gold */
    text-align: center !important;
    margin: 0 auto !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: block !important;
    line-height: 1.2 !important;
}


/* 2. Reset WooCommerce archive product header loop element */
header.woocommerce-products-header,
.woocommerce-products-header {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #053736 !important;
    /* Premium brand green for category banner */
    padding: 65px 20px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10 !important;
    margin: 82px auto 30px !important;
    /* Push it down below the absolute main navigation header with zero white gap */
    height: auto !important;
    min-height: 160px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-sizing: border-box !important;
    float: none !important;
}

/* 3. Style Category/Archive page title to premium gold serif font */
header.woocommerce-products-header h1.page-title,
header.woocommerce-products-header h1.woocommerce-products-header__title,
.woocommerce-products-header h1.page-title,
.woocommerce-products-header h1.woocommerce-products-header__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #C19A6B !important;
    /* Premium Gold Brand Color */
    text-align: center !important;
    margin: 0 auto !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: block !important;
}

/* 4. Support responsive mobile adjustment for category banner */
@media (max-width: 768px) {

    header.woocommerce-products-header,
    .woocommerce-products-header {
        margin-top: 100px !important;
        padding: 45px 15px !important;
    }

    header.woocommerce-products-header h1.page-title,
    .woocommerce-products-header h1.page-title {
        font-size: 28px !important;
    }
}

/* 5. Collapsible filter toggle support */
.edwins-filters-content.collapsed {
    display: none !important;
}

/* ==========================================================================
   CENTERED SHOP UTILITY BAR FOR RESULT COUNT AND ORDERING DROPDOWN
   ========================================================================== */
.edwins-shop-utility-bar {
    max-width: 1200px !important;
    margin: 40px auto 10px !important;
    padding: 0 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    clear: both !important;
    width: 100% !important;
}

.edwins-shop-utility-bar .woocommerce-result-count {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #666666 !important;
    display: block !important;
}

.edwins-shop-utility-bar .woocommerce-ordering {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: block !important;
}

.edwins-shop-utility-bar .woocommerce-ordering select {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #111111 !important;
    padding: 10px 15px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    background-color: #faf9f6 !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

.edwins-shop-utility-bar .woocommerce-ordering select:hover {
    border-color: #C19A6B !important;
}


/* ==========================================================================
   PREMIUM LUXURY WOOCOMMERCE MY-ACCOUNT PAGE DESIGN SYSTEM
   ========================================================================== */

/* 1. Reset Overlap & Spacing from Absolute main header */
body.woocommerce-account,
body.woocommerce-account #page,
body.woocommerce-account #content,
body.woocommerce-account #primary,
body.woocommerce-account main,
body.woocommerce-account .site-main,
body.woocommerce-account .container,
body.woocommerce-account article,
body.woocommerce-account .entry-content,
body.woocommerce-account .entry-content-body,
body.woocommerce-account .woocommerce {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background-color: #fffaf0 !important;
    background: #fffaf0 !important;
    box-shadow: none !important;
    border: none !important;
}



/* 2. Login / Register Double Column Container */
.woocommerce-account .u-columns.col2-set,
.woocommerce-account #customer_login {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 50px !important;
    max-width: 1250px !important;
    margin: 40px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* 3. Luxury Form Cards */
.woocommerce-account .col-1,
.woocommerce-account .col-2,
.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
    background: #fffaf0 !important;
    padding: 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: 100% !important;
}

.woocommerce-account .col-1:hover,
.woocommerce-account .col-2:hover,
.woocommerce-account #customer_login .u-column1:hover,
.woocommerce-account #customer_login .u-column2:hover {
    box-shadow: 0 20px 50px rgba(193, 154, 107, 0.06) !important;
    border-color: rgba(193, 154, 107, 0.15) !important;
}

/* Form Headings */
.woocommerce-account h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid #C19A6B !important;
    padding-bottom: 10px !important;
    display: inline-block !important;
}

/* Form inputs & labels */
.woocommerce-account form .form-row label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #333333 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.woocommerce-account form input.input-text,
.woocommerce-account form input[type="text"],
.woocommerce-account form input[type="password"],
.woocommerce-account form input[type="email"] {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #111111 !important;
    padding: 12px 18px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 6px !important;
    background-color: #faf9f6 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.woocommerce-account form input.input-text:focus,
.woocommerce-account form input[type="text"]:focus,
.woocommerce-account form input[type="password"]:focus,
.woocommerce-account form input[type="email"]:focus {
    border-color: #C19A6B !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.1) !important;
}

/* Remember me and lost password row */
.woocommerce-account .woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
    margin-bottom: 20px !important;
}

.woocommerce-account .woocommerce-form-login__rememberme input[type="checkbox"] {
    margin: 0 !important;
    accent-color: #053736 !important;
    width: 15px !important;
    height: 15px !important;
}

/* Buttons */
.woocommerce-account button.button,
.woocommerce-account form button[type="submit"] {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    /* Elite Forest Green */
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.12) !important;
    text-align: center !important;
    margin-top: 15px !important;
}

.woocommerce-account button.button:hover,
.woocommerce-account form button[type="submit"]:hover {
    background-color: #C19A6B !important;
    /* Premium Gold hover */
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.25) !important;
    transform: translateY(-1px) !important;
}

.woocommerce-account .woocommerce-LostPassword {
    margin-top: 20px !important;
    text-align: center !important;
}

.woocommerce-account .woocommerce-LostPassword a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    color: #c19a6b !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.woocommerce-account .woocommerce-LostPassword a:hover {
    color: #053736 !important;
    text-decoration: underline !important;
}

/* 4. Logged In Dashboard Split Layout */
body.woocommerce-account.logged-in .woocommerce {
    max-width: 1250px !important;
    margin: 40px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

@media (min-width: 769px) {
    body.woocommerce-account.logged-in .woocommerce {
        display: grid !important;
        grid-template-columns: 280px 1fr !important;
        gap: 40px !important;
        align-items: start !important;
    }
}

body.woocommerce-account .woocommerce-notices-wrapper {
    grid-column: 1 / -1 !important;
    /* Force notices to span across both grid columns */
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Sidebar navigation card */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #fffaf0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
    padding: 24px !important;
    box-sizing: border-box !important;
    height: fit-content !important;
    display: block !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
}

/* FORCE DARK TEXT COLOR FOR SIDEBAR LINKS (Override late generic nav rule in header.php) */
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a,
body.woocommerce-account .woocommerce-MyAccount-navigation ul li a,
body.woocommerce-account nav.woocommerce-MyAccount-navigation li a,
.woocommerce-MyAccount-navigation li a {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #444444 !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background-color: transparent !important;
}

body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
body.woocommerce-account nav.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li a:hover {
    background-color: #faf9f6 !important;
    color: #C19A6B !important;
    padding-left: 22px !important;
}

body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
body.woocommerce-account nav.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #053736 !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(5, 55, 54, 0.15) !important;
}

/* Dashboard content panel */
body.woocommerce-account .woocommerce-MyAccount-content {
    background: #fffaf0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
    padding: 40px !important;
    box-sizing: border-box !important;
    min-height: 450px !important;
    display: block !important;
}

@media (max-width: 768px) {
    body.woocommerce-account .woocommerce {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100% !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
    }
}



/* 5. My Account Content details */
.woocommerce-MyAccount-content p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #444444 !important;
    margin-bottom: 20px !important;
}

.woocommerce-MyAccount-content p a {
    color: #C19A6B !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 1px dashed #C19A6B !important;
    transition: all 0.2s ease !important;
}

.woocommerce-MyAccount-content p a:hover {
    color: #053736 !important;
    border-bottom-color: #053736 !important;
}

.woocommerce-account .addresses .title h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 15px !important;
}

.woocommerce-account address {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    background: #faf9f6 !important;
    padding: 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    margin-top: 15px !important;
}

.woocommerce-account .edit {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #C19A6B !important;
    text-decoration: none !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    margin-top: 10px !important;
}

/* Shop tables */
.woocommerce-account table.shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.woocommerce-account table.shop_table th {
    background-color: #faf9f6 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #111111 !important;
    padding: 15px 20px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
}

.woocommerce-account table.shop_table td {
    padding: 18px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    font-size: 13px !important;
    color: #444444 !important;
}

.woocommerce-account table.shop_table .button {
    background-color: #053736 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
}

.woocommerce-account table.shop_table .button:hover {
    background-color: #C19A6B !important;
}

/* Notices and messages */
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message {
    background-color: #faf9f6 !important;
    border-left: 4px solid #C19A6B !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #333333 !important;
    padding: 15px 25px !important;
    border-radius: 0 8px 8px 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 25px !important;
    list-style: none !important;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error {
    border-left-color: #d9534f !important;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message {
    border-left-color: #053736 !important;
}

/* ==========================================================================
   LUXURY PREMIUM WOOCOMMERCE CART STYLING OVERRIDES
   ========================================================================== */

/* Cart Main Container Layout */
.woocommerce-cart .woocommerce {
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 60px 20px 100px !important;
}

/* Breadcrumb / Stepper Banner styling */
.woocommerce-cart .cart-stepper,
.woocommerce-cart .cart-breadcrumbs {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #C19A6B !important;
    text-align: center !important;
    margin-bottom: 45px !important;
}

/* Responsive Grid for Columns */
@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        display: flex !important;
        flex-flow: row wrap !important;
        gap: 40px !important;
        align-items: flex-start !important;
    }

    .woocommerce-cart form.woocommerce-cart-form {
        flex: 1 1 60% !important;
        max-width: 63% !important;
    }

    .woocommerce-cart .cart-collaterals {
        flex: 1 1 33% !important;
        max-width: 33% !important;
        margin-top: 0 !important;
    }
}

/* Elegant Left-Side Cart Table Card */
.woocommerce-cart form.woocommerce-cart-form {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 25px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-cart table.shop_table.cart {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin-bottom: 0 !important;
}

/* Table Headings styling */
.woocommerce-cart table.shop_table.cart thead {
    background-color: #faf9f6 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-cart table.shop_table.cart thead th {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #111111 !important;
    padding: 16px 12px !important;
    text-align: left !important;
    border: none !important;
}

/* Table Row and Cells styling */
.woocommerce-cart table.shop_table.cart tr.cart_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: background 0.3s ease !important;
}

.woocommerce-cart table.shop_table.cart tr.cart_item:hover {
    background-color: rgba(193, 154, 107, 0.01) !important;
}

.woocommerce-cart table.shop_table.cart td {
    padding: 24px 12px !important;
    vertical-align: middle !important;
    border: none !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Product Remove/Delete Button Overrides (Restores missing trash icon!) */
.woocommerce-cart table.shop_table.cart td.product-remove {
    width: 45px !important;
    text-align: center !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: rgba(217, 83, 79, 0.05) !important;
    color: #d9534f !important;
    font-size: 0 !important;
    /* Hide native 'x' letter */
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove::before {
    content: "\f2ed" !important;
    /* FontAwesome trash-can unicode */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    display: inline-block !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
    background-color: #d9534f !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(8deg) !important;
}

/* Product Image styling */
.woocommerce-cart table.shop_table.cart td.product-thumbnail {
    width: 90px !important;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    width: 70px !important;
    height: auto !important;
    border-radius: 8px !important;
    border: 1px solid rgba(193, 154, 107, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart table.shop_table.cart tr.cart_item:hover td.product-thumbnail img {
    border-color: #C19A6B !important;
    transform: translateY(-2px) !important;
}

/* Product Name & Details styling */
.woocommerce-cart table.shop_table.cart td.product-name {
    font-family: 'Playfair Display', serif !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #053736 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a:hover {
    color: #C19A6B !important;
}

/* Price columns styling */
.woocommerce-cart table.shop_table.cart td.product-price,
.woocommerce-cart table.shop_table.cart td.product-subtotal {
    font-weight: 600 !important;
    color: #111111 !important;
    font-size: 14px !important;
}

.woocommerce-cart table.shop_table.cart td.product-subtotal {
    color: #C19A6B !important;
    font-weight: 700 !important;
}

/* Custom styled Quantity Selector */
.woocommerce-cart table.shop_table.cart td.product-quantity {
    width: 120px !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .quantity {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #faf9f6 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 30px !important;
    padding: 2px 8px !important;
    overflow: hidden !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .quantity input.qty {
    width: 45px !important;
    height: 32px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #053736 !important;
    outline: none !important;
    -moz-appearance: textfield !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .quantity input.qty::-webkit-outer-spin-button,
.woocommerce-cart table.shop_table.cart td.product-quantity .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Cart Actions row (Coupon and updates) */
.woocommerce-cart table.shop_table.cart td.actions {
    padding: 25px 0 0 !important;
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon input#coupon_code {
    width: 170px !important;
    height: 42px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 30px !important;
    padding: 0 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    color: #111111 !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon input#coupon_code:focus {
    border-color: #C19A6B !important;
    box-shadow: 0 0 10px rgba(193, 154, 107, 0.1) !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon button[name="apply_coupon"] {
    height: 42px !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon button[name="apply_coupon"]:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.2) !important;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
    height: 42px !important;
    background-color: transparent !important;
    color: #053736 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: 1.5px solid #053736 !important;
    border-radius: 30px !important;
    padding: 0 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"]:hover {
    background-color: #053736 !important;
    color: #ffffff !important;
}

/* Elegant Right-Side Checkout Summary Card */
.woocommerce-cart .cart-collaterals {
    background: #fffaf0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 30px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
    border-left: 4px solid #C19A6B !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    color: #053736 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px !important;
    border-bottom: 2px solid rgba(193, 154, 107, 0.15) !important;
    padding-bottom: 12px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin-bottom: 25px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
    font-family: 'Montserrat', sans-serif !important;
    color: #666666 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 15px 0 !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    width: 40% !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
    font-family: 'Montserrat', sans-serif !important;
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 15px 0 !important;
    text-align: right !important;
    border: none !important;
}

/* Shipping choices inside summary card */
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td ul#shipping_method {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td ul#shipping_method li {
    font-weight: 500 !important;
    color: #444444 !important;
    font-size: 12px !important;
}

/* Order Total highlight */
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total {
    border-bottom: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total th {
    color: #053736 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td strong {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #C19A6B !important;
}

/* Premium Proceed to Checkout Call-to-action */
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    padding: 0 !important;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 16px 20px !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(5, 55, 54, 0.12) !important;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Empty Cart Layout */
.woocommerce-cart .cart-empty {
    text-align: center !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #053736 !important;
    padding: 60px 0 20px !important;
}

.woocommerce-cart .return-to-shop {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.woocommerce-cart .return-to-shop a.button {
    display: inline-block !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    padding: 15px 35px !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.25) !important;
}

/* Custom layout adjustments for smaller viewports */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table.cart thead {
        display: none !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item {
        display: block !important;
        padding: 15px 0 !important;
        position: relative !important;
        text-align: center !important;
    }

    .woocommerce-cart table.shop_table.cart td {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 8px 0 !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-remove {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
    }

    .woocommerce-cart table.shop_table.cart td.actions .coupon {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .woocommerce-cart table.shop_table.cart td.actions .coupon input#coupon_code {
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
        display: block !important;
        width: 100% !important;
        margin-top: 15px !important;
    }
}

/* ==========================================================================
   MODERN WOOCOMMERCE BLOCK-BASED CART PREMIUM STYLING OVERRIDES
   ========================================================================== */

/* Main block-based cart alignment */
.wp-block-woocommerce-cart,
.wc-block-cart {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 20px 100px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* 2-Column Desktop Layout at direct column wrapper level */
@media (min-width: 992px) {
    .wc-block-cart {
        display: flex !important;
        flex-direction: row !important;
        gap: 40px !important;
        align-items: flex-start !important;
    }

    .wc-block-cart__main {
        flex: 1 1 63% !important;
        max-width: 63% !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
    }

    .wc-block-cart__sidebar {
        flex: 1 1 33% !important;
        max-width: 33% !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
        border-left: 4px solid #C19A6B !important;
    }
}

/* Clean background & resets for inner components so there's no double-nesting */
.wc-block-cart-items,
.wc-block-cart__products-column,
.wc-block-components-sidebar,
.wc-block-cart__totals-column,
.wc-block-cart__totals {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
}

/* Item Rows styling - Restoring native grid to allow correct horizontal alignment under headings */
.wc-block-cart-item,
.wc-block-cart-items__row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 25px 0 !important;
}

.wc-block-cart-item:last-of-type,
.wc-block-cart-items__row:last-of-type {
    border-bottom: none !important;
}

/* Product Image container styling */
.wc-block-components-product-image,
.wc-block-cart-item__image {
    max-width: 80px !important;
}

.wc-block-components-product-image img,
.wc-block-cart-item__image img {
    width: 75px !important;
    height: auto !important;
    border-radius: 8px !important;
    border: 1px solid rgba(193, 154, 107, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.wc-block-cart-item:hover .wc-block-components-product-image img,
.wc-block-cart-item:hover .wc-block-cart-item__image img {
    border-color: #C19A6B !important;
    transform: translateY(-2px) !important;
}

/* Product title/link styling */
.wc-block-components-product-name,
.wc-block-cart-item__name {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #053736 !important;
    text-decoration: none !important;
    margin-bottom: 5px !important;
}

.wc-block-components-product-name:hover,
.wc-block-cart-item__name:hover {
    color: #C19A6B !important;
}

/* Hide Product Short Description (Lorem Ipsum / unwanted details) in Cart items */
.wc-block-components-product-details__description,
.wc-block-components-product-metadata__description,
.wc-block-cart-item__description {
    display: none !important;
}

/* Quantity Selector Container */
.wc-block-components-quantity-selector,
.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #faf9f6 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 30px !important;
    padding: 2px 6px !important;
    overflow: hidden !important;
    width: 105px !important;
    min-width: 105px !important;
    max-width: 105px !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    width: 36px !important;
    height: 32px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #053736 !important;
    outline: none !important;
    padding: 0 !important;
}

/* Quantity Adjust buttons */
.wc-block-components-quantity-selector__button,
.wc-block-components-quantity-selector__button--minus,
.wc-block-components-quantity-selector__button--plus {
    border: none !important;
    background: transparent !important;
    color: #053736 !important;
    cursor: pointer !important;
    font-weight: bold !important;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.wc-block-components-quantity-selector__button:hover,
.wc-block-components-quantity-selector__button--minus:hover,
.wc-block-components-quantity-selector__button--plus:hover {
    color: #C19A6B !important;
    background-color: rgba(193, 154, 107, 0.08) !important;
}

/* Price Details */
.wc-block-components-product-price,
.wc-block-cart-item__price {
    font-weight: 600 !important;
    color: #111111 !important;
    font-size: 14px !important;
}

.wc-block-components-product-price .wc-block-components-product-price__value {
    color: #C19A6B !important;
    font-weight: 700 !important;
}

/* Remove Button - Completely Overrides block failure, restores trash can icon! */
.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove-button,
.wc-block-cart-items__row button[aria-label*="Remove"],
.wc-block-cart-items__row .wc-block-components-product-button--remove,
.wc-block-cart-items__row button.wc-block-cart-item__remove,
.wc-block-cart-item button.wc-block-cart-item__remove,
.wc-block-cart-item .wc-block-cart-item__remove-button,
.wc-block-cart-items__row .wc-block-cart-item__remove,
.wc-block-cart-items__row button.wc-block-cart-item__remove-button,
.wc-block-cart-items__row .wc-block-components-product-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: rgba(217, 83, 79, 0.05) !important;
    border: none !important;
    color: #d9534f !important;
    font-size: 0 !important;
    /* Hide native 'x' or label */
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    padding: 0 !important;
    min-height: auto !important;
    min-width: auto !important;
}

.wc-block-cart-item__remove-link::before,
.wc-block-cart-item__remove-button::before,
.wc-block-cart-items__row button[aria-label*="Remove"]::before,
.wc-block-cart-items__row .wc-block-components-product-button--remove::before,
.wc-block-cart-items__row button.wc-block-cart-item__remove::before,
.wc-block-cart-item button.wc-block-cart-item__remove::before,
.wc-block-cart-item .wc-block-cart-item__remove-button::before,
.wc-block-cart-items__row .wc-block-cart-item__remove::before,
.wc-block-cart-items__row button.wc-block-cart-item__remove-button::before,
.wc-block-cart-items__row .wc-block-components-product-button::before {
    content: "\f2ed" !important;
    /* FontAwesome solid trash icon */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    display: inline-block !important;
    color: #d9534f !important;
}

/* Hide any original SVGs or text inside the remove button */
.wc-block-cart-item__remove-link svg,
.wc-block-cart-item__remove-button svg,
.wc-block-cart-items__row button[aria-label*="Remove"] svg,
.wc-block-cart-items__row .wc-block-components-product-button--remove svg,
.wc-block-cart-items__row button.wc-block-cart-item__remove svg,
.wc-block-cart-item button.wc-block-cart-item__remove svg,
.wc-block-cart-item .wc-block-cart-item__remove-button svg,
.wc-block-cart-items__row .wc-block-cart-item__remove svg,
.wc-block-cart-items__row button.wc-block-cart-item__remove-button svg,
.wc-block-cart-items__row .wc-block-components-product-button svg {
    display: none !important;
}

/* Remove button hover transitions */
.wc-block-cart-item__remove-link:hover,
.wc-block-cart-item__remove-button:hover,
.wc-block-cart-items__row button[aria-label*="Remove"]:hover,
.wc-block-cart-items__row .wc-block-components-product-button--remove:hover,
.wc-block-cart-items__row button.wc-block-cart-item__remove:hover,
.wc-block-cart-item button.wc-block-cart-item__remove:hover,
.wc-block-cart-item .wc-block-cart-item__remove-button:hover,
.wc-block-cart-items__row .wc-block-cart-item__remove:hover,
.wc-block-cart-items__row button.wc-block-cart-item__remove-button:hover,
.wc-block-cart-items__row .wc-block-components-product-button:hover {
    background-color: #d9534f !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(8deg) !important;
}

.wc-block-cart-item__remove-link:hover::before,
.wc-block-cart-item__remove-button:hover::before,
.wc-block-cart-items__row button[aria-label*="Remove"]:hover::before,
.wc-block-cart-items__row .wc-block-components-product-button--remove:hover::before,
.wc-block-cart-items__row button.wc-block-cart-item__remove:hover::before,
.wc-block-cart-item button.wc-block-cart-item__remove:hover::before,
.wc-block-cart-item .wc-block-cart-item__remove-button:hover::before,
.wc-block-cart-items__row .wc-block-cart-item__remove:hover::before,
.wc-block-cart-items__row button.wc-block-cart-item__remove-button:hover::before,
.wc-block-cart-items__row .wc-block-components-product-button:hover::before {
    color: #ffffff !important;
}

/* Right-Side Summary column headings */
.wc-block-cart__totals-title,
.wc-block-cart__totals h2,
.wc-block-cart__sidebar h2 {
    font-family: 'Playfair Display', serif !important;
    color: #053736 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px !important;
    border-bottom: 2px solid rgba(193, 154, 107, 0.15) !important;
    padding-bottom: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Sidebar Row Items styling overrides */
.wc-block-components-totals-item,
.wc-block-components-totals-footer-item {
    font-family: 'Montserrat', sans-serif !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 15px 0 !important;
    border: none !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item-row__label {
    color: #666666 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.wc-block-components-totals-item__value,
.wc-block-components-totals-item-row__value {
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.wc-block-components-totals-footer-item {
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #C19A6B !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* Add Coupon Panel custom styling */
.wc-block-components-totals-coupon,
.wc-block-components-totals-coupon-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wc-block-components-totals-coupon-link button,
.wc-block-components-totals-coupon-link a {
    font-family: 'Montserrat', sans-serif !important;
    color: #053736 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: underline !important;
}

.wc-block-components-totals-coupon-link button:hover,
.wc-block-components-totals-coupon-link a:hover {
    color: #C19A6B !important;
}

.wc-block-components-totals-coupon__input-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wc-block-components-totals-coupon__input-wrapper input {
    height: 42px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    padding: 0 15px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.wc-block-components-totals-coupon__input-wrapper button {
    height: 42px !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-totals-coupon__input-wrapper button:hover {
    background-color: #C19A6B !important;
}

/* Proceed to Checkout Button in Block Cart */
.wc-block-cart__submit-button,
.wc-block-cart__submit a,
.wc-block-cart__submit button,
.wc-block-components-checkout-button a,
.wc-block-components-checkout-button button,
.wc-block-cart .wc-block-components-checkout-button,
.wc-block-cart__submit .wc-block-components-checkout-button {
    display: block !important;
    width: 100% !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 16px 20px !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(5, 55, 54, 0.12) !important;
    border: none !important;
    cursor: pointer !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-cart__submit a:hover,
.wc-block-cart__submit button:hover,
.wc-block-components-checkout-button a:hover,
.wc-block-components-checkout-button button:hover,
.wc-block-cart .wc-block-components-checkout-button:hover,
.wc-block-cart__submit .wc-block-components-checkout-button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   MODERN WOOCOMMERCE BLOCK-BASED CHECKOUT PREMIUM OVERRIDES
   ========================================================================== */

/* Main Checkout Wrapper & Alignment */
.wp-block-woocommerce-checkout,
.wc-block-checkout {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 20px 100px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* 2-Column Desktop Side-by-Side Layout for Checkout */
@media (min-width: 992px) {
    .wc-block-checkout {
        display: flex !important;
        flex-direction: row !important;
        gap: 40px !important;
        align-items: flex-start !important;
    }
    
    /* Left Column: Contact & Shipping details */
    .wc-block-checkout__main {
        flex: 1 1 63% !important;
        max-width: 63% !important;
    }
    
    /* Right Column: Order Summary Sidebar Card */
    .wc-block-checkout__sidebar {
        flex: 1 1 33% !important;
        max-width: 33% !important;
        background: #fffaf0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0,0,0,0.04) !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02) !important;
        border-left: 4px solid #C19A6B !important; /* Gold luxury accent */
    }
}

/* Beautiful form heading titles matching luxury theme */
.wc-block-checkout h2,
.wc-block-checkout h3,
.wc-block-checkout__title,
.wc-block-components-title,
.wc-block-checkout__main h2 {
    font-family: 'Playfair Display', serif !important;
    color: #053736 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(193, 154, 107, 0.15) !important;
    padding-bottom: 10px !important;
}

/* Premium Form Inputs Custom Styling */
.wc-block-components-text-input input,
.wc-block-components-combobox .components-combobox-control input,
.wc-block-components-combobox input,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout select {
    background-color: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #111111 !important;
    transition: all 0.3s ease !important;
    height: auto !important;
}

.wc-block-components-text-input input:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus {
    border-color: #C19A6B !important;
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1) !important;
    outline: none !important;
}

/* Checkout Step Buttons & Place Order styling */
.wc-block-components-checkout-step__submit-button,
.wc-block-checkout__submit,
.wc-block-checkout__submit button {
    display: inline-block !important;
    width: auto !important;
    min-width: 180px !important;
    background-color: #053736 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 16px 30px !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(5, 55, 54, 0.12) !important;
    border: none !important;
    cursor: pointer !important;
}

.wc-block-components-checkout-step__submit-button:hover,
.wc-block-checkout__submit button:hover {
    background-color: #C19A6B !important;
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.3) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* Sidebar Order summary items list details */
.wc-block-components-order-summary,
.wc-block-components-order-summary-list {
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.wc-block-components-order-summary-item {
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

/* ==========================================================================
   FOOLPROOF MY ACCOUNT SIDE-BY-SIDE FORMS CLEAR & ALIGNMENT
   ========================================================================== */

@media (min-width: 769px) {
    html body.woocommerce-account .container,
    body.woocommerce-account .container {
        max-width: 1250px !important;
        width: 100% !important;
    }

    html body.woocommerce-account article.page-content-article,
    body.woocommerce-account article.page-content-article {
        padding: 60px 40px !important;
        background: #fffaf0 !important;
        background-color: #fffaf0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    html body.woocommerce-account .woocommerce,
    body.woocommerce-account .woocommerce {
        max-width: 1250px !important;
        padding: 0 !important;
    }

    html body.woocommerce-account:not(.logged-in) #customer_login,
    body.woocommerce-account:not(.logged-in) #customer_login {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 50px !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 1250px !important;
        margin: 60px auto 40px auto !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    html body.woocommerce-account:not(.logged-in) .col-1,
    html body.woocommerce-account:not(.logged-in) .col-2,
    body.woocommerce-account:not(.logged-in) .col-1,
    body.woocommerce-account:not(.logged-in) .col-2,
    body.woocommerce-account:not(.logged-in) #customer_login .u-column1,
    body.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
        display: block !important;
        flex: 1 1 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        float: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    html body.woocommerce-account:not(.logged-in) #customer_login,
    body.woocommerce-account:not(.logged-in) #customer_login {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        margin: 40px auto !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    html body.woocommerce-account:not(.logged-in) .col-1,
    html body.woocommerce-account:not(.logged-in) .col-2,
    body.woocommerce-account:not(.logged-in) .col-1,
    body.woocommerce-account:not(.logged-in) .col-2,
    body.woocommerce-account:not(.logged-in) #customer_login .u-column1,
    body.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 0 20px 0 !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   PREMIUM RESPONSIVE FOOTER STYLING OVERRIDES
   ========================================================================== */

@media (max-width: 992px) {
    footer.footer .footer-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 30px !important;
        padding: 40px 5% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    footer.footer {
        padding: 50px 0 0 !important;
        text-align: center !important;
    }

    footer.footer .footer-container {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 0 8% !important;
        max-width: 100% !important;
    }

    footer.footer .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    footer.footer h3 {
        text-align: center !important;
    }

    footer.footer h3:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    footer.footer .footer-socials {
        justify-content: center !important;
        margin: 15px auto !important;
    }

    footer.footer .footer-newsletter-form {
        margin: 15px auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    footer.footer .footer-bottom-container {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding: 25px 5% !important;
    }

    footer.footer .payment-methods {
        justify-content: center !important;
    }
}

/* ==========================================================================
   HERO SLIDER MOBILE/TABLET BACKGROUND IMAGE CROPPING FIX
   ========================================================================== */

@media (max-width: 992px) {
    .hero-slider .hero {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: #F8F3ED !important;
    }
}

@media (max-width: 576px) {
    .hero-slider .hero {
        background-size: 100% auto !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-color: #F8F3ED !important;
        padding: 160px 5% 30px !important;
        min-height: 360px !important;
    }

    .hero-slider .hero-content-right,
    .hero-slider .hero-content-left {
        gap: 10px !important;
    }

    .hero-slider .hero-content-right span,
    .hero-slider .hero-content-left span {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-bottom: 0 !important;
    }

    .hero-slider .hero-content-right h1,
    .hero-slider .hero-content-left h1 {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
    }

    .hero-slider .shop-btn {
        padding: 10px 24px !important;
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-top: 30px !important;
    }
}

/* Buy Now Button Styles */
.buy-now-btn {
    background-color: #C19A6B; /* Luxury Tan */
    color: #FFFFFF !important;
    padding: 8px 0;
    width: 140px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    display: block;
    margin: 15px auto 0 auto;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(193, 154, 107, 0.15);
}

.buy-now-btn:hover {
    background-color: #1A1A1A; /* Black on hover */
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}