/* =========================================================
   PODDAR SALES
   PRODUCTS PAGE
   Clean & Consolidated Stylesheet
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --ps-bg: #0f0906;
    --ps-bg-soft: #160d09;

 --ps-card: #21140E;
--ps-card-hover: #2D1B12;

    --ps-brown: #2d1b12;
    --ps-brown-dark: #1b100b;

    --ps-gold: #c9a45c;
    --ps-gold-dark: #b88924;
    --ps-gold-light: #dfc17a;

    --ps-cream: #f5eee4;
    --ps-white: #ffffff;

    --ps-text: #f3eee8;
    --ps-dark-text: #3b2a20;
    --ps-muted: #aa9b90;
    --ps-muted-dark: #666666;

    --ps-border: rgba(201, 164, 92, 0.22);

    --ps-container: 1180px;

    --ps-transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ps-bg);
    color: var(--ps-text);
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.ps-container {
    width: min(92%, var(--ps-container));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.ps-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(45, 27, 18, 0.97);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ps-navbar {
    min-height: 78px;

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


/* =========================================================
   LOGO
========================================================= */

.ps-logo {
    display: inline-flex;
    flex-direction: column;

    flex-shrink: 0;

    line-height: 1;
    letter-spacing: 2px;
}

.ps-logo-image {
    display: block;

    width: 115px;
    height: auto;
    max-height: 58px;

    object-fit: contain;
}

.ps-logo-main {
    color: var(--ps-gold);

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
}

.ps-logo-sub {
    margin-top: 5px;

    color: #d5c1aa;

    font-size: 9px;
    letter-spacing: 5px;
    text-align: right;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.ps-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.ps-nav a {
    position: relative;

    color: #eee5dc;

    font-size: 14px;
    font-weight: 500;

    transition: color var(--ps-transition);
}

.ps-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--ps-gold);

    transition: width var(--ps-transition);
}

.ps-nav a:hover {
    color: var(--ps-gold-light);
}

.ps-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.ps-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: transparent;

    border: 1px solid rgba(201, 164, 92, 0.4);
    border-radius: 4px;

    cursor: pointer;
}

.ps-menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--ps-gold);

    transition: all var(--ps-transition);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ps-mobile-menu {
    display: none;

    position: fixed;

    top: 78px;
    left: 0;

    z-index: 999;

    width: 100%;

    padding: 20px 5%;

    flex-direction: column;

    background: #21140f;

    border-bottom: 1px solid var(--ps-border);
}

.ps-mobile-menu.active {
    display: flex;
}

.ps-mobile-menu a {
    padding: 15px 5px;

    color: var(--ps-cream);

    font-size: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: color var(--ps-transition);
}

.ps-mobile-menu a:hover {
    color: var(--ps-gold);
}


/* =========================================================
   HERO SECTION
========================================================= */

.ps-products-hero {
    position: relative;

    min-height: 350px;

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

    padding: 70px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(15, 9, 6, 0.88),
            rgba(15, 9, 6, 0.94)
        ),
        url("../images/hero.jpg")
        center / cover no-repeat;
}

.ps-products-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 164, 92, 0.12),
            transparent 58%
        );
}

.ps-products-hero-content {
    position: relative;
    z-index: 1;

    width: min(90%, 800px);

    margin: auto;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.ps-eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--ps-gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.ps-products-hero h1 {
    margin: 0 0 20px;

    color: var(--ps-white);

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 6vw, 68px);

    font-weight: 600;

    line-height: 1.1;
}

.ps-products-hero h1 span {
    color: var(--ps-gold);
}

.ps-products-hero p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--ps-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.ps-products-section {
    padding: 105px 0;
}

.ps-coffee-section {
    background: var(--ps-bg);
}

.ps-machines-section {
    background: var(--ps-bg-soft);

    border-top: 1px solid rgba(255, 255, 255, 0.04);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ps-section-heading {
    max-width: 720px;

    margin: 0 auto 58px;

    text-align: center;
}

.ps-section-heading h2 {
    margin-bottom: 17px;

    color: var(--ps-white);

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.2;
}

.ps-section-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--ps-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */


.ps-products-grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 28px;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.ps-product-card {


    display: flex;

    flex-direction: column;

    width: calc((100% - 56px) / 3);

    flex: 0 0 calc((100% - 56px) / 3);

    min-width: 0;

    background: var(--ps-card);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform var(--ps-transition),
        box-shadow var(--ps-transition),
        background var(--ps-transition);
}

.ps-product-card:hover {
    transform: translateY(-8px);

    background: var(--ps-card-hover);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.ps-product-image {
    width: 100%;
    height: 260px;

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

    padding: 20px;

    background: #f7f4f0;

    overflow: hidden;
}

.ps-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.4s ease;
}

.ps-product-card:hover .ps-product-image img {
    transform: scale(1.05);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.ps-product-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 25px;
}

.ps-product-category {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--ps-gold-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.ps-product-content h3 {
    margin: 0 0 12px;

    color: var(--ps-gold);

    font-family: "Playfair Display", serif;

    font-size: 24px;
    font-weight: 600;

    line-height: 1.3;

    transition: color var(--ps-transition);
}

.ps-product-content p {
    margin: 0 0 25px;

    color: var(--ps-muted-dark);

    font-size: 15px;

    line-height: 1.7;

    transition: color var(--ps-transition);
}


/* =========================================================
   PRODUCT CARD HOVER TEXT
========================================================= */

.ps-product-card:hover .ps-product-content h3 {
    color: var(--ps-gold-dark);
}

.ps-product-card:hover .ps-product-content p {
    color: #4d3c31;
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.ps-product-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    padding: 14px 18px;

    background: var(--ps-brown);

    color: var(--ps-white);

    border: 1px solid var(--ps-brown);
    border-radius: 20px;
border-color: var(--ps-gold-dark);
    text-decoration: none;

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background var(--ps-transition),
        color var(--ps-transition),
        border-color var(--ps-transition);
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.ps-view-more-btn {
    background: var(--ps-brown);

    color: var(--ps-white);

    border-color: var(--ps-gold-dark);
        margin-bottom: 10px;
}

.ps-view-more-btn:hover {
    background: var(--ps-gold-light);

    color: var(--ps-gold-dark);

    border-color: var(--ps-gold-dark);
}


/* =========================================================
   ENQUIRE NOW BUTTON
========================================================= */

.ps-product-button:not(.ps-view-more-btn):hover {
    background: var(--ps-gold-dark);

    color: var(--ps-brown);

    border-color: var(--ps-gold);
}


/* =========================================================
   BUTTON ARROW
========================================================= */

.ps-product-button span:last-child {
    color: inherit;

    font-size: 18px;

    transition: transform var(--ps-transition);
}

.ps-product-button:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   PRODUCT DETAILS MODAL
========================================================= */

.ps-product-modal {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.75);

    z-index: 9999;
}

.ps-product-modal.active {
    display: flex;
}


/* =========================================================
   MODAL BOX
========================================================= */

.ps-product-modal-box {
    position: relative;

    width: 100%;
    max-width: 900px;

    max-height: 90vh;

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow-y: auto;

    background: #efe6dc;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   MODAL CLOSE BUTTON
========================================================= */

.ps-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

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

    border: none;

    border-radius: 50%;

    background: var(--ps-brown);

    color: var(--ps-white);

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        background var(--ps-transition),
        color var(--ps-transition);
}

.ps-modal-close:hover {
    background: var(--ps-gold);

    color: var(--ps-brown);
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.ps-modal-image-container {
    min-height: 450px;

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

    padding: 40px;

    background: #f7f4f0;
}

.ps-modal-image-container img {
    display: block;

    width: 100%;
    max-width: 380px;

    height: 380px;

    object-fit: contain;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.ps-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px 45px 45px;
}

.ps-modal-category {
    display: block;

    margin-bottom: 12px;

    color: var(--ps-gold-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.ps-modal-content h2 {
    margin: 0 0 20px;

    color: var(--ps-gold);

    font-family: "Playfair Display", serif;

    font-size: 32px;
    font-weight: 600;

    line-height: 1.2;
}

.ps-modal-content p {
    margin: 0;

    color: var(--ps-muted-dark);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   MODAL ENQUIRE BUTTON
========================================================= */

.ps-modal-enquire-btn {
    width: 100%;

    margin-top: 35px;

    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--ps-brown);

    color: var(--ps-white);

    border: 1px solid var(--ps-brown);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background var(--ps-transition),
        color var(--ps-transition),
        border-color var(--ps-transition);
}

.ps-modal-enquire-btn:hover {
    background: var(--ps-gold);

    color: var(--ps-brown);

    border-color: var(--ps-gold);
}

.ps-modal-enquire-btn span:last-child {
    font-size: 20px;

    transition: transform var(--ps-transition);
}

.ps-modal-enquire-btn:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.ps-contact {
    padding: 105px 0;

    background: #1b100b;
}

.ps-contact-container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.ps-contact-info h2 {
    margin-bottom: 23px;

    color: var(--ps-white);

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 58px);

    font-weight: 600;

    line-height: 1.1;
}

.ps-contact-info h2 span {
    color: var(--ps-gold);
}

.ps-contact-info p {
    max-width: 480px;

    margin-bottom: 15px;

    color: var(--ps-muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.ps-contact-form-wrapper {
    padding: 40px;
    background: #2d1b12;
    border: 1px solid var(--ps-border);
    border-radius: 6px;
}

.ps-contact-form {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.ps-form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.ps-form-group label {
    color: #d7c7b7;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1px;
}

.ps-form-group input,
.ps-form-group textarea {
    width: 100%;

    padding: 14px 15px;

    outline: none;

    color: var(--ps-white);

    background: #140b08;

    border: 1px solid rgba(201, 164, 92, 0.20);

    border-radius: 3px;

    font-size: 13px;

    transition: border-color var(--ps-transition);
}

.ps-form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.ps-form-group input::placeholder,
.ps-form-group textarea::placeholder {
    color: #6f625b;
}

.ps-form-group input:focus,
.ps-form-group textarea:focus {
    border-color: var(--ps-gold);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ps-submit-button {
    width: 100%;

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

    gap: 10px;

    padding: 15px 20px;

    margin-top: 4px;

    border: none;

    background: var(--ps-gold);

    color: #17100b;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: background var(--ps-transition);
}

.ps-submit-button span:last-child {
    font-size: 17px;

    transition: transform var(--ps-transition);
}

.ps-submit-button:hover {
    background: var(--ps-gold-light);
}

.ps-submit-button:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.ps-footer {
    background: #090604;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-footer-content {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding: 65px 0;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.ps-footer-brand p {
    max-width: 360px;

    margin-top: 20px;

    color: var(--ps-muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.ps-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.ps-footer-column h4 {
    margin-bottom: 9px;

    color: var(--ps-cream);

    font-size: 12px;
}

.ps-footer-column a,
.ps-footer-column p {
    color: var(--ps-muted);

    font-size: 11px;

    transition: color var(--ps-transition);
}

.ps-footer-column a:hover {
    color: var(--ps-gold);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.ps-footer-bottom {
    padding: 19px 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-footer-bottom p {
    color: #625650;

    font-size: 10px;
}


/* =========================================================
   ANCHOR OFFSET
========================================================= */

#coffee-beans,
#coffee-machines,
#contact {
    scroll-margin-top: 90px;
}


/* =========================================================
   TABLET
   1000px AND BELOW
========================================================= */

@media (max-width: 1000px) {

       .ps-product-card {

        width: calc((100% - 28px) / 2);

        flex-basis: calc((100% - 28px) / 2);

    }

    /* Contact */
    .ps-contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .ps-contact-info {
        text-align: center;
    }

    .ps-contact-info p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Footer */
    .ps-footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 35px;
    }
}


/* =========================================================
   TABLET / MOBILE
   800px AND BELOW
========================================================= */

@media (max-width: 800px) {

    /* Desktop navigation hidden */
    .ps-nav {
        display: none;
    }

    /* Mobile menu button */
    .ps-menu-button {
        display: flex;
    }


    /* Hero */
    .ps-products-hero {
        min-height: 320px;

        padding: 60px 0;
    }


    /* Product Sections */
    .ps-products-section {
        padding: 80px 0;
    }


    /* Contact */
    .ps-contact {
        padding: 80px 0;
    }


    /* Section Heading */
    .ps-section-heading {
        margin-bottom: 45px;
    }


    /* Footer */
    .ps-footer-content {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .ps-footer-brand {
        grid-column: 1 / -1;
    }


    /* Modal */
    .ps-product-modal-box {
        max-width: 700px;

        grid-template-columns: 1fr;
    }

    .ps-modal-image-container {
        min-height: 300px;

        padding: 30px;
    }

    .ps-modal-image-container img {
        height: 280px;
    }

    .ps-modal-content {
        padding: 35px;
    }
}


/* =========================================================
   MOBILE
   600px AND BELOW
========================================================= */

@media (max-width: 600px) {

    /* Container */
    .ps-container {
        width: 90%;
    }


    /* Header */
    .ps-navbar {
        min-height: 70px;
    }


    /* Logo */
    .ps-logo-main {
        font-size: 21px;
    }

    .ps-logo-sub {
        font-size: 8px;

        letter-spacing: 4px;
    }


    /* Mobile Menu */
    .ps-mobile-menu {
        top: 70px;
    }


    /* Hero */
    .ps-products-hero {
        min-height: 300px;

        padding: 50px 0;
    }

    .ps-products-hero h1 {
        font-size: 39px;
    }

    .ps-products-hero p {
        font-size: 13px;
    }

    .ps-eyebrow {
        font-size: 9px;

        letter-spacing: 2.3px;
    }


    /* Product Sections */
    .ps-products-section {
        padding: 70px 0;
    }


    /* Product Grid */
    .ps-products-grid {

        gap: 24px;

    }

    .ps-product-card {

        width: 100%;

        flex-basis: 100%;

    }


    /* Section Heading */
    .ps-section-heading {
        margin-bottom: 38px;
    }

    .ps-section-heading h2 {
        font-size: 34px;
    }

    .ps-section-heading p {
        font-size: 13px;
    }


    /* Product Image */
    .ps-product-image {
        height: 270px;
    }


    /* Product Content */
    .ps-product-content {
        padding: 23px;
    }

    .ps-product-content h3 {
        font-size: 24px;
    }


    /* Product Button */
    .ps-product-button {
        padding: 13px 16px;

        font-size: 13px;
    }


    /* Contact */
    .ps-contact {
        padding: 70px 0;
    }

    .ps-contact-info h2 {
        font-size: 40px;
    }

    .ps-contact-info p {
        font-size: 13px;
    }


    /* Contact Form */
    .ps-contact-form-wrapper {
        padding: 25px 20px;
    }

    .ps-contact-form {
        gap: 17px;
    }


    /* Footer */
    .ps-footer-content {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }

    .ps-footer-brand {
        grid-column: auto;
    }


    /* Modal */
    .ps-product-modal {
        padding: 15px;
    }

    .ps-product-modal-box {
        max-height: 92vh;

        border-radius: 10px;
    }

    .ps-modal-image-container {
        min-height: 240px;

        padding: 25px;
    }

    .ps-modal-image-container img {
        height: 230px;
    }

    .ps-modal-content {
        padding: 30px 25px 25px;
    }

    .ps-modal-content h2 {
        font-size: 28px;
    }

    .ps-modal-content p {
        font-size: 14px;
    }

    .ps-modal-enquire-btn {
        margin-top: 25px;

        padding: 14px 17px;

        font-size: 13px;
    }

    .ps-modal-close {
        width: 38px;
        height: 38px;

        top: 10px;
        right: 10px;

        font-size: 24px;
    }
}


/* =========================================================
   SMALL MOBILE
   380px AND BELOW
========================================================= */

@media (max-width: 380px) {

    /* Hero */
    .ps-products-hero h1 {
        font-size: 34px;
    }

    .ps-products-hero p {
        font-size: 12px;
    }


    /* Product Image */
    .ps-product-image {
        height: 240px;
    }


    /* Product Content */
    .ps-product-content {
        padding: 20px;
    }

    .ps-product-content h3 {
        font-size: 23px;
    }

    .ps-product-content p {
        font-size: 13px;
    }


    /* Product Button */
    .ps-product-button {
        padding: 12px 14px;

        font-size: 12px;
    }


    /* Contact Form */
    .ps-contact-form-wrapper {
        padding: 20px 15px;
    }


    /* Modal */
    .ps-modal-content {
        padding: 25px 20px 20px;
    }

    .ps-modal-content h2 {
        font-size: 25px;
    }

    .ps-modal-content p {
        font-size: 13px;
    }
}


/* =========================================================
   CONTACT FORM VALIDATION
========================================================= */

.ps-form-group input.ps-input-error,
.ps-form-group textarea.ps-input-error {
    border-color: #c96b5c;
}

.ps-form-group input.ps-input-success,
.ps-form-group textarea.ps-input-success {
    border-color: #8fa878;
}

.ps-error {
    display: block;
    min-height: 16px;
    margin-top: 6px;

    color: #d98b7d;

    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}


/* =========================================================
   THANK YOU POPUP OVERLAY
========================================================= */

.ps-thankyou-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    padding: 20px;

    background: rgba(5, 3, 2, 0.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* OPEN */

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


/* =========================================================
   THANK YOU MODAL
========================================================= */

.ps-thankyou-modal {
    position: relative;

    width: 100%;
    max-width: 460px;

    padding: 50px 45px 45px;

    text-align: center;

    background: #1d110c;

    border: 1px solid rgba(201, 164, 92, 0.25);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.35s ease;
}


.ps-thankyou-overlay.active .ps-thankyou-modal {
    transform: translateY(0) scale(1);
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.ps-thankyou-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 25px;

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

    border: 1px solid rgba(201, 164, 92, 0.5);

    border-radius: 50%;

    color: #c9a45c;

    font-size: 27px;
    font-weight: 400;
}


/* =========================================================
   EYEBROW
========================================================= */

.ps-thankyou-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #c9a45c;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.ps-thankyou-modal h2 {
    margin: 0 0 15px;

    color: #f5eee4;

    font-family: "Playfair Display", serif;

    font-size: 34px;
    font-weight: 500;

    line-height: 1.2;
}


/* =========================================================
   MESSAGE
========================================================= */

.ps-thankyou-modal p {
    max-width: 340px;

    margin: 0 auto 28px;

    color: #aa9b90;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.ps-thankyou-close {
    position: absolute;

    top: 15px;
    right: 17px;

    width: 32px;
    height: 32px;

    padding: 0;

    border: none;
    background: transparent;

    color: #aa9b90;

    font-size: 25px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.ps-thankyou-close:hover {
    color: #c9a45c;

    transform: rotate(90deg);
}


/* =========================================================
   BACK TO WEBSITE BUTTON
========================================================= */

.ps-thankyou-button {
    min-width: 170px;

    padding: 13px 24px;

    border: 1px solid #c9a45c;

    background: #c9a45c;

    color: #0f0906;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.ps-thankyou-button:hover {
    background: transparent;

    color: #c9a45c;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ps-thankyou-modal {
        max-width: 400px;

        padding: 42px 25px 30px;
    }


    .ps-thankyou-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 20px;

        font-size: 24px;
    }


    .ps-thankyou-modal h2 {
        font-size: 29px;
    }


    .ps-thankyou-modal p {
        font-size: 11px;
    }

}


.ps-footer-bottom a {
    color: inherit;
    transition: color 0.3s ease;
}

.ps-footer-bottom a:hover {
    color: var(--ps-gold);
}