@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}



.custom-navbar {
    background: rgba(0, 0, 0, 0.6);
    /* transparent dark */
    backdrop-filter: blur(6px);
    padding: 15px 0;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.custom-navbar .nav-link:hover {
    color: #f8c146 !important;
    /* hover color */
}

.dropdown-menu {
    margin-top: 10px;
}

/* moving logo section */

.logo-marquee {
    background-color: white;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
}

.marquee-content {
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content img {
    height: 50px;
    /* Adjust logo size */
    user-select: none;
    pointer-events: none;
}

/* ================= SHOP BY CATEGORY ================= */
.shop-category {
    background: #fafafa;
}

/* Heading */
.heading-sec1 {
    color: #a2866a;
}

.section-heading {
    position: relative;

}

.section-heading::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #a2866a;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* CATEGORY CARD */
.category-card {

    height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 18px;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: 0.6s;
    box-shadow: 0 10px 30px #a2866a;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    border: 1px solid #a2866a;
    box-shadow: 0 12px 30px rgba(120, 90, 60, 0.9);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            /* bottom dark */
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.0) 60%
            /* top transparent */
        );
    z-index: 1;
}

/* content */

.category-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* tag */

.category-tag {

    background: #c9a227;
    padding: 4px 12px;

    font-size: 12px;
    font-weight: 600;

    border-radius: 20px;

    letter-spacing: 1px;
}

/* title */

.category-content h3 {

    font-size: 28px;
    font-weight: 700;

    margin: 12px 0;

}

/* button */

.shop-btn {

    background: white;
    color: black;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: .4s;
}

.shop-btn i {
    margin-left: 6px;
}

.category-card:hover .shop-btn {
    background: #a2866a;
    color: white;
    transform: translateX(6px);

}

.collections-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
    overflow: visible;
}

.collection-item {
    text-align: center;
    flex: 1 1 150px;
    max-width: 220px;

}

.circle-border {

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.circle-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collection-item:hover .circle-border {
    transform: scale(1.1);
}

.collection-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Optional: Responsive sizes */
@media (min-width: 768px) {
    .circle-border {
        width: 200px;
        height: 200px;
    }

    .collection-item {
        flex: 1 1 200px;
    }
}

/* product banner */

.oasaas-luxury-banner {
    position: relative;
    background: #c1a991;
    padding: 120px 0;
    overflow: hidden;
}

/* glow background */

.banner-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #a2866a;
    top: 40%;
    left: 60%;
    filter: blur(120px);
    opacity: .6;
}

/* TEXT AREA */

.banner-content {
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.banner-tag {
    font-size: 17px;
    letter-spacing: 2px;
    color: #a2866a;
    font-weight: 600;
}

.banner-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin: 15px 0;
    color: #111;
}

.banner-content p {
    color: #fdfdfd;
    margin-bottom: 25px;
    font-size: 17px;

}

/* IMAGE AREA */

.banner-images {
    position: relative;
    height: 420px;
}

/* MAIN IMAGE */

.img-main {

    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    transition: .4s;
}

/* SIDE CARDS */

.img-card {

    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    position: absolute;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    transition: .4s;
}

/* LEFT */

.img-left {
    left: 0;
    top: 90px;
    transform: rotate(-10deg);
}

/* RIGHT */
.img-right {

    right: 0;
    top: 120px;
    transform: rotate(10deg);
}

/* HOVER EFFECT */

.banner-images img:hover {

    transform: scale(1.08);

}

/* RESPONSIVE */
@media(max-width:992px) {
    .banner-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .banner-images {

        height: 360px;

    }

    .img-main {

        width: 240px;
        height: 320px;
    }

    .img-card {
        width: 140px;
        height: 190px;

    }

}



/* ================= ACCESSORIES SLIDER ================= */
.shop-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #000000, #555555);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* keep content above glow */
.shop-section .container {
    position: relative;
    z-index: 5;
}

/* background glow */
.shop-section::before,
.shop-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.35;
    z-index: 0;
}

.shop-section::before {
    width: 350px;
    height: 350px;
    top: -80px;
    left: -100px;
    /* background: radial-gradient(circle, #ffd700 0%, transparent 70%); */
}

.shop-section::after {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -80px;
    /* background: radial-gradient(circle, #c9a227 0%, transparent 70%); */
}

/* headings */
.small-title {
    color: #ffd700;
    letter-spacing: 3px;
    font-weight: 700;
}

.main-heading {
    color: #ffffff;
    font-weight: 800;

}

/* .main-heading span {
    background: linear-gradient(90deg, #ffd700, #ffeb70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.section-text {
    color: #dddddd;
}

/* product card */
.product-card {
    background: #111;
    border-radius: 18px;
    padding: 20px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

    border: 1px solid #a2866a;
    box-shadow: 0 12px 30px rgba(120, 90, 60, 0.9);
}

/* hover overlay behind content */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(120, 90, 60, 0.2);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;

}

/* card hover */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

/* image */
.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* title */
.product-card h5 {
    font-size: 1.2rem;
    color: #080808;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* description */
.product-card p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* carousel dots */
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #a2866a !important;
    opacity: 0.5;
}

.owl-dots .owl-dot.active span {
    opacity: 1;
    transform: scale(1.2);
}

/* why to choose us */

.why-choose-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Light glow background */
.why-choose-section::before,
.why-choose-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    z-index: 0;
}

.why-choose-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #ffd166 0%, transparent 70%);
}

.why-choose-section::after {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -100px;
    background: radial-gradient(circle, #014b8c 0%, transparent 70%);
}

/* Heading */
.small1-title {
    color: #a2866a;
    letter-spacing: 3px;
    font-size: 15px;
}

.main-heading {
    color: #000;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.main-heading span {
    background: #a2866a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: #a2866a;
    border-radius: 2px;
}

.section-text {
    color: #444;
    max-width: 650px;
    font-size: 1rem;
}

/* Card Styling */
.choose-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 12px 30px rgba(120, 90, 60, 0.08);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Subtle gold gradient overlay */
.choose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(162, 134, 106, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
}

.choose-card:hover::before {
    opacity: 1;
}

/* Hover glow + movement */
.choose-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #a2866a;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
    transition: all 0.4s ease;
}

.choose-card:hover .icon-box {
    background: linear-gradient(135deg, #c9b29a, #a2866a);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(162, 134, 106, 0.6);
    transform: rotate(10deg) scale(1.1);
}

/* Texts */
.choose-card h5 {
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.choose-card:hover h5 {
    color: #a2866a;
}

.choose-card p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Floating subtle animation */
.choose-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.why-heading {
    position: relative;
    z-index: 10;

}

.why-heading .small-title {
    color: #c9a227;
    font-size: 10px;

    font-weight: 700;
}

.why-heading .main-heading {
    color: #111;
    font-size: 40px;
}

.why-heading .main-heading span {
    color: #c9a227;
}

.why-heading .section-text {
    color: #444;
    max-width: 650px;
    font-size: 16px;
}



/* whatsapp icon */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 9999;
}

.footer-section {
    background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
    color: #ccc;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.footer-section::before,
.footer-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    z-index: 0;
}

.footer-section::before {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #a2866a 0%, transparent 70%);
}

.footer-section::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, #014b8c 0%, transparent 70%);
}


/* Titles */
.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #c9b29a, #a2866a);
    border-radius: 2px;
}

/* Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #bbb;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #a2866a, #d8c6b3);
    transition: width 0.3s;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #a2866a;

}

/* ===== Contact Info Hover Effects ===== */
.footer-section .d-flex a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .d-flex a:hover {
    color: #a2866a;
    /* gold color on hover */
}

.footer-section .d-flex p {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section .d-flex:hover p {
    color: #a2866a;
}

.footer-section .d-flex i {
    color: #a2866a;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-section .d-flex a {
    color: #bbb !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .d-flex a:hover {
    color: #a2866a !important;

}

.footer-section .d-flex p {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section .d-flex:hover i {
    transform: scale(1.2);
    color: #a2866a;
}

/* Social Icons */
.social-icons a {
    font-size: 1.4rem;
    color: #ccc;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #a2866a;
    transform: scale(1.2);
}

/* Footer Line */
.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
    color: #aaa;
    font-size: 14px;
}

.designer-link {
    color: #a2866a;
    text-decoration: none;
    transition: color 0.3s;
}

.designer-link:hover {
    color: #fff;
}

/* Smooth Fade-up Animation */
.footer-section .footer-widgets {
    animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* about-us page */

/* === Story === */
/* === About Story === */
.about-story {
    background: #f4efe9;
}

.about-story h2 {
    color: #a2866a;
    font-weight: 700;
}

.about-story p {
    color: #555;
    line-height: 1.8;
}


/* brand section */

.brand-section {
    padding: 60px 20px;
    background: #f4f4f4;
}

.brand-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* TEXT */
.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #a2866a, #c2a98a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-role {
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a2866a, #c2a98a);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(162, 134, 106, 0.3);

}

.brand-btn i {
    font-size: 30px;
}

.brand-btn:hover {

    box-shadow: 0 15px 30px rgba(162, 134, 106, 0.5);
}

/* IMAGE */
.brand-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a2866a, transparent);
    filter: blur(40px);
    opacity: 0.4;
    z-index: 0;
    top: 20px;
    left: 20px;
}

/* Frame */
.brand-image::before {
    content: "";
    position: absolute;
    inset: -15px;
    border: 2px solid #a2866a;
    border-radius: 25px;
    transform: rotate(-3deg);
    z-index: 1;
}

.brand-image {
    flex: 1;
    position: relative;
}

.brand-image img {
    width: 100%;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-image:hover img {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .brand-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-name {
        font-size: 32px;
    }
}

/* === Mission & Vision === */
.mission-section {
    background: linear-gradient(135deg, #5a4633, #a2866a);
}

.mission-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: 0.4s ease;
}

.mission-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.mission-box i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.mission-box h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.mission-box p {
    color: #eee;
}

/* === Core Values === */
.core-values {
    background: #f9f7f4;
}

.core-value {
    color: #a2866a;
}

.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    transition: 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(162, 134, 106, 0.25);
}

.value-card i {
    font-size: 2.2rem;
    color: #a2866a;
    margin-bottom: 15px;
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    color: #666;
}

/* === Testimonials === */
.testimonials {
    background: linear-gradient(135deg, #a2866a, #c9b29a);
    color: #fff;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: #f7f2ec;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card h6 {
    margin-top: 10px;
    font-weight: 600;
    color: #a2866a;
}

/* Contact-us page */

.contact-main {
    background: linear-gradient(135deg, #fdfdfd 0%, #f3f3f3 100%);

}

.contact-details-box h2 {
    font-weight: 700;
}

.contact-details-box p {
    color: #555;
    line-height: 1.7;
}

.contact-item {
    transition: 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    color: #a2866a;
    margin-right: 15px;
}

/* Form Box */
.contact-form-box {
    border-radius: 16px;
    transition: 0.3s;
}

.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    color: #a2866a;
}

.contact-form-box .form-control {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    transition: 0.3s;
}

.contact-form-box .form-control:focus {
    border-color: #a2866a;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.contact-form-box .btn {
    color: #a2866a;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-form-box .btn:hover {
    background: #a2866a;
}


/* gallery */
.gallery-section {
    background: linear-gradient(135deg, #f0f7fa 0%, #e2f0f7 100%);
    padding: 80px 0;
    position: relative;
    color: #014B8C;
}

/* Floating soft glows */
.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.2;
}

.gallery-section::before {
    width: 300px;
    height: 300px;
    background: #0A9291;
    top: -80px;
    left: -80px;
}

.gallery_img {
    margin-bottom: 1rem;
}

.gallery-item {
    padding: 10px;
    z-index: 1;
}

.zoom {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(1, 75, 140, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: brightness(95%);
}

.zoom:hover img {
    transform: scale(1.15);
    filter: brightness(105%);
}

.zoom:hover {
    box-shadow: 0 20px 40px rgba(1, 75, 140, 0.15);
}



/* ============= ACCESSORIES PAGE ============= */
.accessories-section {
    background: var(--vg-light);
    position: relative;
    overflow: hidden;
}

.accessories-page {
    position: relative;
    overflow: hidden;
}

/* Heading */
.small-title {
    color: #fffafa;
    letter-spacing: 2px;
}

.main-heading {
    color: #fff;
    font-size: 40px;
}

.accessories-head {
    color: #a2866a;
    position: relative;

}

.accessories-head::after {
    content: "";
    width: 90px;
    height: 4px;
    position: absolute;
    left: 30%;
    bottom: -7px;
    transform: translateX(-50%);
    background: rgb(162, 134, 106);
    border-radius: 4px;
}

.section-text {
    color: #131212;
    max-width: 600px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    margin: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.product-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Overlay Button */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

/* Product Info */
.product-info {
    padding: 20px;
}

.product-link {
    text-decoration: none;

    color: inherit;
    display: block;
}

.product-link h6,
.product-link p {
    text-decoration: none;

}

.product-info h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: #666;
}

/* Owl spacing */
.owl-carousel .owl-item {
    padding: 10px;
}


.navbar.sticky-top {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link {
    color: #030303;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #a2866a;

}

.navbar-nav .nav-link.active {
    color: #a2866a;
    font-weight: 700;
    border-bottom: 2px solid #a2866a;

}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        display: inline-block;
    }
}

.contact-heading {
    color: #a2866a;
}