/*
Theme Name: Punjab Solar
Theme URI: https://arslansipra.wuaze.com/
Author: Punjab Solar
Description: A modern, responsive custom WordPress theme for Punjab Solar.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: punjab-solar
*/

/* =========================================================
   1. CSS VARIABLES
   ========================================================= */

   :root {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #0f172a;
    --secondary-light: #1e293b;

    --text-color: #334155;
    --heading-color: #0f172a;
    --muted-color: #64748b;

    --white: #ffffff;
    --black: #000000;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;

    --container-width: 1200px;

    --header-height: 80px;

    --section-padding-desktop: 90px;
    --section-padding-tablet: 70px;
    --section-padding-mobile: 55px;

    --border-radius: 12px;
    --transition: 0.3s ease;

    --font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;

    color: var(--text-color);
    background-color: var(--white);

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;

    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   3. WORDPRESS CORE
   ========================================================= */

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-color);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   4. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   5. GLOBAL SECTION
   ========================================================= */

.section {
    width: 100%;
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
}

.section--light {
    background-color: var(--light-bg);
}

.section--dark {
    background-color: var(--secondary-color);
    color: var(--white);
}


/* =========================================================
   6. GLOBAL BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 24px;

    border: 2px solid transparent;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 600;

    line-height: 1;
    text-align: center;

    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
}

.btn-outline:hover {
    color: var(--white);
    background-color: var(--primary-color);
}


/* =========================================================
   7. SECTION HEADING
   ========================================================= */

.section-heading {
	max-width: 820px;

	margin: 0 auto 52px;

	padding: 0 16px;

	text-align: center;
}


/* =========================================================
   SECTION HEADING TITLE
   ========================================================= */

.section-heading h2 {
	margin: 0 0 16px;

	font-size: clamp(30px, 4vw, 46px);

	font-weight: 800;

	line-height: 1.12;

	letter-spacing: -0.035em;

	color: var(--heading-color, #0f172a);
}


/* =========================================================
   SECTION HEADING DESCRIPTION
   ========================================================= */

.section-heading p {
	max-width: 680px;

	margin: 0 auto;

	font-size: clamp(15px, 1.6vw, 18px);

	line-height: 1.7;

	color: var(--muted-color, #64748b);
}


/* =========================================================
   OPTIONAL EYEBROW
   Works if section has .section-eyebrow
   ========================================================= */

.section-heading .section-eyebrow {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	margin-bottom: 14px;

	padding: 7px 14px;

	border-radius: 999px;

	background: rgba(245, 158, 11, 0.10);

	color: #d97706;

	font-size: 12px;

	font-weight: 700;

	line-height: 1;

	letter-spacing: 0.08em;

	text-transform: uppercase;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.section {
		padding-top: var(--section-padding-tablet);
		padding-bottom: var(--section-padding-tablet);
	}

	.section-heading {
		max-width: 720px;

		margin-bottom: 44px;

		padding: 0 10px;
	}

	.section-heading h2 {
		font-size: clamp(30px, 5vw, 40px);

		margin-bottom: 14px;
	}

	.section-heading p {
		font-size: 16px;

		line-height: 1.65;
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	html {
		font-size: 15px;
	}

	.container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.section {
		padding-top: var(--section-padding-mobile);
		padding-bottom: var(--section-padding-mobile);
	}

	.section-heading {
		max-width: 100%;

		margin-bottom: 34px;

		padding: 0 4px;
	}

	.section-heading h2 {
		margin-bottom: 12px;

		font-size: clamp(27px, 8vw, 34px);

		line-height: 1.15;

		letter-spacing: -0.025em;
	}

	.section-heading p {
		max-width: 100%;

		font-size: 15px;

		line-height: 1.65;
	}

	.section-heading .section-eyebrow {
		margin-bottom: 12px;

		padding: 6px 12px;

		font-size: 11px;
	}

	.btn {
		width: 100%;

		min-height: 50px;
	}
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-heading {
		margin-bottom: 30px;

		padding: 0;
	}

	.section-heading h2 {
		font-size: 27px;

		line-height: 1.18;
	}

	.section-heading p {
		font-size: 14px;

		line-height: 1.6;
	}

	.section-heading .section-eyebrow {
		font-size: 10px;

		padding: 6px 11px;
	}
}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

	.section-heading h2 {
		font-size: 25px;
	}

	.section-heading p {
		font-size: 14px;
	}
}
/* =========================================================
   11. SITE HEADER
   ========================================================= */

   .site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background-color: var(--white);

    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: var(--header-height);

    gap: 30px;
}


/* =========================================================
   12. SITE BRANDING
   ========================================================= */

.site-branding {
    flex: 0 0 auto;
}

.site-branding a {
    display: inline-flex;
    align-items: center;
}

.site-branding img {
    width: auto;
    max-width: 200px;
    max-height: 65px;
}

.site-title {
    color: var(--heading-color);

    font-size: 24px;
    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   13. MAIN NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;

    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;

    gap: 30px;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: inline-flex;
    align-items: center;

    min-height: 80px;

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

    transition:
        color var(--transition);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a {
    color: var(--primary-color);
}


/* =========================================================
   14. HEADER ACTIONS
   ========================================================= */

.header-actions {
    flex: 0 0 auto;
}

.header-cta {
    white-space: nowrap;
}


/* =========================================================
   15. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 0;
    border-radius: 8px;

    background-color: transparent;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-toggle:hover {
    background-color: var(--light-bg);
}

.menu-line {
    display: block;

    width: 24px;
    height: 2px;

    background-color: var(--heading-color);

    border-radius: 2px;

    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* =========================================================
   16. MOBILE MENU OPEN STATE
   ========================================================= */

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   17. FOOTER
   ========================================================= */

.site-footer {
    padding-top: 70px;

    color: var(--white);

    background-color: var(--secondary-color);
}

.site-footer .container {
    width: 100%;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        minmax(250px, 1.5fr)
        repeat(3, minmax(160px, 1fr));

    gap: 50px;

    padding-bottom: 50px;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: auto;
    max-width: 190px;
    max-height: 60px;
}

.footer-site-title {
    color: var(--white);

    font-size: 24px;
    font-weight: 800;
}

.footer-description {
    max-width: 350px;

    margin-bottom: 25px;

    color: #cbd5e1;

    font-size: 15px;
}


/* =========================================================
   18. FOOTER TITLES
   ========================================================= */

.footer-title {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   19. FOOTER LINKS
   ========================================================= */

.footer-links,
.footer-menu {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-links a,
.footer-menu a {
    color: #cbd5e1;

    font-size: 14px;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-links a:hover,
.footer-menu a:hover {
    padding-left: 4px;

    color: var(--primary-color);
}


/* =========================================================
   20. FOOTER CONTACT
   ========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.footer-contact li {
    display: flex;

    flex-direction: column;

    gap: 3px;

    color: #cbd5e1;

    font-size: 14px;
}

.footer-contact strong {
    color: var(--white);

    font-size: 14px;
}

.footer-contact a {
    color: #cbd5e1;

    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}


/* =========================================================
   21. FOOTER SOCIAL
   ========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 10px;
}

.social-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid #334155;
    border-radius: 50%;

    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    transition:
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.social-link:hover {
    color: var(--white);

    background-color: var(--primary-color);

    border-color: var(--primary-color);

    transform: translateY(-2px);
}


/* =========================================================
   22. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid #334155;
}

.footer-bottom p {
    margin: 0;

    color: #94a3b8;

    font-size: 13px;
}

.footer-credit {
    text-align: right;
}


/* =========================================================
   23. TABLET HEADER
   ========================================================= */

@media (max-width: 1023px) {

    .header-inner {
        gap: 20px;
    }

    .primary-menu {
        gap: 18px;
    }

    .primary-menu > li > a {
        font-size: 14px;
    }

    .header-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }

}


/* =========================================================
   24. MOBILE HEADER
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --header-height: 70px;
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .site-branding img {
        max-width: 160px;
        max-height: 55px;
    }

    .site-title {
        font-size: 21px;
    }


    /* Hide desktop CTA */
    .header-actions {
        display: none;
    }


    /* Show mobile button */
    .mobile-menu-toggle {
        display: flex;
    }


    /* Mobile navigation */
    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: block;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        margin: 0;

        background-color: var(--white);

        border-bottom: 1px solid transparent;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease,
            border-color 0.25s ease;

        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    }


    /* Open state */
    .main-navigation.is-open {
        max-height: calc(100vh - var(--header-height));

        overflow-y: auto;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        border-bottom-color: var(--border-color);
    }


    /* Mobile menu */
    .primary-menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 18px 18px;
    }

    .primary-menu > li {
        width: 100%;
    }

    .primary-menu > li > a {
        display: flex;

        align-items: center;

        min-height: 50px;

        padding: 10px 4px;

        border-bottom: 1px solid var(--border-color);

        color: var(--heading-color);

        font-size: 15px;
    }

    .primary-menu > li:last-child > a {
        border-bottom: 0;
    }


    /* Footer */
    .site-footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .footer-credit {
        text-align: left;
    }

}


/* =========================================================
   25. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-branding img {
        max-width: 145px;
    }

    .site-title {
        font-size: 20px;
    }

    .primary-menu {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-social {
        gap: 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

}
/* =========================================================
   26. HERO SECTION
   ========================================================= */

   .hero-section {
    position: relative;

    overflow: hidden;

    padding-top: 90px;
    padding-bottom: 90px;

    background:
        linear-gradient(
            135deg,
            #fffdf7 0%,
            #ffffff 55%,
            #f8fafc 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding: 7px 14px;

    border-radius: 50px;

    color: var(--primary-dark);

    background-color: #fff7ed;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.3px;
}

.hero-title {
    margin-bottom: 22px;

    color: var(--heading-color);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 590px;

    margin-bottom: 30px;

    color: var(--muted-color);

    font-size: 18px;

    line-height: 1.7;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 38px;
}

.hero-actions .btn {
    min-width: 170px;
}

.hero-trust-points {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 28px;
}

.hero-trust-item {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-trust-number {
    color: var(--heading-color);

    font-size: 22px;

    font-weight: 800;
}

.hero-trust-label {
    color: var(--muted-color);

    font-size: 13px;
}

.hero-media {
    position: relative;

    min-width: 0;
}

.hero-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 4.5;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}


/* =========================================================
   HERO TABLET
   ========================================================= */

@media (max-width: 1023px) {

    .hero-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-title {
        font-size: clamp(38px, 6vw, 54px);
    }

    .hero-description {
        font-size: 17px;
    }

}


/* =========================================================
   HERO MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-content {
        max-width: 100%;

        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
    }

    .hero-title {
        margin-bottom: 18px;

        font-size: clamp(34px, 10vw, 46px);

        letter-spacing: -0.8px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;

        gap: 10px;

        margin-bottom: 30px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-points {
        justify-content: center;

        gap: 20px;
    }

    .hero-trust-item {
        min-width: 85px;
    }

    .hero-media {
        width: 100%;
    }

    .hero-image-wrapper {
        border-radius: 18px;
    }

}


/* =========================================================
   HERO SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.6;
    }

    .hero-trust-points {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        width: 100%;

        gap: 12px;
    }

    .hero-trust-item {
        min-width: 0;
    }

    .hero-trust-number {
        font-size: 19px;
    }

    .hero-trust-label {
        font-size: 11px;
    }

}
/* =========================================================
   27. SERVICES SECTION
   ========================================================= */

   .services-section {
	background-color: var(--white);
}

.section-eyebrow {
	display: inline-flex;

	margin-bottom: 12px;

	color: var(--primary-dark);

	font-size: 13px;
	font-weight: 700;

	letter-spacing: 0.5px;

	text-transform: uppercase;
}

.services-grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 22px;
}

.service-card {
	position: relative;

	display: flex;

	flex-direction: column;

	min-height: 100%;

	padding: 30px 25px;

	background-color: var(--white);

	border: 1px solid var(--border-color);

	border-radius: var(--border-radius);

	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);

	transition:
		transform var(--transition),
		box-shadow var(--transition),
		border-color var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);

	border-color: rgba(245, 158, 11, 0.4);

	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.service-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	margin-bottom: 24px;

	border-radius: 14px;

	color: var(--primary-dark);

	background-color: #fff7ed;

	font-size: 27px;

	line-height: 1;
}

.service-content {
	display: flex;

	flex-direction: column;

	flex: 1;
}

.service-content h3 {
	margin-bottom: 12px;

	font-size: 20px;
}

.service-content p {
	margin-bottom: 22px;

	color: var(--muted-color);

	font-size: 14px;

	line-height: 1.7;
}

.service-link {
	display: inline-flex;

	align-items: center;

	gap: 7px;

	margin-top: auto;

	color: var(--primary-dark);

	font-size: 14px;
	font-weight: 700;

	transition:
		color var(--transition),
		gap var(--transition);
}

.service-link:hover {
	color: var(--secondary-color);

	gap: 11px;
}


/* =========================================================
   SERVICES TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.services-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 20px;
	}

}


/* =========================================================
   SERVICES MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.services-grid {
		grid-template-columns: 1fr;

		gap: 16px;
	}

	.service-card {
		padding: 25px 22px;
	}

	.service-icon {
		width: 52px;
		height: 52px;

		margin-bottom: 20px;

		font-size: 24px;
	}

	.service-content h3 {
		font-size: 19px;
	}

}
/* =========================================================
  /* =========================================================
   28. LATEST PRODUCTS
   ========================================================= */

.latest-products-section {
	position: relative;

	background:
		linear-gradient(
			180deg,
			var(--light-bg) 0%,
			#f8fafc 100%
		);

	overflow: hidden;
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.products-grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 26px;

	align-items: stretch;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;

	overflow: hidden;

	background: var(--white);

	border: 1px solid rgba(226, 232, 240, 0.9);

	border-radius: 20px;

	box-shadow:
		0 8px 25px rgba(15, 23, 42, 0.045),
		0 2px 6px rgba(15, 23, 42, 0.025);

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.product-card:hover {
	transform: translateY(-7px);

	border-color: rgba(245, 158, 11, 0.28);

	box-shadow:
		0 22px 45px rgba(15, 23, 42, 0.10),
		0 8px 18px rgba(15, 23, 42, 0.05);
}


/* =========================================================
   PRODUCT IMAGE LINK
   ========================================================= */

.product-image-link {
	display: block;

	overflow: hidden;

	text-decoration: none;
}


/* =========================================================
   PRODUCT IMAGE AREA
   ========================================================= */

.product-image {
	position: relative;

	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;

	aspect-ratio: 4 / 3;

	overflow: hidden;

	background:
		linear-gradient(
			145deg,
			#f8fafc 0%,
			#f1f5f9 100%
		);
}


/* =========================================================
   PRODUCT IMAGE
   FULL IMAGE / NO CROPPING
   ========================================================= */

.product-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;

	object-position: center;

	padding: 12px;

	box-sizing: border-box;

	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   PRODUCT IMAGE HOVER
   ========================================================= */

.product-card:hover .product-image img {
	transform: scale(1.035);
}


/* =========================================================
   IMAGE LIGHT EFFECT
   ========================================================= */

.product-image::after {
	content: "";

	position: absolute;

	inset: 0;

	pointer-events: none;

	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 60%,
			rgba(15, 23, 42, 0.035) 100%
		);

	opacity: 0;

	transition:
		opacity 0.35s ease;
}

.product-card:hover .product-image::after {
	opacity: 1;
}


/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */

.product-image-placeholder {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	color: var(--primary-dark);

	background:
		linear-gradient(
			145deg,
			#fffaf2,
			#fff7ed
		);

	font-size: 48px;
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.product-content {
	display: flex;

	flex-direction: column;

	flex: 1;

	padding: 23px 24px 24px;
}


/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.product-title {
	margin: 0 0 9px;

	color: var(--heading-color);

	font-size: 20px;

	font-weight: 750;

	line-height: 1.35;

	letter-spacing: -0.02em;
}

.product-title a {
	color: var(--heading-color);

	text-decoration: none;

	transition:
		color 0.25s ease;
}

.product-title a:hover {
	color: var(--primary-dark);
}


/* =========================================================
   PRODUCT EXCERPT
   ========================================================= */

.product-excerpt {
	width: 100%;
	max-width: 100%;

	margin: 0 0 20px;

	color: var(--muted-color);

	font-size: 14px;

	line-height: 1.65;

	text-align: left;

	display: -webkit-box;

	

	-webkit-box-orient: vertical;

	overflow: hidden;
}

.product-excerpt p {
	margin: 0;
}


/* =========================================================
   PRODUCT LINK
   ========================================================= */

.product-link {
	display: inline-flex;

	align-items: center;

	align-self: flex-start;

	gap: 7px;

	margin-top: auto;

	padding-top: 5px;

	color: var(--primary-dark);

	font-size: 14px;

	font-weight: 750;

	line-height: 1.4;

	text-decoration: none;

	transition:
		color 0.25s ease,
		gap 0.25s ease;
}

.product-link:hover {
	color: var(--secondary-color);

	gap: 11px;
}


/* =========================================================
   PRODUCT LINK ARROW
   ========================================================= */

.product-link::after {
	content: "→";

	font-size: 16px;

	line-height: 1;

	transition:
		transform 0.25s ease;
}

.product-link:hover::after {
	transform: translateX(2px);
}


/* =========================================================
   PRODUCTS SECTION ACTION
   ========================================================= */

.products-section-action {
	display: flex;

	align-items: center;
	justify-content: center;

	margin-top: 42px;
}


/* =========================================================
   PRODUCTS EMPTY
   ========================================================= */

.products-empty {
	max-width: 620px;

	margin: 0 auto;

	padding: 55px 32px;

	text-align: center;

	background: rgba(255, 255, 255, 0.88);

	border: 1px dashed #cbd5e1;

	border-radius: 20px;

	box-shadow:
		0 10px 30px rgba(15, 23, 42, 0.04);
}


/* =========================================================
   EMPTY ICON
   ========================================================= */

.products-empty-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 64px;
	height: 64px;

	margin: 0 auto 20px;

	border-radius: 18px;

	color: var(--primary-dark);

	background:
		linear-gradient(
			145deg,
			#fff7ed,
			#ffedd5
		);

	font-size: 28px;

	box-shadow:
		0 8px 20px rgba(245, 158, 11, 0.10);
}


/* =========================================================
   EMPTY TITLE
   ========================================================= */

.products-empty h3 {
	margin: 0 0 9px;

	color: var(--heading-color);

	font-size: 22px;

	font-weight: 750;
}


/* =========================================================
   EMPTY TEXT
   ========================================================= */

.products-empty p {
	margin: 0;

	color: var(--muted-color);

	font-size: 14px;

	line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.products-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 20px;
	}

	.product-card {
		border-radius: 18px;
	}

	.product-content {
		padding: 21px;
	}

	.product-title {
		font-size: 19px;
	}

	.product-excerpt {
		font-size: 13.5px;
	}

	.product-image {
		aspect-ratio: 4 / 3;
	}

	.product-image img {
		padding: 11px;
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.products-grid {
		grid-template-columns: 1fr;

		gap: 18px;
	}

	.product-card {
		border-radius: 17px;

		box-shadow:
			0 7px 22px rgba(15, 23, 42, 0.055);
	}

	.product-card:hover {
		transform: translateY(-3px);

		box-shadow:
			0 14px 30px rgba(15, 23, 42, 0.08);
	}


	/* ---------------------------------------------------------
	   MOBILE IMAGE
	   --------------------------------------------------------- */

	.product-image {
		aspect-ratio: 4 / 3;

		min-height: 215px;
	}

	.product-image img {
		width: 100%;
		height: 100%;

		object-fit: contain;

		object-position: center;

		padding: 15px;
	}

	.product-card:hover .product-image img {
		transform: scale(1.025);
	}


	/* ---------------------------------------------------------
	   MOBILE CONTENT
	   --------------------------------------------------------- */

	.product-content {
		padding: 20px;
	}

	.product-title {
		font-size: 19px;

		margin-bottom: 8px;
	}

	.product-excerpt {
		margin-bottom: 18px;

		font-size: 14px;

		line-height: 1.6;
	}

	.product-link {
		font-size: 14px;
	}

	.products-section-action {
		margin-top: 30px;
	}

	.products-empty {
		padding: 42px 22px;

		border-radius: 17px;
	}
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.products-grid {
		gap: 16px;
	}

	.product-card {
		border-radius: 15px;
	}

	.product-image {
		aspect-ratio: 4 / 3;

		min-height: 195px;
	}

	.product-image img {
		padding: 12px;
	}

	.product-content {
		padding: 18px;
	}

	.product-title {
		font-size: 18px;
	}

	.product-excerpt {
		font-size: 13.5px;

		
	}

	.product-link {
		font-size: 13.5px;
	}

	.products-empty {
		padding: 35px 18px;
	}

	.products-empty-icon {
		width: 58px;
		height: 58px;

		border-radius: 16px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

	.product-image {
		aspect-ratio: 4 / 3;

		min-height: 180px;
	}

	.product-image img {
		padding: 10px;
	}

	.product-content {
		padding: 16px;
	}

	.product-title {
		font-size: 17px;
	}

	.product-excerpt {
		font-size: 13px;
	}

	.product-link {
		font-size: 13px;
	}
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.product-card,
	.product-image img,
	.product-image::after,
	.product-link,
	.product-link::after {
		transition: none;
	}
}
/* =========================================================
   /* =========================================================
   29. ABOUT SECTION
   ========================================================= */

.about-section {
	position: relative;

	background:
		linear-gradient(
			180deg,
			var(--white) 0%,
			#fafbfc 100%
		);

	overflow: hidden;
}


/* =========================================================
   ABOUT GRID
   ========================================================= */

.about-grid {
	display: grid;

	grid-template-columns:
		minmax(0, 0.95fr)
		minmax(0, 1.05fr);

	align-items: center;

	gap: clamp(45px, 6vw, 90px);
}


/* =========================================================
   ABOUT MEDIA
   ========================================================= */

.about-media {
	position: relative;

	min-width: 0;

	padding-right: 28px;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.about-image-wrapper {
	position: relative;

	overflow: hidden;

	border-radius: 28px;

	background: #f1f5f9;

	box-shadow:
		0 25px 60px rgba(15, 23, 42, 0.12),
		0 8px 20px rgba(15, 23, 42, 0.05);

	transform: translateZ(0);
}


/* =========================================================
   IMAGE
   ========================================================= */

.about-image {
	display: block;

	width: 100%;

	aspect-ratio: 4 / 4.5;

	object-fit: cover;

	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.4s ease;
}

.about-image-wrapper:hover .about-image {
	transform: scale(1.045);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.about-image-wrapper::after {
	content: "";

	position: absolute;

	inset: 0;

	pointer-events: none;

	background:
		linear-gradient(
			180deg,
			rgba(15, 23, 42, 0) 55%,
			rgba(15, 23, 42, 0.12) 100%
		);
}


/* =========================================================
   EXPERIENCE BADGE
   ========================================================= */

.about-experience {
	position: absolute;

	right: -2px;
	bottom: 38px;

	z-index: 2;

	display: flex;

	flex-direction: column;

	align-items: center;
	justify-content: center;

	width: 132px;
	height: 132px;

	padding: 16px;

	text-align: center;

	background:
		linear-gradient(
			145deg,
			var(--primary-color),
			var(--primary-dark, #d97706)
		);

	border: 7px solid var(--white);

	border-radius: 50%;

	box-shadow:
		0 18px 40px rgba(15, 23, 42, 0.18),
		0 6px 15px rgba(15, 23, 42, 0.08);

	transform: rotate(2deg);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.about-experience:hover {
	transform: rotate(0deg) scale(1.05);

	box-shadow:
		0 22px 48px rgba(15, 23, 42, 0.22);
}


/* =========================================================
   EXPERIENCE NUMBER
   ========================================================= */

.about-experience strong {
	display: block;

	color: var(--white);

	font-size: clamp(27px, 3vw, 34px);

	font-weight: 850;

	line-height: 1;

	letter-spacing: -0.04em;
}


/* =========================================================
   EXPERIENCE TEXT
   ========================================================= */

.about-experience span {
	display: block;

	margin-top: 7px;

	max-width: 80px;

	color: rgba(255, 255, 255, 0.92);

	font-size: 11px;

	font-weight: 700;

	line-height: 1.3;

	text-transform: uppercase;

	letter-spacing: 0.05em;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.about-content {
	max-width: 650px;
}


/* =========================================================
   ABOUT HEADING
   ========================================================= */

.about-content h2 {
	margin: 0 0 20px;

	font-size: clamp(32px, 4vw, 48px);

	font-weight: 800;

	line-height: 1.1;

	letter-spacing: -0.04em;

	color: var(--heading-color, #0f172a);
}


/* =========================================================
   ABOUT PARAGRAPHS
   ========================================================= */

.about-content p {
	margin: 0 0 18px;

	color: var(--muted-color, #64748b);

	font-size: 15.5px;

	line-height: 1.8;
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-content .about-intro {
	margin-bottom: 20px;

	color: var(--text-color, #334155);

	font-size: 17px;

	font-weight: 600;

	line-height: 1.75;
}


/* =========================================================
   ABOUT FEATURES
   ========================================================= */

.about-features {
	display: flex;

	flex-direction: column;

	gap: 11px;

	margin: 30px 0 32px;

	padding: 0;

	list-style: none;
}


/* =========================================================
   FEATURE ITEM
   ========================================================= */

.about-features li {
	display: flex;

	align-items: flex-start;

	gap: 13px;

	padding: 13px 15px;

	background: rgba(255, 255, 255, 0.75);

	border: 1px solid rgba(226, 232, 240, 0.8);

	border-radius: 14px;

	box-shadow: 0 5px 16px rgba(15, 23, 42, 0.035);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.about-features li:hover {
	transform: translateX(4px);

	border-color: rgba(245, 158, 11, 0.25);

	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}


/* =========================================================
   FEATURE ICON
   ========================================================= */

.about-feature-icon {
	display: inline-flex;

	flex: 0 0 34px;

	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	margin-top: 1px;

	border-radius: 10px;

	background:
		linear-gradient(
			145deg,
			#fff7ed,
			#ffedd5
		);

	color: var(--primary-dark, #c2410c);

	font-size: 14px;

	font-weight: 800;

	box-shadow:
		inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}


/* =========================================================
   FEATURE TEXT
   ========================================================= */

.about-features li div {
	display: flex;

	flex-direction: column;

	gap: 3px;

	min-width: 0;
}

.about-features strong {
	color: var(--heading-color, #0f172a);

	font-size: 14.5px;

	font-weight: 750;

	line-height: 1.4;
}

.about-features li div span {
	color: var(--muted-color, #64748b);

	font-size: 13px;

	line-height: 1.55;
}


/* =========================================================
   ABOUT ACTIONS
   ========================================================= */

.about-actions {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 12px;

	margin-top: 4px;
}


/* =========================================================
   ABOUT TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.about-grid {
		gap: 45px;
	}

	.about-media {
		padding-right: 18px;
	}

	.about-image-wrapper {
		border-radius: 23px;
	}

	.about-experience {
		width: 112px;
		height: 112px;

		right: -2px;
		bottom: 25px;

		border-width: 6px;
	}

	.about-experience strong {
		font-size: 27px;
	}

	.about-content h2 {
		font-size: 37px;
	}

	.about-content p {
		font-size: 15px;
	}

	.about-content .about-intro {
		font-size: 16px;
	}

	.about-features {
		margin-top: 25px;
		margin-bottom: 27px;
	}
}


/* =========================================================
   ABOUT MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.about-section {
		background:
			linear-gradient(
				180deg,
				var(--white) 0%,
				#fafbfc 100%
			);
	}

	.about-grid {
		grid-template-columns: 1fr;

		gap: 38px;
	}

	.about-media {
		padding-right: 10px;
		padding-left: 0;
	}

	.about-image-wrapper {
		border-radius: 20px;

		box-shadow:
			0 18px 40px rgba(15, 23, 42, 0.11);
	}

	.about-image {
		aspect-ratio: 4 / 3;

		min-height: 280px;
	}

	.about-experience {
		right: -5px;
		bottom: 18px;

		width: 105px;
		height: 105px;

		padding: 12px;

		border-width: 5px;

		transform: rotate(0);
	}

	.about-experience strong {
		font-size: 25px;
	}

	.about-experience span {
		margin-top: 5px;

		font-size: 9px;
	}

	.about-content {
		max-width: 100%;
	}

	.about-content h2 {
		margin-bottom: 15px;

		font-size: 32px;

		line-height: 1.13;
	}

	.about-content p {
		margin-bottom: 16px;

		font-size: 15px;

		line-height: 1.7;
	}

	.about-content .about-intro {
		font-size: 16px;

		line-height: 1.7;
	}

	.about-features {
		gap: 10px;

		margin: 24px 0 27px;
	}

	.about-features li {
		gap: 11px;

		padding: 12px;
	}

	.about-feature-icon {
		flex-basis: 32px;

		width: 32px;
		height: 32px;

		border-radius: 9px;
	}

	.about-features strong {
		font-size: 14px;
	}

	.about-features li div span {
		font-size: 12.5px;
	}

	.about-actions {
		flex-direction: column;

		align-items: stretch;

		width: 100%;
	}

	.about-actions .btn {
		width: 100%;

		min-height: 50px;
	}
}


/* =========================================================
   ABOUT SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.about-grid {
		gap: 32px;
	}

	.about-media {
		padding-right: 6px;
	}

	.about-image-wrapper {
		border-radius: 17px;
	}

	.about-image {
		aspect-ratio: 4 / 3;

		min-height: 240px;
	}

	.about-experience {
		right: -5px;
		bottom: 15px;

		width: 92px;
		height: 92px;

		padding: 10px;

		border-width: 4px;
	}

	.about-experience strong {
		font-size: 21px;
	}

	.about-experience span {
		font-size: 8px;
	}

	.about-content h2 {
		font-size: 28px;

		letter-spacing: -0.025em;
	}

	.about-content p {
		font-size: 14px;

		line-height: 1.65;
	}

	.about-content .about-intro {
		font-size: 15px;
	}

	.about-features {
		margin-top: 21px;
		margin-bottom: 24px;
	}

	.about-features li {
		padding: 11px;
	}

	.about-feature-icon {
		flex-basis: 30px;

		width: 30px;
		height: 30px;

		font-size: 13px;
	}

	.about-features strong {
		font-size: 13.5px;
	}

	.about-features li div span {
		font-size: 12px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

	.about-image {
		min-height: 220px;
	}

	.about-experience {
		width: 86px;
		height: 86px;
	}

	.about-experience strong {
		font-size: 19px;
	}

	.about-content h2 {
		font-size: 26px;
	}

	.about-features li {
		gap: 9px;

		padding: 10px;
	}
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.about-image,
	.about-experience,
	.about-features li {
		transition: none;
	}
}
/* =========================================================
   /* =========================================================
   30. PARTNERS SECTION
   ========================================================= */

.partners-section {
	background-color: var(--light-bg);
	overflow: hidden;
}


/* =========================================================
   PARTNERS GRID - DESKTOP
   ========================================================= */

.partners-grid {
	display: grid;

	grid-template-columns: repeat(6, minmax(0, 1fr));

	gap: 18px;

	width: 100%;
}


/* =========================================================
   PARTNER CARD
   ========================================================= */

.partner-card {
	display: flex;

	align-items: center;
	justify-content: center;

	min-height: 120px;

	padding: 25px;

	background-color: var(--white);

	border: 1px solid var(--border-color);

	border-radius: var(--border-radius);

	transition:
		transform var(--transition),
		box-shadow var(--transition),
		border-color var(--transition);
}


/* =========================================================
   PARTNER HOVER
   ========================================================= */

.partner-card:hover {
	transform: translateY(-4px);

	border-color: rgba(245, 158, 11, 0.35);

	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   PARTNER LOGO
   ========================================================= */

.partner-logo {
	display: block;

	width: auto;

	max-width: 150px;
	max-height: 55px;

	object-fit: contain;

	filter: grayscale(100%);

	opacity: 0.75;

	transition:
		filter var(--transition),
		opacity var(--transition),
		transform var(--transition);
}


/* =========================================================
   DESKTOP LOGO HOVER
   ========================================================= */

.partner-card:hover .partner-logo {
	filter: grayscale(0);

	opacity: 1;

	transform: scale(1.04);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.partners-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));

		gap: 16px;
	}

	.partner-card {
		min-height: 110px;

		padding: 20px;
	}

	.partner-logo {
		max-width: 140px;

		max-height: 55px;
	}
}


/* =========================================================
   MOBILE
   ONE LOGO AT A TIME
   CHANGE EVERY 2 SECONDS
   ========================================================= */

@media (max-width: 767px) {

	.partners-section {
		overflow: hidden;
	}

	.partners-grid {

		display: flex;

		width: 100%;

		gap: 0;

		/*
		 * IMPORTANT:
		 * Marquee completely disabled on mobile.
		 */
		animation: partners-mobile 12s steps(1, end) infinite;

		will-change: transform;
	}


	/* ---------------------------------------------------------
	   MOBILE CARD
	   --------------------------------------------------------- */

	.partner-card {

		flex: 0 0 100%;

		width: 100%;

		min-height: 150px;

		padding: 15px;

		/*
		 * Remove card/background.
		 */
		background: transparent;

		border: none;

		border-radius: 0;

		box-shadow: none;

		transform: none;
	}


	/* ---------------------------------------------------------
	   MOBILE LOGO
	   --------------------------------------------------------- */

	.partner-logo {

		display: block;

		width: auto;

		max-width: 240px;

		max-height: 100px;

		object-fit: contain;

		/*
		 * Remove black/grayscale cover.
		 */
		filter: none;

		opacity: 1;

		transform: none;
	}


	/* ---------------------------------------------------------
	   REMOVE HOVER EFFECT ON MOBILE
	   --------------------------------------------------------- */

	.partner-card:hover {

		transform: none;

		background: transparent;

		border: none;

		box-shadow: none;
	}

	.partner-card:hover .partner-logo {

		filter: none;

		opacity: 1;

		transform: none;
	}
}


/* =========================================================
   MOBILE SLIDER
   6 LOGOS
   EACH LOGO = 2 SECONDS
   TOTAL = 12 SECONDS
   ========================================================= */

@keyframes partners-mobile {

	/* Logo 1 */
	0%,
	16.66% {
		transform: translateX(0);
	}


	/* Logo 2 */
	16.67%,
	33.32% {
		transform: translateX(-100%);
	}


	/* Logo 3 */
	33.33%,
	49.98% {
		transform: translateX(-200%);
	}


	/* Logo 4 */
	49.99%,
	66.64% {
		transform: translateX(-300%);
	}


	/* Logo 5 */
	66.65%,
	83.30% {
		transform: translateX(-400%);
	}


	/* Logo 6 */
	83.31%,
	100% {
		transform: translateX(-500%);
	}
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.partner-card {

		min-height: 140px;

		padding: 10px;
	}

	.partner-logo {

		max-width: 220px;

		max-height: 95px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

	.partner-card {

		min-height: 125px;

		padding: 8px;
	}

	.partner-logo {

		max-width: 200px;

		max-height: 85px;
	}
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.partners-grid {
		animation: none;
	}
}
/* =========================================================
 /* =========================================================
   31. TESTIMONIALS SECTION
   ========================================================= */

.testimonials-section {
	position: relative;

	background:
		linear-gradient(
			180deg,
			var(--white) 0%,
			#f8fafc 100%
		);

	overflow: hidden;
}


/* =========================================================
   TESTIMONIALS GRID
   ========================================================= */

.testimonials-grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 24px;

	align-items: stretch;
}


/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

.testimonial-card {
	position: relative;

	display: flex;

	flex-direction: column;

	min-width: 0;
	min-height: 100%;

	padding: 30px;

	background:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#f8fafc 100%
		);

	border: 1px solid rgba(226, 232, 240, 0.9);

	border-radius: 20px;

	box-shadow:
		0 8px 25px rgba(15, 23, 42, 0.045),
		0 2px 6px rgba(15, 23, 42, 0.025);

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);

	border-color: rgba(245, 158, 11, 0.30);

	box-shadow:
		0 20px 42px rgba(15, 23, 42, 0.09),
		0 6px 15px rgba(15, 23, 42, 0.04);
}


/* =========================================================
   TESTIMONIAL AUTHOR
   ========================================================= */

.testimonial-top {
	display: flex;

	align-items: center;

	gap: 14px;

	margin-bottom: 20px;
}


/* =========================================================
   TESTIMONIAL AVATAR
   IMAGE FRIENDLY
   ========================================================= */

.testimonial-avatar {
	position: relative;

	display: flex;

	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 58px;
	height: 58px;

	overflow: hidden;

	border-radius: 50%;

	color: var(--white);

	background:
		linear-gradient(
			145deg,
			var(--primary-color),
			var(--primary-dark)
		);

	border: 3px solid var(--white);

	box-shadow:
		0 6px 18px rgba(15, 23, 42, 0.12);

	font-size: 18px;
	font-weight: 800;
}


/* =========================================================
   TESTIMONIAL AVATAR IMAGE
   FULL IMAGE / NO CROPPING
   ========================================================= */

.testimonial-avatar img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;

	object-position: center;

	padding: 3px;

	box-sizing: border-box;
}


/* =========================================================
   TESTIMONIAL AUTHOR
   ========================================================= */

.testimonial-author {
	display: flex;

	flex-direction: column;

	min-width: 0;

	gap: 3px;
}

.testimonial-author h3 {
	margin: 0;

	color: var(--heading-color);

	font-size: 16px;

	font-weight: 750;

	line-height: 1.35;
}

.testimonial-author span {
	color: var(--muted-color);

	font-size: 13px;

	line-height: 1.4;
}


/* =========================================================
   RATING
   ========================================================= */

.testimonial-rating {
	display: flex;

	align-items: center;

	gap: 4px;

	margin-bottom: 17px;
}

.star {
	color: #cbd5e1;

	font-size: 17px;

	line-height: 1;

	transition:
		transform 0.25s ease,
		color 0.25s ease;
}

.star.active {
	color: var(--primary-color);
}

.testimonial-card:hover .star.active {
	transform: translateY(-1px);
}


/* =========================================================
   REVIEW TEXT
   ========================================================= */

.testimonial-text {
	position: relative;

	margin: 0;

	color: var(--text-color);

	font-size: 15px;

	line-height: 1.75;
}


/* =========================================================
   QUOTE DETAIL
   ========================================================= */

.testimonial-text::before {
	content: "“";

	display: block;

	margin-bottom: 3px;

	color: var(--primary-color);

	font-family: Georgia, serif;

	font-size: 38px;

	font-weight: 700;

	line-height: 0.8;

	opacity: 0.35;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.testimonials-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 20px;
	}

	.testimonial-card {
		padding: 25px;

		border-radius: 18px;
	}

	.testimonial-avatar {
		width: 55px;
		height: 55px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.testimonials-grid {
		grid-template-columns: 1fr;

		gap: 16px;
	}

	.testimonial-card {
		padding: 23px;

		border-radius: 17px;
	}

	.testimonial-card:hover {
		transform: translateY(-3px);

		box-shadow:
			0 14px 30px rgba(15, 23, 42, 0.075);
	}

	.testimonial-avatar {
		width: 58px;
		height: 58px;

		border-width: 2px;
	}

	.testimonial-author h3 {
		font-size: 15.5px;
	}

	.testimonial-text {
		font-size: 14.5px;

		line-height: 1.7;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.testimonials-grid {
		gap: 14px;
	}

	.testimonial-card {
		padding: 20px;

		border-radius: 15px;
	}

	.testimonial-top {
		gap: 12px;

		margin-bottom: 18px;
	}

	.testimonial-avatar {
		width: 54px;
		height: 54px;
	}

	.testimonial-author h3 {
		font-size: 15px;
	}

	.testimonial-author span {
		font-size: 12px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.star {
		font-size: 16px;
	}

	.testimonial-text {
		font-size: 14px;
	}

	.testimonial-text::before {
		font-size: 34px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

	.testimonial-card {
		padding: 18px;
	}

	.testimonial-avatar {
		width: 50px;
		height: 50px;
	}

	.testimonial-top {
		gap: 10px;
	}

	.testimonial-text {
		font-size: 13.5px;
	}
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.testimonial-card,
	.testimonial-avatar img,
	.star {
		transition: none;
	}
}
/* =========================================================
   32. FAQ SECTION
   ========================================================= */

   .faq-section {
	background-color: var(--light-bg);
}

.faq-list {
	max-width: 900px;

	margin: 0 auto;
}

.faq-item {
	background-color: var(--white);

	border: 1px solid var(--border-color);

	border-radius: 12px;

	overflow: hidden;

	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}

.faq-item + .faq-item {
	margin-top: 12px;
}

.faq-item.is-open {
	border-color: rgba(245, 158, 11, 0.45);

	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.faq-question {
	display: flex;

	align-items: center;
	justify-content: space-between;

	width: 100%;

	padding: 22px 24px;

	border: 0;

	background: transparent;

	color: var(--heading-color);

	font-family: inherit;

	font-size: 16px;

	font-weight: 700;

	text-align: left;

	cursor: pointer;
}

.faq-question:hover {
	color: var(--primary-dark);
}

.faq-question-text {
	padding-right: 20px;
}

.faq-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 30px;
	height: 30px;

	border-radius: 50%;

	color: var(--primary-dark);

	background-color: #fff7ed;

	font-size: 21px;
	font-weight: 400;

	line-height: 1;

	transition:
		transform var(--transition),
		background-color var(--transition);
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);

	background-color: var(--primary-color);

	color: var(--white);
}

.faq-answer {
	padding: 0 24px 22px;
}

.faq-answer p {
	margin: 0;

	color: var(--muted-color);

	font-size: 15px;

	line-height: 1.75;
}


/* =========================================================
   FAQ MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.faq-question {
		padding: 18px;

		font-size: 15px;
	}

	.faq-answer {
		padding: 0 18px 18px;
	}

	.faq-answer p {
		font-size: 14px;
	}

	.faq-icon {
		width: 28px;
		height: 28px;

		font-size: 19px;
	}

}
/* =========================================================
   33. CONTACT SECTION
   ========================================================= */

   .contact-section {
	background-color: var(--white);
}

.contact-wrapper {
	display: grid;

	grid-template-columns:
		minmax(0, 0.85fr)
		minmax(0, 1.15fr);

	gap: 70px;

	align-items: center;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-info {
	max-width: 520px;
}

.contact-info h2 {
	margin-bottom: 18px;

	font-size: clamp(32px, 4vw, 46px);

	line-height: 1.15;
}

.contact-intro {
	margin-bottom: 32px;

	color: var(--muted-color);

	font-size: 16px;

	line-height: 1.75;
}

.contact-details {
	display: flex;

	flex-direction: column;

	gap: 22px;
}

.contact-detail {
	display: flex;

	align-items: flex-start;

	gap: 14px;
}

.contact-detail-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 46px;
	height: 46px;

	border-radius: 12px;

	color: var(--primary-dark);

	background-color: #fff7ed;

	font-size: 19px;
}

.contact-detail > div:last-child {
	display: flex;

	flex-direction: column;

	gap: 4px;
}

.contact-detail > div:last-child > span {
	color: var(--muted-color);

	font-size: 12px;
	font-weight: 600;

	text-transform: uppercase;

	letter-spacing: 0.4px;
}

.contact-detail a {
	color: var(--heading-color);

	font-size: 15px;
	font-weight: 700;
}

.contact-detail a:hover {
	color: var(--primary-dark);
}

.contact-detail p {
	margin: 0;

	color: var(--heading-color);

	font-size: 15px;
	font-weight: 700;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-wrapper {
	padding: 35px;

	background-color: var(--light-bg);

	border: 1px solid var(--border-color);

	border-radius: 20px;

	box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
}

.contact-form {
	width: 100%;
}

.form-row {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 18px;
}

.form-group {
	display: flex;

	flex-direction: column;

	margin-bottom: 20px;
}

.form-group label {
	margin-bottom: 8px;

	color: var(--heading-color);

	font-size: 13px;

	font-weight: 700;
}

.form-group label span {
	color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;

	padding: 13px 15px;

	border: 1px solid var(--border-color);

	border-radius: 9px;

	background-color: var(--white);

	color: var(--text-color);

	font-family: inherit;

	font-size: 14px;

	outline: none;

	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}

.form-group input,
.form-group select {
	min-height: 48px;
}

.form-group textarea {
	resize: vertical;

	min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);

	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.form-submit {
	display: flex;

	align-items: center;
}

.form-submit .btn {
	min-width: 170px;
}


/* =========================================================
   CONTACT TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.contact-wrapper {
		grid-template-columns: 1fr;

		gap: 45px;
	}

	.contact-info {
		max-width: 700px;
	}

}


/* =========================================================
   CONTACT MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.contact-wrapper {
		gap: 35px;
	}

	.contact-info h2 {
		font-size: 32px;
	}

	.contact-intro {
		font-size: 15px;
	}

	.contact-form-wrapper {
		padding: 25px 20px;

		border-radius: 16px;
	}

	.form-row {
		grid-template-columns: 1fr;

		gap: 0;
	}

	.form-submit .btn {
		width: 100%;
	}

}
/* =========================================================
   34. SINGLE PRODUCT
   ========================================================= */

.single-product-page {
	padding-top: 40px;
	padding-bottom: 80px;

	background-color: var(--white);
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.product-breadcrumb {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 8px;

	margin-bottom: 35px;

	color: var(--muted-color);

	font-size: 13px;
}

.product-breadcrumb a {
	color: var(--muted-color);
}

.product-breadcrumb a:hover {
	color: var(--primary-dark);
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.single-product-grid {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, 1fr);

	gap: 65px;

	align-items: start;
}


/* =========================================================
   PRODUCT MEDIA
   ========================================================= */

.single-product-media {
	position: sticky;

	top: 30px;
}

.single-product-image {
	width: 100%;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.single-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.single-product-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 15px;
}

.single-product-gallery-item {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
}

.single-product-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

@media (max-width: 768px) {

	.single-product-image {
		height: 320px;
	}

	.single-product-gallery-item {
		width: 65px;
		height: 65px;
	}

}

.single-product-placeholder {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	color: var(--primary-color);

	background-color: #fff7ed;

	font-size: 80px;
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.single-product-info {
	padding-top: 10px;
}

.single-product-category {
	display: inline-flex;

	margin-bottom: 14px;

	padding: 6px 12px;

	border-radius: 50px;

	color: var(--primary-dark);

	background-color: #fff7ed;

	font-size: 12px;
	font-weight: 700;
}

.single-product-title {
	margin-bottom: 18px;

	font-size: clamp(32px, 4vw, 48px);

	line-height: 1.12;
}

.single-product-short-description {
	margin-bottom: 25px;

	color: var(--muted-color);

	font-size: 16px;

	line-height: 1.7;
}

.single-product-short-description p {
	margin-bottom: 0;
}


/* =========================================================
   PRODUCT META
   ========================================================= */

.single-product-meta {
	margin-bottom: 25px;

	border-top: 1px solid var(--border-color);

	border-bottom: 1px solid var(--border-color);
}

.product-meta-row {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	padding: 13px 0;

	border-bottom: 1px solid var(--border-color);

	font-size: 14px;
}

.product-meta-row:last-child {
	border-bottom: 0;
}

.product-meta-row span {
	color: var(--muted-color);
}

.product-meta-row strong {
	color: var(--heading-color);

	text-align: right;
}


/* =========================================================
   PRICE
   ========================================================= */

.single-product-price {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 12px;

	margin-bottom: 15px;
}

.product-sale-price {
	color: var(--heading-color);

	font-size: 28px;
	font-weight: 800;
}

.product-old-price {
	color: var(--muted-color);

	font-size: 15px;
}


/* =========================================================
   STOCK
   ========================================================= */

.single-product-stock {
	margin-bottom: 25px;

	font-size: 14px;
	font-weight: 700;
}

.stock-in {
	color: #15803d;
}

.stock-out {
	color: #dc2626;
}

.stock-pending {
	color: #b45309;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.single-product-actions {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 12px;
}

.single-product-actions .btn {
	min-width: 150px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.single-product-description {
	max-width: 900px;

	margin-top: 80px;

	padding-top: 55px;

	border-top: 1px solid var(--border-color);
}

.product-content-heading {
	margin-bottom: 25px;
}

.product-content-heading h2 {
	margin-bottom: 0;

	font-size: 32px;
}

.product-description-content {
	color: var(--muted-color);

	font-size: 15px;

	line-height: 1.8;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
	margin-top: 30px;

	margin-bottom: 12px;

	color: var(--heading-color);
}

.product-description-content ul,
.product-description-content ol {
	margin-bottom: 20px;

	padding-left: 22px;
}


/* =========================================================
   PRODUCT TABLET
   ========================================================= */

@media (max-width: 1023px) {

	.single-product-grid {
		gap: 40px;
	}

	.single-product-title {
		font-size: 38px;
	}

}


/* =========================================================
   PRODUCT MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.single-product-page {
		padding-top: 25px;

		padding-bottom: 55px;
	}

	.product-breadcrumb {
		margin-bottom: 25px;

		font-size: 12px;
	}

	.single-product-grid {
		grid-template-columns: 1fr;

		gap: 35px;
	}

	.single-product-media {
		position: static;
	}

	.single-product-image {
		border-radius: 16px;
	}

	.single-product-image img {
		padding: 15px;
	}

	.single-product-title {
		font-size: 32px;
	}

	.single-product-short-description {
		font-size: 15px;
	}

	.product-sale-price {
		font-size: 25px;
	}

	.single-product-actions {
		flex-direction: column;

		align-items: stretch;
	}

	.single-product-actions .btn {
		width: 100%;
	}

	.single-product-description {
		margin-top: 55px;

		padding-top: 40px;
	}

	.product-content-heading h2 {
		font-size: 28px;
	}

}
/* =========================================================
   PRODUCTS ARCHIVE PAGE
   ========================================================= */

.products-archive-page {
	width: 100%;
	overflow-x: hidden;
}

.products-archive-header {
	padding: 80px 20px 60px;
	text-align: center;
	background: #f5f8f6;
}

.products-archive-header .container {
	max-width: 1200px;
	margin: 0 auto;
}

.products-archive-header .section-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.products-archive-header h1 {
	margin: 0 0 15px;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.15;
}

.products-archive-header p {
	max-width: 700px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.7;
	color: #666;
}


/* Archive Container */

.products-archive-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}


/* Category Filter */

.product-category-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 45px;
}

.product-category-filter-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border: 1px solid #dce3df;
	border-radius: 30px;
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
}

.product-category-filter-item:hover,
.product-category-filter-item.active {
	background: #168a4a;
	border-color: #168a4a;
	color: #fff;
}

.product-category-filter-item span {
	font-size: 12px;
	opacity: 0.75;
}


/* Products Grid */

.products-archive-page .products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}


/* Product Card */

.products-archive-page .product-card {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e9e7;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-archive-page .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}


/* Product Image */

.products-archive-page .product-image-link {
	display: block;
	text-decoration: none;
}

.products-archive-page .product-image {
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f7f9f8;
}

.products-archive-page .product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
	display: block;
	transition: transform 0.3s ease;
}

.products-archive-page .product-card:hover .product-image img {
	transform: scale(1.04);
}

.product-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: #168a4a;
	background: #f7f9f8;
}


/* Product Content */

.products-archive-page .product-content {
	padding: 24px;
	min-width: 0;
}

.products-archive-page .product-category {
	margin-bottom: 8px;
	color: #168a4a;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.products-archive-page .product-title {
	margin: 0 0 12px;
	font-size: 21px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.products-archive-page .product-title a {
	color: #1b1b1b;
	text-decoration: none;
}

.products-archive-page .product-title a:hover {
	color: #168a4a;
}

.products-archive-page .product-excerpt {
	margin: 0 0 18px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
}


/* Price */

.products-archive-page .product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}

.products-archive-page .product-current-price {
	color: #168a4a;
	font-size: 20px;
	font-weight: 700;
}

.products-archive-page .product-old-price {
	color: #999;
	font-size: 14px;
}


/* Stock */

.products-archive-page .product-stock {
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 600;
}

.products-archive-page .stock-in {
	color: #168a4a;
}

.products-archive-page .stock-out {
	color: #d62828;
}

.products-archive-page .stock-pending {
	color: #b7791f;
}


/* Product Button */

.products-archive-page .product-card-action {
	margin-top: 10px;
}

.products-archive-page .product-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
}

.products-archive-page .product-link span {
	transition: transform 0.2s ease;
}

.products-archive-page .product-link:hover span {
	transform: translateX(4px);
}


/* Pagination */

.products-pagination {
	margin-top: 50px;
	text-align: center;
}

.products-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.products-pagination a,
.products-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 5px 12px;
	box-sizing: border-box;
	border: 1px solid #dce3df;
	border-radius: 8px;
	text-decoration: none;
	color: #222;
}

.products-pagination .current,
.products-pagination a:hover {
	background: #168a4a;
	border-color: #168a4a;
	color: #fff;
}


/* Empty Products */

.products-empty {
	padding: 80px 20px;
	text-align: center;
}

.products-empty-icon {
	margin-bottom: 15px;
	font-size: 60px;
}

.products-empty h2 {
	margin-bottom: 10px;
}

.products-empty p {
	color: #666;
}


/* =========================================================
   SINGLE PRODUCT - DESCRIPTION OVERFLOW FIX
   ========================================================= */

.single-product-page {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.single-product-page .container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.single-product-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 50px;
	align-items: start;
}

.single-product-media,
.single-product-info {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}


/* Product Description */

.single-product-description {
	width: 100%;
	max-width: 100%;
	margin-top: 70px;
	padding: 50px;
	box-sizing: border-box;
	background: #f7f9f8;
	border-radius: 18px;
	overflow: hidden;
}

.product-content-heading {
	max-width: 800px;
	margin-bottom: 30px;
}

.product-description-content {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	word-wrap: break-word;
}

.product-description-content p {
	max-width: 100%;
	margin-top: 0;
	margin-bottom: 18px;
	line-height: 1.8;
	overflow-wrap: anywhere;
}

.product-description-content img {
	display: block;
	max-width: 100%;
	height: auto;
}

.product-description-content iframe,
.product-description-content video,
.product-description-content embed {
	display: block;
	max-width: 100%;
	width: 100%;
}

.product-description-content table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.product-description-content pre,
.product-description-content code {
	max-width: 100%;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.product-description-content a {
	overflow-wrap: anywhere;
	word-break: break-word;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

	.products-archive-page .products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.single-product-description {
		margin-top: 50px;
		padding: 35px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.products-archive-header {
		padding: 55px 18px 45px;
	}

	.products-archive-header h1 {
		font-size: 34px;
	}

	.products-archive-header p {
		font-size: 15px;
	}

	.products-archive-container {
		padding: 40px 15px 60px;
	}

	.product-category-filter {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
	}

	.product-category-filter-item {
		flex: 0 0 auto;
	}

	.products-archive-page .products-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.products-archive-page .product-image {
		height: 240px;
	}

	.products-archive-page .product-content {
		padding: 20px;
	}

	.single-product-description {
		margin-top: 40px;
		padding: 25px 18px;
		border-radius: 12px;
	}

	.single-product-grid {
		gap: 25px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.products-archive-header h1 {
		font-size: 30px;
	}

	.products-archive-page .product-image {
		height: 210px;
	}

	.products-archive-page .product-title {
		font-size: 19px;
	}

	.products-archive-page .product-current-price {
		font-size: 18px;
	}

	.single-product-description {
		padding: 20px 15px;
	}

}
/* Product archive description */


/* Product card content alignment */
.products-archive-page .product-content {
	text-align: center;
}

/* Bottom spacing before footer */
.products-archive-page {
	padding-bottom: 70px;
}

/* All Products / category area spacing */
.product-category-filter {
	margin-bottom: 50px;
}
.products-archive-page .product-card .product-excerpt {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 0 15px;
}
/* =========================================================
 * PRODUCT CATEGORY PAGE
 * ========================================================= */

.product-category-page {
	padding: 60px 0 80px;
}

.product-category-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 45px;
}

.product-category-title {
	margin: 8px 0 15px;
	font-size: 42px;
	line-height: 1.2;
}

.product-category-description {
	max-width: 700px;
	margin: 0 auto;
	color: var(--muted-color);
	font-size: 16px;
	line-height: 1.7;
}

.product-category-pagination {
	margin-top: 50px;
	text-align: center;
}

.product-category-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.product-category-pagination a,
.product-category-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	text-decoration: none;
}

.product-category-empty {
	padding: 60px 20px;
	text-align: center;
	margin-bottom: 40px;
}

.product-category-empty h2 {
	margin-bottom: 10px;
}

.product-category-empty p {
	color: var(--muted-color);
}


/* Mobile */
@media (max-width: 768px) {

	.product-category-page {
		padding: 40px 0 60px;
	}

	.product-category-header {
		margin-bottom: 30px;
	}

	.product-category-title {
		font-size: 30px;
	}

	.product-category-description {
		font-size: 15px;
	}

}

/* =========================================================
   AUTH / SIGN IN / SIGN UP
   Punjab Solar
   ========================================================= */

.auth-page,
.signup-page {
	padding: 80px 0;
	background: #f7f9f8;
	min-height: 70vh;
}

.auth-wrapper,
.signup-wrapper {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.auth-card,
.signup-card {
	background: #ffffff;
	border: 1px solid #e5e9e7;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.auth-header,
.signup-header {
	text-align: center;
	margin-bottom: 30px;
}

.auth-header .section-eyebrow,
.signup-header .section-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
}

.auth-header h1,
.signup-header h1 {
	margin: 0 0 10px;
	font-size: 34px;
	line-height: 1.2;
}

.auth-header p,
.signup-header p {
	margin: 0;
	color: #66736d;
	line-height: 1.7;
}


/* Error Message */

.signup-errors {
	margin-bottom: 24px;
	padding: 14px 18px;
	border: 1px solid #f0b7b7;
	border-radius: 10px;
	background: #fff5f5;
	color: #b42318;
}

.signup-errors ul {
	margin: 0;
	padding-left: 20px;
}

.signup-errors li {
	margin-bottom: 5px;
}

.signup-errors li:last-child {
	margin-bottom: 0;
}


/* Success Message */

.auth-message {
	margin-bottom: 20px;
	padding: 18px;
	border-radius: 10px;
	text-align: center;
}

.auth-success {
	background: #eefaf2;
	border: 1px solid #b8e0c3;
	color: #176b2c;
}


/* Form */

.auth-form,
.signup-form {
	width: 100%;
}

.auth-form .form-group,
.signup-form .form-group {
	margin-bottom: 20px;
}

.auth-form label,
.signup-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #202824;
}

.auth-form label span,
.signup-form label span {
	color: #d64545;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.signup-form input[type="password"] {
	width: 100%;
	height: 52px;
	padding: 0 15px;
	border: 1px solid #d9dfdc;
	border-radius: 8px;
	background: #ffffff;
	color: #202824;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.auth-form input:focus,
.signup-form input:focus {
	border-color: #2f8f46;
	box-shadow: 0 0 0 3px rgba(47, 143, 70, 0.10);
}

.auth-form input::placeholder,
.signup-form input::placeholder {
	color: #9aa49f;
}


/* Remember / Forgot Password */

.auth-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin: 4px 0 24px;
}

.remember-me {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	cursor: pointer;
}

.remember-me input {
	width: 16px;
	height: 16px;
	margin: 0;
	cursor: pointer;
}

.forgot-password {
	font-size: 14px;
	color: #2f8f46;
	text-decoration: none;
}

.forgot-password:hover {
	text-decoration: underline;
}


/* Terms */

.signup-terms {
	margin: 5px 0 24px;
}

.signup-terms label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
}

.signup-terms input {
	width: 17px;
	height: 17px;
	margin: 2px 0 0;
	flex-shrink: 0;
}


/* Button */

.auth-form .form-submit,
.signup-form .form-submit {
	margin-top: 5px;
}

.auth-submit,
.signup-form .btn {
	width: 100%;
	min-height: 52px;
	border: 0;
	cursor: pointer;
}


/* Footer */

.auth-footer,
.signup-footer {
	margin-top: 25px;
	padding-top: 22px;
	border-top: 1px solid #edf0ee;
	text-align: center;
}

.auth-footer p,
.signup-footer p {
	margin: 0;
	color: #66736d;
	font-size: 14px;
}

.auth-footer a,
.signup-footer a {
	color: #2f8f46;
	font-weight: 600;
	text-decoration: none;
}

.auth-footer a:hover,
.signup-footer a:hover {
	text-decoration: underline;
}


/* Mobile */

@media (max-width: 767px) {

	.auth-page,
	.signup-page {
		padding: 50px 15px;
	}

	.auth-card,
	.signup-card {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.auth-header h1,
	.signup-header h1 {
		font-size: 28px;
	}

	.auth-options {
		flex-direction: column;
		align-items: flex-start;
	}

}
/* =========================================================
   CHECKOUT PAGE
   ========================================================= */

.checkout-page {
	padding: 70px 0 90px;
	background: #f8fafc;
}

.checkout-page > .container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}


/* =========================================================
   CHECKOUT HEADER
   ========================================================= */

.checkout-header {
	text-align: center;
	margin-bottom: 45px;
}

.checkout-header .section-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
}

.checkout-header h1 {
	margin: 0;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 700;
	color: #172033;
}

.checkout-header p {
	max-width: 650px;
	margin: 15px auto 0;
	font-size: 16px;
	line-height: 1.7;
	color: #667085;
}


/* =========================================================
   CHECKOUT GRID
   ========================================================= */

.checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
	gap: 30px;
	align-items: start;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.checkout-form-wrapper {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}


/* =========================================================
   FORM SECTIONS
   ========================================================= */

.checkout-section {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eaecf0;
}

.checkout-section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.checkout-section h2 {
	margin: 0 0 22px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	color: #172033;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.checkout-form .form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.checkout-form .form-group {
	margin-bottom: 20px;
}

.checkout-form .form-group:last-child {
	margin-bottom: 0;
}

.checkout-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #344054;
}

.checkout-form label span {
	color: #dc2626;
	margin-left: 2px;
}


/* =========================================================
   INPUTS
   ========================================================= */

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 13px 15px;
	border: 1px solid #d0d5dd;
	border-radius: 9px;
	background: #ffffff;
	color: #172033;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.checkout-form input {
	min-height: 48px;
}

.checkout-form textarea {
	min-height: 115px;
	resize: vertical;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
	color: #98a2b3;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
	border-color: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.checkout-submit {
	margin-top: 30px;
}

.checkout-submit .btn {
	width: 100%;
	min-height: 52px;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	border-radius: 9px;
}


/* =========================================================
   ORDER SUMMARY
   ========================================================= */

.checkout-summary {
	position: sticky;
	top: 30px;
}

.checkout-summary-inner {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.checkout-summary-inner h2 {
	margin: 0 0 24px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	color: #172033;
}


/* =========================================================
   PRODUCT
   ========================================================= */

.checkout-product {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid #eaecf0;
}

.checkout-product-image {
	width: 95px;
	height: 95px;
	flex: 0 0 95px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #eaecf0;
}

.checkout-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.checkout-product-info {
	min-width: 0;
}

.checkout-product-info h3 {
	margin: 0 0 7px;
	font-size: 17px;
	line-height: 1.4;
	font-weight: 600;
	color: #172033;
}

.checkout-product-info span {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #667085;
}


/* =========================================================
   TOTAL
   ========================================================= */

.checkout-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding-top: 5px;
}

.checkout-total span {
	font-size: 16px;
	font-weight: 600;
	color: #344054;
}

.checkout-total strong {
	font-size: 22px;
	font-weight: 700;
	color: #f59e0b;
	text-align: right;
}


/* =========================================================
   CHECKOUT NOTE
   ========================================================= */

.checkout-note {
	margin-top: 20px;
	padding: 14px 15px;
	border-radius: 9px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #92400e;
	font-size: 13px;
	line-height: 1.6;
}


/* =========================================================
   PRODUCT NOT FOUND
   ========================================================= */

.checkout-empty {
	max-width: 650px;
	margin: 0 auto;
	padding: 55px 30px;
	text-align: center;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.checkout-empty .section-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
}

.checkout-empty h1 {
	margin: 0 0 12px;
	font-size: 30px;
	color: #172033;
}

.checkout-empty p {
	margin: 0 0 25px;
	color: #667085;
	line-height: 1.6;
}

.checkout-empty .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 900px) {

	.checkout-page {
		padding: 50px 0 70px;
	}

	.checkout-grid {
		grid-template-columns: 1fr;
	}

	.checkout-summary {
		position: static;
	}

	.checkout-summary {
		order: -1;
	}

	.checkout-header h1 {
		font-size: 35px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.checkout-page {
		padding: 40px 0 55px;
	}

	.checkout-page > .container {
		padding: 0 15px;
	}

	.checkout-header {
		margin-bottom: 30px;
	}

	.checkout-header h1 {
		font-size: 29px;
	}

	.checkout-header p {
		font-size: 14px;
	}

	.checkout-form-wrapper,
	.checkout-summary-inner {
		padding: 20px;
		border-radius: 12px;
	}

	.checkout-section h2,
	.checkout-summary-inner h2 {
		font-size: 20px;
	}

	.checkout-form .form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.checkout-product-image {
		width: 75px;
		height: 75px;
		flex-basis: 75px;
	}

	.checkout-product-info h3 {
		font-size: 15px;
	}

	.checkout-total strong {
		font-size: 19px;
	}

	.checkout-empty {
		padding: 40px 20px;
	}

}
/* =========================================================
   GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

img,
svg,
iframe {
	max-width: 100%;
}

button,
input,
select,
textarea {
	max-width: 100%;
	font-family: inherit;
}


/* =========================================================
   HEADER ACTIONS
   DESKTOP
   ========================================================= */

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;

	margin-left: auto;

	min-width: 0;
	max-width: 100%;
}


/* =========================================================
   DESKTOP SEARCH
   ========================================================= */

.site-search-form {
	display: flex;
	align-items: center;
	gap: 7px;

	width: 320px;
	max-width: 320px;

	margin-left: 10px;

	min-width: 0;
}

.site-search-input {
	flex: 1;
	width: 100%;
	min-width: 0;

	height: 40px;

	padding: 0 13px;

	border: 1px solid #ddd;
	border-radius: 7px;

	background: #fff;
	color: #1f2937;

	font-size: 14px;
}

.site-search-input:focus {
	outline: none;
	border-color: #1f8f4d;
}

.site-search-button {
	width: 42px;
	height: 40px;

	flex: 0 0 42px;

	padding: 0;

	border: 0;
	border-radius: 7px;

	background: #0b7a4b;
	color: #fff;

	cursor: pointer;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 17px;
}

.site-search-button:hover {
	background: #08613c;
}


/* =========================================================
   MOBILE SEARCH ICON
   ========================================================= */

.mobile-search-toggle {
	display: none;

	width: 38px;
	height: 38px;

	padding: 0;

	border: 0;
	border-radius: 7px;

	background: transparent;
	color: inherit;

	cursor: pointer;

	align-items: center;
	justify-content: center;

	font-size: 20px;
	line-height: 1;
}

.mobile-search-toggle:hover {
	background: rgba(11, 122, 75, 0.08);
}


/* =========================================================
   GET QUOTE
   ========================================================= */

.header-quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 38px;

	padding: 0 12px;

	background: #0b7a4b;
	color: #fff;

	border: 0;
	border-radius: 6px;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	line-height: 1;

	white-space: nowrap;

	cursor: pointer;
}

.header-quote-button:hover {
	background: #08613c;
	color: #fff;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.header-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	height: 38px;

	padding: 0 10px;

	background: #25d366;
	color: #fff;

	border: 0;
	border-radius: 6px;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	line-height: 1;

	white-space: nowrap;

	cursor: pointer;
}

.header-whatsapp-button:hover {
	background: #1ebe5d;
	color: #fff;
}

.whatsapp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;
}

.whatsapp-text {
	line-height: 1;
}


/* =========================================================
   PROFILE
   ========================================================= */

.header-profile {
	position: relative;

	display: flex;
	align-items: center;

	margin-left: 2px;

	flex: 0 0 auto;

	z-index: 99999;
}

.profile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;

	padding: 4px 6px;

	margin: 0;

	border: 0;
	border-radius: 8px;

	background: transparent;
	color: inherit;

	cursor: pointer;

	white-space: nowrap;
}

.profile-toggle:hover {
	background: rgba(11, 122, 75, 0.07);
}


/* =========================================================
   PROFILE AVATAR
   ========================================================= */

.profile-avatar {
	width: 38px;
	height: 38px;

	flex: 0 0 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: #0b7a4b;
	color: #fff;

	font-size: 16px;
	font-weight: 700;
}

.profile-avatar-large {
	width: 46px;
	height: 46px;

	flex: 0 0 46px;

	font-size: 18px;
}


/* =========================================================
   PROFILE NAME
   ========================================================= */

.profile-name {
	max-width: 120px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

	font-size: 14px;
	font-weight: 600;
}


/* =========================================================
   PROFILE ARROW
   ========================================================= */

.profile-arrow {
	font-size: 17px;
	line-height: 1;

	flex: 0 0 auto;
}


/* =========================================================
   PROFILE DROPDOWN
   ========================================================= */

.profile-dropdown {
	position: absolute;

	top: calc(100% + 8px);
	right: 0;

	width: 285px;
	max-width: calc(100vw - 20px);

	box-sizing: border-box;

	background: #fff;

	border: 1px solid #e5e7eb;
	border-radius: 12px;

	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

	overflow: hidden;

	visibility: hidden;
	opacity: 0;

	transform: translateY(-5px);

	pointer-events: none;

	transition:
		opacity .15s ease,
		transform .15s ease,
		visibility .15s ease;

	z-index: 100000;
}


/* OPEN */

.header-profile.profile-open .profile-dropdown {
	visibility: visible;
	opacity: 1;

	transform: translateY(0);

	pointer-events: auto;
}


/* Desktop hover */

@media (min-width: 769px) {

	.header-profile:hover .profile-dropdown {
		visibility: visible;
		opacity: 1;

		transform: translateY(0);

		pointer-events: auto;
	}

}


/* =========================================================
   PROFILE DROPDOWN HEADER
   ========================================================= */

.profile-dropdown-header {
	display: flex;
	align-items: center;
	gap: 12px;

	width: 100%;

	padding: 16px;

	background: #f7faf8;

	border-bottom: 1px solid #e5e7eb;
}

.profile-user-info {
	flex: 1;
	min-width: 0;
}

.profile-user-info strong {
	display: block;

	margin-bottom: 4px;

	color: #111827;

	font-size: 15px;
	font-weight: 700;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.profile-user-info small {
	display: block;

	color: #6b7280;

	font-size: 12px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* =========================================================
   PROFILE MENU
   ========================================================= */

.profile-menu {
	width: 100%;

	padding: 8px;
}

.profile-menu a {
	display: flex;
	align-items: center;
	gap: 12px;

	width: 100%;

	min-height: 42px;

	padding: 10px 12px;

	box-sizing: border-box;

	border-radius: 8px;

	color: #1f2937;
	background: transparent;

	text-decoration: none;

	font-size: 14px;
	font-weight: 500;

	transition:
		background .15s ease,
		color .15s ease;
}

.profile-menu a:hover {
	background: #f0fdf4;
	color: #0b7a4b;
}

.profile-menu-icon {
	width: 22px;
	min-width: 22px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 16px;
}

.profile-menu-divider {
	width: calc(100% - 8px);

	height: 1px;

	margin: 7px 4px;

	background: #e5e7eb;
}

.profile-menu a.profile-logout {
	color: #dc2626;
}

.profile-menu a.profile-logout:hover {
	background: #fef2f2;
	color: #b91c1c;
}


/* =========================================================
   GUEST LOGIN / SIGNUP
   DESKTOP
   ========================================================= */

.guest-auth-links {
	display: flex;
	align-items: center;
	gap: 8px;

	flex: 0 0 auto;

	white-space: nowrap;
}

.login-link {
	color: #1f2937;

	text-decoration: none;

	font-size: 14px;
	font-weight: 600;
}

.login-link:hover {
	color: #0b7a4b;
}

.signup-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 36px;

	padding: 0 12px;

	background: #0b7a4b;
	color: #fff;

	border-radius: 6px;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	white-space: nowrap;
}

.signup-link:hover {
	background: #08613c;
	color: #fff;
}


/* =========================================================
   MOBILE MENU TOGGLE
   ========================================================= */

.mobile-menu-toggle {
	display: none;

	width: 40px;
	height: 40px;

	padding: 0;

	border: 0;
	border-radius: 7px;

	background: transparent;
	color: inherit;

	cursor: pointer;

	align-items: center;
	justify-content: center;

	font-size: 23px;
	line-height: 1;
}

.mobile-menu-toggle:hover {
	background: rgba(11, 122, 75, 0.08);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
	display: none;

	position: absolute;

	top: calc(100% + 6px);
	right: 10px;

	width: 300px;
	max-width: calc(100vw - 20px);

	box-sizing: border-box;

	background: #fff;

	border: 1px solid #e5e7eb;
	border-radius: 12px;

	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

	overflow: hidden;

	z-index: 100001;
}

.mobile-menu.mobile-menu-open {
	display: block;
}


/* =========================================================
   MOBILE MENU CONTENT
   ========================================================= */

.mobile-menu-inner {
	width: 100%;
	padding: 8px;
}

.mobile-menu-item {
	display: flex;
	align-items: center;
	gap: 11px;

	width: 100%;

	min-height: 44px;

	padding: 10px 12px;

	border: 0;
	border-radius: 8px;

	background: transparent;
	color: #1f2937;

	text-decoration: none;

	font-size: 14px;
	font-weight: 500;

	cursor: pointer;

	text-align: left;
}

.mobile-menu-item:hover {
	background: #f0fdf4;
	color: #0b7a4b;
}

.mobile-menu-icon {
	width: 22px;
	min-width: 22px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 16px;
}

.mobile-menu-divider {
	height: 1px;

	margin: 7px 4px;

	background: #e5e7eb;
}

.mobile-menu-profile {
	display: flex;
	align-items: center;
	gap: 11px;

	padding: 10px 12px;

	margin-bottom: 4px;

	background: #f7faf8;

	border-radius: 8px;
}

.mobile-menu-profile-info {
	flex: 1;
	min-width: 0;
}

.mobile-menu-profile-info strong {
	display: block;

	color: #111827;

	font-size: 14px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mobile-menu-profile-info small {
	display: block;

	margin-top: 3px;

	color: #6b7280;

	font-size: 11px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* =========================================================
   MOBILE SEARCH PANEL
   ========================================================= */

.mobile-search-panel {
	display: none;

	width: 100%;

	padding: 8px 12px;

	background: #fff;

	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.mobile-search-panel.mobile-search-open {
	display: block;
}

.mobile-search-panel .site-search-form {
	display: flex;

	width: 100%;
	max-width: none;

	margin: 0;

	gap: 6px;
}

.mobile-search-panel .site-search-input {
	height: 42px;

	flex: 1;
	min-width: 0;
}

.mobile-search-panel .site-search-button {
	width: 44px;
	height: 42px;

	flex: 0 0 44px;
}


/* =========================================================
   PRODUCT SEARCH
   ========================================================= */

.products-search {
	width: 100%;
	margin-bottom: 30px;
}

.products-search-form,
.product-search-form {
	display: flex;
	align-items: center;
	gap: 10px;

	width: 100%;
	max-width: 650px;

	margin: 0 auto;
}

.products-search-form input[type="search"],
.product-search-form input[type="search"] {
	flex: 1;

	min-width: 0;

	height: 46px;

	padding: 0 15px;

	border: 1px solid var(--border-color, #ddd);
	border-radius: 8px;

	background: #fff;

	font-size: 15px;
}

.products-search-form input[type="search"]:focus,
.product-search-form input[type="search"]:focus {
	outline: none;

	border-color: var(
		--primary-color,
		#1f8f4d
	);
}

.products-search-form .btn,
.product-search-form .btn {
	height: 46px;

	border: 0;

	white-space: nowrap;

	cursor: pointer;
}


/* =========================================================
   PRODUCT TOOLBAR
   ========================================================= */

.products-toolbar {
	display: flex;
	justify-content: flex-end;

	width: 100%;

	margin-bottom: 25px;
}

.products-sort {
	display: flex;
	align-items: center;
	gap: 10px;
}

.products-sort label {
	font-size: 14px;
	font-weight: 600;
}

.products-sort select {
	padding: 10px 14px;

	border: 1px solid var(--border-color, #ddd);
	border-radius: 8px;

	background: #fff;

	font-size: 14px;

	cursor: pointer;
}


/* =========================================================
   TABLET
   769px - 1000px
   ========================================================= */

@media (max-width: 1000px) and (min-width: 769px) {

	.header-actions {
		gap: 5px;
	}

	.site-search-form {
		width: 230px;
		max-width: 230px;

		margin-left: 5px;
	}

	.header-quote-button,
	.header-whatsapp-button {
		padding: 0 8px;

		font-size: 12px;
	}

	.profile-name {
		display: none;
	}

}


/* =========================================================
   MOBILE
   0px - 768px
   ========================================================= */

@media (max-width: 768px) {

	html,
	body {
		width: 100%;
		max-width: 100%;

		overflow-x: hidden;
	}

	/*
	 * Header actions:
	 * ONLY search icon + menu + profile if needed.
	 */
	.header-actions {
		display: flex;

		align-items: center;
		justify-content: flex-end;

		gap: 3px;

		width: auto;
		max-width: 100%;

		margin-left: auto;
	}

	/*
	 * Hide desktop versions.
	 */
	.header-actions > .site-search-form,
	.header-actions > .header-quote-button,
	.header-actions > .header-whatsapp-button,
	.header-actions > .guest-auth-links {
		display: none !important;
	}

	/*
	 * Mobile search icon.
	 */
	.mobile-search-toggle {
		display: inline-flex;
	}

	/*
	 * Mobile menu button.
	 */
	.mobile-menu-toggle {
		display: inline-flex;
	}

	/*
	 * Profile can stay available
	 * but name/arrow disappear.
	 */
	.profile-name,
	.profile-arrow {
		display: none;
	}

	.profile-toggle {
		padding: 3px;
	}

	/*
	 * Desktop profile dropdown is not used
	 * as the main mobile menu.
	 */
	.profile-dropdown {
		max-width: calc(100vw - 20px);
	}

	/*
	 * Mobile menu must remain inside viewport.
	 */
	.mobile-menu {
		right: 8px;

		width: 300px;

		max-width: calc(100vw - 16px);
	}

	/*
	 * Search panel stays below header,
	 * only when search icon is clicked.
	 */
	.mobile-search-panel {
		width: 100%;
		max-width: 100%;
	}

	/*
	 * Product search.
	 */
	.products-search-form,
	.product-search-form {
		flex-direction: column;

		width: 100%;
		max-width: 100%;
	}

	.products-search-form input[type="search"],
	.products-search-form .btn,
	.product-search-form input[type="search"],
	.product-search-form .btn {
		width: 100%;
	}

	/*
	 * Product toolbar.
	 */
	.products-toolbar {
		justify-content: stretch;
	}

	.products-sort {
		width: 100%;

		flex-direction: column;

		align-items: stretch;
	}

	.products-sort select {
		width: 100%;
	}

}


/* =========================================================
   SMALL MOBILE
   481px - 600px
   ========================================================= */

@media (max-width: 600px) {

	.mobile-menu {
		right: 6px;

		max-width: calc(100vw - 12px);
	}

	.mobile-menu-item {
		min-height: 42px;

		padding: 9px 11px;

		font-size: 13px;
	}

	.mobile-menu-profile {
		padding: 9px 11px;
	}

}


/* =========================================================
   360px - 480px
   ========================================================= */

@media (max-width: 480px) {

	.header-actions {
		gap: 1px;
	}

	.mobile-search-toggle,
	.mobile-menu-toggle {
		width: 36px;
		height: 36px;

		font-size: 20px;
	}

	.profile-avatar {
		width: 34px;
		height: 34px;

		flex-basis: 34px;

		font-size: 14px;
	}

	.mobile-menu {
		top: calc(100% + 5px);

		right: 5px;

		width: 300px;

		max-width: calc(100vw - 10px);
	}

}


/* =========================================================
   EXTRA SMALL
   320px - 359px
   ========================================================= */

@media (max-width: 359px) {

	.mobile-search-toggle,
	.mobile-menu-toggle {
		width: 34px;
		height: 34px;

		font-size: 19px;
	}

	.profile-avatar {
		width: 32px;
		height: 32px;

		flex-basis: 32px;

		font-size: 13px;
	}

	.mobile-menu {
		right: 4px;

		width: 300px;

		max-width: calc(100vw - 8px);

		border-radius: 10px;
	}

	.mobile-menu-item {
		min-height: 40px;

		padding: 8px 10px;

		font-size: 13px;
	}

	.mobile-menu-profile {
		padding: 8px 10px;
	}

	.mobile-menu-icon {
		font-size: 15px;
	}

}


/* =========================================================
   VERY SMALL SCREEN SAFETY
   ========================================================= */

@media (max-width: 320px) {

	.mobile-menu {
		right: 3px;

		width: calc(100vw - 6px);

		max-width: calc(100vw - 6px);
	}

	.mobile-menu-item {
		padding-left: 9px;
		padding-right: 9px;
	}

}
/* =========================================================
   GOOGLE MAPS CARD
   ========================================================= */

.contact-map {
	margin-top: 18px;
	width: 100%;
}

.google-map-card {
	display: flex;
	align-items: center;
	gap: 12px;

	width: 100%;
	box-sizing: border-box;

	padding: 13px 15px;

	background: #f7faf8;

	border: 1px solid #e2ebe5;
	border-radius: 10px;

	color: #1f2937;
	text-decoration: none;

	transition:
		background .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.google-map-card:hover {
	background: #f0fdf4;
	border-color: #0b7a4b;
	transform: translateY(-1px);

	color: #0b7a4b;
}

.google-map-icon {
	width: 38px;
	height: 38px;

	flex: 0 0 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #0b7a4b;
	color: #fff;

	border-radius: 50%;

	font-size: 18px;
}

.google-map-content {
	flex: 1;
	min-width: 0;

	display: flex;
	flex-direction: column;

	gap: 3px;
}

.google-map-content strong {
	font-size: 14px;
	font-weight: 700;

	color: #111827;
}

.google-map-content span {
	font-size: 12px;

	color: #6b7280;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.google-map-arrow {
	flex: 0 0 auto;

	font-size: 20px;
	font-weight: 600;

	color: #0b7a4b;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

	.contact-map {
		margin-top: 15px;
	}

	.google-map-card {
		padding: 12px;
	}

	.google-map-icon {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.google-map-content strong {
		font-size: 13px;
	}

	.google-map-content span {
		font-size: 11px;
	}

}