.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-fd6b588:#0B1E3F;--e-global-color-2f9e02e:#152A55;--e-global-color-efa3890:#1B3366;--e-global-color-2b93625:#FAF7F2;--e-global-color-c0b9a52:#F2EEE8;--e-global-color-e34a466:#E8DFD0;--e-global-color-d1f0513:#D4C5A9;--e-global-color-369684b:#C9A871;--e-global-color-84ba076:#B8924E;--e-global-color-0914b53:#D14524;--e-global-color-cfc95be:#6B1A1F;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-ec51de2-font-family:"Inter";--e-global-typography-84d09a8-font-family:"Fraunces";--e-global-typography-9637b72-font-family:"Fraunces";--e-global-typography-9637b72-font-style:italic;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =========================================================
   VULCANMEN — GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {
    --vm-noir: #0B1E3F;
    --vm-noir-800: #152A55;
    --vm-noir-850: #1B3366;

    --vm-bone-50: #FAF7F2;
    --vm-bone-100: #F2EEE8;
    --vm-bone-200: #E8DFD0;
    --vm-bone-300: #D4C5A9;

    --vm-amber: #C9A871;
    --vm-amber-dark: #B8924E;

    --vm-burnt: #D14524;

    --vm-oxblood: #6B1A1F;
    --vm-oxblood-dark: #4A1116;
}


/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--vm-noir);
    color: var(--vm-bone-100);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}


/* ---------------------------------------------------------
   Display typography
   --------------------------------------------------------- */

.vm-display {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.vm-display-italic {
    font-family: "Fraunces", Georgia, serif;
    font-style: italic;
    font-weight: 400;
}


/* ---------------------------------------------------------
   Small editorial labels
   --------------------------------------------------------- */

.vm-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */

.vm-container {
    width: min(1400px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.vm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 28px;

    border-radius: 999px;

    background: var(--vm-noir);
    color: var(--vm-bone-50);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.vm-button:hover {
    background: var(--vm-amber);
    color: var(--vm-noir);
    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   Reveal animation
   --------------------------------------------------------- */

.vm-reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.vm-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   Responsive container
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .vm-container {
        width: min(100% - 32px, 1400px);
    }

    .vm-label {
        font-size: 10px;
    }

}

/* =========================================================
   VULCANMEN — WOOCOMMERCE PRODUCT CARD
   Based directly on Laravel partials/product-card.blade.php
   ========================================================= */

.vm-product-card {
    position: relative;
    display: block;
    background: #152a55;
    border: 1px solid rgba(250,247,242,.10);
    border-radius: 2px;
    overflow: hidden;
    color: #FAF7F2;
    text-decoration: none;
    transition:
        border-color .5s ease,
        transform .5s ease,
        box-shadow .5s ease;
}

.vm-product-card:hover {
    border-color: rgba(201,168,113,.40);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(201,168,113,.25);
}

.vm-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vm-product-card__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vm-product-card__badge--sale {
    background: #C9A871;
    color: #0B1E3F;
}

.vm-product-card__badge--best {
    background: #0B1E3F;
    color: #C9A871;
    border: 1px solid rgba(201,168,113,.40);
}

.vm-product-card__badge--new {
    background: rgba(250,247,242,.10);
    color: #FAF7F2;
    border: 1px solid rgba(250,247,242,.15);
    backdrop-filter: blur(10px);
}

.vm-product-card__quickview {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    padding: 0;
    border: 1px solid rgba(250,247,242,.15);
    border-radius: 50%;

    background: rgba(11,30,63,.70);
    color: rgba(250,247,242,.70);

    cursor: pointer;

    opacity: 0;
    transform: translateY(0);

    transition:
        opacity .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.vm-product-card:hover .vm-product-card__quickview {
    opacity: 1;
}

.vm-product-card__quickview:hover {
    background: #C9A871;
    color: #0B1E3F;
    border-color: #C9A871;
}

.vm-product-card__quickview svg {
    width: 16px;
    height: 16px;
}

.vm-product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #0B1E3F 0%,
            #152a55 70%,
            rgba(201,168,113,.05) 100%
        );
}

.vm-product-card__image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    padding: 24px;

    transition: transform .7s ease;
}

.vm-product-card:hover .vm-product-card__image img {
    transform: scale(1.10);
}

.vm-product-card__image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(21,42,85,.80),
            transparent 55%
        );
}

.vm-product-card__hover-price {
    position: absolute;
    right: 12px;
    bottom: 12px;

    color: #C9A871;

    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;

    opacity: 0;
    transform: translateY(4px);

    transition:
        opacity .5s ease,
        transform .5s ease;
}

.vm-product-card:hover .vm-product-card__hover-price {
    opacity: 1;
    transform: translateY(0);
}

.vm-product-card__details {
    padding: 20px;
    border-top: 1px solid rgba(250,247,242,.05);
}

.vm-product-card__category {
    margin: 0;
    color: #C9A871;

    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;
    line-height: 1.2;

    text-transform: uppercase;
}

.vm-product-card__name {
    margin: 8px 0 0;

    color: #FAF7F2;

    font-family: Fraunces, Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: color .3s ease;
}

.vm-product-card:hover .vm-product-card__name {
    color: #C9A871;
}

.vm-product-card__tagline {
    margin: 6px 0 0;

    color: rgba(250,247,242,.45);

    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vm-product-card__bottom {
    margin-top: 16px;
    padding-top: 16px;

    border-top: 1px solid rgba(250,247,242,.05);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vm-product-card__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.vm-product-card__current-price {
    color: #FAF7F2;

    font-family: Fraunces, Georgia, serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
}

.vm-product-card__regular-price {
    color: rgba(250,247,242,.30);

    font-family: Inter, sans-serif;
    font-size: 12px;
    text-decoration: line-through;
}

.vm-product-card__add {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(250,247,242,.15);
    border-radius: 50%;

    background: transparent;
    color: rgba(250,247,242,.60);

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.vm-product-card__add:hover {
    background: #C9A871;
    color: #0B1E3F;
    border-color: #C9A871;
}

.vm-product-card__add svg {
    width: 16px;
    height: 16px;
}


/* Tablet */
@media (max-width: 767px) {

    .vm-product-card__quickview {
        opacity: 1;
    }

    .vm-product-card__details {
        padding: 18px;
    }

    .vm-product-card__name {
        font-size: 18px;
    }

    .vm-product-card__current-price {
        font-size: 22px;
    }

    .vm-product-card__hover-price {
        display: none;
    }
}


/* Small mobile */
@media (max-width: 420px) {

    .vm-product-card__details {
        padding: 16px;
    }

    .vm-product-card__name {
        font-size: 17px;
    }

    .vm-product-card__tagline {
        font-size: 11px;
    }

    .vm-product-card__bottom {
        gap: 8px;
    }
}/* End custom CSS */