:root {
    scroll-behavior: auto;

    /* === GLOBAL COLOR VARIABLES === */
    --primary-color: #000000;
    --secondary-color: #D06F37;
    --secondary-hover: #b85e2e;
    --text-primary: #000000;
    --text-secondary: #595B61;
    --text-light: #6B6B6B;
    --text-dark: #434343;
    --text-medium: #535353;
    --white: #FFFFFF;
    --black: #000000;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-light-green: #E8EDE5;
    --bg-light-blue: #F9F9FB;
    --bg-dark: #030213;
    --bg-footer: #101010;
    --bg-faq-active: #FFF4ED;

    /* Border Colors */
    --border-color: #E2E2E2;
    --border-light: #B4B4B4;
    --border-card: #BEBEBE;
    --border-gray: #CFCFCF;
    --border-faq: #FFC3A0;

    /* === FONT FAMILIES === */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* === SPACING & LAYOUT === */
    --container-max-width: 1200px;
    --container-padding: 15px;
    --section-padding: 80px;
    --gap-sm: 20px;
    --gap-md: 30px;
    --gap-lg: 40px;
    --gap-xl: 60px;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: normal;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a,
button,
input[type=submit] {
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all ease-in-out 0.3s;
}

input,
textarea {
    -webkit-appearance: none;
    appearance: none;
}

a:hover {
    text-decoration: none !important;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-moz-placeholder {
    color: inherit;
    opacity: 1;
}

img,
svg,
iframe {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: bold;
    color: var(--primary-color);
    word-wrap: break-word;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 12px;
}

p {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
}

p b,
p strong {
    font-weight: bold;
}

p+p {
    margin-top: 17px;
}

a,
a:hover {
    color: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

.container {
    width: 100%;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin: 0 auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width:1280px) {
    .container {
        max-width: var(--container-max-width);
    }
}

.wrapper_main {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.btnbox {
    position: relative;
    display: flex;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

/* HEADER */
.header_main {
    background-color: var(--white);
    position: relative;
    width: 100%;
    z-index: 10;
}

/* Homepage header - absolute positioned over hero */
.header_main.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.header_main .header_wrap {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_main .navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
}

.header_main .logobox {
    position: relative;
    display: flex;
}

.header_main .logobox a {
    display: flex;
}

.header_main .logobox img {
    height: 50px;
    width: auto;
}

.header_main .navbar-brand .hamburger {
    position: relative;
    display: none;
}

.header_main .header_right {
    position: relative;
}

.header_main .navigation {
    position: relative;
}

.header_main .navigation ul {
    display: flex;
    gap: var(--gap-lg);
}

.header_main .navigation ul li {
    position: relative;
    display: flex;
}

.header_main .navigation ul li a {
    font-size: 18px;
    font-weight: normal;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.header_main .navigation ul li a:hover {
    color: var(--secondary-color);
}



/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .banner_image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-section .banner_image img {
    display: inline-flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .banner_caption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    /* Space for absolute header */
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 944px;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 54px;
    line-height: 71px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
}

.hero-content .btnbox {
    width: 100%;
    margin-top: 30px;
    justify-content: center;
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--bg-light);
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
    align-items: center;
}

.about-grid .image_wrap {
    position: relative;
    display: flex;
    width: 100%;
}

.about-grid .imgbox {
    display: flex;
    width: 100%;
    aspect-ratio: 570/692;
}

.about-grid .imgbox img {
    display: inline-flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-wrapper {
    position: absolute;
    width: 220px;
    height: 525px;
    border: 8px solid #FFFFFF;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    color: var(--primary-color);
    font-weight: normal;
}

.about-content h2 strong {
    font-weight: bold;
}

.about-text-group {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.about-content p {
    color: var(--text-secondary);
}

.about-content p+p {
    margin-top: 0;
}

/* WHY US SECTION */
.why-us-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.why-us-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.why-us-header h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 32px;
}

.why-us-header h2 .regular {
    font-weight: 400;
}

.why-us-header p {
    margin-top: 12px;
    color: var(--text-secondary);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
    align-items: center;
}

.why-us-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-list h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.6;
    text-transform: capitalize;
}

.why-us-list .list_wrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: var(--gap-sm);
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
}

.why-us-images {
    position: relative;
}

/* Using a simplified approach for the complex image group in Why Us to maintain layout integrity */
.why-us-collage {
    position: relative;
    width: 100%;
}

.why-us-collage .imgbox {
    display: flex;
    width: 100%;
    aspect-ratio: 570/471;
}

.why-us-collage img {
    display: inline-flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D9D9D9;
    /* Fallback */
    mask-image: url('images/r2.png');
    -webkit-mask-image: url('images/r2.png');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.collage-img-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 31.5%;
    height: 31.4%;
    object-fit: cover;
    border-radius: 21px 21px 31px 21px;
}

.collage-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 37%;
    height: 40%;
    object-fit: cover;
    border-radius: 31px 21px 21px 21px;
}

/* SISTER COMPANY SECTION */
.sister-company-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.sister-company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #F5F5F5;
    z-index: 0;
}

.sister-header {
    max-width: 968px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sister-header h2 {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 32px;
    margin-bottom: var(--gap-sm);
}

.sister-header h2 span.bold {
    font-weight: bold;
}

.sister-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.sister-image-container {
    position: relative;
    max-width: 968px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.sister-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.sister-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: auto;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 142px 27px 237px 20px auto;
    column-gap: var(--gap-md);
    row-gap: 0;
}

/* Header Area */
.gallery-header {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.gallery-header h2 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.21;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.gallery-header h2 .text-bold {
    font-weight: 700;
}

.gallery-header p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Item 1: Left Column, Tall */
.item-1 {
    grid-column: 1 / 4;
    grid-row: 3 / 6;
    height: 334px;
    align-self: start;
}

/* Item 2: Center Column, Mid */
.item-2 {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
    height: 100%;
}

/* Item 3: Center Column, Bottom Wide */
.item-3 {
    grid-column: 4 / 8;
    grid-row: 5 / 6;
    height: 246px;
}

/* Item 4: Right Column, Tall Top */
.item-4 {
    grid-column: 7 / 10;
    grid-row: 1 / 4;
    height: 100%;
}

/* Item 5: Far Right, Offset */
.item-5 {
    grid-column: 10 / 13;
    grid-row: 1 / 4;
    margin-top: 111px;
    height: 295px;
}

/* Item 6: Right Column, Bottom */
.item-6 {
    grid-column: 8 / 11;
    grid-row: 5 / 6;
    height: 322px;
}

/* CTA SECTION */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-wrapper {
    position: relative;
    padding: 80px 60px;
    border-radius: 20px;
    color: var(--white);
    background-color: var(--bg-footer);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-weight: normal;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: var(--gap-sm);
    color: var(--white);
}

.cta-content h2 span.bold {
    font-weight: bold;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--border-light);
    margin-bottom: 50px;
    letter-spacing: 0.36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.cta-buttons .primary-btn:not(.btn-outline):hover {
    background-color: var(--white);
    color: #000000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ SECTION */
.faq-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.faq-section h2 {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.faq-section h2 .regular {
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--gap-sm);
    border-radius: 12px;
    border: 1px solid #CACACA;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item.active {
    background-color: var(--bg-faq-active);
    border-color: var(--border-faq);
}

.faq-question {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-secondary);
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 10px;
    opacity: 1;
}

.faq-content {
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: var(--gap-sm);
    margin-top: 4px;
}

.faq-icon img {
    transition: transform 0.3s ease;
}

/* FOOTER */
.site-footer {
    padding: var(--section-padding) 0 0;
    background-color: var(--white);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.footer-col-info {
    width: 370px;
}

.footer-logo {
    margin-bottom: 36px;
    /* Assuming logo is SVG or Image */
    height: 70px;
    width: auto;
}

.footer-desc {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 15.79px;
    margin-top: 36px;
}

.footer-social .social-icon {
    display: inline-block;
}

.footer-social .social-icon img {
    width: 30px;
    height: 30px;
}

.footer-col-links {
    width: 124px;
}

.footer-heading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: var(--gap-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.footer-link {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.footer-col-contact {
    width: 340px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: var(--gap-sm) 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-light);
}


/* ==================== PRODUCT PAGE ==================== */

/* Product Page Hero Section */
.hero-section.product-hero {
    height: auto;
    margin-top: 60px;
    margin-bottom: 120px;
    padding: 0;
}

.hero-card {
    background-color: var(--bg-light-green);
    border-radius: 12px;
    height: 342px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-card .hero-content {
    z-index: 2;
    max-width: 670px;
    padding: 0 20px;
    margin-top: 0;
}

.hero-card .hero-content h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.2;
    color: var(--primary-color);
    white-space: nowrap;
}

.hero-card .hero-content h1 .bold-text {
    font-weight: 700;
}

.hero-card .hero-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Decorative Images in Hero */
.hero-deco {
    position: absolute;
    z-index: 1;
    object-fit: cover;
}

.hero-img-1 {
    width: 168px;
    height: 284px;
    left: 37px;
    top: 94px;
}

.hero-img-2 {
    width: 153px;
    height: 174px;
    left: 149px;
    top: 213px;
}

.hero-img-3 {
    width: 178px;
    height: 227px;
    right: 67px;
    top: 131px;
    box-shadow: 5px 4px 34px rgba(0, 0, 0, 0.25);
}

.hero-img-4 {
    width: 103px;
    height: 175px;
    right: 28px;
    top: 190px;
}

/* Main Content Layout */
.shop-section {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: var(--section-padding);
}

.main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

/* Sidebar */
.sidebar {
    width: 270px;
    flex-shrink: 0;
    background-color: #F8F8F8;
    border: 1px solid #B2B2B2;
    border-radius: 12px;
    padding: 20px 30px;
    height: fit-content;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 30px;
    line-height: 1.5;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.filter-heading {
    font-size: 16px;
    font-weight: 400;
    color: #0A0A0A;
    margin-bottom: 3px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    background-color: #F3F3F5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 14px;
    color: #0A0A0A;
    line-height: 1;
}

.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 10px 0;
}

.reset-btn {
    width: 100%;
    height: 40px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: opacity 0.2s ease;
}

.reset-btn:hover {
    opacity: 0.9;
}

/* Product Grid Container */
.product-grid-container {
    flex-grow: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 42px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-wrapper {
    width: 100%;
    height: 311px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #C4C4C4;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1;
}

.product-price {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1;
}

.color-swatches {
    display: flex;
    gap: 10px;
}

.swatch {
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

.swatch.gold {
    background-color: #E3CB8B;
}

.swatch.silver {
    background-color: #CCCCCC;
}

.swatch.bronze {
    background-color: #CD7F32;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
    margin-top: 60px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination-arrow {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.pagination-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-arrow img {
    width: 30px;
    height: 30px;
}

.pagination-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #000000;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.pagination-number:hover {
    background-color: #D06F37;
    border-color: #D06F37;
    color: #FFFFFF;
}

.pagination-number.active {
    background-color: #D06F37;
    border-color: #D06F37;
    color: #FFFFFF;
}


/* ==================== PRODUCT DETAIL PAGE ==================== */

/* Product Detail Section */
.product-detail-section {
    padding: var(--section-padding) 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

/* Gallery Column */
.gallery-column {
    position: relative;
}

.main-image-wrapper {
    width: 100%;
    margin-bottom: 45px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.main-image {
    width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.thumbnail-strip {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumbnail {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
    background: var(--bg-light);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--secondary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-arrow img {
    width: 30px;
    height: 30px;
}

/* Product Detail page arrows - prev grey, next orange */
.gallery-arrow.prev img {
    filter: invert(77%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(85%) contrast(85%);
}

.gallery-arrow.next img {
    filter: invert(52%) sepia(67%) saturate(512%) hue-rotate(346deg) brightness(92%) contrast(89%);
}

/* Info Column */
.product-header {
    margin-bottom: 24px;
}

.product-title-wrapper h1 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.current-price {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--primary-color);
}

.original-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #D06F37;
    background: none;
    padding: 0;
}

.product-detail-section .product-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Options */
.options-wrapper {
    margin-bottom: var(--gap-lg);
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.option-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 10px 20px;
    border: 1px solid #000000;
    border-radius: 80px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: 0.3s ease;
}

.option-btn:hover,
.option-btn.selected {
    background-color: var(--secondary-color);
    color: var(--white);

    border-color: var(--secondary-color);
}

/* Download Catalog Button */
.download-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: auto;
    margin-top: 10px;
    cursor: pointer;
}

.download-catalog-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

/* Action Group */
.action-group {
    margin-bottom: var(--gap-lg);
}

.dealer-wrapper {
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
}

.contact-dealer-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-dealer-btn:hover {
    background-color: #b85e2e;
}

/* Dealers Info */
.dealers-info {
    padding: 24px;
    background-color: var(--white);
}

.dealer-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dealer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dealer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.dealer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
}

.dealer-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

/* Accordion Section */
.accordion-section {
    border-top: 1px solid var(--border-color);
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.accordion-icon {
    width: 14px;
    height: 10.59px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(0deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #595B61;
    line-height: 160%;
    text-align: left;
    padding-right: 166px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 16px;
}

.accordion-list {
    list-style: disc;
    padding-left: 20px;
}

.accordion-list li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Related Products Section */
.related-products-section {
    padding: 80px 0;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.related-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
}

.related-title strong {
    font-weight: 700;
}

.browse-btn {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #D06F37;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}

.browse-btn:hover {
    background-color: #b85e2e;
    color: #FFFFFF;
}

.related-products-section .product-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Specifications Table */
.specifications-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.specifications-section h2 {
    text-align: center;
    margin-bottom: var(--gap-lg);
    font-size: 32px;
}

.specs-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 16px 24px;
    background: var(--bg-light);
    font-weight: 600;
    font-size: 16px;
}

.spec-value {
    padding: 16px 24px;
    font-size: 16px;
    color: var(--text-secondary);
}


/* ==================== CONTACT PAGE ==================== */

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-title {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.contact-title span {
    font-weight: 700;
}

/* Contact Form */
.contact-form-container {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #CACACA;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    background-color: var(--white);
    transition: 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    color: #999;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 16px 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: #b85e2e;
}

.form-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Map Section */
.map-section {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    display: block;
    border: 0;
    height: 500px;
}

.map-image {
    width: 100%;
    display: block;
    height: auto;
}

/* Contact Info Bar */
.contact-info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-radius: 12px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-wrapper {
    width: 40px;
    height: 54px;
    background-color: #D06F37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
    color: var(--primary-color);
}

.info-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: var(--primary-color);
}

/* ==================== ABOUT US PAGE STYLES ==================== */

/* Hero Section - About Page */
.about-hero-section {
    height: auto;
    margin-top: 60px;
    margin-bottom: 120px;
    padding: 0;
}

.about-hero-section .hero-container {
    background-image: url('../images/about_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 342px;
    position: relative;
}

.about-hero-section .hero-container .hero-content {
    padding: 50px 60px;
    max-width: 690px;
    position: relative;
    z-index: 2;
}

.about-hero-section .hero-container .hero-content h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-hero-section .hero-container .hero-content h1 strong {
    font-weight: 700;
}

.about-hero-section .hero-container .hero-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
    text-align: left;
}

/* About Hero Button */
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-hero-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Who We Are Section */
.who-we-are {
    position: relative;
    padding: 40px 0;
}

.who-we-are-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 470px;
}

.who-we-are-content {
    max-width: 770px;
    text-align: center;
    z-index: 2;
    background: var(--bg-white);
    padding: var(--gap-sm) 0;
}

.who-we-are-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--gap-lg);
}

.who-we-are-content p {
    font-size: 18px;
    margin-bottom: var(--gap-sm);
    color: var(--text-secondary);
}

.who-we-are-img-left {
    position: absolute;
    left: 0;
    top: 130px;
    width: 320px;
    height: 470px;
    border-radius: 12px;
    object-fit: cover;
    z-index: 1;
}

.who-we-are-img-right {
    position: absolute;
    right: 0;
    width: 320px;
    height: 470px;
    border-radius: 12px;
    object-fit: cover;
    z-index: 1;
}

/* Vision & Mission */
.vision-mission {
    padding: 125px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
}

.vm-header {
    text-align: left;
    margin-bottom: 36px;
}

.vm-header h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 0;
}

.vm-header h2 .regular {
    font-weight: 400;
}

.vm-card {
    background: #FDFDFD;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: var(--gap-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vm-icon-wrapper {
    width: 74px;
    height: 74px;
    position: relative;
    margin-bottom: var(--gap-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    margin-left: 12px;
    margin-top: 14px;
}

.vm-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 28px;
    margin-bottom: var(--gap-sm);
}

.vm-card p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0px;
}

.vm-card p:last-child {
    margin-bottom: 0;
}

/* Services Section - About Page */


.services-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.services-image {
    width: 60%;
    /* Adjusted to be the container size */
    height: 751px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.services-image img {
    width: 100%;
    /* Fill the container */
    height: 100%;
    object-fit: cover;
}

.services-content {
    width: 66%;
    /* Adjusted width for balance */
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
    margin-left: -15%;
    /* Create overlap */
    z-index: 2;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    /* Optional: adds depth to overlap */
}

.services-content h2 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: var(--gap-sm);
}

.services-content p {
    font-size: 18px;
    margin-bottom: var(--gap-sm);
}


/* Footer - About Page Variant */
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: var(--gap-lg);
}

.footer-brand {
    max-width: 370px;
}

.footer-brand .footer-logo {
    margin-bottom: 36px;
}

.footer-brand .footer-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    transition: 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-nav li {
    margin-bottom: var(--gap-sm);
}

.footer-nav a {
    font-size: 18px;
    color: var(--primary-color);
}

/* Increase Map Icon Size for Desktop */
@media (min-width: 992px) {
    .contact-item:nth-child(3) .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-item:nth-child(3) .contact-icon img {
        width: 100%;
        height: 100%;
    }
}