* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;

}

.navbar {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 20px;
    transition: all 0.3s;
    /* position: sticky;
    top: 0;
    z-index: 1000; */
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #c79a63 !important;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c79a63;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: #c79a63 !important;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.nav-icon-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin-left: 20px;
    /* margin: 0 10px;  */
    transition: color 0.3s, transform 0.3s;
}

.nav-icon-link:hover {
    color: #c79a63;
}

.nav-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}









/* banner */
.banner-container {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin-top: 6%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}
















/* Popular Fragrance */


.product-grid {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    /* height: 60vh; */


}

.product-grid .product-image {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image a.image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: 45vh;
}

.product-grid .product-image .pic-1 {
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-1 {
    transform: translateX(100%);
}

.product-grid .product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    position: absolute;
    /* top: 0; */
    left: 0;
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-2 {
    transform: translateX(0);
}

.product-grid .product-sale-label {
    color: #fff;
    background: var(--bs-hover);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-grid .product-like-icon {
    color: #696969;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.product-grid .product-like-icon.active {
    color: red;
}

.product-grid .product-like-icon:before,
.product-grid .product-like-icon:after {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    line-height: 18px;
    padding: 7px 7px 5px;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 15px;
    transition: all 0.3s ease 0s;
}

.product-grid .product-like-icon:after {
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    right: auto;
    left: 50%;
    top: 15px;
    z-index: -1;
}

.product-grid .product-like-icon:hover:before,
.product-grid .product-like-icon:hover:after {
    visibility: visible;
    top: 30px;
}

.product-grid .product-links {
    width: 170px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links {
    bottom: 40px;
    opacity: 1;
}

.product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
}

.product-grid .product-links li a {
    color: #fff;
    background: #192a56;
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links li a:hover {
    background: #333;
}

.product-grid .product-content {
    text-align: left;
    padding: 15px 0 0;
}

.product-grid .title {
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.product-grid .title a {
    color: #333;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.product-grid .title a:hover {
    color: var(--bs-hover);
}

.product-grid .price {
    color: var(--bs-hover);
    font-size: 16px;
    font-weight: 500;
}

.product-grid .price span {
    color: #555;
    font-size: 12px;
    font-weight: bold;
    /* text-decoration: line-through; */
    margin: 0 5px 0 0;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}




.pagination-controls {
    display: flex;
    justify-content: flex-end;
}

.pagination-controls .btn {
    margin-left: 10px;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: none;
}

.btn-black:hover {
    background-color: #333;
}

.btn-shop-all {
    background-color: black;
    color: #fff;
    border: none;
    text-decoration: none;
    position: relative;
}

.btn-shop-all:hover {
    background-color: black;
}

.btn-shop-all::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}










/* two img */
.containimg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 3%;
    margin-left: 2%;
    margin-right: 2%;
}

.image-containimg {
    position: relative;
    flex: 1;
    min-width: 500px;
    max-width: 95%;
    overflow: hidden;
    /* Ensure the image doesn't overflow its container */
    cursor: none;
    /* Hide the default cursor */
}

.image-containimg img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-containimg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Allow click events to pass through */
    display: none;
}

.image-containimg:hover::before {
    display: block;
}

.image-containimg.zoom img {
    transform: scale(1.2);
    /* Adjust the scale for the zoom effect */
}













/* ad */

.perfumeban {
    position: relative;
    background-image: url('ban\ gents.webp');
    background-size: cover;
    background-position: center;
    height: 770px;
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.perfume-card {
    max-width: 520px;
    /* margin-top: 12px; */
}

.perfume-card img {
    width: 100%;
    height: auto;
}

.perfume-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 5px;
    font-size: 14px;
}

















/* ad2 */

.femalecon {
    padding: 0 2%;

}


.perfume-card2 {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.134);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.perfume-card2:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    width: 100%;
    height: auto;
}

.perfume-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff5733;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: black;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: black;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.text-warning {
    color: #ffc107;
}

.text-success {
    color: #28a745;
}

.text-muted {
    color: #6c757d;
}

.mr-2 {
    margin-right: 0.5rem;
}


.perfume-banner {
    background: url('f.webp') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
    position: relative;
    /* overflow: hidden;  */
}

/* Overlay styling */
.perfume-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.377);
    z-index: 1;
}

.perfume-banner .banner-text {
    position: relative;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.5);  */
    padding: 20px;
    border-radius: 10px;
}


.banner-text p {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    padding-top: 70%;
}

.banner-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;

}

.banner-text a {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    background-color: black;
    color: #fff;
    text-decoration: none;
}

.banner-text a:hover {
    background-color: black;
}

















/* female perfume */

.fproduct {
    display: flex;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(22, 21, 21, 0.637);
    /* transform-style: preserve-3d; */
    transition: transform 0.3s ease;
    margin-top: 5%;
    width: 90%;
    margin-left: 4%;
    overflow-x: hidden;
}

/* .fproduct:hover {
    transform: translateY(-10px);
} */
.fproduct img {
    width: 600px;
    height: 600px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .fproduct:hover img {
    transform: scale(1.05);
} */
.fproduct-details {
    margin-left: 15%;
    max-width: 800px;
}

.fproduct-details h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bolder;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fproduct-details .price {
    font-size: 22px;
    color: red;
    margin-bottom: 10px;
    font-weight: bold;
}

.fproduct-details p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.fproduct-details .features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.fproduct-details .features span {
    display: flex;
    align-items: center;
    font-size: 20px;
    /* background-color: #e7e7e7; */
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;

}

.fproduct-details .quantity {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.fproduct-details .quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fproduct-details .quantity input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
}

.fproduct-details .buybuttons {
    display: flex;
    gap: 10px;
}

.fproduct-details .buybuttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.fproduct-details .buybuttons button:first-child {
    background-color: #f0f0f0;
}

.fproduct-details .buybuttons button:last-child {
    background-color: black;
    color: white;
}

.fproduct-details .buybuttons button:last-child:hover {
    background-color: #333;
}









/* collection */

.collection-card {
    border: 1px solid #ffffffea;

    border-radius: 5px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    width: 70%;
}

.collection-card:hover {
    transform: scale(1.05);
}

.collection-card img {
    width: 100%;
    height: auto;
}

.collection-card .card-body {
    padding: 10px;
}

.collection-card .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}

.collection-card .reviews {
    color: #f8b400;
}

.collection-card .price {
    font-weight: bold;
    color: #e74c3c;
}

.collection-card .old-price {
    text-decoration: line-through;
    color: #95a5a6;
}

.collection-card .discount {
    color: #27ae60;
    font-weight: bold;
}





















/* best product */
.bestsellcontainer {
    width: 95%;
    margin-left: 2%;
    margin-top: 5%;


}

.bestsellproduct-details {
    position: relative;
    height: 674px;
    background-size: cover;
    background-position: center;
}

.bestsellproduct-details video {
    width: 94%;
    height: 100%;
    object-fit: cover;
}

.bestsellproduct-details .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.725);
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.bestsellproduct-info {
    max-width: 590px;

}

.bestsellproduct-info img {
    width: 100%;
    height: auto;
}

.perfume-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 5px;
    font-size: 14px;
}

.product-like-icon {
    font-size: 30px;
    color: black;
}










/* gift */


.gift-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.275);
    transition: transform 0.5s;
    transform-style: preserve-3d;
    width: 80%;
    max-width: 1800px;
    margin-left: 8%;
}

.gift-card:hover {
    transform: rotateY(10deg);
}

.gift-left {
    flex: 1;
    padding: 20px;
}

.gift-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.gift-right {
    flex: 2;
    padding: 20px;
}

.gift-right h2 {
    margin-top: 0;
}

.gift-discount {
    color: red;
}

.gift-quantity {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.gift-quantity button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.gift-quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
}

.gift-buttons {
    display: flex;
    gap: 10px;
}

.gift-buttons button {
    flex: 1;
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.gift-buttons button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .gift-card {
        flex-direction: column;
    }

    .gift-left, .gift-right {
        width: 100%;
    }

    .gift-left {
        padding-bottom: 0;
    }
}









/* discount */

.discount-container {
    text-align: center;
    max-width: 1500px;
    margin: 20px;
    margin-top: 5%;
}

h1 {
    margin: 20px 0 10px;
    font-size: 24px;
}

p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #555;
}

.discount-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.discount-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
    margin: 10px;
    flex: 1 1 200px;
    max-width: 200px;
    transition: transform 0.3s;
}

.discount-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.discount-card h2 {
    font-size: 16px;
    margin: 10px 0;
    padding: 0 10px;
}

.discount-card .discount-price {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.discount-card button {
    background-color: white;
    border: 1px solid #333;
    color: #333;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.discount-card button:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .discount-card-container {
        flex-direction: column;
        align-items: center;
    }
}










/* footer */
.footer {
    background-color: #f3f3f3;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.footer .social {
    display: flex;
    align-items: center;
}
.footer .social a {
    margin-right: 10px;
    font-size: 22px;
    color: #000;
}
.footer .contact-info {
    font-size: 12px;
}
.footer .contact-info a {
    text-decoration: none;
    color: #000;
}
.footer .contact-info .timing {
    margin-top: 10px;
}
.footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    width: 100%;
}