* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styling */
.navbar {
    background-color: #bc7d33;
    padding: 0.8rem 2rem;
    height: 85px;
}

.navbar-brands img {
    height: 57px;
}

.nav-link {
    font-size: 1.1rem;
    margin-right: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item a {
    color: #ffffff;
    font-weight: bold;
}

.nav-link:hover {
    color: #ffffff !important;
}

    .nav-link:hover::after {
        width: 100%;
    }

.video-background {
    position: relative;
    overflow: hidden;
}

    .video-background video {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-background .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        /* Black transparent */
        z-index: 1;
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    /* Content area width */
    color: white;
}

.hero-text {
    flex: 1;
    text-align: left;
    /* .cinzel-decorative-regular { */
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

    .hero-text h1 {
        letter-spacing: 1px;
    }

    .hero-text p {
        letter-spacing: 1px;
    }

.cinzel-decorative-bold {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.cinzel-decorative-black {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-style: normal;
}

.collection-title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

.product-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

    .product-images img {
        width: 420px;
        /* Image size */
        height: 280px;
        border-radius: 20px;
    }

.shop-title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

.shop-collection {
    margin-top: 20px;
}

.collection-title {
    font-weight: bold;
    letter-spacing: 1px;
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

/* Smooth Hover Effect */
.row.g-4 img {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 3px solid transparent;
    border-radius: 15px;
}

    .row.g-4 img:hover {
        transform: scale(1.08);
    }

.hero-text h1 {
    letter-spacing: 1px;
}

.hero-text p {
    letter-spacing: 1px;
}

.product-item-title p {
    letter-spacing: 2px;
}

:root {
    --card-bg: #fff;
    --border: #e6a36d;
    --muted: #6b6b6b;
    --accent: #21b07a;
    --price-color: #111;
    --shadow: 0 6px 18px rgba(17, 17, 17, 0.06);
    --radius: 14px;
    --image-height: 300px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

/* image container */
.media {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--image-height);
}

    .media img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: 0.4s ease;
    }

.card:hover .media img {
    transform: scale(1.05);
}

/* product details */
.title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: #111;
    margin: 6px 0 0 0;
}

.meta {
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
    letter-spacing: 0.1px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: var(--price-color);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.shop-title p {
    letter-spacing: 1px;
}

.row .shadow-sm {
    background: #f5f5f5;
    border-radius: 15px;
    transition: 0.3s ease;
}

    .row .shadow-sm:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    }

/* Product card style */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    transition: 0.3s;
    background: #fff;
}

    .product-card:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }

    .product-card img {
        width: 100%;
        height: auto;
    }

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.product-meta {
    font-size: 0.85rem;
    color: gray;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.shipping-pill {
    background: #21b07a;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.gallery-title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

.bg-gallery {
    padding: 20px;
    background-color: #e6a36d;
}

.main-gallery-img img {
    border-radius: 10px;
    width: 100%;
    height: 720px;
}

.first-gallery-img img {
    width: 100%;
    height: 230px;
    border-radius: 10px;
}

.first-gallery-img img {
    transition: .5s;
}

.first-gallery-img {
    position: relative;
    overflow: hidden;
}

    .first-gallery-img img {
        width: 100%;
        display: block;
        transition: opacity 1s ease;
    }

    /* Biji image initially hide */
    .first-gallery-img .imgsec {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    /* Hover par biji image show, pehli hide */
    .first-gallery-img:hover .imgsec {
        opacity: 1;
    }

    .first-gallery-img:hover .imgfirst {
        opacity: 0;
    }

@media (max-width: 991.98px) {
    .main-gallery-img img {
        max-height: 500px;
    }

    .first-gallery-img img {
        max-height: 150px;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {

    .col-5,
    .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .first-gallery-img img {
        max-height: 180px;
    }
    
}

.bg-gallery {
    padding: 20px;
    background-color: #b17e49;
}

.main-gallery-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transition: .5s;
}

    .main-gallery-img img:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(0, 0, 0);
    text-shadow: 0 0 5px rgba(119, 116, 108, 0.8), 0 0 15px rgba(63, 59, 47, 0.5);
    position: relative;
}

    .brand-name .aura {
        color: #ffe600;
        /* Gold tone */
        text-shadow: 0 0 5px rgba(240, 193, 75, 0.8), 0 0 15px rgba(240, 193, 75, 0.5);
    }

.logo-in-texts img {
    width: 162px;
    height: 34px;
    margin-left: 10px;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, #f0c14b, transparent);
}





.footer {
    background: #bc7d33;
    color: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}



.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    border: 1px solid gold;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background: gold;
        color: #fff;
    }

.footer-bottom {
    font-size: 14px;
    color: #ffffff;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
   

    .testimonial-section {
        padding: 50px 20px;
        text-align: center;
    }

.testimonial-title {
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 40px;
    position: relative;
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

    .testimonial-title::before,
    .testimonial-title::after {
        content: '';
        display: inline-block;
        width: 50px;
        height: 2px;
        background: #ccc;
        margin: 0 10px;
        vertical-align: middle;
    }

.testimonial-card {
    background-color: #fef5ed99;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: auto;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}



.testimonial-text {
    position: relative;
    font-size: 14px;
    color: #333;
    font-style: italic;
    z-index: 1;
}

.testimonial-name {
    font-weight: bold;
    font-size: 14px;
    margin-top: 15px;
    z-index: 1;
    position: relative;
}

/* Swiper buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #333;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .product-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .product-images img {
            width: 310px;
            height: 180px;
            margin: 5px;
            margin-bottom: 10px;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

    .footer-links {
        text-align: center;
        margin-top: 30px;
    }

    .footer-contects {
        text-align: center;
        margin-top: 30px;
    }

    .rs-text img {
        height: 30px !important;
    }

    .footer-logo {
        justify-content: center !important;
    }
   
}

@media (max-width: 991px) {
    .navbar-brands img {
        height: 5px;
    }

    .navbar-nav {
        text-align: center;
    }

        .navbar-nav .nav-link {
            padding: 10px 0;
        }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }
}

@media (max-width:500px) {
    .navbar {
        padding: 15px 0;
    }
}

.nav-item a {
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .nav-item a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 100%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .nav-item a:hover::before {
        width: 200px;
        height: 200px;
        animation: ripple78 1s ease-out infinite;
        opacity: 1;
    }

@keyframes ripple78 {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}






