html {
    scroll-behavior: smooth;
}

body.static-site {
    min-width: 320px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(58, 54, 51, 0.08);
    box-shadow: 0 12px 32px rgba(43, 35, 28, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(43, 35, 28, 0.12);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(1320px, calc(100% - 80px));
    min-height: 92px;
    margin: 0 auto;
    transition: min-height 0.3s ease;
}

.site-header.is-sticky .site-header-inner {
    min-height: 72px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    display: block;
    width: 255px;
    max-width: 42vw;
    height: auto;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    color: #3a3633;
    font-family: "Red Hat Display", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav .is-active a {
    color: #bc8f67;
}

.site-nav .is-active a {
    box-shadow: inset 0 -2px 0 #bc8f67;
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    color: #fff;
    background: #fe5c3b;
    font-family: "Red Hat Display", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-cta:hover {
    color: #fff;
    background: #eb411f;
    transform: translateY(-1px);
}

.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-menu-toggle span,
.site-menu-toggle::before,
.site-menu-toggle::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #3a3633;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-menu-toggle::before {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-menu-toggle span {
    opacity: 0;
}

.site-header.is-open .site-menu-toggle::after {
    transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
    color: #f8f8f8;
    background: #17130e url("../wp-content/uploads/2023/08/footer-background-img-2.jpg") center / cover no-repeat;
}

.site-footer-overlay {
    background: rgba(23, 19, 14, 0.88);
}

.site-footer-inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    padding: 70px 0 34px;
    text-align: center;
}

.site-footer-logo img {
    width: 255px;
    height: auto;
}

.site-footer .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.site-footer .site-nav a {
    color: #f8f8f8;
}

.site-footer .site-nav a:hover,
.site-footer .site-nav .is-active a {
    color: #bc8f67;
}

.site-footer-contact,
.site-footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 26px;
    margin-top: 24px;
    color: #d8d2cc;
    font-size: 15px;
}

.site-footer-contact a,
.site-footer-social a {
    color: inherit;
    text-decoration: none;
}

.site-footer-social a:hover,
.site-footer-contact a:hover {
    color: #bc8f67;
}

.site-footer-copy {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #bcb5ae;
    font-size: 14px;
}

.static-site .page_content_wrap {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .site-header-inner {
        width: min(100% - 40px, 1024px);
        min-height: 74px;
    }

    .site-menu-toggle {
        display: block;
    }

    .site-header-actions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 22px 20px 28px;
        background: #fff;
        border-top: 1px solid rgba(58, 54, 51, 0.08);
        box-shadow: 0 24px 40px rgba(43, 35, 28, 0.12);
    }

    .site-header.is-open .site-header-actions {
        display: flex;
    }

    .site-header .site-nav {
        display: grid;
        gap: 4px;
    }

    .site-header .site-nav a {
        justify-content: center;
    }

    .site-cta {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .site-header-inner,
    .site-footer-inner {
        width: calc(100% - 32px);
    }

    .site-logo img,
    .site-footer-logo img {
        width: 213px;
    }

    .site-footer-inner {
        padding-top: 52px;
    }
}

/* Custom Scroll Animations Engine Support */
.animated {
    animation-fill-mode: both !important;
    -webkit-animation-fill-mode: both !important;
}

@keyframes infinite-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.infinite-rotate {
    animation: infinite-rotate 20s linear infinite !important;
}

/* Custom Page Header Banners */
.custom-page-banner {
    position: relative;
    width: 100%;
    height: clamp(480px, 55vh, 640px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
}

.custom-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 22, 19, 0.65) 0%, rgba(25, 22, 19, 0.85) 100%);
    z-index: 1;
}

.custom-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.custom-page-banner-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
    font-family: "Red Hat Display", sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.custom-page-banner-breadcrumbs {
    font-size: clamp(12px, 1.2vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.custom-page-banner-breadcrumbs a {
    color: #DA9B62;
    /* Theme gold link color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-page-banner-breadcrumbs a:hover {
    color: #fff;
}

.custom-page-banner-breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* Homepage image collage - Creative Approach section */
.elementor-element-13ffe46c>.elementor-container>.elementor-element-3fe1cd6d>.elementor-widget-wrap {
    padding-left: clamp(24px, 5vw, 72px);
    padding-right: clamp(16px, 3vw, 32px);
}

.custom-image-collage {
    position: relative;
    width: min(100%, 560px);
    margin: 0 auto 0 0;
    padding: 32px 72px 64px 0;
    box-sizing: border-box;
}

.custom-image-collage-frame {
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 48px;
    left: 32px;
    border: 2px solid rgba(218, 155, 98, 0.42);
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.collage-main-img {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: auto !important;
    max-height: 620px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 28px 56px rgba(43, 35, 28, 0.2);
}

.collage-badge-img {
    position: absolute;
    bottom: 12px;
    right: 0;
    width: 44% !important;
    max-width: 250px;
    height: auto !important;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 5px solid #efece6;
    box-shadow: 0 20px 40px rgba(43, 35, 28, 0.28);
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collage-badge-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(43, 35, 28, 0.32);
}

@media (max-width: 1279px) {
    .custom-image-collage {
        width: min(100%, 480px);
        padding: 24px 56px 52px 0;
    }

    .custom-image-collage-frame {
        left: 24px;
        bottom: 36px;
    }

    .collage-main-img {
        max-height: 520px;
    }
}

@media (max-width: 767px) {
    .custom-image-collage {
        width: min(100%, 360px);
        margin: 0 auto;
        padding: 20px 48px 48px 0;
    }

    .custom-image-collage-frame {
        left: 20px;
        bottom: 32px;
    }

    .collage-main-img {
        max-height: 420px;
        aspect-ratio: 3 / 4;
    }

    .collage-badge-img {
        width: 40% !important;
        border-width: 4px;
    }
}

/* Contact page map */
.contact-page-map {
    width: 100%;
    height: clamp(420px, 50vh, 560px);
    min-height: 420px;
    overflow: hidden;
    background: #e9e8e4;
}

.contact-page-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
}

/* Single Product Layout Styling */
/* Reduce excessive spacing above related products on single product pages */
.woocommerce section.related.products {
    margin-top: 20px !important;
    padding-top: 0 !important;
}
.woocommerce div.product .woocommerce-product-gallery {
    margin-bottom: 20px !important;
}
.woocommerce div.product .summary {
    margin-bottom: 20px !important;
}

body.single-product .page_content_wrap {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: #fcfbfa;
    /* Slightly warm off-white background */
}

body.single-product .content_wrap {
    max-width: 1200px !important;
    width: calc(100% - 60px) !important;
    margin: 0 auto !important;
}

body.single-product .product {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

body.single-product .woocommerce-product-gallery {
    flex: 1 1 500px;
    max-width: 100%;
}

body.single-product .woocommerce-product-gallery img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    display: block;
}

body.single-product .summary.entry-summary {
    flex: 1 1 500px;
    max-width: 100%;
}

/* Breadcrumb Styling */
.woocommerce-breadcrumb {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.woocommerce-breadcrumb a {
    color: #bc8f67;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #333;
}

/* Product Info Styling */
.single-product .product_title {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    font-weight: 700;
    margin: 0 0 15px 0 !important;
    color: #17130e;
    line-height: 1.2;
}

.single-product .woocommerce-product-details__short-description {
    font-family: "Open Sans", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    color: #3a3633 !important;
    margin-bottom: 30px;
}

.single-product .woocommerce-product-details__short-description p,
.single-product .woocommerce-product-details__short-description li {
    font-family: "Open Sans", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    color: #3a3633 !important;
}

.single-product .product_meta {
    font-size: 14px;
    color: #999;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.single-product .product_meta>span {
    display: block;
    margin-bottom: 8px;
}

.single-product .product_meta a {
    color: #bc8f67;
    text-decoration: none;
}

/* Tabs styling */
.single-product .woocommerce-tabs {
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
}

.single-product ul.tabs {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-product ul.tabs li {
    padding-bottom: 12px;
    margin-bottom: -1px;
}

.single-product ul.tabs li a {
    font-family: "Red Hat Display", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-product ul.tabs li.active {
    border-bottom: 2px solid #bc8f67;
}

.single-product ul.tabs li.active a {
    color: #17130e;
}

.single-product .woocommerce-Tabs-panel h2 {
    font-size: 22px;
    font-weight: 700;
    color: #17130e;
    margin-bottom: 15px;
}

.single-product .woocommerce-Tabs-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 767px) {
    body.single-product .content_wrap {
        width: calc(100% - 32px) !important;
    }

    body.single-product .product {
        gap: 30px;
    }
}

/* Custom Logo Styling */
.site-logo,
.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.logo-icon-svg {
    flex-shrink: 0;
}

.logo-text-span {
    font-family: "Red Hat Display", sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.site-logo .logo-text-span {
    color: #17130e;
    /* Dark theme for header text */
}

.site-footer-logo .logo-text-span {
    color: #ffffff;
    /* White text for footer logo */
}

/* No-Image Product Styling */
body.single-product.product-no-image .summary.entry-summary {
    flex: 1 1 100%;
    max-width: 800px;
    margin: 0 auto;
}

.product.no-post-thumbnail .post_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(58, 54, 51, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    min-height: 320px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product.no-post-thumbnail .post_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.product.no-post-thumbnail .post_item .post_data {
    padding: 0;
    width: 100%;
}

.product.no-post-thumbnail .post_item .woocommerce-loop-product__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.product.no-post-thumbnail .post_item .star-rating {
    margin: 0 auto 20px auto;
}

/* --- Attractive Site-wide Animations & Image Styles --- */

/* Preloader Layout */
.site-preloader {
    position: fixed;
    inset: 0;
    background: #17130e;
    /* Sleek dark brown matching theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.7s;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 250px;
    height: auto;
    animation: pulseLogo 1.5s ease-in-out infinite alternate;
}

@keyframes pulseLogo {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes drawTriangle {
    0% {
        stroke-dashoffset: 300;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -300;
    }
}

@keyframes glowTriangle {
    0% {
        filter: drop-shadow(0 0 2px rgba(188, 143, 103, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 12px rgba(188, 143, 103, 0.8));
    }
}

@keyframes pulseLightning {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes floatLightning {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

@keyframes pulseText {
    0% {
        opacity: 0.5;
        letter-spacing: 3px;
    }

    100% {
        opacity: 1;
        letter-spacing: 5px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    from {
        transform: scale(0.92);
        opacity: 0.7;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Custom Scroll Animations (CSS side) */
.animated {
    animation-duration: 1.5s;
    /* Increased duration for smoother section transitions */
    animation-fill-mode: both;
    animation-play-state: paused !important;
    /* Pause initially until preloader completes */
}

body.preloader-done .animated {
    animation-play-state: running !important;
    /* Resume animations globally */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    /* Soft spring bounce */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
    animation-timing-function: ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.97);
        /* Image comes from right side! */
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes textAttention {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        letter-spacing: -0.06em;
    }

    60% {
        opacity: 0.6;
        letter-spacing: 0.08em;
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0em;
    }
}

.textAttention {
    animation-name: textAttention;
    animation-duration: 1.75s;
    /* Increased duration for smoother spring transition */
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.25);
    /* bouncy spring bounce */
}

/* Premium Navigation Link Hover Underline Animation */
.site-nav a {
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: #bc8f67;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-nav a:hover::after,
.site-nav .is-active a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav .is-active a {
    box-shadow: none !important;
    /* Remove legacy border shadow */
}

/* Text Reveal & Letter Spacing Animations */
.sc_item_title_text,
.sc_item_subtitle,
.custom-page-banner-title {
    animation: letterSpacingTransition 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes letterSpacingTransition {
    from {
        letter-spacing: -0.05em;
        opacity: 0;
    }

    to {
        letter-spacing: 0em;
        opacity: 1;
    }
}

/* Beautiful Image Styling and Zoom Animation */
img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, filter 0.5s ease !important;
}

/* Subtle image scale and border-radius enhancements */
.post_featured {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(43, 35, 28, 0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.post_featured:hover {
    box-shadow: 0 18px 40px rgba(43, 35, 28, 0.12);
    transform: translateY(-2px);
}

.post_featured img {
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.post_featured:hover img {
    transform: scale(1.05) !important;
}

/* Single Product Detail Page Image Zoom */
.woocommerce-product-gallery__image img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-radius: 16px !important;
}

.woocommerce-product-gallery__image img:hover {
    transform: scale(1.025) !important;
    box-shadow: 0 24px 48px rgba(43, 35, 28, 0.16) !important;
}

/* Creative Approach collage animations */
.collage-main-img {
    border-radius: 16px;
    box-shadow: 0 28px 56px rgba(43, 35, 28, 0.2);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.collage-main-img:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 34px 64px rgba(43, 35, 28, 0.26) !important;
}

.collage-badge-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease !important;
}

.collage-badge-img:hover {
    transform: translateY(-6px) scale(1.03) !important;
    box-shadow: 0 26px 48px rgba(43, 35, 28, 0.32) !important;
}

/* --- Premium Responsive Grid & Beautiful Product Cards --- */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 !important;
    list-style: none !important;
}

@media (min-width: 580px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 992px) {
    .woocommerce ul.products.columns-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Card Styling */
.woocommerce ul.products li.product .post_item {
    background: #ffffff;
    border: 1px solid rgba(58, 54, 51, 0.05);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(43, 35, 28, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.woocommerce ul.products li.product .post_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(43, 35, 28, 0.08);
    border-color: rgba(218, 155, 98, 0.3);
    /* Theme gold border highlight on hover */
}

/* Card Image Styling */
.woocommerce ul.products li.product .post_featured {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 20px 0 !important;
    background: #fcfbfa;
    width: 100%;
}

.woocommerce ul.products li.product .post_featured img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Card Content Styling */
.woocommerce ul.products li.product .post_data {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.woocommerce ul.products li.product .post_data_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    flex-grow: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #17130e !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.35 !important;
    font-family: "Red Hat Display", sans-serif !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover {
    color: #bc8f67;
}

/* Custom Button Styling */
.woocommerce ul.products li.product .button {
    margin-top: auto;
    background-color: #bc8f67 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-family: "Red Hat Display", sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    display: block !important;
    transition: background-color 0.25s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    border: none !important;
    box-sizing: border-box;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #fe5c3b !important;
    /* Theme orange hover */
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Remove both like (wishlist) and arrow (details) icons from product hover overlay */
.woocommerce ul.products li.product .post_featured .icons .tinv-wraper,
.woocommerce ul.products li.product .post_featured .icons .shop_link {
    display: none !important;
}
 / *   R e d u c e   e x c e s s i v e   s p a c i n g   a b o v e   r e l a t e d   p r o d u c t s   o n   s i n g l e   p r o d u c t   p a g e s   * / 
 . w o o c o m m e r c e   s e c t i o n . r e l a t e d . p r o d u c t s   { 
         m a r g i n - t o p :   1 0 p x   ! i m p o r t a n t ; 
         p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 } 
  
/* Prevent email links from wrapping on all pages and views */
a[href^="mailto:"] {
    white-space: nowrap !important;
}