/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e3b325;
    --secondary-color: #e8c663;
    --dark-color: #222222;
    --light-color: #f8f9fa;
    --text-color: #444444;
}



body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    font-weight:800;
    color:black;
}


a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.nav-icon {
    font-size: 1.2rem;
    color: #fff;
    margin-left: 15px;
    cursor: pointer;
}

.nav-icon:hover {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: 15px;
    cursor: pointer;
}

/* Home: transparent navbar over hero until scroll */
.navbar.navbar--home:not(.scrolled) {
    background: transparent !important;
    box-shadow: none;
}

/* Sticky Navbar Support */
.navbar.scrolled {
    background: #060606;
    color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-icon {
    color: var(--light-color) !important;
}

.navbar.scrolled .navbar-brand img {
    filter: brightness(1);
}

.navbar-nav .nav-link.active,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 28rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    margin-top: -86px;
    /* Pull up behind navbar */
    overflow: hidden;
}

.hero .hero-carousel {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    position: relative;
}

.hero .carousel-inner,
.hero .carousel-item {
    height: 100%;
}

.hero .carousel-item {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-slide--1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slide1.avif');
}

.hero-slide--2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slide2.avif');
}

.hero-slide--3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slide3.avif');
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
}

.hero-slide-inner .row {
    width: 100%;
    justify-content: center;
}

.hero-slide-inner .hero-content .hero-anim.mt-4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-slide-inner .hero-content .hero-anim.mt-4 .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.hero-slide--2 .hero-content {
    width: 100%;
    max-width: min(42rem, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none !important;
}

.hero-carousel-indicators {
    margin-bottom: 1.25rem;
    z-index: 3;
}

.hero-carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    opacity: 0.55;
}

.hero-carousel-indicators .active {
    opacity: 1;
}

.hero-anim {
    opacity: 0;
    transform: translate3d(0, 2.25rem, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-anim.hero-anim--in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 991px) {
    .hero-slide-inner {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 575px) {
    .hero {
        min-height: 22rem;
    }

    .hero-slide-inner {
        padding-top: 4.5rem;
        padding-bottom: 3.75rem;
    }
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f8f9fa !important;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: min(40rem, 92vw);
    text-align: center;
    line-height: 1.65;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 179, 37, 0.4);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   Trending Categories (Home)
========================= */

.trending-categories-section {
    background-color: #fff;
}

.trending-categories-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    color: inherit;
    text-decoration: none;
}

.trending-categories-card:hover {
    color: inherit;
}

.trending-categories-card img {
    width: 100%;
    height: auto; /* full image show hogi */
    display: block;
    transition: transform 0.5s ease;
}

.trending-categories-card:hover img {
    transform: scale(1.03);
}

.trending-categories-card__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;

    color: #fff;
    font-family: 'Algarabia', sans-serif;
    font-size: clamp(1.15rem, 2.8vw, 1.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.25;

    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    background: rgba(0, 0, 0, 0.30);

    pointer-events: none;
    word-break: break-word;
    hyphens: auto;

    transition: background 0.3s ease;
}

.trending-categories-card:hover .trending-categories-card__label {
    background: rgba(0, 0, 0, 0.45);
}


/* =========================
   Categories
========================= */

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.category-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.03);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.8)
    );

    padding: 30px 20px;
    text-align: center;
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Products */
.product-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 300px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 999;
}

.product-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.product-card:hover .product-action {
    opacity: 1;
}

.product-action a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-action a:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    color: #fbc20f;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
    background-color: black;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.product-price del {
    color: #aaa;
    font-size: 0.9rem;
    margin-right: 10px;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    border: none;
    padding-left: 20px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        background: #fff;
        padding: 10px 0;
    }

    .navbar-brand,
    .nav-link,
    .nav-icon {
        color: var(--dark-color) !important;
    }

    .navbar.navbar--home:not(.scrolled) {
        background: transparent !important;
    }

    .navbar.navbar--home:not(.scrolled) .navbar-brand,
    .navbar.navbar--home:not(.scrolled) .navbar-nav .nav-link,
    .navbar.navbar--home:not(.scrolled) .nav-icon {
        color: #fff !important;
    }

    .navbar.navbar--home:not(.scrolled) .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.45);
    }

    .navbar.navbar--home:not(.scrolled) .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .hero {
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: var(--dark-color);
    transform: translateY(-5px);
}

/*why choose us*/
.feature-wrapper {
        box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.feature-box {
    text-align: center;
    padding: 48px 20px;
    position: relative;
    transition: 0.3s ease;
    border-right:1px #d2b356 solid;
}

/* Center Border Line */
.feature-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #d2b356;
}

.feature-box:last-child::after {
    display: none;
}

.feature-box i {
    font-size: 42px;
    color: #c8a63f;
    margin-bottom: 20px;

}

.feature-box h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.feature-box:hover {
    background: #efeadf;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .feature-box {
        padding: 35px 15px;
    }

    .feature-box::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 0;
    }

    .feature-box:last-child::after {
        display: none;
    }
}

/* ===================================
   CUSTOMER REVIEW SLIDER CSS
=================================== */

.customer-review-section{
    background: #000;
    overflow: hidden;
}

.review-heading{
    color: #d4af37;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 15px;
}

.review-subtitle{
    color: #bdbdbd;
    font-size: 16px;
}

.review-line{
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto 20px;
}

.review-card{
    background: linear-gradient(145deg,#0f0f0f,#1a1a1a);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover{
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

.quote-icon{
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 25px;
}

.review-text{
    color: #f1f1f1;
    line-height: 1.9;
    font-size: 16px;
    min-height: 160px;
}

.review-stars{
    color: #d4af37;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.review-user{
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user-img{
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}

.review-user h5{
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}

.review-user span{
    color: #bdbdbd;
    font-size: 14px;
}

.review-btn{
    width: 60px;
    opacity: 1;
}

.review-btn span{
    width: 55px;
    height: 55px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.review-btn span:hover{
    background: #fff;
}

.carousel-item{
    transition: transform 1s ease-in-out;
}

/* Mobile Responsive */

@media(max-width:991px){

    .review-heading{
        font-size: 32px;
    }

    .review-card{
        padding: 30px 25px;
    }

    .review-text{
        min-height: auto;
    }

    .review-btn{
        display: none;
    }
}

@media(max-width:576px){

    .review-heading{
        font-size: 28px;
    }

    .review-card{
        border-radius: 18px;
    }

    .review-text{
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Single Product Page CSS (product.php) */
.page-header{
    padding: 50px 0 60px;
    margin-top: 100px;
    min-height: 250px;
}

.page-header-bg{
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/hero banner.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-header-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.z-1{
    z-index: 1;
}

/* ==========================================================================
   Product Slider Smooth Linear Marquee & Premium Aesthetics
   ========================================================================== */

.product-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.product-slider {
    padding: 15px 5px !important;
    margin: -15px -5px !important;
}

.product-slider .product-card {
    margin-bottom: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-slider .product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}


/* ==========================================================================
   Custom Pagination Aesthetics (Bootstrap Shop & Swiper Bullets)
   ========================================================================== */

/* Bootstrap Pagination Override (Blue to Black) */
.pagination .page-link {
    color: var(--dark-color) !important;
    background-color: #fff;
    border-color: #dee2e6;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: #fff !important;
    background-color: var(--dark-color) !important;
    border-color: var(--dark-color) !important;
}

.pagination .page-item.active .page-link {
    color: #fff !important;
    background-color: var(--dark-color) !important;
    border-color: var(--dark-color) !important;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d !important;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Swiper Pagination Bullets (Blue to Black/Gold) */
.swiper-pagination-bullet {
    background: var(--dark-color) !important;
    opacity: 0.55;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
}
