/* =========================================================
   HEM CERAMICS
   Main Stylesheet
========================================================= */
/* =========================================================
   1. ROOT VARIABLES
========================================================= */
:root {
    --hem-blue: #22a5d3;
    --hem-dark: #2a2a28;
    --hem-white: #ffffff;
    --hem-light: #f7f9fa;
    --hem-border: #e7e7e7;
    --hem-muted: #6c7074;
    --font-primary: "Manrope", sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1320px;
}
/* =========================================================
   2. RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--hem-dark);
    background-color: var(--hem-white);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
textarea,
select {
    font-family: inherit;
}
/* =========================================================
   3. COMMON
========================================================= */
.container {
    max-width: var(--container-width);
}
::selection {
    background-color: var(--hem-blue);
    color: var(--hem-white);
}
/* =========================================================
   4. HEADER
========================================================= */
.site-header {
    position: relative;
    z-index: 1000;
    background-color: var(--hem-white);
}
/* =========================================================
   5. TOPBAR
========================================================= */
.header-topbar {
    background-color: var(--hem-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.header-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar-item,
.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar-link {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}
.topbar-link:hover {
    color: var(--hem-blue);
}
.topbar-item i,
.topbar-link i {
    color: var(--hem-blue);
    font-size: 13px;
}
.topbar-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.18);
}
/* =========================================================
   6. MAIN NAVBAR
========================================================= */
/*.main-navbar {
    min-height: 88px;
    padding: 10px 0;
    background-color: var(--hem-white);
    border-bottom: 1px solid rgba(42, 42, 40, 0.08);
    transition: var(--transition);
}*/
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 88px;
    padding: 10px 0;
    background-color: var(--hem-white);
    border-bottom: 1px solid rgba(42, 42, 40, 0.08);
    transition:
    min-height 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
/* =========================================================
   STICKY NAVBAR SCROLL EFFECT
========================================================= */
.main-navbar.is-scrolled {
    min-height: 72px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 8px 30px rgba(42, 42, 40, 0.12);
}
.main-navbar.is-scrolled .site-logo {
    height: 56px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
}
.site-logo {
    display: block;
    width: auto;
    height: 65px;
    object-fit: contain;
}
/* =========================================================
   7. NAVIGATION
========================================================= */
.main-navbar .navbar-nav {
    gap: 7px;
}
.main-navbar .nav-link {
    position: relative;
    padding: 12px 15px !important;
    color: var(--hem-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--hem-blue);
}
/* Active / Hover underline */
.main-navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 3px;
    width: 0;
    height: 2px;
    background-color: var(--hem-blue);
    transition: var(--transition);
}
.main-navbar .nav-link:hover::before,
.main-navbar .nav-link.active::before {
    width: calc(100% - 30px);
}
/* =========================================================
   8. PRODUCTS DROPDOWN
========================================================= */
.main-navbar .dropdown-menu {
    min-width: 250px;
    margin-top: 15px;
    padding: 9px;
    border: 1px solid rgba(42, 42, 40, 0.08);
    border-radius: 8px;
    background-color: var(--hem-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.main-navbar .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 13px;
    border-radius: 5px;
    color: var(--hem-dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.main-navbar .dropdown-item i {
    color: var(--hem-blue);
    font-size: 13px;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}
.main-navbar .dropdown-item:hover {
    color: var(--hem-white);
    background-color: var(--hem-blue);
}
.main-navbar .dropdown-item:hover i {
    color: var(--hem-white);
    opacity: 1;
    transform: translateX(0);
}
/*.site-header.is-scrolled .main-navbar {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}*/
/* =========================================================
   STICKY HEADER ON SCROLL
========================================================= */
.site-header {
    position: relative;
    z-index: 1000;
    background-color: var(--hem-white);
}
/* Scrolled State */
.site-header.is-scrolled .main-navbar {
    min-height: 72px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 8px 30px rgba(42, 42, 40, 0.10);
}
/* Slightly smaller logo after scroll */
.site-header.is-scrolled .site-logo {
    height: 56px;
}
/* Smooth transition */
.main-navbar {
    transition:
    min-height 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.site-logo {
    transition:
    height 0.3s ease,
    transform 0.3s ease;
}
/* =========================================================
   9. HEADER CTA
========================================================= */
.nav-cta-item {
    margin-left: 13px;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 4px;
    background-color: var(--hem-blue);
    color: var(--hem-white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: var(--transition);
}
.header-cta i {
    font-size: 13px;
    transition: var(--transition);
}
.header-cta:hover {
    background-color: var(--hem-dark);
    color: var(--hem-white);
}
.header-cta:hover i {
    transform: translate(2px, -2px);
}
/* =========================================================
   10. MOBILE TOGGLE
========================================================= */
.navbar-toggler {
    width: 44px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--hem-border) !important;
    border-radius: 4px;
    box-shadow: none !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(34, 165, 211, 0.15) !important;
}
.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}
/* =========================================================
   11. TEMPORARY HOME SECTION
========================================================= */
.temp-home-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}
.temp-home-label {
    margin-bottom: 15px;
    color: var(--hem-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.temp-home-title {
    margin-bottom: 20px;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.08;
}
.temp-home-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--hem-muted);
}
/* =========================================================
   12. FOOTER
========================================================= */
.site-footer {
    padding-top: 80px;
    background-color: var(--hem-dark);
    color: rgba(255, 255, 255, 0.75);
}
.footer-logo {
    display: inline-block;
}

.footer-logo img {
    display: block;
    width: 180px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 25px;
}
/*.footer-logo img {
    width: auto;
    height: 58px;
    margin-bottom: 25px;
}*/
.footer-description {
    max-width: 390px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}
.footer-title {
    margin-bottom: 22px;
    color: var(--hem-white);
    font-size: 16px;
    font-weight: 700;
}
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links li {
    margin-bottom: 11px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--hem-blue);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
}
.footer-contact-item i {
    /*flex-shrink: 0;
    margin-top: 3px;
    color: var(--hem-blue);
    font-size: 17px;*/
    flex-shrink: 0;
    margin-top: 0px;
    color: var(--hem-blue);
    font-size: 18px;
    border: 1.5px dashed;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}
.footer-contact-item a:hover {
    color: var(--hem-blue);
}
/* =========================================================
   13. SOCIAL ICONS
========================================================= */
.footer-social {
    display: flex;
    gap: 9px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--hem-white);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover {
    border-color: var(--hem-blue);
    background-color: var(--hem-blue);
    color: var(--hem-white);
    transform: translateY(-3px);
}
/* =========================================================
   14. FOOTER BOTTOM
========================================================= */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
}
/* =========================================================
   HERO VIDEO SECTION
========================================================= */
.hero-section {
    position: relative;
    min-height: calc(100vh - 126px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--hem-dark);
    color: var(--hem-white);
}
/* =========================================================
   HERO VIDEO
========================================================= */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* =========================================================
   HERO OVERLAY
========================================================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
    linear-gradient(
        90deg,
        rgba(15, 15, 14, 0.82) 0%,
        rgba(15, 15, 14, 0.62) 42%,
        rgba(15, 15, 14, 0.25) 100%
    );
}
/* Bottom darkening */
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 35%;
    background:
    linear-gradient(
        to top,
        rgba(15, 15, 14, 0.65),
        transparent
    );
}
/* =========================================================
   HERO CONTAINER
========================================================= */
.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 140px;
}
.hero-content {
    max-width: 850px;
}
/* =========================================================
   HERO EYEBROW
========================================================= */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--hem-white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}
.hero-eyebrow-line {
    width: 38px;
    height: 2px;
    background-color: var(--hem-blue);
}
/* =========================================================
   HERO TITLE
========================================================= */
.hero-title {
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -3px;
}
.hero-title span {
    color: rgba(255, 255, 255, 0.72);
}
/* =========================================================
   HERO DESCRIPTION
========================================================= */
.hero-description {
    max-width: 650px;
    margin-top: 30px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}
/* =========================================================
   HERO ACTIONS
========================================================= */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}
.hero-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.hero-btn i {
    font-size: 13px;
    transition: var(--transition);
}
.hero-btn:hover i {
    transform: translate(3px, -3px);
}
/* Primary */
.hero-btn-primary {
    background-color: var(--hem-blue);
    border-color: var(--hem-blue);
    color: var(--hem-white);
}
.hero-btn-primary:hover {
    background-color: var(--hem-white);
    border-color: var(--hem-white);
    color: var(--hem-dark);
}
/* Outline */
.hero-btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--hem-white);
}
.hero-btn-outline:hover {
    background-color: var(--hem-white);
    border-color: var(--hem-white);
    color: var(--hem-dark);
}
/* =========================================================
   HERO BOTTOM
========================================================= */
.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.hero-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-bottom-item {
    display: flex;
    align-items: center;
    gap: 13px;
}
.hero-bottom-number {
    color: var(--hem-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero-bottom-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.hero-scroll:hover {
    color: var(--hem-white);
}
.hero-scroll i {
    color: var(--hem-blue);
    font-size: 15px;
    animation: heroScrollArrow 1.8s infinite;
    transition: var(--transition);
}
.hero-scroll:hover i {
    transform: translateY(4px);
}
.hero-scroll i {
    color: var(--hem-blue);
    font-size: 15px;
    animation: heroScrollArrow 1.8s infinite;
}
@keyframes heroScrollArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}
/* =========================================================
   ABOUT HEM SECTION
========================================================= */
.about-section {
    position: relative;
    padding: 125px 0;
    background-color: var(--hem-white);
    overflow: hidden;
}
/* =========================================================
   IMAGE
========================================================= */
.about-image-wrapper {
    position: relative;
    padding-right: 35px;
    padding-bottom: 35px;
}
.about-image-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 570px;
    overflow: hidden;
    background-color: var(--hem-light);
}
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.04);
}
/* =========================================================
   IMAGE ACCENT
========================================================= */
.about-image-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    background-color: var(--hem-blue);
    opacity: 0.12;
    z-index: 1;
}
/* =========================================================
   EXPERIENCE BADGE
========================================================= */
.about-experience {
    position: absolute;
    left: -25px;
    bottom: 75px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 175px;
    padding: 20px 22px;
    background-color: var(--hem-dark);
    color: var(--hem-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.about-experience-number {
    color: var(--hem-blue);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.about-experience-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* =========================================================
   ABOUT CONTENT
========================================================= */
.about-content {
    padding-left: 30px;
}
/* =========================================================
   SECTION EYEBROW
========================================================= */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--hem-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-eyebrow span {
    width: 30px;
    height: 2px;
    background-color: var(--hem-blue);
}
/* =========================================================
   SECTION TITLE
========================================================= */
.section-title {
    max-width: 650px;
    margin: 0;
    color: var(--hem-dark);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}
.section-title span {
    color: var(--hem-blue);
}
/* =========================================================
   ABOUT TEXT
========================================================= */
.about-lead {
    max-width: 600px;
    margin-top: 27px;
    margin-bottom: 15px;
    color: var(--hem-dark);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}
.about-text {
    max-width: 600px;
    margin-bottom: 0;
    color: var(--hem-muted);
    font-size: 15px;
    line-height: 1.85;
}
/* =========================================================
   HIGHLIGHTS
========================================================= */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--hem-border);
}
.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.about-highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(34, 165, 211, 0.10);
    color: var(--hem-blue);
    font-size: 17px;
}
.about-highlight h5 {
    margin: 0 0 4px;
    color: var(--hem-dark);
    font-size: 13px;
    font-weight: 800;
}
.about-highlight p {
    margin: 0;
    color: var(--hem-muted);
    font-size: 14px;
    line-height: 1.6;
}
/* =========================================================
   ABOUT BUTTON
========================================================= */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--hem-dark);
    color: var(--hem-dark);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.about-btn i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.about-btn:hover {
    color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.about-btn:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   PRODUCT COLLECTIONS
========================================================= */
.collections-section {
    position: relative;
    padding: 125px 0;
    background-color: var(--hem-light);
    overflow: hidden;
}
/* =========================================================
   COLLECTION HEADER
========================================================= */
.collections-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}
.collections-header .section-title {
    max-width: 600px;
}
.collections-header-text {
    max-width: 410px;
    padding-bottom: 5px;
}
.collections-header-text p {
    margin: 0;
    color: var(--hem-muted);
    font-size: 15px;
    line-height: 1.8;
}
/* =========================================================
   VIEW ALL
========================================================= */
.collections-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--hem-dark);
    color: var(--hem-dark);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.collections-view-all i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.collections-view-all:hover {
    color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.collections-view-all:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   COLLECTION CARD
========================================================= */
.collection-card {
    position: relative;
    display: block;
    height: 460px;
    overflow: hidden;
    background-color: var(--hem-dark);
    color: var(--hem-white);
}
.collection-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.collection-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.collection-card:hover .collection-image img {
    transform: scale(1.06);
}
/* =========================================================
   OVERLAY
========================================================= */
.collection-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        to top,
        rgba(15, 15, 14, 0.88) 0%,
        rgba(15, 15, 14, 0.40) 48%,
        rgba(15, 15, 14, 0.05) 100%
    );
    transition: var(--transition);
}
.collection-card:hover .collection-overlay {
    background:
    linear-gradient(
        to top,
        rgba(15, 15, 14, 0.92) 0%,
        rgba(15, 15, 14, 0.50) 52%,
        rgba(34, 165, 211, 0.08) 100%
    );
}
/* =========================================================
   CARD CONTENT
========================================================= */
.collection-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
}
.collection-number {
    flex-shrink: 0;
    padding-top: 7px;
    color: var(--hem-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.collection-content h3 {
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}
.collection-content h3 span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
}
/* =========================================================
   COLLECTION LINK
========================================================= */
.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}
.collection-link i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.collection-card:hover .collection-link {
    color: var(--hem-white);
}
.collection-card:hover .collection-link i {
    transform: translate(3px, -3px);
}
/* =========================================================
   FEATURED PRODUCTS
========================================================= */
.featured-products-section {
    padding: 125px 0;
    background-color: var(--hem-white);
}
/* =========================================================
   HEADER
========================================================= */
.featured-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}
.featured-products-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--hem-dark);
    color: var(--hem-dark);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.featured-products-view-all i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.featured-products-view-all:hover {
    color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.featured-products-view-all:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   PRODUCT CARD
========================================================= */
.product-card {
    display: block;
    height: 100%;
    overflow: hidden;
    background-color: var(--hem-white);
    border: 1px solid var(--hem-border);
    color: var(--hem-dark);
    transition: var(--transition);
}
.product-card:hover {
    border-color: rgba(34, 165, 211, 0.35);
    box-shadow: 0 18px 45px rgba(42, 42, 40, 0.09);
    transform: translateY(-5px);
}
/* =========================================================
   PRODUCT IMAGE
========================================================= */
.product-card-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background-color: var(--hem-light);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
    transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.product-card:hover .product-card-image img {
    transform: scale(1.045);
}
/* =========================================================
   PRODUCT ARROW
========================================================= */
.product-card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--hem-white);
    color: var(--hem-dark);
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}
.product-card:hover .product-card-arrow {
    opacity: 1;
    transform: translateY(0);
}
.product-card-arrow i {
    transition: var(--transition);
}
.product-card:hover .product-card-arrow i {
    color: var(--hem-blue);
    transform: translate(2px, -2px);
}
/* =========================================================
   PRODUCT CONTENT
========================================================= */
.product-card-content {
    min-height: 105px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 22px;
}
.product-card-category {
    display: block;
    margin-bottom: 6px;
    color: var(--hem-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.product-card-content h3 {
    margin: 0;
    color: var(--hem-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}
.product-card-link {
    flex-shrink: 0;
    color: var(--hem-muted);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}
.product-card:hover .product-card-link {
    color: var(--hem-blue);
}
/* =========================================================
   WHY HEM / MANUFACTURING EXCELLENCE
========================================================= */
.why-hem-section {
    position: relative;
    padding: 125px 0;
    background-color: var(--hem-dark);
    color: var(--hem-white);
    overflow: hidden;
}
/* =========================================================
   HEADER
========================================================= */
.why-hem-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}
.why-eyebrow {
    color: var(--hem-blue);
}
.why-hem-title {
    max-width: 800px;
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}
.why-hem-title span {
    color: rgba(255, 255, 255, 0.55);
}
.why-hem-intro {
    max-width: 390px;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 15px;
    line-height: 1.8;
}
/* =========================================================
   MAIN VISUAL
========================================================= */
.why-hem-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background-color: #20201e;
}
.why-hem-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.why-hem-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1s ease;
}
.why-hem-visual:hover .why-hem-image img {
    transform: scale(1.025);
}
/* =========================================================
   IMAGE OVERLAY
========================================================= */
.why-hem-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(15, 15, 14, 0.78) 0%,
        rgba(15, 15, 14, 0.35) 50%,
        rgba(15, 15, 14, 0.15) 100%
    );
}
/* =========================================================
   FEATURE CONTENT
========================================================= */
.why-hem-feature {
    position: absolute;
    left: 55px;
    bottom: 55px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.why-hem-feature-number {
    color: var(--hem-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.why-hem-feature-small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.why-hem-feature h3 {
    max-width: 500px;
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(35px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
}
.why-hem-feature h3 span {
    color: var(--hem-blue);
}
/* =========================================================
   IMAGE LABEL
========================================================= */
.why-hem-image-label {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.why-hem-image-label i {
    color: var(--hem-blue);
    font-size: 17px;
}
/* =========================================================
   FEATURES GRID
========================================================= */
.why-hem-features {
    display: grid;
    grid-template-columns:
    repeat(4, minmax(0, 1fr));
    margin-top: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.why-hem-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}
.why-hem-item:hover {
    background-color: rgba(34, 165, 211, 0.08);
}
.why-hem-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(34, 165, 211, 0.45);
    border-radius: 4px;
    color: var(--hem-blue);
    font-size: 18px;
}
.why-hem-item h4 {
    margin: 25px 0 7px;
    color: var(--hem-white);
    font-size: 16px;
    font-weight: 800;
}
.why-hem-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.7;
}
/* =========================================================
   GLOBAL EXPORT
========================================================= */
.global-export-section {
    padding: 125px 0;
    background-color: var(--hem-white);
    overflow: hidden;
}
/* =========================================================
   WRAPPER
========================================================= */
.global-export-wrapper {
    display: grid;
    grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);
    min-height: 650px;
    background-color: var(--hem-dark);
}
/* =========================================================
   CONTENT
========================================================= */
.global-export-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}
.export-eyebrow {
    margin-bottom: 22px;
}
.global-export-title {
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -2.5px;
}
.global-export-title span {
    color: var(--hem-blue);
}
.global-export-description {
    max-width: 520px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.85;
}
/* =========================================================
   EXPORT POINTS
========================================================= */
.export-points {
    display: grid;
    grid-template-columns:
    repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.export-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.export-point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(34, 165, 211, 0.35);
    border-radius: 4px;
    color: var(--hem-blue);
    font-size: 16px;
}
.export-point h4 {
    margin: 0 0 5px;
    color: var(--hem-white);
    font-size: 14px;
    font-weight: 800;
}
.export-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.65;
}
/* =========================================================
   BUTTON
========================================================= */
.export-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 35px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--hem-white);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.export-btn i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.export-btn:hover {
    color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.export-btn:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   VISUAL
========================================================= */
.global-export-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background-color: #20201e;
}
.global-export-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1s ease;
}
.global-export-wrapper:hover .global-export-visual img {
    transform: scale(1.035);
}
/* =========================================================
   VISUAL OVERLAY
========================================================= */
.global-export-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(42, 42, 40, 0.72) 0%,
        rgba(42, 42, 40, 0.20) 65%,
        rgba(42, 42, 40, 0.10) 100%
    );
}
/* =========================================================
   BADGE
========================================================= */
.global-export-badge {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    background-color: rgba(42, 42, 40, 0.88);
    backdrop-filter: blur(8px);
    color: var(--hem-white);
}
.global-export-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(34, 165, 211, 0.5);
    border-radius: 50%;
    color: var(--hem-blue);
    font-size: 18px;
}
.global-export-badge span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.global-export-badge strong {
    display: block;
    color: var(--hem-white);
    font-size: 13px;
    font-weight: 800;
}
/* =========================================================
   CORNER LABEL
========================================================= */
.global-export-label {
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: right;
}
/* =========================================================
   QUALITY & TRUST
========================================================= */
.quality-section {
    padding: 125px 0;
    background-color: var(--hem-light);
    overflow: hidden;
}
/* =========================================================
   HEADER
========================================================= */
.quality-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}
.quality-header-text {
    max-width: 430px;
    margin: 0 0 7px;
    color: var(--hem-muted);
    font-size: 15px;
    line-height: 1.8;
}
/* =========================================================
   FEATURES
========================================================= */
.quality-features {
    display: grid;
    grid-template-columns:
    repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--hem-border);
    border-left: 1px solid var(--hem-border);
}
.quality-feature {
    min-height: 275px;
    padding: 28px;
    border-right: 1px solid var(--hem-border);
    border-bottom: 1px solid var(--hem-border);
    background-color: var(--hem-white);
    transition: var(--transition);
}
.quality-feature:hover {
    background-color: var(--hem-dark);
    color: var(--hem-white);
    transform: translateY(-5px);
}
.quality-feature-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.quality-number {
    color: var(--hem-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}
.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(34, 165, 211, 0.25);
    border-radius: 4px;
    color: var(--hem-blue);
    font-size: 18px;
}
.quality-feature h3 {
    margin: 70px 0 10px;
    color: var(--hem-dark);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
}
.quality-feature h3 span {
    display: block;
    color: var(--hem-blue);
}
.quality-feature:hover h3 {
    color: var(--hem-white);
}
.quality-feature p {
    max-width: 240px;
    margin: 0;
    color: var(--hem-muted);
    font-size: 13px;
    line-height: 1.7;
}
.quality-feature:hover p {
    color: rgba(255, 255, 255, 0.58);
}
/* =========================================================
   BOTTOM VISUAL
========================================================= */
.quality-bottom {
    display: grid;
    grid-template-columns:
    minmax(0, 1.15fr)
    minmax(0, 0.85fr);
    margin-top: 70px;
    background-color: var(--hem-dark);
}
.quality-bottom-image {
    min-height: 470px;
    overflow: hidden;
}
.quality-bottom-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.quality-bottom:hover .quality-bottom-image img {
    transform: scale(1.035);
}
/* =========================================================
   BOTTOM CONTENT
========================================================= */
.quality-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}
.quality-bottom-number {
    margin-bottom: 18px;
    color: var(--hem-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
.quality-bottom-content h3 {
    margin: 0;
    color: var(--hem-white);
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
}
.quality-bottom-content p {
    max-width: 450px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.85;
}
/* =========================================================
   BUTTON
========================================================= */
.quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 30px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--hem-white);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}
.quality-btn i {
    color: var(--hem-blue);
    transition: var(--transition);
}
.quality-btn:hover {
    color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.quality-btn:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background-color: var(--hem-dark);
    color: var(--hem-white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background-color 0.3s ease;
}
/* Visible */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Icon */
.back-to-top-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top i {
    color: var(--hem-blue);
    font-size: 17px;
    transition: transform 0.3s ease;
}
/* Hover */
.back-to-top:hover {
    background-color: var(--hem-blue);
    border-color: var(--hem-blue);
}
.back-to-top:hover i {
    color: var(--hem-white);
    transform: translateY(-3px);
}
/* =========================================================
   BACK TO TOP ANIMATION
========================================================= */
.back-to-top.show .back-to-top-icon {
    animation: backToTopPulse 2s infinite;
}
@keyframes backToTopPulse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
/* =========================================================
   FLOATING CONTACT / CHAT
========================================================= */
.floating-contact {
    position: fixed;
    left: 28px;
    bottom: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* =========================================================
   MAIN BUTTON
========================================================= */
.floating-contact-main {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--hem-blue);
    color: var(--hem-white);
    cursor: pointer;
    box-shadow:
    0 10px 30px rgba(34, 165, 211, 0.30);
    transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.floating-contact-main:hover {
    background-color: var(--hem-dark);
    transform: translateY(-3px);
    box-shadow:
    0 12px 35px rgba(42, 42, 40, 0.25);
}
.floating-contact-main-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}
.floating-contact-main .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}
.floating-contact-main .chat-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}
/* =========================================================
   OPTIONS
========================================================= */
.floating-contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    pointer-events: auto;
}
/* =========================================================
   OPTION BUTTON
========================================================= */
.floating-contact-item {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--hem-dark);
    color: var(--hem-white);

    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.7);
    transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.3s ease,
    background-color 0.25s ease;
}
.floating-contact-item:nth-child(1) {
    transition-delay: 0.08s;
}
.floating-contact-item:nth-child(2) {
    transition-delay: 0.04s;
}
.floating-contact-item:nth-child(3) {
    transition-delay: 0s;
}
.floating-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
/* WhatsApp */
.floating-contact-item.whatsapp:hover {
    background-color: #25d366;
    color: var(--hem-white);
    transform: scale(1.08);
}
/* Call */
.floating-contact-item.call:hover {
    background-color: var(--hem-blue);
    color: var(--hem-white);
    transform: scale(1.08);
}
/* Message */
.floating-contact-item.message:hover {
    background-color: var(--hem-blue);
    color: var(--hem-white);
    transform: scale(1.08);
}
/* =========================================================
   OPEN STATE
========================================================= */
.floating-contact.is-open
.floating-contact-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.floating-contact.is-open
.floating-contact-main .chat-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
.floating-contact.is-open
.floating-contact-main .close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}
/* =========================================================
   TOOLTIP
========================================================= */
.floating-contact-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform:
    translateY(-50%)
    translateX(-5px);
    padding: 7px 10px;
    border-radius: 4px;
    background-color: var(--hem-dark);
    color: var(--hem-white);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.floating-contact-item:hover
.floating-contact-tooltip {
    opacity: 1;
    visibility: visible;
    transform:
    translateY(-50%)
    translateX(0);
}
/* =========================================================
   MAIN BUTTON PULSE
========================================================= */
.floating-contact-main::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(34, 165, 211, 0.45);
    border-radius: 50%;
    animation: floatingContactPulse 2.2s infinite;
    pointer-events: none;
}
@keyframes floatingContactPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-page-hero {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    overflow: hidden;
}


.inner-page-hero::after {

    content: "";

    position: absolute;

    right: -120px;

    top: -180px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(34, 165, 211, 0.18);
}


.inner-page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 80px 0;
}


.inner-page-hero .section-eyebrow {

    margin-bottom: 22px;
}


.inner-page-hero h1 {

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -3px;
}


.inner-page-hero h1 span {

    display: block;

    color: var(--hem-blue);
}


.inner-page-hero p {

    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 16px;

    line-height: 1.8;
}


/* Breadcrumb */

.inner-page-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


.inner-page-breadcrumb a {

    color: var(--hem-blue);

    font-weight: 700;
}


.inner-page-breadcrumb i {

    font-size: 9px;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-page-intro {

    padding: 125px 0;

    background-color: var(--hem-white);
}


.about-page-image {

    position: relative;

    padding-right: 35px;

    padding-bottom: 35px;
}


.about-page-image::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 70%;

    height: 70%;

    background-color: rgba(34, 165, 211, 0.12);

    z-index: 1;
}


.about-page-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 600px;

    display: block;

    object-fit: cover;
}


.about-page-experience {

    position: absolute;

    left: -20px;

    bottom: 70px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 20px 22px;

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


.about-page-experience strong {

    color: var(--hem-blue);

    font-size: 40px;

    font-weight: 800;

    line-height: 1;
}


.about-page-experience span {

    color: rgba(255, 255, 255, 0.68);

    font-size: 10px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.about-page-content {

    padding-left: 30px;
}


.about-page-lead {

    margin-top: 28px;

    color: var(--hem-dark);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.8;
}


.about-page-content > p:not(.about-page-lead) {

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.85;
}


.about-page-signature {

    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid var(--hem-border);
}


.about-page-signature span {

    color: var(--hem-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


.about-page-signature small {

    color: var(--hem-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   JOURNEY
========================================================= */

.about-journey-section {

    padding: 125px 0;

    background-color: var(--hem-light);
}


.about-journey-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}


.about-journey-header > p {

    max-width: 420px;

    margin: 0 0 7px;

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.8;
}


.about-journey-line {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--hem-border);
}


.journey-item {

    position: relative;

    min-height: 280px;

    padding: 30px;

    border-right: 1px solid var(--hem-border);
}


.journey-item:first-child {

    border-left: 1px solid var(--hem-border);
}


.journey-item::before {

    content: "";

    position: absolute;

    left: 30px;

    top: -5px;

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background-color: var(--hem-blue);
}


.journey-number {

    display: block;

    color: var(--hem-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.journey-label {

    display: block;

    margin-top: 65px;

    color: var(--hem-dark);

    font-size: 18px;

    font-weight: 800;
}


.journey-item p {

    margin: 12px 0 0;

    color: var(--hem-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.vision-mission-section {

    padding: 125px 0;

    background-color: var(--hem-white);
}


.vision-mission-card {

    min-height: 510px;

    padding: 55px;

    background-color: var(--hem-light);

    border: 1px solid var(--hem-border);
}


.vision-mission-card.mission {

    background-color: var(--hem-dark);

    border-color: var(--hem-dark);
}


.vision-number {

    display: block;

    color: var(--hem-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.vision-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    margin-top: 55px;

    border: 1px solid rgba(34, 165, 211, 0.30);

    border-radius: 4px;

    color: var(--hem-blue);

    font-size: 21px;
}


.vision-label {

    display: block;

    margin-top: 28px;

    color: var(--hem-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.vision-mission-card h2 {

    max-width: 520px;

    margin: 15px 0 0;

    color: var(--hem-dark);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.vision-mission-card h2 span {

    display: block;

    color: var(--hem-blue);
}


.vision-mission-card p {

    max-width: 520px;

    margin: 25px 0 0;

    color: var(--hem-muted);

    font-size: 14px;

    line-height: 1.85;
}


.vision-mission-card.mission h2 {

    color: var(--hem-white);
}


.vision-mission-card.mission p {

    color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-page-cta {

    padding: 0 0 125px;

    background-color: var(--hem-white);
}


.about-page-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 65px 70px;

    background-color: var(--hem-blue);
}


.about-page-cta .section-eyebrow {

    color: var(--hem-dark);
}


.about-page-cta .section-eyebrow span {

    background-color: var(--hem-dark);
}


.about-page-cta h2 {

    max-width: 700px;

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(35px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.about-page-cta h2 span {

    color: var(--hem-dark);
}


.about-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 16px 22px;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}


.about-cta-btn i {

    transition: var(--transition);
}


.about-cta-btn:hover {

    background-color: var(--hem-white);

    color: var(--hem-dark);
}


.about-cta-btn:hover i {

    transform: translate(3px, -3px);

    color: var(--hem-blue);
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {

    min-height: 500px;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main-section {

    padding: 125px 0;

    background-color: var(--hem-white);
}


.contact-info-wrapper {

    padding-right: 35px;
}


.contact-intro {

    max-width: 520px;

    margin: 28px 0 35px;

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT INFO ITEMS
========================================================= */

.contact-info-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 22px 40px 22px 0;

    border-top: 1px solid var(--hem-border);

    color: var(--hem-dark);

    transition: var(--transition);
}


.contact-info-item:last-of-type {

    border-bottom: 1px solid var(--hem-border);
}


.contact-info-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(34, 165, 211, 0.25);

    border-radius: 4px;

    color: var(--hem-blue);

    font-size: 17px;
}


.contact-info-content {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.contact-info-content strong {

    color: var(--hem-dark);

    font-size: 13px;

    font-weight: 800;
}


.contact-info-content span {

    color: var(--hem-muted);

    font-size: 13px;

    line-height: 1.7;
}


.contact-info-arrow {

    position: absolute;

    top: 24px;

    right: 3px;

    color: var(--hem-blue);

    font-size: 13px;

    transition: var(--transition);
}


.contact-info-item:hover {

    padding-left: 5px;
}


.contact-info-item:hover .contact-info-arrow {

    transform: translate(3px, -3px);
}


/* =========================================================
   WHATSAPP
========================================================= */

.contact-whatsapp {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 25px;

    padding: 17px 18px;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    transition: var(--transition);
}


.contact-whatsapp:hover {

    background-color: #25d366;

    color: var(--hem-white);
}


.contact-whatsapp-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-size: 18px;
}


.contact-whatsapp-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    gap: 2px;
}
.contact-whatsapp-icon {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-size: 18px;
}


.contact-whatsapp strong {

    font-size: 13px;

    font-weight: 800;
}


.contact-whatsapp small {

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}


.contact-whatsapp > i {

    font-size: 13px;

    transition: var(--transition);
}


.contact-whatsapp:hover > i {

    transform: translate(3px, -3px);
}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {

    padding: 45px;

    background-color: var(--hem-light);

    border: 1px solid var(--hem-border);
}


.contact-form-header {

    margin-bottom: 35px;
}


.contact-form-label {

    display: block;

    margin-bottom: 12px;

    color: var(--hem-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.contact-form-header h3 {

    margin: 0;

    color: var(--hem-dark);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.contact-form-header h3 span {

    color: var(--hem-blue);
}


.contact-form-header p {

    margin: 15px 0 0;

    color: var(--hem-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FORM GROUP
========================================================= */

.contact-form-group {

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.contact-form-group label {

    color: var(--hem-dark);

    font-size: 12px;

    font-weight: 800;
}


.contact-form-group label span {

    color: var(--hem-blue);
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--hem-border);

    border-radius: 0;

    outline: none;

    background-color: var(--hem-white);

    color: var(--hem-dark);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-form-group input {

    height: 52px;
}


.contact-form-group select {

    height: 52px;

    cursor: pointer;
}


.contact-form-group textarea {

    resize: vertical;

    min-height: 140px;
}


.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {

    color: #9a9a97;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    border-color: var(--hem-blue);

    box-shadow:
        0 0 0 3px rgba(34, 165, 211, 0.08);
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 180px;

    padding: 16px 22px;

    border: 0;

    background-color: var(--hem-blue);

    color: var(--hem-white);

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);
}


.contact-submit-btn i {

    transition: var(--transition);
}


.contact-submit-btn:hover {

    background-color: var(--hem-dark);
}


.contact-submit-btn:hover i {

    transform: translate(3px, -3px);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {

    padding: 0 0 125px;

    background-color: var(--hem-white);
}


.contact-location-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.contact-location-header > p {

    max-width: 420px;

    margin: 0 0 7px;

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.8;
}


.contact-map-wrapper {

    position: relative;

    overflow: hidden;

    height: 500px;

    background-color: var(--hem-light);

    border: 1px solid var(--hem-border);
}


.contact-map-wrapper iframe {

    display: block;

    width: 100%;

    height: 100%;

    filter: grayscale(100%);

    transition: filter 0.5s ease;
}


.contact-map-wrapper:hover iframe {

    filter: grayscale(0%);
}


/* =========================================================
   CTA
========================================================= */

.contact-cta-section {

    padding: 0 0 125px;

    background-color: var(--hem-white);
}


.contact-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px 65px;

    background-color: var(--hem-dark);
}


.contact-cta-inner > div > span {

    display: block;

    margin-bottom: 10px;

    color: var(--hem-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.contact-cta-inner h2 {

    max-width: 700px;

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(32px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.contact-cta-inner h2 strong {

    color: var(--hem-blue);

    font-weight: 800;
}


.contact-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 16px 22px;

    background-color: #25d366;

    color: var(--hem-white);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}


.contact-cta-btn:hover {

    background-color: var(--hem-white);

    color: var(--hem-dark);
}


.contact-cta-btn i {

    font-size: 17px;
}
/* =========================================================
   CATALOG PAGE
========================================================= */

.catalog-page {

    padding: 100px 0;

    background-color: var(--hem-light);
}


.catalog-page-inner {

    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


.catalog-page h1 {

    margin: 15px 0 12px;

    color: var(--hem-dark);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;
}


.catalog-page h1 span {

    color: var(--hem-blue);
}


.catalog-page > .container > .catalog-page-inner > p {

    margin-bottom: 45px;

    color: var(--hem-muted);

    font-size: 14px;
}


.catalog-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: stretch;

    text-align: left;

    background-color: var(--hem-white);

    border: 1px solid var(--hem-border);
}


.catalog-poster {

    overflow: hidden;

    background-color: #f5f5f5;
}


.catalog-poster img {

    width: 100%;

    height: 100%;

    min-height: 500px;

    display: block;

    object-fit: cover;
}


.catalog-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}


.catalog-content > span {

    color: var(--hem-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.catalog-content h2 {

    margin: 12px 0;

    color: var(--hem-dark);

    font-size: 38px;

    font-weight: 800;
}


.catalog-content p {

    max-width: 380px;

    margin: 0;

    color: var(--hem-muted);

    font-size: 14px;

    line-height: 1.8;
}


.catalog-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: fit-content;

    margin-top: 28px;

    padding: 15px 22px;

    background-color: var(--hem-blue);

    color: var(--hem-white);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.catalog-btn:hover {

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


.catalog-btn i {

    transition: var(--transition);
}


.catalog-btn:hover i {

    transform: translate(3px, -3px);
}
/* =========================================================
   PRODUCTS PAGE HERO
========================================================= */

.products-page-hero {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    background-color: var(--hem-dark);

    overflow: hidden;
}


.products-page-hero::before {

    content: "";

    position: absolute;

    right: -160px;

    top: -220px;

    width: 620px;

    height: 620px;

    border: 1px solid rgba(34, 165, 211, 0.15);

    border-radius: 50%;
}


.products-page-hero::after {

    content: "";

    position: absolute;

    right: 40px;

    bottom: -280px;

    width: 480px;

    height: 480px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


.products-page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 80px 0;
}


.products-page-hero .section-eyebrow {

    margin-bottom: 22px;
}


.products-page-hero h1 {

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -3px;
}


.products-page-hero h1 span {

    display: block;

    color: var(--hem-blue);
}


.products-page-hero p {

    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCTS LISTING
========================================================= */

.products-listing-section {

    padding: 125px 0;

    background-color: var(--hem-white);
}


.products-listing-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.products-count {

    display: flex;

    align-items: baseline;

    gap: 7px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--hem-border);
}


.products-count strong {

    color: var(--hem-blue);

    font-size: 30px;

    font-weight: 800;

    line-height: 1;
}


.products-count span {

    color: var(--hem-muted);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   PRODUCT FILTER
========================================================= */

.products-filter {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 45px;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--hem-border);

    overflow-x: auto;

    scrollbar-width: none;
}


.products-filter::-webkit-scrollbar {

    display: none;
}


.product-filter-btn {

    flex-shrink: 0;

    padding: 11px 17px;

    border: 1px solid var(--hem-border);

    border-radius: 0;

    background-color: var(--hem-white);

    color: var(--hem-muted);

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;

    cursor: pointer;

    transition: var(--transition);
}


.product-filter-btn:hover {

    border-color: var(--hem-blue);

    color: var(--hem-blue);
}


.product-filter-btn.active {

    border-color: var(--hem-dark);

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    min-width: 0;

    background-color: var(--hem-white);

    border: 1px solid var(--hem-border);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.product-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(42, 42, 40, 0.09);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-card-image {

    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #f5f5f3;
    width: 100%;
}


.product-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}


.product-card:hover .product-card-image img {

    transform: scale(1.045);
}


/* =========================================================
   PRODUCT VIEW BUTTON
========================================================= */

.product-card-view {

    position: absolute;

    right: 15px;

    bottom: 15px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.25s ease;
}


.product-card:hover .product-card-view {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.product-card-view:hover {

    background-color: var(--hem-blue);

    color: var(--hem-white);
}


.product-card-view i {

    font-size: 14px;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-card-content {

    padding: 22px 20px 20px;
}


.product-card-category {

    display: block;

    margin-bottom: 8px;

    color: var(--hem-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.product-card-content h3 {

    margin: 0;

    color: var(--hem-dark);

    font-size: 18px;

    font-weight: 800;

    line-height: 1.25;
}


/* =========================================================
   PRODUCT LINK
========================================================= */

.product-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: var(--hem-dark);

    font-size: 11px;

    font-weight: 800;

    transition: var(--transition);
}


.product-card-link i {

    color: var(--hem-blue);

    transition: var(--transition);
}


.product-card-link:hover {

    color: var(--hem-blue);
}


.product-card-link:hover i {

    transform: translateX(4px);
}


/* =========================================================
   PRODUCTS CTA
========================================================= */

.products-page-cta {

    padding: 0 0 125px;

    background-color: var(--hem-white);
}


.products-page-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px 65px;

    background-color: var(--hem-blue);
}


.products-page-cta-inner > div > span {

    display: block;

    margin-bottom: 10px;

    color: var(--hem-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.products-page-cta-inner h2 {

    max-width: 700px;

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -1.5px;
}


.products-page-cta-inner h2 strong {

    color: var(--hem-dark);

    font-weight: 800;
}


.products-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 16px 22px;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.products-cta-btn:hover {

    background-color: var(--hem-white);

    color: var(--hem-dark);
}


.products-cta-btn i {

    transition: var(--transition);
}


.products-cta-btn:hover i {

    transform: translate(3px, -3px);

    color: var(--hem-blue);
}
/* =========================================================
   PRODUCT FILTER ANIMATION
========================================================= */

.product-card {

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.35s ease;
}


.product-card-hidden {

    opacity: 0;

    transform: translateY(12px);

    pointer-events: none;
}

/* =========================================================
   CATEGORY PAGE HERO
========================================================= */

.category-page-hero {

    padding: 0;

    background-color: var(--hem-dark);

    color: var(--hem-white);

    overflow: hidden;
}


.category-hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    min-height: 600px;
}


.category-hero-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 80px 60px 80px 0;
}


.category-hero-content h1 {

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2.5px;
}


.category-hero-content h1 span {

    display: block;

    color: var(--hem-blue);
}


.category-hero-content p {

    max-width: 520px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 15px;

    line-height: 1.85;
}


.category-page-hero .inner-page-breadcrumb {

    margin-top: 32px;
}


/* =========================================================
   CATEGORY HERO IMAGE
========================================================= */

.category-hero-image {

    position: relative;

    min-height: 600px;

    overflow: hidden;

    background-color: #f4f4f2;
}


.category-hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(42, 42, 40, 0.15),
            transparent 40%
        );

    pointer-events: none;
}


.category-hero-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.category-page-hero:hover
.category-hero-image img {

    transform: scale(1.025);
}


/* =========================================================
   CATEGORY PRODUCTS
========================================================= */

.category-products-section {

    padding: 125px 0;

    background-color: var(--hem-white);
}


.category-products-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}


.category-products-grid {

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


/* =========================================================
   EMPTY STATE
========================================================= */

.category-empty {

    display: flex;

    align-items: center;

    flex-direction: column;

    justify-content: center;

    min-height: 300px;

    padding: 50px;

    background-color: var(--hem-light);

    border: 1px solid var(--hem-border);

    text-align: center;
}


.category-empty > i {

    color: var(--hem-blue);

    font-size: 38px;
}


.category-empty h3 {

    margin: 18px 0 8px;

    color: var(--hem-dark);

    font-size: 24px;

    font-weight: 800;
}


.category-empty p {

    margin: 0;

    color: var(--hem-muted);

    font-size: 13px;
}


/* =========================================================
   RELATED CATEGORIES
========================================================= */

.related-categories-section {

    padding: 0 0 125px;

    background-color: var(--hem-white);
}


.related-categories-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.related-all-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--hem-dark);

    color: var(--hem-dark);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.related-all-link i {

    color: var(--hem-blue);

    transition: var(--transition);
}


.related-all-link:hover {

    color: var(--hem-blue);

    border-color: var(--hem-blue);
}


.related-all-link:hover i {

    transform: translate(3px, -3px);
}


/* =========================================================
   RELATED CATEGORY GRID
========================================================= */

.related-categories-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.related-category-card {

    position: relative;

    display: block;

    overflow: hidden;

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


.related-category-image {

    aspect-ratio: 1.25 / 1;

    overflow: hidden;

    opacity: 0.75;
}


.related-category-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.related-category-card:hover
.related-category-image img {

    transform: scale(1.06);
}


.related-category-content {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(42, 42, 40, 0.92) 100%
        );
}


.related-category-content > span {

    margin-bottom: 6px;

    color: var(--hem-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.related-category-content h3 {

    max-width: 280px;

    margin: 0;

    color: var(--hem-white);

    font-size: 22px;

    font-weight: 800;
}


.related-category-content > i {

    position: absolute;

    top: 20px;

    right: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background-color: var(--hem-blue);

    color: var(--hem-white);

    font-size: 13px;

    transition: var(--transition);
}


.related-category-card:hover
.related-category-content > i {

    background-color: var(--hem-white);

    color: var(--hem-dark);

    transform: translate(3px, -3px);
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail-section {

    padding: 105px 0;

    background-color: var(--hem-white);
}


.product-detail-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   PRODUCT DETAIL IMAGE
========================================================= */

.product-detail-image-wrapper {

    position: relative;

    padding: 25px;

    background-color: var(--hem-light);
}


.product-detail-image-wrapper::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100px;

    height: 100px;

    border-top: 2px solid var(--hem-blue);

    border-left: 2px solid var(--hem-blue);
}


.product-detail-image-wrapper::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 100px;

    height: 100px;

    border-right: 2px solid var(--hem-blue);

    border-bottom: 2px solid var(--hem-blue);
}


.product-detail-image {

    position: relative;

    z-index: 1;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #f4f4f2;
}


.product-detail-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.product-detail-image:hover img {

    transform: scale(1.035);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-detail-content {

    padding: 10px 0;
}


.product-detail-breadcrumb {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-bottom: 30px;

    color: var(--hem-muted);

    font-size: 10px;

    font-weight: 600;
}


.product-detail-breadcrumb a {

    color: var(--hem-muted);

    transition: var(--transition);
}


.product-detail-breadcrumb a:hover {

    color: var(--hem-blue);
}


.product-detail-breadcrumb i {

    color: var(--hem-blue);

    font-size: 8px;
}


.product-detail-category {

    display: block;

    margin-bottom: 12px;

    color: var(--hem-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.product-detail-content h1 {

    max-width: 650px;

    margin: 0;

    color: var(--hem-dark);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -2.5px;
}


.product-detail-short {

    max-width: 600px;

    margin: 25px 0 0;

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PRODUCT ACTIONS
========================================================= */

.product-detail-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}


.product-whatsapp-btn,
.product-enquiry-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 20px;

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.product-whatsapp-btn {

    background-color: #25d366;

    color: var(--hem-white);
}


.product-whatsapp-btn:hover {

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


.product-whatsapp-btn i {

    font-size: 17px;
}


.product-enquiry-btn {

    background-color: var(--hem-dark);

    color: var(--hem-white);
}


.product-enquiry-btn:hover {

    background-color: var(--hem-blue);

    color: var(--hem-white);
}


.product-enquiry-btn i {

    transition: var(--transition);
}


.product-enquiry-btn:hover i {

    transform: translate(3px, -3px);
}


/* =========================================================
   QUICK INFO
========================================================= */

.product-quick-info {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-top: 40px;

    border-top: 1px solid var(--hem-border);

    border-bottom: 1px solid var(--hem-border);
}


.product-quick-info > div {

    display: flex;

    flex-direction: column;

    gap: 7px;

    padding: 20px 20px 20px 0;
}


.product-quick-info > div + div {

    padding-left: 20px;

    border-left: 1px solid var(--hem-border);
}


.product-quick-info span {

    color: var(--hem-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.product-quick-info strong {

    color: var(--hem-dark);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-information-section {

    padding: 115px 0;

    background-color: var(--hem-light);
}


.product-information-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 90px;
}


.product-description > p {

    max-width: 700px;

    margin: 30px 0 0;

    color: var(--hem-muted);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.product-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 35px;
}


.product-feature {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px;

    background-color: var(--hem-white);

    border: 1px solid var(--hem-border);
}


.product-feature i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    background-color: var(--hem-blue);

    color: var(--hem-white);

    font-size: 11px;
}


.product-feature span {

    color: var(--hem-dark);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.product-specifications {

    padding: 35px;

    background-color: var(--hem-white);

    border: 1px solid var(--hem-border);
}


.specifications-table {

    margin-top: 30px;
}


.specification-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid var(--hem-border);
}


.specification-row:first-child {

    border-top: 1px solid var(--hem-border);
}


.specification-row span {

    color: var(--hem-muted);

    font-size: 11px;
}


.specification-row strong {

    color: var(--hem-dark);

    font-size: 11px;

    font-weight: 800;

    text-align: right;
}


/* =========================================================
   PRODUCT CTA
========================================================= */

.product-detail-cta {

    padding: 0 0 115px;

    background-color: var(--hem-light);
}


.product-detail-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px 65px;

    background-color: var(--hem-dark);
}


.product-detail-cta-inner > div > span {

    display: block;

    margin-bottom: 10px;

    color: var(--hem-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.product-detail-cta-inner h2 {

    margin: 0;

    color: var(--hem-white);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -1.5px;
}


.product-detail-cta-inner h2 strong {

    color: var(--hem-blue);

    font-weight: 800;
}


.product-detail-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 16px 23px;

    background-color: #25d366;

    color: var(--hem-white);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.product-detail-cta-btn:hover {

    background-color: var(--hem-white);

    color: var(--hem-dark);
}


.product-detail-cta-btn i {

    font-size: 17px;
}

/* =========================================================
   PRODUCTS - EMPTY / NO IMAGE
========================================================= */

.products-empty {

    width: 100%;

    grid-column: 1 / -1;

    padding: 80px 30px;

    text-align: center;

}


.products-empty-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(34, 165, 211, 0.08);

    color: #22a5d3;

    font-size: 28px;

}


.products-empty h3 {

    margin: 0 0 10px;

    color: #2a2a28;

    font-size: 24px;

    font-weight: 800;

}


.products-empty p {

    max-width: 500px;

    margin: 0 auto 25px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;

}


.product-card-no-image {

    width: 100%;

    height: 100%;

    min-height: 280px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f4f5f5;

    color: #aaa;

    font-size: 35px;

}