/*==========================
RESET
===========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;

    background: url("../images/background.jpg") center center/cover fixed;

    color: #111;

    overflow-x: hidden;
}

img {

    width: 100%;

    display: block;
}

a {

    text-decoration: none;

    color: inherit;
}

ul {

    list-style: none;
}

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;
}


/*==========================
HEADER
===========================*/

.header {

    position: fixed;

    top: 20px;

    left: 0;

    width: 100%;

    z-index: 999;

}

.navbar {

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;

    border-radius: 60px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .20);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

}

.logo img {

    width: 180px;

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav-links li {

    position: relative;

}

.nav-links a {

    color: #111;

    font-weight: 500;

    transition: .3s;

}

.nav-links a:hover {

    color: #444;

}

/* Dropdown */

.dropdown-menu {

    position: absolute;

    top: 45px;

    left: 0;

    width: 220px;

    background: #fff;

    border-radius: 15px;

    padding: 10px 0;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

}

.dropdown-menu li {

    padding: 10px 20px;

}

.dropdown-menu li:hover {

    background: #f5f5f5;

}

/* Call Button */

.call-btn {

    padding: 13px 26px;

    background: #111;

    color: #eceaea !important;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.call-btn:hover {

    background: #222;

}

/* Hamburger */

.menu-toggle {

    display: none;

    font-size: 28px;

    cursor: pointer;

}


/*==========================
HERO SECTION
===========================*/

.hero {

    position: relative;

    width: 100%;
    overflow: hidden;

}

.hero img {
    width: 100%;
    height: auto;
}

/* Desktop Banner */

.desktop-banner {

    display: block;

}

/* Mobile Banner */

.mobile-banner {

    display: none;

}


/* Content */

.hero-content {

    max-width: 600px;

    color: #fff;

    animation: fadeUp 1s ease;

}

.hero-subtitle {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    margin-bottom: 20px;

    font-size: 15px;

}

.hero-content h1 {

    font-size: 64px;

    line-height: 1.1;

    margin-bottom: 20px;

    font-weight: 800;

}

.hero-content p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;

}

.hero-btn {

    display: inline-block;

    background: #111;

    color: #fff;

    padding: 16px 40px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.hero-btn:hover {

    background: #fff;

    color: #111;

}

@keyframes fadeUp {

    0% {

        opacity: 0;

        transform: translateY(50px);

    }

    100% {

        opacity: 1;

        transform: translateY(0);

    }

}

.about {
    padding: 120px 0;
}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-image {

    overflow: hidden;
    border-radius: 30px;
}

.about-image img {

    width: 100%;

    display: block;

    border-radius: 30px;

    transition: .5s;

}

.about-image:hover img {

    transform: scale(1.05);

}

.sub-title {

    letter-spacing: 4px;

    font-size: 14px;

    font-weight: 600;

    color: #777;

}

.about-content h2 {

    font-size: 52px;

    margin: 15px 0 25px;

    font-weight: 700;

}

.about-content p {

    color: #555;

    line-height: 1.8;

    margin-bottom: 18px;

}

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin: 40px 0;

}

.feature {

    display: flex;

    align-items: center;

    gap: 15px;

}

.feature i {

    width: 60px;

    height: 60px;

    background: #111;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}

.feature h4 {

    font-size: 18px;

}

.about-btn {

    display: inline-block;

    padding: 16px 40px;

    background: #111;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    transition: .3s;

}

.about-btn:hover {

    background: #d4af37;

    color: #111;

}

.products {

    padding: 120px 0;

}

.section-title {

    text-align: center;

    margin-bottom: 50px;

}

.section-title span {

    letter-spacing: 4px;

    color: #888;

    font-size: 14px;

}

.section-title h2 {

    font-size: 48px;

    margin: 15px 0;

}

.section-title p {

    color: #666;

}

.filter-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 60px;

    flex-wrap: wrap;

}

.filter-buttons button {

    border: none;

    background: #eee;

    padding: 14px 35px;

    border-radius: 50px;

    cursor: pointer;

    transition: .3s;

    font-weight: 600;

}

.filter-buttons button.active,

.filter-buttons button:hover {

    background: #111;

    color: #fff;

}

.product-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.product-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    text-align: center;

    padding: 25px;

    position: relative;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.product-card:hover {

    transform: translateY(-12px);

}

.product-card img {

    width: 100%;

    height: 300px;

    object-fit: contain;

    transition: .4s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #111;

    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 12px;

}

.product-card h3 {

    margin: 20px 0 10px;

}

.product-card p {

    color: #777;

    margin-bottom: 20px;

}

.product-buttons {

    display: flex;

    gap: 10px;

}

.product-buttons a {

    flex: 1;

    text-decoration: none;

    padding: 12px;

    border-radius: 40px;

    background: #111;

    color: #fff;

    transition: .3s;

}

.product-buttons a:hover {

    background: #d4af37;

    color: #111;

}

.why-choose {

    padding: 120px 0;

    background: #F9F8F4;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.why-card {

    background: #fff;

    padding: 40px 30px;

    text-align: center;

    border-radius: 25px;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.why-card:hover {

    transform: translateY(-10px);

}

.icon {

    width: 80px;

    height: 80px;

    background: #111;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin: 0 auto 20px;

}

.why-card h3 {

    margin-bottom: 15px;

}

.why-card p {

    color: #666;

    line-height: 1.8;

}

/*==============================
    FEATURED CATEGORIES
===============================*/

.categories {

    padding: 120px 0;

    background: #F9F8F4;

}

.category-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.category-card {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    text-decoration: none;

}

.category-card img {

    width: 100%;

    /* height: 500px; */

    object-fit: contain;

    transition: .5s;

}

.category-card:hover img {

    transform: scale(1.1);

}

.category-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .15));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: #fff;

}

.category-overlay h3 {

    font-size: 28px;

    margin-bottom: 10px;

}

.category-overlay span {

    display: inline-block;

    width: max-content;

    padding: 10px 22px;

    border: 1px solid #fff;

    border-radius: 30px;

    transition: .3s;

}

.category-card:hover .category-overlay span {

    background: #fff;

    color: #111;

}

.arrivals {

    padding: 120px 0;

}

.arrival-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    text-align: center;

    padding: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}

.arrival-card:hover {

    transform: translateY(-10px);

}

.arrival-card img {

    width: 100%;

    height: 320px;

    object-fit: contain;

    transition: .4s;

}

.arrival-card:hover img {

    transform: scale(1.08);

}

.arrival-card h3 {

    margin: 20px 0 10px;

}

.arrival-card p {

    color: #777;

    margin-bottom: 20px;

}

.arrival-btns {

    display: flex;

    gap: 10px;

}

.arrival-btns a {

    flex: 1;

    text-decoration: none;

    background: #111;

    color: #fff;

    padding: 12px;

    border-radius: 40px;

    transition: .3s;

}

.arrival-btns a:hover {

    background: #d4af37;

    color: #111;

}

.swiper {

    padding-bottom: 60px;

}

/*==============================
        TESTIMONIALS
===============================*/

.testimonials {

    padding: 120px 0;

    background: #F9F8F4;

}

.testimonial-card {

    background: rgba(255, 255, 255, .8);

    backdrop-filter: blur(15px);

    border-radius: 25px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.testimonial-card img {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 20px;
    margin: auto;

}

.stars {

    color: #D4AF37;

    font-size: 22px;

    margin-bottom: 20px;

}

.testimonial-card p {

    color: #555;

    line-height: 1.8;

    margin-bottom: 20px;

}

.testimonial-card h4 {

    font-size: 20px;

    margin-bottom: 5px;

}

.testimonial-card span {

    color: #777;

}

/*==============================
      INSTAGRAM GALLERY
===============================*/

.instagram {

    padding: 120px 0;

    background: #fff;

}

.instagram-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.insta-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

}

.insta-item img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    display: block;

    transition: .5s;

}

.insta-item:hover img {

    transform: scale(1.1);

}

.overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: .4s;

}

.insta-item:hover .overlay {

    opacity: 1;

}

.overlay i {

    font-size: 42px;

    color: #fff;

}

/*==============================
        NEWSLETTER
===============================*/

.newsletter {

    padding: 120px 0;

    background: #F9F8F4;

}

.newsletter-box {

    background: #111;

    color: #fff;

    border-radius: 30px;

    padding: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}

.newsletter-content {

    flex: 1;

}

.newsletter-content span {

    color: #D4AF37;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

}

.newsletter-content h2 {

    font-size: 46px;

    margin: 20px 0;

}

.newsletter-content p {

    color: #ccc;

    line-height: 1.8;

}

.newsletter-form {

    flex: 1;

    display: flex;

    gap: 15px;

}

.newsletter-form input {

    flex: 1;

    height: 60px;

    border: none;

    border-radius: 50px;

    padding: 0 25px;

    font-size: 16px;

    outline: none;

}

.newsletter-form button {

    border: none;

    padding: 0 35px;

    background: #D4AF37;

    color: #111;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 700;

    transition: .3s;

}

.newsletter-form button:hover {

    background: #fff;

}

/*==============================
            FOOTER
===============================*/

.footer {

    background: #111;

    color: #fff;

    padding: 90px 0 30px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 50px;

}

.footer-logo {

    width: 180px;

    margin-bottom: 25px;

}

.footer p {

    color: #bbb;

    line-height: 1.9;

}

.footer h3 {

    margin-bottom: 25px;

    color: #fff;

}

.footer ul {

    list-style: none;

}

.footer ul li {

    margin-bottom: 15px;

}

.footer ul li a {

    color: #bbb;

    text-decoration: none;

    transition: .3s;

}

.footer ul li a:hover {

    color: #D4AF37;

    padding-left: 6px;

}

.social-icons {

    display: flex;

    gap: 15px;

    margin-top: 25px;

}

.social-icons a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #222;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .3s;

}

.social-icons a:hover {

    background: #D4AF37;

    color: #111;

}

.footer-bottom {

    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    text-align: center;

}

.footer-bottom p {

    margin: 0;

}

/*==============================
        ABOUT HERO
===============================*/

.about-hero {

    height: 70vh;

    display: flex;

    align-items: center;

    background: url("../images/banner/about-banner.jpg") center center/cover no-repeat;

    position: relative;

}

.about-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .55);

}

.about-hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    color: #fff;

}

.about-hero span {

    color: #D4AF37;

    letter-spacing: 4px;

    font-weight: 600;

}

.about-hero h1 {

    font-size: 60px;

    margin: 20px 0;

    line-height: 1.2;

}

.about-hero p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 35px;

    color: #ddd;

}

.hero-btns {

    display: flex;

    gap: 20px;

}

.btn-primary {

    background: #D4AF37;

    color: #111;

    padding: 16px 38px;

    border-radius: 40px;

    text-decoration: none;

    font-weight: 600;

}

.btn-outline {

    border: 2px solid #fff;

    color: #fff;

    padding: 16px 38px;

    border-radius: 40px;

    text-decoration: none;

}

/*==============================
        OUR STORY
===============================*/

.our-story {

    padding: 120px 0;

    background: #fff;

}

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.story-image {

    position: relative;

}

.story-image img {

    width: 100%;

    border-radius: 25px;

    display: block;

}

.experience-box {

    position: absolute;

    right: -20px;

    bottom: 30px;

    background: #111;

    color: #fff;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    min-width: 140px;

}

.experience-box h3 {

    font-size: 42px;

    color: #D4AF37;

    margin-bottom: 8px;

}

.story-content span {

    color: #D4AF37;

    letter-spacing: 3px;

    font-weight: 600;

}

.story-content h2 {

    font-size: 48px;

    margin: 18px 0 25px;

    line-height: 1.2;

}

.story-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 20px;

}

.story-features {

    margin-top: 35px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 500;

}

.feature-item i {

    color: #D4AF37;

}

/*==============================
      MISSION & VISION
===============================*/

.mission-section {

    padding: 120px 0;

    background: #F9F8F4;

}

.mission-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.mission-card {

    background: #fff;

    border-radius: 25px;

    padding: 45px 35px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.mission-card:hover {

    transform: translateY(-10px);

}

.mission-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: #111;

    color: #D4AF37;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    margin-bottom: 25px;

}

.mission-card h3 {

    font-size: 28px;

    margin-bottom: 20px;

}

.mission-card p {

    color: #666;

    line-height: 1.9;

}

/*==============================
      COMPANY STATS
===============================*/

.company-stats {

    padding: 120px 0;

    background: #111;

    color: #fff;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.stat-card {

    background: rgba(255, 255, 255, .06);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 25px;

    padding: 45px 25px;

    text-align: center;

    transition: .35s;

}

.stat-card:hover {

    transform: translateY(-10px);

    border-color: #D4AF37;

}

.stat-icon {

    width: 80px;

    height: 80px;

    margin: auto;

    background: #D4AF37;

    color: #111;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    margin-bottom: 20px;

}

.stat-card h2 {

    font-size: 48px;

    color: #fff;

    margin-bottom: 10px;

}

.stat-card p {

    color: #d8d8d8;

    font-size: 17px;

}

/*==============================
        TEAM SECTION
===============================*/

.team-section {

    padding: 120px 0;

    background: #F9F8F4;

}

.team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.team-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.team-card:hover {

    transform: translateY(-10px);

}

.team-image {

    position: relative;

    overflow: hidden;

}

.team-image img {

    width: 100%;

    height: 380px;

    object-fit: cover;

    transition: .4s;

}

.team-card:hover .team-image img {

    transform: scale(1.08);

}

.team-social {

    position: absolute;

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    opacity: 0;

    transition: .3s;

}

.team-card:hover .team-social {

    opacity: 1;

}

.team-social a {

    width: 42px;

    height: 42px;

    background: #111;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    transition: .3s;

}

.team-social a:hover {

    background: #D4AF37;

    color: #111;

}

.team-content {

    padding: 25px;

    text-align: center;

}

.team-content h3 {

    font-size: 24px;

    margin-bottom: 10px;

}

.team-content p {

    color: #666;

}

/*=================================
        PROCESS SECTION
==================================*/

.process-section {

    padding: 120px 0;

    background: #F9F8F4;

}

.process-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.process-card {

    background: #fff;

    border-radius: 25px;

    padding: 40px 30px;

    position: relative;

    text-align: center;

    transition: .35s;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.process-card:hover {

    transform: translateY(-10px);

}

.process-number {

    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 45px;

    font-weight: 700;

    color: rgba(212, 175, 55, .12);

}

.process-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: #111;

    color: #D4AF37;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    margin-bottom: 25px;

}

.process-card h3 {

    font-size: 26px;

    margin-bottom: 15px;

}

.process-card p {

    color: #666;

    line-height: 1.8;

}

/*=================================
            FAQ
==================================*/

.faq-section {

    padding: 120px 0;

    background: #fff;

}

.faq-wrapper {

    max-width: 900px;

    margin: 60px auto 0;

}

.faq-item {

    background: #F9F8F4;

    border-radius: 18px;

    margin-bottom: 20px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.faq-question {

    padding: 25px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

}

.faq-question h3 {

    font-size: 20px;

    margin: 0;

}

.faq-question i {

    font-size: 20px;

    color: #D4AF37;

    transition: .3s;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}

.faq-answer p {

    padding: 0 30px 25px;

    color: #666;

    line-height: 1.8;

}

.faq-item.active .faq-answer {

    max-height: 250px;

}

.faq-item.active .faq-question i {

    transform: rotate(45deg);

}

/*=================================
        CALL TO ACTION
==================================*/

.cta-section {

    padding: 120px 0;

    background: #111;

}

.cta-box {

    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);

    border-radius: 35px;

    padding: 90px 60px;

    text-align: center;

    color: #fff;

    position: relative;

    overflow: hidden;

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: rgba(212, 175, 55, .12);

    border-radius: 50%;

    top: -120px;

    left: -120px;

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    background: rgba(212, 175, 55, .10);

    border-radius: 50%;

    right: -100px;

    bottom: -100px;

}

.cta-box>* {

    position: relative;

    z-index: 2;

}

.cta-box span {

    color: #D4AF37;

    letter-spacing: 4px;

    font-weight: 600;

    font-size: 14px;

}

.cta-box h2 {

    font-size: 52px;

    margin: 20px 0;

    line-height: 1.2;

}

.cta-box p {

    max-width: 750px;

    margin: 0 auto;

    color: #d5d5d5;

    line-height: 1.9;

    font-size: 18px;

}

.cta-buttons {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 20px;

}

.cta-btn {

    background: #D4AF37;

    color: #111;

    text-decoration: none;

    padding: 18px 40px;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

}

.cta-btn:hover {

    background: #fff;

}

.cta-btn-outline {

    border: 2px solid #fff;

    color: #fff;

    text-decoration: none;

    padding: 18px 40px;

    border-radius: 50px;

    transition: .35s;

}

.cta-btn-outline:hover {

    background: #D4AF37;

    border-color: #D4AF37;

    color: #111;

}

/*=================================
        NEWSLETTER
==================================*/

.newsletter-section {

    padding: 120px 0;

    background: #F4F4F4;

}

.newsletter-box {

    background: linear-gradient(135deg, #111, #2a2a2a);

    border-radius: 30px;

    padding: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    color: #fff;

}

.newsletter-content {

    flex: 1;

}

.newsletter-content span {

    color: #D4AF37;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

}

.newsletter-content h2 {

    font-size: 48px;

    margin: 20px 0;

}

.newsletter-content p {

    color: #ccc;

    line-height: 1.9;

}

.newsletter-form {

    flex: 1;

    display: flex;

    gap: 15px;

}

.newsletter-form input {

    flex: 1;

    height: 60px;

    border: none;

    outline: none;

    border-radius: 50px;

    padding: 0 25px;

    font-size: 16px;

}

.newsletter-form button {

    border: none;

    background: #D4AF37;

    color: #111;

    padding: 0 35px;

    border-radius: 50px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.newsletter-form button:hover {

    background: #fff;

}


/*=================================
        PRODUCTS HERO
==================================*/

.products-hero {

    height: 420px;

    display: flex;

    align-items: center;

    background: url("../images/banner/products-banner.jpg") center center/cover;

    position: relative;

}

.products-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .55);

}

.products-hero-content {

    position: relative;

    z-index: 2;

    color: #fff;

    max-width: 650px;

}

.products-hero span {

    color: #D4AF37;

    letter-spacing: 3px;

    font-weight: 600;

}

.products-hero h1 {

    font-size: 60px;

    margin: 20px 0;

}

.products-hero p {

    color: #ddd;

    line-height: 1.9;

}

.breadcrumb-section {

    background: #F8F8F8;

    padding: 18px 0;

}

.breadcrumb {

    display: flex;

    list-style: none;

    gap: 10px;

}

.breadcrumb a {

    text-decoration: none;

    color: #111;

}

.breadcrumb li:last-child {

    color: #D4AF37;

}

/*=================================
        FILTER BAR
==================================*/

.filter-section {

    padding: 40px 0;

    background: #fff;

    position: sticky;

    top: 80px;

    z-index: 99;

}

.filter-bar {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr auto;

    gap: 20px;

}

.search-box {

    position: relative;

}

.search-box input {

    width: 100%;

    height: 58px;

    border: 1px solid #ddd;

    border-radius: 50px;

    padding-left: 55px;

    padding-right: 20px;

    outline: none;

    font-size: 16px;

}

.search-box i {

    position: absolute;

    left: 22px;

    top: 50%;

    transform: translateY(-50%);

    color: #888;

}

.filter-select select {

    width: 100%;

    height: 58px;

    border-radius: 50px;

    border: 1px solid #ddd;

    padding: 0 20px;

    font-size: 15px;

    outline: none;

    cursor: pointer;

    background: #fff;

}

.mobile-filter-btn {

    display: none;

    height: 58px;

    border: none;

    padding: 0 30px;

    border-radius: 50px;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}

.mobile-filter-btn:hover {

    background: #D4AF37;

    color: #111;

}

/*=================================
        PRODUCTS LAYOUT
==================================*/

.products-section {

    padding: 80px 0;

}

.products-layout {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 40px;

}

/* Sidebar */

.sidebar {

    position: sticky;

    top: 170px;

    height: max-content;

}

.filter-box {

    background: #fff;

    border-radius: 20px;

    padding: 25px;

    margin-bottom: 25px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.filter-box h3 {

    margin-bottom: 20px;

    font-size: 22px;

}

.filter-box label {

    display: block;

    margin-bottom: 12px;

    cursor: pointer;

}

.filter-box input[type=checkbox] {

    margin-right: 10px;

}

/* Size */

.size-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.size-list button {

    width: 48px;

    height: 48px;

    border: 1px solid #ddd;

    background: #fff;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;

}

.size-list button:hover {

    background: #111;

    color: #fff;

}

/* Colors */

.color-list {

    display: flex;

    gap: 15px;

}

.color-list span {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    cursor: pointer;

}

/* Product Grid */

.products-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.pro-products-section {
    padding: 140px 20px;
    background: #f8f8f8;
}

.pro-container {
    max-width: 1300px;
    margin: auto;
}

.pro-heading {
    text-align: center;
    margin-bottom: 35px;
}

.pro-heading h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.pro-heading p {
    color: #777;
}

.pro-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pro-filter-btn {

    border: none;
    background: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    border: 2px solid #ddd;

}

.pro-filter-btn:hover,
.pro-filter-btn.active {

    background: #000;
    color: #fff;
    border-color: #000;

}

.pro-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}

.pro-card {

    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.pro-card:hover {

    transform: translateY(-8px);

}

.pro-image {

    overflow: hidden;

}

.pro-image img {

    width: 100%;
    display: block;
    transition: .4s;

}

.pro-card:hover img {

    transform: scale(1.08);

}

.pro-content {

    padding: 18px;
    text-align: center;

}

.pro-content h3 {

    margin-bottom: 15px;
    font-size: 20px;

}

.pro-btn {

    display: inline-block;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s;

}

.pro-btn:hover {

    background: #444;

}

/* Tablet */

@media(max-width:991px) {

    .pro-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

/* Mobile */

@media(max-width:768px) {

    .pro-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

    }

    .pro-heading h2 {

        font-size: 30px;

    }

    .pro-filter-btn {

        padding: 10px 18px;
        font-size: 14px;

    }

    .pro-content h3 {

        font-size: 16px;

    }

}

.con-contact {

    padding: 120px 0;

    background: #f8f8f8;

}

.con-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

}

.con-info {

    background: #111;

    color: #fff;

    padding: 50px;

    border-radius: 20px;

}

.con-info h2 {

    font-size: 40px;

    margin-bottom: 20px;

}

.con-box {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 30px;

}

.con-box i {

    width: 60px;

    height: 60px;

    background: #D4AF37;

    color: #111;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

}

.con-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

.con-form input,
.con-form textarea {

    width: 100%;

    margin-bottom: 20px;

    padding: 15px 20px;

    border: 1px solid #ddd;

    border-radius: 12px;

    outline: none;

    font-size: 15px;

}

.con-form button {

    width: 100%;

    height: 55px;

    background: #111;

    color: #fff;

    border: none;

    border-radius: 50px;

    cursor: pointer;

    font-size: 16px;

    transition: .3s;

}

.con-form button:hover {

    background: #D4AF37;

    color: #111;

}

@media(max-width:768px) {

    .con-wrapper {

        grid-template-columns: 1fr;

    }

}