/* =========================================================
   PM WOODS - GLOBAL STYLESHEET
   ========================================================= */

:root {
    --primary: #a77b3f;
    --primary-dark: #805a2b;
    --gold: #c69a57;
    --gold-light: #d9b77e;
    --dark: #191512;
    --dark-soft: #28221e;
    --text: #3f3d3b;
    --grey: #777;
    --light: #f7f6f3;
    --border: #e8e5df;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    width: 100%;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1240px, 92%);
    margin: auto;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar i {
    color: var(--gold);
    margin-right: 7px;
}

.topbar a {
    transition: .3s;
}

.topbar a:hover {
    color: var(--gold-light);
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
    background: rgba(255, 255, 255, .98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0, 0, 0, .06);
    backdrop-filter: blur(12px);
}

.header-main {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */

.logo {
    min-width: 190px;
    display: block;
}

.logo-main {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--dark);
    line-height: 1;
}

.logo-main span {
    color: var(--gold);
}

.logo-tagline {
    display: block;
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 2.2px;
    color: var(--grey);
    text-transform: uppercase;
}

/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.nav > li {
    position: relative;
}

.nav > li > a {
    display: block;
    position: relative;
    padding: 35px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: color .3s;
}

.nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s;
}

.nav > li > a:hover,
.nav > li > a.active {
    color: var(--gold);
}

.nav > li > a:hover::after,
.nav > li > a.active::after {
    width: 100%;
}

.nav i {
    margin-left: 5px;
    font-size: 9px;
}

/* DROPDOWN */

.dropdown {
    position: absolute;
    top: 72px;
    left: -22px;
    width: 235px;
    padding: 12px 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s;
}

.nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text);
    transition: .3s;
}

.dropdown a:hover {
    padding-left: 26px;
    background: var(--light);
    color: var(--gold);
}

/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dark);
    transition: .3s;
}

.action-btn:hover {
    color: white;
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.whatsapp-header {
    color: white;
    background: #25D366;
    border-color: #25D366;
}

.whatsapp-header:hover {
    background: #1fb857;
    border-color: #1fb857;
}

.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 22px;
}

/* =========================================================
   HOME HERO
   ========================================================= */

.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: var(--light);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, .03) 20%,
        rgba(255, 255, 255, .78) 58%,
        rgba(255, 255, 255, .97) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-text {
    width: 47%;
    padding-left: 45px;
}

.hero-subtitle {
    font-family: "Oswald", sans-serif;
    color: var(--gold);
    font-size: 30px;
    font-weight: 500;
}

.hero-title {
    margin: 4px 0 20px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.08;
    color: var(--dark);
}

.hero-description {
    max-width: 510px;
    color: #686460;
    font-size: 15px;
    line-height: 1.8;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 9px 10px 9px 24px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.hero-button span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gold);
    border-radius: 50%;
    transition: .3s;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.hero-button:hover span {
    transform: rotate(-45deg);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transform: translateY(-50%);
    transition: .3s;
}

.slider-arrow:hover {
    color: white;
    background: var(--dark);
}

.slider-arrow.prev {
    left: 22px;
}

.slider-arrow.next {
    right: 22px;
}

/* =========================================================
   HOME CATEGORY STRIP
   ========================================================= */

.category-strip {
    background: white;
    border-bottom: 1px solid var(--border);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.category-item {
    padding: 26px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: .3s;
}

.category-item:first-child {
    border-left: 1px solid var(--border);
}

.category-item:hover {
    background: var(--light);
}

.category-icon {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 27px;
    transition: .3s;
}

.category-item:hover .category-icon {
    color: var(--gold);
    transform: translateY(-4px);
}

.category-item h3 {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section {
    padding: 95px 0;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    margin: 8px 0 15px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: clamp(36px, 4vw, 52px);
}

.section-description {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   HOME PRODUCT CARDS
   ========================================================= */

.products-section {
    padding: 95px 0;
    background: var(--light);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-product-card {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: white;
}

.home-product-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.home-product-card:hover img {
    transform: scale(1.07);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 35%,
        rgba(0, 0, 0, .88)
    );
}

.home-product-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: white;
}

.home-product-content span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.home-product-content h3 {
    margin: 5px 0 10px;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
}

.product-link {
    font-size: 12px;
    font-weight: 700;
}

.product-link i {
    margin-left: 5px;
    transition: .3s;
}

.home-product-card:hover .product-link i {
    transform: translateX(6px);
}

/* =========================================================
   ABOUT PREVIEW
   ========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 570px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    width: 185px;
    padding: 25px;
    color: white;
    background: var(--dark);
}

.about-badge strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-family: "Oswald", sans-serif;
    font-size: 30px;
}

.about-content h2 {
    margin: 10px 0 20px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: clamp(36px, 4vw, 50px);
}

.about-content p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.about-feature i {
    margin-right: 8px;
    color: var(--gold);
}

/* =========================================================
   INTERIOR CTA
   ========================================================= */

.cta {
    padding: 110px 0;
    color: white;
    text-align: center;
    background:
        linear-gradient(rgba(15, 12, 10, .84), rgba(15, 12, 10, .84)),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2000&q=85")
        center/cover;
}

.cta h2 {
    margin: 10px 0 15px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 5vw, 58px);
}

.cta p {
    max-width: 620px;
    margin: auto;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.cta-button,
.cta-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 28px;
    color: white;
    background: var(--gold);
    font-weight: 700;
    transition: .3s;
}

.cta-button:hover,
.cta-btn:hover {
    color: var(--dark);
    background: white;
}

/* =========================================================
   PRODUCTS PAGE HERO
   ========================================================= */

.page-hero {
    min-height: 470px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .90) 43%,
            rgba(255, 255, 255, .12) 75%
        ),
        url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2000&q=90")
        center/cover;
}

.page-hero-content {
    max-width: 650px;
}

.page-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 10px 0 18px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 560px;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   PRODUCTS FILTER NAV
   ========================================================= */

.category-nav {
    background: white;
    border-bottom: 1px solid var(--border);
}

.category-nav-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar {
    display: none;
}

.category-filter {
    padding: 22px 24px;
    white-space: nowrap;
    border: 0;
    border-right: 1px solid var(--border);
    background: white;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.category-filter:hover,
.category-filter.active {
    color: white;
    background: var(--dark);
}

/* =========================================================
   PRODUCTS LISTING
   ========================================================= */

.product-listing-section {
    padding: 90px 0 110px;
    background: var(--light);
}

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.products-heading-text {
    max-width: 650px;
}

.products-heading h2 {
    margin: 8px 0 12px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 4vw, 52px);
}

.products-heading p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

.search-box {
    position: relative;
    width: 320px;
}

.search-box input {
    width: 100%;
    height: 50px;
    padding: 0 48px 0 18px;
    background: white;
    border: 1px solid var(--border);
    outline: none;
}

.search-box input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 154, 87, .1);
}

.search-box i {
    position: absolute;
    top: 50%;
    right: 18px;
    color: var(--grey);
    transform: translateY(-50%);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.catalog-card {
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
    transition: .4s;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.catalog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.catalog-image img {
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.07);
}

.product-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    color: white;
    background: rgba(25, 21, 18, .92);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-info {
    padding: 25px;
}

.catalog-info h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: 25px;
}

.catalog-info p {
    min-height: 66px;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.7;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.product-btn {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    transition: .3s;
}

.view-btn {
    color: white;
    background: var(--dark);
}

.view-btn:hover {
    background: var(--gold);
}

.enquiry-btn {
    flex: 1;
    text-align: center;
    border: 1px solid var(--border);
}

.enquiry-btn i {
    margin-right: 5px;
}

.enquiry-btn:hover {
    color: white;
    background: #25D366;
    border-color: #25D366;
}

.no-results {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.no-results i {
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 40px;
}

.no-results h3 {
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: 26px;
}

/* =========================================================
   CATEGORY COLLECTION
   ========================================================= */

.collection {
    padding: 100px 0;
}

.collection-header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.collection-header h2 {
    margin: 8px 0 15px;
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 4vw, 52px);
}

.collection-header p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.collection-card {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.collection-card img {
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 35%,
        rgba(0, 0, 0, .88)
    );
}

.collection-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: white;
}

.collection-content h3 {
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
}

.collection-content p {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 70px 0 25px;
    color: rgba(255, 255, 255, .62);
    background: #11100f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    margin-bottom: 15px;
    color: white;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about {
    font-size: 13px;
    line-height: 1.8;
}

.footer-title {
    margin-bottom: 18px;
    color: white;
    font-size: 14px;
}

.footer-links li {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer-links a {
    transition: .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */

.float-actions {
    position: fixed;
    top: 55%;
    right: 0;
    z-index: 900;
}

.float-action {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: .3s;
}

.float-action:hover {
    width: 58px;
}

.float-action.whatsapp {
    background: #25D366;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .nav {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 88px);
        padding: 50px 25px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        overflow-y: auto;
        transition: left .4s;
    }

    .nav.active {
        left: 0;
    }

    .nav > li > a {
        padding: 10px;
        font-size: 18px;
    }

    .nav > li > a::after {
        display: none;
    }

    .dropdown {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid,
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {

    .topbar {
        display: none;
    }

    .header-main {
        height: 72px;
    }

    .logo {
        min-width: auto;
    }

    .logo-main {
        font-size: 25px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .nav {
        top: 72px;
        height: calc(100vh - 72px);
    }

    .header-actions .action-btn:first-child {
        display: none;
    }

    /* HOME HERO */

    .hero {
        height: 620px;
    }

    .hero-overlay {
        background: linear-gradient(
            0deg,
            rgba(255, 255, 255, .99) 0%,
            rgba(255, 255, 255, .91) 43%,
            rgba(255, 255, 255, .05) 76%
        );
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 55px;
    }

    .hero-text {
        width: 100%;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 14px;
    }

    .slider-arrow {
        top: 42%;
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-product-grid,
    .catalog-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        height: 390px;
    }

    .about-image img {
        height: 450px;
    }

    .about-badge {
        right: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* PRODUCTS PAGE */

    .page-hero {
        min-height: 520px;
        align-items: flex-end;
        padding-bottom: 55px;
        background:
            linear-gradient(
                0deg,
                rgba(255, 255, 255, .99),
                rgba(255, 255, 255, .88) 42%,
                rgba(255, 255, 255, .05) 76%
            ),
            url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1200&q=85")
            center/cover;
    }

    .products-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .catalog-image {
        height: 270px;
    }

    .collection-card {
        height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .float-actions {
        top: auto;
        right: 15px;
        bottom: 15px;
        display: flex;
        gap: 8px;
    }

    .float-action {
        border-radius: 50%;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
    }

    .float-action:hover {
        width: 48px;
        transform: translateY(-3px);
    }
}