* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}


/* navigation */
.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;
    transition: color 0.3s, transform 0.3s;
}

.nav-icon-link:hover {
    color: #c79a63;
}

.nav-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}












.heading img{
   margin-left: 33%;
   
}







.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;
}






























/* review */

.review-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
   
}

.star-rating i {
    color: gold;
}
.review-title {
    font-weight: bold;
}
.review-date {
    float: right;
    color: gray;
}
.section-heading {
    text-align: center;
    margin: 40px 0;
    position: relative;
}
.section-heading:before,
.section-heading:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ccc;
}
.section-heading:before {
    left: 0;
}
.section-heading:after {
    right: 0;
}




















/* 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%;
}