:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-659d7ef *//* ==================================================
   PATTRICK MODERN ANIMATED HERO
   ================================================== */

.pattrick-modern-hero {
    position: relative;
    width: 100%;
    min-height: 760px;

    overflow: hidden;

    background: #2B211C;

    isolation: isolate;
}


/* ==================================================
   BACKGROUND IMAGE
   ================================================== */

.pattrick-hero-image {
    position: absolute;

    inset: -3%;

    z-index: -5;

    background-image:
        url("https://pattrick.shop/wp-content/uploads/2026/08/dsfs-scaled.png");

    background-size: cover;
    background-position: center;

    transform: scale(1.04);

    animation:
        pattrickImageZoom 14s ease-in-out infinite alternate,
        pattrickImageMove 18s ease-in-out infinite alternate;
}


/* ==================================================
   OVERLAY
   ================================================== */

.pattrick-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(35, 26, 22, 0.94) 0%,
            rgba(35, 26, 22, 0.78) 28%,
            rgba(35, 26, 22, 0.30) 60%,
            rgba(35, 26, 22, 0.05) 100%
        );

    pointer-events: none;
}


/* ==================================================
   LIGHT GLOW
   ================================================== */

.pattrick-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(184, 134, 50, 0.18) 0%,
            rgba(184, 134, 50, 0.08) 35%,
            transparent 70%
        );

    filter: blur(10px);

    z-index: -2;

    animation: pattrickGlow 7s ease-in-out infinite;
}


/* ==================================================
   MAIN CONTENT
   ================================================== */

.pattrick-hero-inner {
    position: relative;

    min-height: 760px;

    max-width: 1380px;

    margin: 0 auto;

    padding: 80px 60px;

    display: flex;

    align-items: center;
}


/* ==================================================
   CONTENT BOX
   ================================================== */

.pattrick-content-box {
    position: relative;

    width: 560px;

    padding: 50px 55px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.035)
        );

    border-left: 2px solid rgba(210,169,74,0.85);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);

    opacity: 0;

    transform: translateX(-70px);

    animation:
        pattrickContentReveal 1.2s
        cubic-bezier(.16,1,.3,1)
        0.2s forwards;
}


/* ==================================================
   TOP LINE
   ================================================== */

.pattrick-small-line {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #D2A94A;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 5px;
}


.pattrick-small-line span {
    width: 42px;
    height: 1px;

    background: #D2A94A;

    display: block;

    transform-origin: left;

    animation:
        pattrickLineGrow 1.4s
        ease
        1s
        forwards;

    transform: scaleX(0);
}


/* ==================================================
   HEADING
   ================================================== */

.pattrick-content-box h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(55px, 6vw, 86px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}


.pattrick-content-box h1 span {
    display: block;

    margin-top: 12px;

    color: #D2A94A;

    font-style: italic;

    font-size: 0.72em;

    letter-spacing: -1px;

    opacity: 0;

    transform: translateY(20px);

    animation:
        pattrickTextReveal 1s
        ease
        0.9s
        forwards;
}


/* ==================================================
   DESCRIPTION
   ================================================== */

.pattrick-content-box p {
    max-width: 450px;

    margin: 30px 0 35px;

    color: rgba(255,255,255,0.82);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(20px);

    animation:
        pattrickTextReveal 1s
        ease
        1.1s
        forwards;
}


/* ==================================================
   BUTTON
   ================================================== */

.pattrick-modern-btn {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-width: 190px;

    padding: 17px 26px;

    overflow: hidden;

    background: #B88632;

    color: #ffffff;

    border: 1px solid #B88632;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    transition:
        color .4s ease,
        background .4s ease,
        transform .4s ease;

    opacity: 0;

    transform: translateY(20px);

    animation:
        pattrickTextReveal 1s
        ease
        1.3s
        forwards;
}


/* Button shine */

.pattrick-modern-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.38),
            transparent
        );

    transform: skewX(-20deg);

    animation:
        pattrickButtonShine 4s
        ease-in-out
        infinite;
}


.pattrick-modern-btn span,
.pattrick-modern-btn b {
    position: relative;

    z-index: 2;
}


.pattrick-modern-btn b {
    font-size: 22px;

    font-weight: 400;

    transition:
        transform .35s ease;
}


.pattrick-modern-btn:hover {
    background: #ffffff;

    color: #2B211C;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.25);
}


.pattrick-modern-btn:hover b {
    transform: translateX(7px);
}


/* ==================================================
   DECORATIVE ORBITS
   ================================================== */

.pattrick-orbit {
    position: absolute;

    border: 1px solid rgba(210,169,74,0.32);

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;
}


.orbit-one {
    width: 450px;
    height: 450px;

    right: -180px;
    top: 80px;

    animation:
        pattrickOrbit 15s linear infinite;
}


.orbit-two {
    width: 300px;
    height: 300px;

    right: 35px;
    bottom: -130px;

    border-color:
        rgba(255,255,255,0.12);

    animation:
        pattrickOrbitReverse 12s linear infinite;
}


/* ==================================================
   BOTTOM BAR
   ================================================== */

.pattrick-bottom-bar {
    position: absolute;

    left: 60px;
    right: 60px;
    bottom: 32px;

    display: flex;

    align-items: center;

    gap: 35px;

    z-index: 10;
}


.pattrick-bottom-item {
    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.55);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    transition:
        color .3s ease;
}


.pattrick-bottom-item.active {
    color: #D2A94A;
}


.pattrick-bottom-item .number {
    font-size: 11px;
}


.pattrick-bottom-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(210,169,74,0.5),
            transparent
        );
}


/* ==================================================
   ANIMATIONS
   ================================================== */

@keyframes pattrickImageZoom {

    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.12);
    }
}


@keyframes pattrickImageMove {

    0% {
        background-position: center center;
    }

    100% {
        background-position: 53% center;
    }
}


@keyframes pattrickContentReveal {

    0% {
        opacity: 0;

        transform:
            translateX(-70px);
    }

    100% {
        opacity: 1;

        transform:
            translateX(0);
    }
}


@keyframes pattrickTextReveal {

    0% {
        opacity: 0;

        transform:
            translateY(20px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes pattrickLineGrow {

    0% {
        transform:
            scaleX(0);
    }

    100% {
        transform:
            scaleX(1);
    }
}


@keyframes pattrickButtonShine {

    0%,
    55% {
        left: -120%;
    }

    75% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}


@keyframes pattrickOrbit {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}


@keyframes pattrickOrbitReverse {

    from {
        transform:
            rotate(360deg);
    }

    to {
        transform:
            rotate(0deg);
    }
}


@keyframes pattrickGlow {

    0%,
    100% {
        transform:
            translateY(-50%)
            scale(1);

        opacity: .7;
    }

    50% {
        transform:
            translateY(-50%)
            scale(1.15);

        opacity: 1;
    }
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 991px) {

    .pattrick-modern-hero {
        min-height: 680px;
    }

    .pattrick-hero-inner {
        min-height: 680px;

        padding:
            70px 40px;
    }

    .pattrick-content-box {
        width: 510px;

        padding:
            42px;
    }

    .pattrick-content-box h1 {
        font-size: 65px;
    }

    .orbit-one {
        width: 350px;
        height: 350px;

        right: -150px;
    }
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .pattrick-modern-hero {
        min-height: 720px;
    }


    .pattrick-hero-image {

        background-position:
            63% center;

        animation:
            pattrickImageZoom
            14s ease-in-out
            infinite alternate;
    }


    .pattrick-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(35,26,22,0.12) 0%,
                rgba(35,26,22,0.35) 35%,
                rgba(35,26,22,0.88) 75%,
                rgba(35,26,22,0.98) 100%
            );
    }


    .pattrick-hero-inner {

        min-height: 720px;

        padding:
            40px 20px 100px;

        align-items: flex-end;
    }


    .pattrick-content-box {

        width: 100%;

        padding:
            32px 25px;

        border-left-width: 2px;

        backdrop-filter:
            blur(5px);
    }


    .pattrick-small-line {

        margin-bottom: 18px;

        font-size: 10px;

        letter-spacing: 4px;
    }


    .pattrick-content-box h1 {

        font-size: 48px;

        letter-spacing: -1.5px;
    }


    .pattrick-content-box h1 span {

        margin-top: 8px;

        font-size: 0.72em;
    }


    .pattrick-content-box p {

        margin:
            22px 0 27px;

        font-size: 14px;

        line-height: 1.7;
    }


    .pattrick-modern-btn {

        min-width: 165px;

        padding:
            15px 20px;

        font-size: 11px;

        letter-spacing: 2px;
    }


    .pattrick-bottom-bar {

        left: 20px;
        right: 20px;
        bottom: 25px;

        gap: 18px;
    }


    .pattrick-bottom-item {

        font-size: 8px;

        letter-spacing: 1.3px;
    }


    .pattrick-bottom-item:nth-child(2) {

        display: none;
    }


    .pattrick-bottom-line {

        margin-left: 5px;
    }


    .orbit-one {

        width: 250px;
        height: 250px;

        right: -120px;

        top: 70px;
    }


    .orbit-two {

        width: 180px;
        height: 180px;

        right: -70px;

        bottom: 100px;
    }


    .pattrick-glow {

        width: 350px;
        height: 350px;

        right: -180px;
    }
}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 420px) {

    .pattrick-modern-hero {

        min-height: 680px;
    }


    .pattrick-hero-inner {

        min-height: 680px;

        padding:
            30px 15px 90px;
    }


    .pattrick-content-box {

        padding:
            27px 20px;
    }


    .pattrick-content-box h1 {

        font-size: 41px;
    }


    .pattrick-content-box p {

        font-size: 13px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d2d080a *//* =====================================================
   PATTRICK TRUST & TRANSPARENCY
   ===================================================== */

.pattrick-trust-v2 {
    position: relative;
    width: 100%;

    padding: 115px 25px 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(184, 134, 50, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(184, 134, 50, 0.08),
            transparent 25%
        ),
        #2B211C;

    color: #ffffff;

    isolation: isolate;
}


/* =====================================================
   DECORATIVE BACKGROUND
   ===================================================== */

.pattrick-trust-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;
}


.trust-glow-one {
    width: 500px;
    height: 500px;

    right: -280px;
    top: -220px;

    border: 1px solid rgba(210, 169, 74, 0.22);

    box-shadow:
        0 0 100px rgba(184, 134, 50, 0.08);

    animation:
        trustCircleMove 10s ease-in-out infinite;
}


.trust-glow-two {
    width: 300px;
    height: 300px;

    left: -190px;
    bottom: -180px;

    border: 1px solid rgba(210, 169, 74, 0.12);

    animation:
        trustCircleMove 8s ease-in-out infinite reverse;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.pattrick-trust-wrap {
    position: relative;

    max-width: 1280px;

    margin: 0 auto;
}


/* =====================================================
   INTRO
   ===================================================== */

.pattrick-trust-intro {
    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}


/* =====================================================
   KICKER
   ===================================================== */

.pattrick-trust-kicker {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 23px;

    color: #D2A94A;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;
}


.pattrick-trust-kicker span {
    width: 38px;
    height: 1px;

    background: #B88632;

    transform: scaleX(0);

    animation:
        trustLineReveal 1s ease forwards;
}


.pattrick-trust-kicker span:last-child {
    animation-delay: .15s;
}


/* =====================================================
   HEADING
   ===================================================== */

.pattrick-trust-intro h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -2px;
}


.pattrick-trust-intro h2 em {
    display: block;

    margin-top: 8px;

    color: #D2A94A;

    font-size: .78em;

    font-style: italic;

    letter-spacing: -1px;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.pattrick-trust-intro p {
    max-width: 650px;

    margin: 25px auto 0;

    color:
        rgba(255,255,255,0.68);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   FEATURES GRID
   ===================================================== */

.pattrick-trust-features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background:
        rgba(210,169,74,0.25);

    border:
        1px solid rgba(210,169,74,0.25);
}


/* =====================================================
   FEATURE CARD
   ===================================================== */

.pattrick-trust-feature {
    position: relative;

    min-height: 405px;

    padding: 36px 30px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    overflow: hidden;

    transition:
        background .45s ease,
        transform .45s ease;
}


/* Animated Gold Line */

.pattrick-trust-feature::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #D2A94A,
            transparent
        );

    transform:
        translateX(-100%);

    transition:
        transform .7s ease;
}


.pattrick-trust-feature:hover::before {
    transform:
        translateX(100%);
}


.pattrick-trust-feature:hover {
    background:
        linear-gradient(
            145deg,
            rgba(184,134,50,0.14),
            rgba(255,255,255,0.045)
        );

    transform:
        translateY(-5px);
}


/* =====================================================
   TOP AREA
   ===================================================== */

.trust-feature-top {
    display: flex;

    align-items: flex-start;
    justify-content: flex-end;

    margin-bottom: 45px;
}


/* =====================================================
   ICON
   ===================================================== */

.trust-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(210,169,74,0.10);

    border:
        1px solid rgba(210,169,74,0.30);

    transition:
        transform .5s ease,
        background .5s ease,
        box-shadow .5s ease;
}


.pattrick-trust-feature:hover .trust-icon {
    transform:
        rotate(-8deg)
        scale(1.12);

    background:
        rgba(210,169,74,0.18);

    box-shadow:
        0 0 30px rgba(210,169,74,0.12);
}


.trust-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke:
        #D2A94A;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   TITLE
   ===================================================== */

.pattrick-trust-feature h3 {
    margin: 0 0 17px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 400;
}


/* =====================================================
   TEXT
   ===================================================== */

.pattrick-trust-feature p {
    margin: 0;

    color:
        rgba(255,255,255,0.62);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13.5px;

    line-height: 1.8;
}


/* =====================================================
   BOTTOM LABEL
   ===================================================== */

.trust-bottom {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.trust-bottom span {
    color:
        rgba(255,255,255,0.38);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;
}


.trust-bottom i {
    display: block;

    flex: 1;

    height: 1px;

    background:
        rgba(210,169,74,0.25);

    position: relative;

    overflow: hidden;
}


.trust-bottom i::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 35%;
    height: 100%;

    background:
        #B88632;

    animation:
        trustSmallLine 3s ease-in-out infinite;
}


/* =====================================================
   CUSTOMER SUPPORT
   ===================================================== */

.pattrick-trust-footer {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 60px;
}


.trust-footer-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210,169,74,0.35)
        );
}


.trust-footer-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(210,169,74,0.35),
            transparent
        );
}


/* Email Link */

.trust-footer-center {
    display: flex;

    align-items: center;

    gap: 13px;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .3s ease;
}


.trust-footer-center:hover {
    transform:
        translateY(-3px);
}


.footer-dot {
    position: relative;

    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        #D2A94A;

    box-shadow:
        0 0 0 5px rgba(210,169,74,0.10);

    animation:
        trustDotPulse 2s ease-in-out infinite;
}


.trust-footer-center small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,0.38);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2.5px;
}


.trust-footer-center strong {
    display: block;

    color:
        #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    transition:
        color .3s ease;
}


.trust-footer-center:hover strong {
    color:
        #D2A94A;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes trustLineReveal {

    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}


@keyframes trustSmallLine {

    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(180%);
    }

    100% {
        transform: translateX(180%);
    }
}


@keyframes trustDotPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(210,169,74,0.10);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(210,169,74,0.02);
    }
}


@keyframes trustCircleMove {

    0%,
    100% {
        transform:
            translate(0,0)
            rotate(0deg);
    }

    50% {
        transform:
            translate(-20px,20px)
            rotate(8deg);
    }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .pattrick-trust-features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pattrick-trust-feature {
        min-height: 380px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

    .pattrick-trust-v2 {
        padding:
            80px 16px 75px;
    }


    .pattrick-trust-intro {
        margin-bottom: 45px;
    }


    .pattrick-trust-intro h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .pattrick-trust-intro p {
        font-size: 14px;

        line-height: 1.75;
    }


    .pattrick-trust-features {
        grid-template-columns: 1fr;

        gap: 1px;
    }


    .pattrick-trust-feature {
        min-height: 350px;

        padding:
            30px 25px;
    }


    .trust-feature-top {
        margin-bottom: 35px;
    }


    .pattrick-trust-feature h3 {
        font-size: 24px;
    }


    .pattrick-trust-feature p {
        font-size: 13px;
    }


    .trust-bottom {
        left: 25px;
        right: 25px;
    }


    .pattrick-trust-footer {
        margin-top: 40px;
    }


    .trust-footer-line {
        display: none;
    }


    .pattrick-trust-footer {
        justify-content: center;
    }


    .trust-glow-one {
        width: 320px;
        height: 320px;

        right: -190px;
        top: -120px;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 400px) {

    .pattrick-trust-intro h2 {
        font-size: 35px;
    }


    .pattrick-trust-kicker {
        font-size: 9px;

        letter-spacing: 4px;
    }


    .pattrick-trust-feature {
        min-height: 360px;
    }


    .trust-footer-center strong {
        font-size: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d436a89 *//* =====================================================
   PATTRICK WALL MIRRORS PRODUCT SECTION
   ===================================================== */

.pattrick-products-section {
    position: relative;

    width: 100%;

    padding: 110px 25px 120px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FAF8F3 0%,
            #FFFFFF 45%,
            #FAF8F3 100%
        );
}


/* =====================================================
   BACKGROUND DECORATION
   ===================================================== */

.pattrick-products-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -280px;
    right: -230px;

    border-radius: 50%;

    border: 1px solid rgba(184,134,50,0.14);

    animation:
        pattrickProductsRotate 18s linear infinite;
}


.pattrick-products-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(184,134,50,0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.pattrick-products-container {

    position: relative;

    max-width: 1280px;

    margin: 0 auto;

    z-index: 2;
}


/* =====================================================
   HEADING
   ===================================================== */

.pattrick-products-heading {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}


/* Kicker */

.pattrick-products-kicker {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 20px;

    color: #B88632;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;
}


.pattrick-products-kicker span {

    width: 38px;

    height: 1px;

    background: #B88632;

    transform: scaleX(0);

    animation:
        pattrickProductLine 1s ease forwards;
}


.pattrick-products-kicker span:last-child {

    animation-delay: .15s;
}


/* Heading */

.pattrick-products-heading h2 {

    margin: 0;

    color: #2B211C;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(45px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -2px;
}


.pattrick-products-heading h2 em {

    display: block;

    margin-top: 8px;

    color: #B88632;

    font-size: .75em;

    font-style: italic;

    letter-spacing: -1px;
}


.pattrick-products-heading p {

    max-width: 600px;

    margin: 24px auto 0;

    color: #6D645D;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   WOOCOMMERCE GRID
   ===================================================== */

.pattrick-products-grid {

    width: 100%;
}


/* WooCommerce product list */

.pattrick-products-grid ul.products {

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    width: 100%;

    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


/* Remove WooCommerce clearfix */

.pattrick-products-grid ul.products::before,
.pattrick-products-grid ul.products::after {

    display: none !important;
}


/* =====================================================
   PRODUCT CARD
   ===================================================== */

.pattrick-products-grid
ul.products
li.product {

    position: relative;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 0 24px !important;

    background: #FFFFFF;

    border: 1px solid #E7DED1;

    overflow: hidden;

    text-align: left;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}


/* Top gold animation */

.pattrick-products-grid
ul.products
li.product::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 3px;

    background: #B88632;

    z-index: 10;

    transition:
        width .5s ease;
}


.pattrick-products-grid
ul.products
li.product:hover::before {

    width: 100%;
}


.pattrick-products-grid
ul.products
li.product:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(184,134,50,0.40);

    box-shadow:
        0 25px 55px rgba(43,33,28,0.12);
}


/* =====================================================
   PRODUCT IMAGE
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.woocommerce-loop-product__link {

    display: block;

    margin: 0 !important;

    overflow: hidden;

    text-decoration: none !important;
}


/* Image */

.pattrick-products-grid
ul.products
li.product
img {

    display: block !important;

    width: 100% !important;

    height: 390px !important;

    margin: 0 !important;

    object-fit: cover;

    background: #F7F3EC;

    transition:
        transform .8s cubic-bezier(.16,1,.3,1);
}


/* Image hover */

.pattrick-products-grid
ul.products
li.product:hover
img {

    transform:
        scale(1.06);
}


/* =====================================================
   SALE BADGE
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.onsale {

    position: absolute;

    top: 18px;

    left: 18px;

    right: auto;

    min-width: auto;

    min-height: auto;

    margin: 0;

    padding: 7px 12px;

    border-radius: 0;

    background: #2B211C;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    line-height: 1.2;

    z-index: 5;
}


/* =====================================================
   PRODUCT CONTENT
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.woocommerce-loop-product__title {

    margin:
        23px 25px 8px !important;

    padding: 0 !important;

    color: #2B211C !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px !important;

    font-weight: 400 !important;

    line-height: 1.3 !important;

    transition:
        color .3s ease;
}


.pattrick-products-grid
ul.products
li.product:hover
.woocommerce-loop-product__title {

    color: #B88632 !important;
}


/* =====================================================
   PRICE
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.price {

    display: block !important;

    margin:
        0 25px 20px !important;

    color: #2B211C !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px !important;

    font-weight: 600 !important;
}


.pattrick-products-grid
ul.products
li.product
.price del {

    color: #9B9188 !important;

    opacity: .7;
}


.pattrick-products-grid
ul.products
li.product
.price ins {

    color: #B88632 !important;

    text-decoration: none;
}


/* =====================================================
   ADD TO CART BUTTON
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.add_to_cart_button {

    position: relative;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin:
        0 25px !important;

    padding:
        13px 20px !important;

    min-width: 145px;

    border: 1px solid #2B211C !important;

    border-radius: 0 !important;

    background: #2B211C !important;

    color: #FFFFFF !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


/* Button shine */

.pattrick-products-grid
ul.products
li.product
.add_to_cart_button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.30),
            transparent
        );

    transform:
        skewX(-20deg);
}


/* Shine on hover */

.pattrick-products-grid
ul.products
li.product:hover
.add_to_cart_button::before {

    animation:
        pattrickCartShine .8s ease;
}


.pattrick-products-grid
ul.products
li.product
.add_to_cart_button:hover {

    background: #B88632 !important;

    border-color: #B88632 !important;

    color: #FFFFFF !important;

    transform:
        translateY(-2px);
}


/* =====================================================
   VIEW PRODUCT BUTTON / EXTRA LINKS
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.add_to_cart_button.loading {

    opacity: .65;
}


/* =====================================================
   ADDED TO CART
   ===================================================== */

.pattrick-products-grid
ul.products
li.product
.added_to_cart {

    display: inline-block;

    margin-left: 12px;

    color: #B88632;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;
}


/* =====================================================
   ANIMATED CARD ENTRY
   ===================================================== */

.pattrick-products-grid
ul.products
li.product {

    opacity: 0;

    transform:
        translateY(35px);

    animation:
        pattrickProductReveal
        .8s
        cubic-bezier(.16,1,.3,1)
        forwards;
}


.pattrick-products-grid
ul.products
li.product:nth-child(1) {

    animation-delay:
        .15s;
}


.pattrick-products-grid
ul.products
li.product:nth-child(2) {

    animation-delay:
        .3s;
}


.pattrick-products-grid
ul.products
li.product:nth-child(3) {

    animation-delay:
        .45s;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes pattrickProductReveal {

    0% {

        opacity: 0;

        transform:
            translateY(35px);
    }

    100% {

        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes pattrickProductLine {

    0% {

        transform:
            scaleX(0);
    }

    100% {

        transform:
            scaleX(1);
    }
}


@keyframes pattrickProductsRotate {

    from {

        transform:
            rotate(0deg);
    }

    to {

        transform:
            rotate(360deg);
    }
}


@keyframes pattrickCartShine {

    0% {

        left: -120%;
    }

    100% {

        left: 140%;
    }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .pattrick-products-section {

        padding:
            85px 20px 95px;
    }


    .pattrick-products-grid
    ul.products {

        gap: 20px;
    }


    .pattrick-products-grid
    ul.products
    li.product
    img {

        height: 330px !important;
    }


    .pattrick-products-grid
    ul.products
    li.product
    .woocommerce-loop-product__title {

        font-size: 20px !important;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .pattrick-products-section {

        padding:
            75px 16px 85px;
    }


    .pattrick-products-heading {

        margin-bottom: 42px;
    }


    .pattrick-products-heading h2 {

        font-size: 43px;

        letter-spacing: -1px;
    }


    .pattrick-products-heading p {

        font-size: 14px;

        line-height: 1.7;
    }


    .pattrick-products-grid
    ul.products {

        grid-template-columns:
            1fr !important;

        gap: 22px;
    }


    .pattrick-products-grid
    ul.products
    li.product {

        width: 100% !important;
    }


    .pattrick-products-grid
    ul.products
    li.product
    img {

        height: 430px !important;
    }


    .pattrick-products-grid
    ul.products
    li.product
    .woocommerce-loop-product__title {

        margin:
            21px 22px 8px !important;

        font-size: 22px !important;
    }


    .pattrick-products-grid
    ul.products
    li.product
    .price {

        margin:
            0 22px 18px !important;
    }


    .pattrick-products-grid
    ul.products
    li.product
    .add_to_cart_button {

        margin:
            0 22px !important;

        padding:
            14px 20px !important;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 420px) {

    .pattrick-products-heading h2 {

        font-size: 38px;
    }


    .pattrick-products-grid
    ul.products
    li.product
    img {

        height: 360px !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c274cf3 *//* =========================================================
   PATTRICK - TWO COLLECTIONS
   ========================================================= */

.pattrick-collections-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;

    padding: 105px 30px 115px;

    background: #FAF8F3;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.pattrick-collections-section::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(184, 134, 50, 0.12);

    border-radius: 50%;

    animation: pattrick-circle-float 9s ease-in-out infinite;

    pointer-events: none;
}


.pattrick-collections-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -170px;
    bottom: -120px;

    border: 1px solid rgba(184, 134, 50, 0.10);

    border-radius: 50%;

    animation: pattrick-circle-float-2 8s ease-in-out infinite;

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.pattrick-collections-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.pattrick-collections-heading {
    width: 100%;

    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;

    animation: pattrick-heading-show 1s ease forwards;
}


.pattrick-heading-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 6px;

    color: #B88632;
}


.pattrick-heading-label span {
    display: block;

    width: 40px;

    height: 1px;

    background: #B88632;
}


.pattrick-collections-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 0.98;

    font-weight: 400;

    color: #2B211C;
}


.pattrick-collections-heading h2 em {
    display: block;

    margin-top: 8px;

    font-style: italic;

    font-weight: 400;

    color: #B88632;
}


.pattrick-collections-heading p {
    max-width: 650px;

    margin: 28px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #6F665E;
}


/* =========================================================
   ONLY TWO CARDS
   ========================================================= */

.pattrick-collections-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 35px;

    width: 100%;

    margin: 0 auto;

    align-items: stretch;
}


/* =========================================================
   COLLECTION CARD
   ========================================================= */

.pattrick-collection-item {

    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    min-width: 0;

    background: #FFFFFF;

    border: 1px solid #E5DED2;

    text-decoration: none !important;

    color: inherit;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow:
        0 15px 45px rgba(43, 33, 28, 0.08);

    opacity: 0;

    transform: translateY(35px);

    animation: pattrick-card-show 0.9s ease forwards;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


.pattrick-collection-item:nth-child(1) {
    animation-delay: 0.15s;
}


.pattrick-collection-item:nth-child(2) {
    animation-delay: 0.3s;
}


/* GOLD TOP LINE */

.pattrick-collection-item::before {

    content: "";

    position: absolute;

    z-index: 20;

    left: 0;

    top: 0;

    width: 0;

    height: 3px;

    background: #B88632;

    transition: width 0.55s ease;
}


.pattrick-collection-item:hover::before {
    width: 100%;
}


.pattrick-collection-item:hover {

    transform: translateY(-10px);

    border-color: rgba(184, 134, 50, 0.45);

    box-shadow:
        0 30px 65px rgba(43, 33, 28, 0.15);
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.pattrick-collection-image {

    position: relative;

    width: 100%;

    height: 540px;

    overflow: hidden;

    background: #EDE7DC;
}


.pattrick-collection-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1);

    transition:
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}


.pattrick-collection-item:hover
.pattrick-collection-image img {

    transform: scale(1.07);
}


/* IMAGE OVERLAY */

.pattrick-image-shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(43, 33, 28, 0.02) 30%,
            rgba(43, 33, 28, 0.40) 100%
        );

    transition: opacity 0.45s ease;
}


.pattrick-collection-item:hover
.pattrick-image-shade {

    opacity: 0.85;
}


/* =========================================================
   COLLECTION LABEL
   ========================================================= */

.pattrick-collection-tag {

    position: absolute;

    left: 25px;

    top: 25px;

    padding: 9px 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #FFFFFF;

    background: rgba(43, 33, 28, 0.45);

    border: 1px solid rgba(255,255,255,0.55);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   ROUND ARROW
   ========================================================= */

.pattrick-round-arrow {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #2B211C;

    color: #FFFFFF;

    font-family: Arial, sans-serif;

    font-size: 25px;

    opacity: 0;

    transform: translateX(12px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.20);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        background 0.3s ease;
}


.pattrick-collection-item:hover
.pattrick-round-arrow {

    opacity: 1;

    transform: translateX(0);

    background: #B88632;
}


/* =========================================================
   CARD INFORMATION
   ========================================================= */

.pattrick-collection-info {

    padding: 31px 34px 36px;

    background: #FFFFFF;

    box-sizing: border-box;
}


.pattrick-explore-text {

    display: block;

    margin-bottom: 10px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #B88632;
}


.pattrick-collection-info h3 {

    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 35px;

    line-height: 1.1;

    font-weight: 400;

    color: #2B211C;
}


.pattrick-collection-info p {

    max-width: 520px;

    margin: 0 0 25px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #70665E;
}


/* =========================================================
   SHOP BUTTON
   ========================================================= */

.pattrick-shop-button {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #2B211C;

    transition: color 0.3s ease;
}


.pattrick-shop-button span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    border: 1px solid #B88632;

    border-radius: 50%;

    color: #B88632;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.pattrick-collection-item:hover
.pattrick-shop-button {

    color: #B88632;
}


.pattrick-collection-item:hover
.pattrick-shop-button span {

    transform: translateX(5px);

    background: #B88632;

    color: #FFFFFF;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes pattrick-heading-show {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pattrick-card-show {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pattrick-circle-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 25px);
    }

}


@keyframes pattrick-circle-float-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .pattrick-collections-section {

        padding: 90px 25px 100px;

    }


    .pattrick-collection-image {

        height: 470px;

    }


    .pattrick-collection-info {

        padding: 28px 28px 32px;

    }


    .pattrick-collection-info h3 {

        font-size: 31px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pattrick-collections-section {

        padding: 70px 16px 80px;

    }


    .pattrick-collections-heading {

        margin-bottom: 40px;

    }


    .pattrick-heading-label {

        font-size: 9px;

        letter-spacing: 4px;

        gap: 10px;

    }


    .pattrick-heading-label span {

        width: 28px;

    }


    .pattrick-collections-heading h2 {

        font-size: 44px;

        line-height: 1;

    }


    .pattrick-collections-heading p {

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;

    }


    /* TWO CARDS BECOME ONE PER ROW */

    .pattrick-collections-grid {

        grid-template-columns: 1fr;

        gap: 28px;

    }


    .pattrick-collection-image {

        height: 430px;

    }


    .pattrick-collection-tag {

        left: 18px;

        top: 18px;

        font-size: 9px;

        letter-spacing: 2px;

    }


    .pattrick-round-arrow {

        right: 18px;

        bottom: 18px;

        width: 50px;

        height: 50px;

        opacity: 1;

        transform: translateX(0);

        font-size: 21px;

    }


    .pattrick-collection-info {

        padding: 25px 23px 30px;

    }


    .pattrick-collection-info h3 {

        font-size: 29px;

    }


    .pattrick-collection-info p {

        font-size: 13px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .pattrick-collections-section {

        padding-left: 13px;

        padding-right: 13px;

    }


    .pattrick-collections-heading h2 {

        font-size: 39px;

    }


    .pattrick-collection-image {

        height: 390px;

    }


    .pattrick-collection-info h3 {

        font-size: 27px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eaf99d4 *//* =========================================================
   PATTRICK FEATURED PRODUCT
   ========================================================= */

.pattrick-featured-new {

    position: relative;

    width: 100%;

    padding: 110px 30px 120px;

    background: #F4F0E9;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND CIRCLES
   ========================================================= */

.pattrick-featured-new::before {

    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    top: -360px;
    right: -190px;

    border: 1px solid rgba(184,134,50,0.13);

    border-radius: 50%;

    animation:
        pattrick-orbit-one 10s ease-in-out infinite;

    pointer-events: none;
}


.pattrick-featured-new::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -170px;
    bottom: -220px;

    border: 1px solid rgba(184,134,50,0.10);

    border-radius: 50%;

    animation:
        pattrick-orbit-two 9s ease-in-out infinite;

    pointer-events: none;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.pattrick-featured-wrap {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1240px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.pattrick-featured-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

    animation:
        pattrick-heading-show 0.9s ease forwards;
}


.pattrick-featured-eyebrow {

    display: inline-block;

    margin-bottom: 17px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    color: #B88632;
}


.pattrick-featured-heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1;

    font-weight: 400;

    color: #2B211C;
}


.pattrick-featured-heading h2 em {

    display: block;

    margin-top: 7px;

    color: #B88632;

    font-style: italic;

    font-weight: 400;
}


.pattrick-featured-heading p {

    max-width: 570px;

    margin: 23px auto 0;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.7;

    color: #70675F;
}


/* =========================================================
   PRODUCT BOX
   ========================================================= */

.pattrick-product-box {

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    width: 100%;

    background: #FFFFFF;

    border: 1px solid #E2D9CC;

    box-shadow:
        0 25px 70px rgba(43,33,28,0.10);

    overflow: hidden;

    animation:
        pattrick-box-show 1s ease 0.15s forwards;

    opacity: 0;

    transform: translateY(30px);
}


/* =========================================================
   IMAGE SIDE
   ========================================================= */

.pattrick-product-visual {

    min-width: 0;

    padding: 20px;

    background: #E9E3DA;
}


/* =========================================================
   MAIN PHOTO
   ========================================================= */

.pattrick-main-photo {

    position: relative;

    width: 100%;

    height: 610px;

    overflow: hidden;

    background: #DDD6CB;
}


.pattrick-main-photo img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1);

    transition:
        transform 0.9s
        cubic-bezier(0.2,0.7,0.2,1),
        opacity 0.35s ease;
}


.pattrick-main-photo:hover img {

    transform: scale(1.035);
}


/* =========================================================
   IMAGE CHANGE
   ========================================================= */

.pattrick-photo-changing {

    opacity: 0 !important;

    transform: scale(1.04) !important;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.pattrick-photo-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(43,33,28,0.02) 50%,
            rgba(43,33,28,0.25) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE NUMBER
   ========================================================= */

.pattrick-photo-number {

    position: absolute;

    z-index: 5;

    left: 22px;

    bottom: 20px;

    padding: 8px 13px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #FFFFFF;

    background: rgba(43,33,28,0.65);

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.pattrick-photo-thumbs {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 10px;

    margin-top: 10px;
}


.pattrick-photo-thumb {

    position: relative;

    width: 100%;

    height: 92px;

    padding: 0;

    border: 1px solid #D7CEC0;

    border-radius: 18px;

    background: #FFFFFF;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.pattrick-photo-thumb img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.45s ease;
}


.pattrick-photo-thumb:hover {

    transform: translateY(-4px);

    border-color: #B88632;

}


.pattrick-photo-thumb:hover img {

    transform: scale(1.08);
}


/* ACTIVE FIRST IMAGE */

.pattrick-photo-thumb.active {

    border: 2px solid #B88632;

    box-shadow:
        0 7px 18px rgba(184,134,50,0.20);
}


.pattrick-photo-thumb.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background: #B88632;
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.pattrick-product-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 58px;

    background: #FFFFFF;

    box-sizing: border-box;
}


/* =========================================================
   PRODUCT TOP
   ========================================================= */

.pattrick-product-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}


.pattrick-product-type {

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #B88632;
}


.pattrick-product-ref {

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #A69B90;
}


/* =========================================================
   TITLE
   ========================================================= */

.pattrick-product-info h3 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.02;

    font-weight: 400;

    color: #2B211C;
}


.pattrick-product-info h3 span {

    display: block;

    margin-top: 8px;

    color: #B88632;

    font-style: italic;
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.pattrick-short-line {

    width: 55px;

    height: 2px;

    margin: 28px 0;

    background: #B88632;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.pattrick-product-text {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.85;

    color: #71685F;
}


/* =========================================================
   PRICE
   ========================================================= */

.pattrick-price-area {

    display: flex;

    align-items: baseline;

    gap: 18px;

    margin-top: 28px;

    padding-bottom: 25px;

    border-bottom: 1px solid #E5DED2;
}


.pattrick-price-label {

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #9B9085;
}


.pattrick-price-area strong {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;

    font-weight: 400;

    color: #2B211C;
}


/* =========================================================
   FEATURES
   ========================================================= */

.pattrick-product-points {

    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 7px;

    margin-bottom: 28px;
}


.pattrick-product-points div {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 12px 0;

    border-bottom: 1px solid #EEE8DF;
}


.pattrick-product-points div:last-child {

    border-bottom: none;
}


.pattrick-product-points span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: #F1E5CF;

    color: #B88632;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    flex-shrink: 0;
}


.pattrick-product-points p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #554D46;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.pattrick-product-actions {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    width: 100%;
}


/* ADD TO CART */

.pattrick-cart-button {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 17px 20px;

    background: #2B211C;

    color: #FFFFFF !important;

    text-decoration: none !important;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    overflow: hidden;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.pattrick-cart-button::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.20),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}


.pattrick-cart-button:hover::before {

    left: 140%;
}


.pattrick-cart-button:hover {

    background: #B88632;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(43,33,28,0.18);
}


.pattrick-cart-button b {

    font-size: 17px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}


.pattrick-cart-button:hover b {

    transform: translateX(5px);
}


/* VIEW PRODUCT */

.pattrick-view-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 17px 20px;

    border: 1px solid #C8A86B;

    background: #FFFFFF;

    color: #2B211C !important;

    text-decoration: none !important;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.pattrick-view-button:hover {

    background: #B88632;

    color: #FFFFFF !important;

    transform: translateY(-3px);
}


.pattrick-view-button span {

    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.pattrick-view-button:hover span {

    transform:
        translate(3px,-3px);
}


/* =========================================================
   BOTTOM NOTE
   ========================================================= */

.pattrick-bottom-note {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 23px;
}


.pattrick-bottom-note span {

    display: block;

    width: 25px;

    height: 1px;

    background: #B88632;
}


.pattrick-bottom-note p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 10px;

    color: #958A80;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes pattrick-heading-show {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes pattrick-box-show {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes pattrick-orbit-one {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-20px,25px);
    }

}


@keyframes pattrick-orbit-two {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(20px,-20px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .pattrick-featured-new {

        padding: 90px 22px 100px;

    }


    .pattrick-product-info {

        padding: 45px 35px;

    }


    .pattrick-main-photo {

        height: 500px;

    }


    .pattrick-photo-thumb {

        height: 75px;

    }


    .pattrick-product-info h3 {

        font-size: 42px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pattrick-featured-new {

        padding: 70px 15px 80px;

    }


    .pattrick-featured-heading {

        margin-bottom: 35px;

    }


    .pattrick-featured-heading h2 {

        font-size: 43px;

    }


    .pattrick-featured-heading p {

        font-size: 14px;

    }


    .pattrick-product-box {

        grid-template-columns: 1fr;

    }


    .pattrick-product-visual {

        padding: 12px;

    }


    .pattrick-main-photo {

        height: 440px;

    }


    .pattrick-photo-thumbs {

        gap: 6px;

    }


    .pattrick-photo-thumb {

        height: 68px;

        border-radius: 13px;

    }


    .pattrick-product-info {

        padding: 40px 25px 45px;

    }


    .pattrick-product-info h3 {

        font-size: 39px;

    }


    .pattrick-product-text {

        font-size: 13px;

        line-height: 1.75;

    }


    .pattrick-product-actions {

        grid-template-columns: 1fr;

    }


    .pattrick-cart-button,
    .pattrick-view-button {

        width: 100%;

        box-sizing: border-box;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .pattrick-featured-new {

        padding-left: 12px;

        padding-right: 12px;

    }


    .pattrick-main-photo {

        height: 390px;

    }


    .pattrick-photo-thumb {

        height: 60px;

    }


    .pattrick-product-info {

        padding-left: 20px;

        padding-right: 20px;

    }


    .pattrick-product-info h3 {

        font-size: 35px;

    }


    .pattrick-price-area strong {

        font-size: 28px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-821da20 *//* =========================================
   PATTRICK FEATURE VIDEO
   NO TOP SPACE
   ========================================= */

.px-feature-video {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: #FAF8F3;
    position: relative;
    overflow: hidden;
}

.px-video-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto !important;
    padding: 0 30px 80px !important;
    box-sizing: border-box;
}


/* =========================================
   REMOVE TOP SPACE FROM ELEMENTOR
   ========================================= */

.px-feature-video,
.px-feature-video > div,
.px-feature-video .elementor-container,
.px-feature-video .elementor-widget-wrap,
.px-feature-video .elementor-widget-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* =========================================
   HEADING
   ========================================= */

.px-video-heading {
    text-align: center;
    margin: 0 0 45px;
    padding: 0;
    animation: pxHeadingReveal 1s ease both;
}

.px-video-heading h2 {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -2px;
    color: #2B211C;
}

.px-video-heading h2 span {
    display: block;
    font-style: italic;
    color: #B88632;
}

.px-video-heading p {
    max-width: 650px;
    margin: 22px auto 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6D625A;
}


/* =========================================
   VIDEO FRAME
   ========================================= */

.px-video-frame {
    position: relative;
    width: 100%;
    height: min(680px, 65vw);
    min-height: 430px;
    overflow: hidden;
    background: #2B211C;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(43, 33, 28, 0.18);
    animation: pxVideoReveal 1.1s ease both;
}


/* =========================================
   VIDEO
   ========================================= */

.px-featured-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.px-video-frame:hover .px-featured-video {
    transform: scale(1.06);
}


/* =========================================
   DARK OVERLAY
   ========================================= */

.px-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(43, 33, 28, 0.22) 0%,
            rgba(43, 33, 28, 0.03) 35%,
            rgba(43, 33, 28, 0.15) 55%,
            rgba(43, 33, 28, 0.82) 100%
        );
}


/* =========================================
   GOLD BORDER
   ========================================= */

.px-video-border {
    position: absolute;
    inset: 14px;
    z-index: 3;
    border: 1px solid rgba(210, 169, 74, 0.55);
    pointer-events: none;
    animation: pxBorderPulse 3s ease-in-out infinite;
}


/* =========================================
   FEATURED LABEL
   ========================================= */

.px-video-label {
    position: absolute;
    top: 35px;
    left: 40px;
    z-index: 5;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFFFFF;

    padding-left: 16px;
}

.px-video-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #D2A94A;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(210, 169, 74, 0.9);
}


/* =========================================
   CENTER PLAY BUTTON
   ========================================= */

.px-video-control {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;

    width: 76px;
    height: 76px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    background: rgba(43, 33, 28, 0.38);
    backdrop-filter: blur(8px);

    color: #FFFFFF;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.px-video-control:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: #B88632;
    border-color: #B88632;
}

.px-play-icon {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
}


/* =========================================
   PRODUCT INFORMATION
   ========================================= */

.px-video-info {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 48px;

    z-index: 5;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.px-video-product span {
    display: block;
    margin-bottom: 12px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #D2A94A;
}

.px-video-product h3 {
    margin: 0;
    padding: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 45px);
    line-height: 1.05;
    font-weight: 400;

    color: #FFFFFF;
}


/* =========================================
   VIEW PRODUCT BUTTON
   ========================================= */

.px-video-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 22px;

    background: #FFFFFF;
    color: #2B211C;

    text-decoration: none !important;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    overflow: hidden;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.px-video-button span {
    font-size: 20px;
    line-height: 10px;
    transition: transform 0.3s ease;
}

.px-video-button:hover {
    background: #B88632;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.px-video-button:hover span {
    transform: translateX(5px);
}


/* =========================================
   PROGRESS BAR
   ========================================= */

.px-video-progress {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 20px;

    height: 1px;

    background: rgba(255,255,255,0.3);

    z-index: 7;
}

.px-video-progress span {
    display: block;
    width: 0%;
    height: 100%;

    background: #D2A94A;

    transition: width 0.1s linear;
}


/* =========================================
   PRODUCT DETAILS
   ========================================= */

.px-video-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 0;

    border-left: 1px solid #E5DED2;
    border-bottom: 1px solid #E5DED2;
}

.px-detail-item {
    min-height: 90px;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-right: 1px solid #E5DED2;

    background: rgba(255,255,255,0.45);
}

.px-detail-item span {
    font-family: Georgia, serif;
    font-size: 13px;
    color: #B88632;
}

.px-detail-item p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #4D443E;
}


/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes pxHeadingReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes pxVideoReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes pxBorderPulse {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.9;
    }

}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .px-video-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 60px !important;
    }

    .px-video-frame {
        height: 600px;
    }

    .px-video-info {
        left: 30px;
        right: 30px;
    }

    .px-video-progress {
        left: 30px;
        right: 30px;
    }

    .px-video-details {
        grid-template-columns: 1fr;
    }

    .px-detail-item {
        border-bottom: 1px solid #E5DED2;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .px-video-inner {
        padding: 0 15px 45px !important;
    }

    .px-video-heading {
        margin-bottom: 28px;
    }

    .px-video-heading h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .px-video-heading p {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .px-video-frame {
        height: 560px;
        min-height: 560px;
    }

    .px-video-border {
        inset: 9px;
    }

    .px-video-label {
        top: 25px;
        left: 25px;
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .px-video-control {
        width: 62px;
        height: 62px;
    }

    .px-video-info {
        left: 25px;
        right: 25px;
        bottom: 45px;

        display: block;
    }

    .px-video-product h3 {
        font-size: 30px;
        line-height: 1.08;
    }

    .px-video-button {
        margin-top: 22px;
        padding: 13px 18px;
    }

    .px-video-progress {
        left: 25px;
        right: 25px;
        bottom: 20px;
    }

    .px-video-details {
        margin-top: 0;
    }

    .px-detail-item {
        padding: 20px;
        min-height: 70px;
    }

}/* End custom CSS */