/*==============================================================
 RAEES IMPORT & EXPORT
 PRODUCTS PAGE
 Ultra Premium Final CSS

 File:
 /public_html/assets/css/sections/products.css
==============================================================*/


/*==============================================================
 01. PAGE
==============================================================*/

.products-page-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.products-page-main *,
.products-page-main *::before,
.products-page-main *::after {
    box-sizing: border-box;
}

.products-page-main img {
    display: block;
    max-width: 100%;
}

.products-page-main a {
    text-decoration: none;
}


/*==============================================================
 02. SHARED VARIABLES
==============================================================*/

.products-page-main {
    --products-black: #17140f;
    --products-dark: #211c15;
    --products-green: #063f31;
    --products-green-dark: #032d24;
    --products-green-soft: #eaf4ef;

    --products-gold: #b67b25;
    --products-gold-dark: #91601d;
    --products-gold-light: #e4bd78;

    --products-cream: #fbf7ef;
    --products-cream-dark: #f4ecdf;

    --products-white: #ffffff;
    --products-text: #5f584f;
    --products-muted: #837a6f;

    --products-border: rgba(25, 20, 14, 0.10);
    --products-gold-border: rgba(182, 123, 37, 0.28);

    --products-shadow:
        0 24px 70px rgba(28, 22, 14, 0.10);

    --products-shadow-hover:
        0 34px 90px rgba(28, 22, 14, 0.16);

    --products-radius: 28px;
}


/*==============================================================
 03. SHARED CONTAINER SAFETY
==============================================================*/

.products-page-main .container {
    position: relative;
    z-index: 2;
}


/*==============================================================
 04. PRODUCTS HERO
==============================================================*/

.products-hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 105px 0 100px;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #fffdf9 0%,
            #fbf6ed 48%,
            #f7efe1 100%
        );
}


/*==============================================================
 HERO BACKGROUND
==============================================================*/

.products-hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.products-hero-glow {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(2px);
}

.products-hero-glow-one {
    width: 560px;
    height: 560px;
    top: -230px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(212, 165, 86, 0.15),
            rgba(212, 165, 86, 0)
        );
}

.products-hero-glow-two {
    width: 650px;
    height: 650px;
    right: -220px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(7, 74, 56, 0.10),
            rgba(7, 74, 56, 0)
        );
}

.products-hero-grid {
    position: absolute;
    width: 520px;
    height: 520px;
    right: 5%;
    top: 14%;

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(182, 123, 37, 0.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(182, 123, 37, 0.10) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    mask-image:
        radial-gradient(
            circle at center,
            #000 15%,
            transparent 70%
        );
}


/*==============================================================
 05. HERO LAYOUT
==============================================================*/

.products-hero-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;
    gap: clamp(60px, 8vw, 125px);
}


/*==============================================================
 06. HERO CONTENT
==============================================================*/

.products-hero-content {
    position: relative;
    max-width: 690px;
}

.products-kicker,
.products-section-kicker,
.products-final-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;

    color: var(--products-gold);
}

.products-kicker::before,
.products-section-kicker::before,
.products-final-kicker::before {
    content: "";
    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--products-gold),
            var(--products-gold-light)
        );
}

.products-hero-content h1 {
    margin: 0;

    max-width: 680px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 5.3vw, 86px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.045em;

    color: var(--products-black);
}

.products-hero-content h1 span {
    display: block;
    margin-top: 10px;

    color: var(--products-gold);
}

.products-hero-description {
    max-width: 640px;

    margin: 32px 0 0;

    font-size: 16px;
    line-height: 1.9;

    color: var(--products-text);
}

.products-hero-description strong {
    color: var(--products-black);
    font-weight: 800;
}


/*==============================================================
 07. HERO BUTTONS
==============================================================*/

.products-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;

    margin-top: 36px;
}

.products-primary-btn,
.products-outline-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 25px;

    border-radius: 12px;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.products-primary-btn {
    border: 1px solid var(--products-black);
    background: var(--products-black);
    color: #ffffff;
    box-shadow:
        0 15px 32px rgba(23, 20, 15, 0.16);
}

.products-primary-btn:hover {
    transform: translateY(-3px);
    background: var(--products-green);
    border-color: var(--products-green);
    color: #ffffff;
    box-shadow:
        0 20px 40px rgba(6, 63, 49, 0.20);
}

.products-outline-btn {
    border: 1px solid rgba(23, 20, 15, 0.22);
    background: rgba(255, 255, 255, 0.58);
    color: var(--products-black);
    backdrop-filter: blur(10px);
}

.products-outline-btn:hover {
    transform: translateY(-3px);
    border-color: var(--products-gold);
    color: var(--products-gold-dark);
    background: #ffffff;
}


/*==============================================================
 08. HERO FEATURES
==============================================================*/

.products-hero-features {
    display: flex;
    align-items: stretch;

    margin-top: 48px;
    padding-top: 30px;

    border-top:
        1px solid rgba(23, 20, 15, 0.10);
}

.products-hero-feature {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding-right: 28px;
    margin-right: 28px;

    border-right:
        1px solid rgba(23, 20, 15, 0.10);
}

.products-hero-feature:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.products-hero-feature > span {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #fff9ed,
            #f2dfba
        );

    border:
        1px solid rgba(182, 123, 37, 0.22);

    color: var(--products-gold-dark);
}

.products-hero-feature > span i {
    font-size: 14px;
}

.products-hero-feature div {
    min-width: 0;
}

.products-hero-feature strong,
.products-hero-feature small {
    display: block;
}

.products-hero-feature strong {
    margin-bottom: 4px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    color: var(--products-black);
}

.products-hero-feature small {
    font-size: 11px;
    line-height: 1.4;
    color: var(--products-muted);
}


/*==============================================================
 09. HERO VISUAL
==============================================================*/

.products-hero-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
}

.products-hero-image-card {
    position: relative;

    width: 100%;

    padding: 12px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.80);

    border:
        1px solid rgba(182, 123, 37, 0.25);

    box-shadow:
        0 34px 80px rgba(32, 26, 18, 0.18);

    backdrop-filter: blur(14px);
}

.products-hero-image-card::before {
    content: "";

    position: absolute;
    top: -25px;
    right: -25px;

    width: 110px;
    height: 110px;

    border-top:
        1px solid rgba(182, 123, 37, 0.55);

    border-right:
        1px solid rgba(182, 123, 37, 0.55);

    border-radius: 0 25px 0 0;

    pointer-events: none;
}

.products-hero-image-card::after {
    content: "";

    position: absolute;
    left: -22px;
    bottom: -22px;

    width: 95px;
    height: 95px;

    border-left:
        1px solid rgba(182, 123, 37, 0.40);

    border-bottom:
        1px solid rgba(182, 123, 37, 0.40);

    border-radius: 0 0 0 25px;

    pointer-events: none;
}

.products-hero-image-wrap {
    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius: 22px;

    background: #ede7dc;
}

.products-hero-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(8, 32, 25, 0.22) 100%
        );

    pointer-events: none;
}

.products-hero-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.products-hero-image-card:hover
.products-hero-image-wrap img {
    transform: scale(1.045);
}


/*==============================================================
 HERO FLOATING CARD
==============================================================*/

.products-hero-floating-card {
    position: absolute;
    left: -42px;
    bottom: 95px;
    z-index: 4;

    min-width: 190px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    border-radius: 16px;

    background:
        rgba(255, 253, 248, 0.95);

    border:
        1px solid rgba(182, 123, 37, 0.16);

    box-shadow:
        0 18px 44px rgba(24, 20, 15, 0.16);

    backdrop-filter: blur(16px);
}

.products-floating-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--products-green);
    color: #ffffff;
}

.products-hero-floating-card small,
.products-hero-floating-card strong {
    display: block;
}

.products-hero-floating-card small {
    margin-bottom: 4px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--products-muted);
}

.products-hero-floating-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    color: var(--products-black);
}


/*==============================================================
 HERO BADGE
==============================================================*/

.products-hero-badge {
    position: absolute;
    right: -22px;
    top: 55px;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--products-green),
            #0a523f
        );

    box-shadow:
        0 18px 42px rgba(6, 63, 49, 0.24);

    color: #ffffff;
}

.products-hero-badge > i {
    width: 35px;
    height: 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: var(--products-gold-light);
}

.products-hero-badge small,
.products-hero-badge strong {
    display: block;
}

.products-hero-badge small {
    margin-bottom: 2px;

    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.62);
}

.products-hero-badge strong {
    font-size: 11px;
    color: #ffffff;
}


/*==============================================================
 10. PRODUCTS INTRO
==============================================================*/

.products-intro-section {
    position: relative;

    padding: 105px 0 55px;

    background: #ffffff;
}

.products-section-heading {
    max-width: 760px;
    margin: 0 auto;

    text-align: center;
}

.products-section-heading .products-section-kicker {
    justify-content: center;
}

.products-section-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: var(--products-black);
}

.products-section-heading h2 span {
    color: var(--products-gold);
}

.products-section-heading > p {
    max-width: 680px;

    margin: 22px auto 0;

    font-size: 15px;
    line-height: 1.85;

    color: var(--products-text);
}


/*==============================================================
 11. PRODUCT SHOWCASE
==============================================================*/

.product-showcase-section {
    position: relative;

    padding: 55px 0;

    background: #ffffff;
}

.product-showcase-section.product-showcase-alt {
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fdfaf5 50%,
            #fff 100%
        );
}

.product-showcase-card {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: stretch;

    max-width: 1180px;
    min-height: 510px;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid var(--products-border);

    border-radius:
        var(--products-radius);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fdfbf7
        );

    box-shadow:
        var(--products-shadow);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.product-showcase-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(182, 123, 37, 0.22);

    box-shadow:
        var(--products-shadow-hover);
}


/*==============================================================
 12. PRODUCT MEDIA
==============================================================*/

.product-showcase-media {
    position: relative;
    min-height: 510px;

    overflow: hidden;

    background: #eee8dd;
}

.product-image-wrap {
    position: absolute;
    inset: 0;
}

.product-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 8, 0.02) 45%,
            rgba(8, 24, 18, 0.35) 100%
        );

    pointer-events: none;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.product-showcase-card:hover
.product-image-wrap img {
    transform: scale(1.05);
}

.product-number {
    position: absolute;
    z-index: 3;

    top: 24px;
    left: 24px;

    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.92);

    border:
        1px solid rgba(255, 255, 255, 0.50);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;

    color: var(--products-gold-dark);

    backdrop-filter: blur(10px);
}

.product-image-category {
    position: absolute;
    z-index: 3;

    left: 24px;
    bottom: 24px;

    display: inline-flex;
    align-items: center;

    min-height: 36px;

    padding: 0 16px;

    border-radius: 999px;

    background:
        rgba(7, 57, 44, 0.90);

    border:
        1px solid rgba(255, 255, 255, 0.14);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    color: #ffffff;

    backdrop-filter: blur(10px);
}


/*==============================================================
 13. PRODUCT CONTENT
==============================================================*/

.product-showcase-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(45px, 5vw, 75px);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fcf8f1
        );
}

.product-showcase-content::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid rgba(182, 123, 37, 0.12);

    border-radius: 50%;

    box-shadow:
        0 0 0 30px rgba(182, 123, 37, 0.03);
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: var(--products-gold-dark);
}

.product-category > span {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #fff6e7,
            #f2dfbb
        );

    border:
        1px solid rgba(182, 123, 37, 0.20);

    color: var(--products-gold-dark);
}

.product-showcase-content h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: var(--products-black);
}

.product-showcase-content > p {
    max-width: 530px;

    margin: 22px 0 0;

    font-size: 15px;
    line-height: 1.85;

    color: var(--products-text);
}


/*==============================================================
 14. PRODUCT META
==============================================================*/

.product-meta-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 30px;
}

.product-meta-item {
    padding: 17px 18px;

    border:
        1px solid rgba(23, 20, 15, 0.08);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.72);
}

.product-meta-item small,
.product-meta-item strong {
    display: block;
}

.product-meta-item small {
    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--products-muted);
}

.product-meta-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.35;

    color: var(--products-black);
}


/*==============================================================
 15. PRODUCT BUTTONS
==============================================================*/

.product-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.product-enquiry-btn,
.product-whatsapp-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 21px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.product-enquiry-btn {
    background: var(--products-black);
    border: 1px solid var(--products-black);
    color: #ffffff;
}

.product-enquiry-btn:hover {
    transform: translateY(-3px);

    background: var(--products-gold);
    border-color: var(--products-gold);

    color: #ffffff;

    box-shadow:
        0 15px 30px rgba(182, 123, 37, 0.20);
}

.product-whatsapp-btn {
    background: transparent;

    border:
        1px solid rgba(6, 63, 49, 0.28);

    color: var(--products-green);
}

.product-whatsapp-btn i {
    font-size: 16px;
}

.product-whatsapp-btn:hover {
    transform: translateY(-3px);

    background: var(--products-green);
    border-color: var(--products-green);

    color: #ffffff;
}


/*==============================================================
 16. ALTERNATING PRODUCTS
==============================================================*/

.product-showcase-alt
.product-showcase-media {
    order: 2;
}

.product-showcase-alt
.product-showcase-content {
    order: 1;
}


/*==============================================================
 17. PRODUCT CATEGORIES
==============================================================*/

.products-categories-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #fbf7ef 0%,
            #fffdf9 100%
        );
}

.products-category-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-top: 55px;
}

.products-category-card {
    position: relative;

    min-height: 275px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid rgba(23, 20, 15, 0.09);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.82);

    box-shadow:
        0 18px 45px rgba(30, 24, 16, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.products-category-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -55px;
    top: -55px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(182, 123, 37, 0.10),
            transparent 70%
        );
}

.products-category-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(182, 123, 37, 0.28);

    box-shadow:
        0 28px 60px rgba(30, 24, 16, 0.11);
}

.products-category-icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--products-green),
            #075440
        );

    box-shadow:
        0 12px 28px rgba(6, 63, 49, 0.16);

    color: var(--products-gold-light);
}

.products-category-card > small {
    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--products-gold);
}

.products-category-card h3 {
    margin: 0;

    min-height: 52px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 500;

    color: var(--products-black);
}

.products-category-card p {
    margin: 12px 0 20px;

    font-size: 13px;
    line-height: 1.6;

    color: var(--products-text);
}

.products-category-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    width: fit-content;

    margin-top: auto;

    font-size: 11px;
    font-weight: 800;

    color: var(--products-gold-dark);

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.products-category-card > a:hover {
    gap: 13px;
    color: var(--products-green);
}


/*==============================================================
 18. WHY CHOOSE PRODUCTS
==============================================================*/

.products-why-section {
    padding: 105px 0;

    background: #ffffff;
}

.products-why-card {
    position: relative;

    max-width: 1220px;

    margin: 0 auto;

    padding: 58px;

    overflow: hidden;

    border:
        1px solid rgba(182, 123, 37, 0.15);

    border-radius: 26px;

    background:
        linear-gradient(
            120deg,
            #fffaf1 0%,
            #ffffff 50%,
            #f7f1e7 100%
        );

    box-shadow:
        0 24px 65px rgba(30, 24, 16, 0.08);
}

.products-why-card::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    border:
        1px solid rgba(182, 123, 37, 0.12);

    box-shadow:
        0 0 0 50px rgba(182, 123, 37, 0.025);
}

.products-why-heading {
    max-width: 650px;
}

.products-why-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.8vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: var(--products-black);
}

.products-why-heading h2 span {
    color: var(--products-gold);
}

.products-why-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;

    margin-top: 50px;
}

.products-why-item {
    position: relative;

    display: flex;
    gap: 15px;

    padding: 10px 28px;

    border-right:
        1px solid rgba(23, 20, 15, 0.09);
}

.products-why-item:first-child {
    padding-left: 0;
}

.products-why-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.products-why-item > span {
    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--products-green);
    color: var(--products-gold-light);
}

.products-why-item strong {
    display: block;

    margin-bottom: 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.3;

    color: var(--products-black);
}

.products-why-item p {
    margin: 0;

    font-size: 11px;
    line-height: 1.7;

    color: var(--products-text);
}


/*==============================================================
 19. FINAL CTA
==============================================================*/

.products-final-cta {
    position: relative;

    padding: 45px 0 120px;

    background: #ffffff;
}

.products-final-card {
    position: relative;

    max-width: 1180px;
    min-height: 360px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding:
        65px clamp(40px, 6vw, 80px);

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            120deg,
            #073f31 0%,
            #043326 55%,
            #062b22 100%
        );

    box-shadow:
        0 30px 75px rgba(5, 50, 38, 0.20);
}

.products-final-card::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -160px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(218, 173, 91, 0.16);

    box-shadow:
        0 0 0 60px rgba(218, 173, 91, 0.025);
}

.products-final-card::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: 40px;
    bottom: -250px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.07);
}

.products-final-content {
    position: relative;
    z-index: 3;

    max-width: 720px;
}

.products-final-kicker {
    color: var(--products-gold-light);
}

.products-final-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: #ffffff;
}

.products-final-content h2 span {
    color: var(--products-gold-light);
}

.products-final-content > p {
    max-width: 650px;

    margin: 22px 0 0;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}


/*==============================================================
 FINAL CTA BUTTONS
==============================================================*/

.products-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 31px;
}

.products-final-primary,
.products-final-whatsapp {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 23px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.products-final-primary {
    background:
        linear-gradient(
            135deg,
            #e4b55c,
            #c88a2c
        );

    border:
        1px solid rgba(255, 255, 255, 0.10);

    color: #18130c;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.15);
}

.products-final-primary:hover {
    transform: translateY(-3px);

    background: #ffffff;
    color: var(--products-green);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.20);
}

.products-final-whatsapp {
    background: rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;
}

.products-final-whatsapp i {
    color: #4ade80;
    font-size: 17px;
}

.products-final-whatsapp:hover {
    transform: translateY(-3px);

    background: #1fcf67;
    border-color: #1fcf67;

    color: #ffffff;
}

.products-final-whatsapp:hover i {
    color: #ffffff;
}


/*==============================================================
 FINAL DECORATION
==============================================================*/

.products-final-decoration {
    position: absolute;
    z-index: 1;

    right: 75px;
    top: 50%;

    transform: translateY(-50%);

    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(226, 181, 94, 0.12);

    color:
        rgba(226, 181, 94, 0.12);

    font-size: 100px;
}

.products-final-decoration::before {
    content: "";

    position: absolute;

    inset: 22px;

    border:
        1px solid rgba(226, 181, 94, 0.08);

    border-radius: 50%;
}


/*==============================================================
 20. DESKTOP HOVER DETAILS
==============================================================*/

@media (hover: hover) {

    .product-showcase-card:hover
    .product-number {
        background: var(--products-gold);
        color: #ffffff;
    }

    .products-category-card:hover
    .products-category-icon {
        transform: rotate(-4deg) scale(1.04);
    }

    .products-category-icon {
        transition:
            transform 0.35s ease;
    }

}


/*==============================================================
 21. RESPONSIVE - 1200
==============================================================*/

@media (max-width: 1199px) {

    .products-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .products-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.85fr);

        gap: 65px;
    }

    .products-hero-content h1 {
        font-size: clamp(52px, 5.5vw, 72px);
    }

    .products-hero-image-wrap {
        height: 520px;
    }

    .products-hero-floating-card {
        left: -25px;
    }

    .products-category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .products-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 0;
    }

    .products-why-item:nth-child(2) {
        border-right: 0;
    }

    .products-why-item:nth-child(3) {
        padding-left: 0;
    }

}


/*==============================================================
 22. RESPONSIVE - 991
==============================================================*/

@media (max-width: 991px) {

    .products-hero {
        padding: 80px 0 95px;
    }

    .products-hero-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .products-hero-content {
        max-width: 760px;
    }

    .products-hero-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .products-hero-image-wrap {
        height: 620px;
    }

    .products-hero-floating-card {
        left: 20px;
        bottom: 35px;
    }

    .products-hero-badge {
        right: 20px;
    }


    /* PRODUCT CARDS */

    .product-showcase-card {
        grid-template-columns: 1fr;
    }

    .product-showcase-media {
        min-height: 520px;
    }

    .product-showcase-content {
        padding: 55px;
    }

    .product-showcase-alt
    .product-showcase-media {
        order: 1;
    }

    .product-showcase-alt
    .product-showcase-content {
        order: 2;
    }


    /* WHY */

    .products-why-card {
        padding: 50px 40px;
    }


    /* CTA */

    .products-final-decoration {
        right: -50px;
        opacity: 0.5;
    }

}


/*==============================================================
 23. RESPONSIVE - 767
==============================================================*/

@media (max-width: 767px) {

    .products-hero {
        padding: 65px 0 75px;
    }

    .products-hero-content h1 {
        font-size: clamp(46px, 12vw, 62px);
    }

    .products-hero-description {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.75;
    }

    .products-hero-actions {
        align-items: stretch;
    }

    .products-primary-btn,
    .products-outline-btn {
        min-height: 52px;
    }


    /* HERO FEATURES */

    .products-hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;

        margin-top: 38px;
        padding-top: 20px;
    }

    .products-hero-feature {
        padding: 13px 0;
        margin: 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(23, 20, 15, 0.08);
    }

    .products-hero-feature:last-child {
        border-bottom: 0;
    }


    /* HERO IMAGE */

    .products-hero-visual {
        width: calc(100% - 10px);
    }

    .products-hero-image-card {
        padding: 8px;
        border-radius: 24px;
    }

    .products-hero-image-wrap {
        height: 480px;
        border-radius: 18px;
    }

    .products-hero-image-card::before,
    .products-hero-image-card::after {
        display: none;
    }

    .products-hero-floating-card {
        left: 18px;
        bottom: 18px;

        min-width: 165px;

        padding: 12px 14px;
    }

    .products-floating-icon {
        width: 36px;
        height: 36px;
    }

    .products-hero-badge {
        top: 18px;
        right: 18px;
    }


    /* INTRO */

    .products-intro-section {
        padding: 80px 0 35px;
    }

    .products-section-heading h2 {
        font-size: clamp(37px, 10vw, 50px);
    }


    /* PRODUCTS */

    .product-showcase-section {
        padding: 35px 0;
    }

    .product-showcase-card {
        border-radius: 22px;
    }

    .product-showcase-media {
        min-height: 410px;
    }

    .product-showcase-content {
        padding: 38px 28px 40px;
    }

    .product-showcase-content h3 {
        font-size: 40px;
    }

    .product-meta-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-enquiry-btn,
    .product-whatsapp-btn {
        width: 100%;
    }


    /* CATEGORIES */

    .products-categories-section {
        padding: 90px 0;
    }

    .products-category-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .products-category-card {
        min-height: 240px;
    }


    /* WHY */

    .products-why-section {
        padding: 80px 0;
    }

    .products-why-card {
        padding: 38px 26px;
        border-radius: 22px;
    }

    .products-why-grid {
        grid-template-columns: 1fr;
        gap: 0;

        margin-top: 35px;
    }

    .products-why-item,
    .products-why-item:first-child,
    .products-why-item:nth-child(3) {
        padding: 20px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(23, 20, 15, 0.08);
    }

    .products-why-item:last-child {
        border-bottom: 0;
    }


    /* FINAL CTA */

    .products-final-cta {
        padding: 30px 0 90px;
    }

    .products-final-card {
        min-height: auto;

        padding: 48px 28px;

        border-radius: 22px;
    }

    .products-final-content h2 {
        font-size: clamp(38px, 10vw, 50px);
    }

    .products-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .products-final-primary,
    .products-final-whatsapp {
        width: 100%;
    }

    .products-final-decoration {
        display: none;
    }

}


/*==============================================================
 24. RESPONSIVE - 575
==============================================================*/

@media (max-width: 575px) {

    .products-hero {
        padding-top: 55px;
    }

    .products-kicker,
    .products-section-kicker,
    .products-final-kicker {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .products-kicker::before,
    .products-section-kicker::before,
    .products-final-kicker::before {
        width: 28px;
    }

    .products-hero-content h1 {
        font-size: 44px;
        line-height: 1;
    }

    .products-hero-actions {
        flex-direction: column;
    }

    .products-primary-btn,
    .products-outline-btn {
        width: 100%;
    }

    .products-hero-image-wrap {
        height: 400px;
    }

    .products-hero-badge {
        max-width: 165px;
    }

    .products-hero-badge strong {
        font-size: 9px;
    }

    .products-hero-floating-card {
        max-width: calc(100% - 36px);
    }


    /* PRODUCTS */

    .product-showcase-media {
        min-height: 340px;
    }

    .product-number {
        top: 16px;
        left: 16px;

        width: 43px;
        height: 43px;
    }

    .product-image-category {
        left: 16px;
        bottom: 16px;
    }

    .product-showcase-content {
        padding: 32px 20px 34px;
    }

    .product-showcase-content h3 {
        font-size: 36px;
    }

    .product-showcase-content > p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* CATEGORY */

    .products-category-card {
        padding: 25px;
    }


    /* WHY */

    .products-why-heading h2 {
        font-size: 37px;
    }


    /* CTA */

    .products-final-card {
        padding: 42px 22px;
    }

    .products-final-content h2 {
        font-size: 38px;
    }

}


/*==============================================================
 25. VERY SMALL DEVICES
==============================================================*/

@media (max-width: 380px) {

    .products-hero-content h1 {
        font-size: 39px;
    }

    .products-hero-image-wrap {
        height: 350px;
    }

    .products-hero-badge {
        display: none;
    }

    .products-hero-floating-card {
        left: 12px;
        right: 12px;

        width: auto;
        max-width: none;
    }

    .product-showcase-media {
        min-height: 300px;
    }

    .product-showcase-content h3 {
        font-size: 32px;
    }

}


/*==============================================================
 26. ACCESSIBILITY
==============================================================*/

.products-page-main a:focus-visible,
.products-page-main button:focus-visible {
    outline:
        3px solid rgba(182, 123, 37, 0.45);

    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    .products-page-main *,
    .products-page-main *::before,
    .products-page-main *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}