* {
    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;
}












.product-images {
    display: flex;
    flex-direction: column;
   
}

.product-image {
    width: 100%;
    height: auto;
}

.small-images {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.small-image {
    width: 48%;
    height: auto;
}

.rating {
    color: #ffcc00;
}

.price {
    text-decoration: line-through;
}

.new-price {
    font-weight: bold;
}

.exclusive-offers {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.exclusive-offers div {
    border: 1px solid #343232;
    background-color: rgba(255, 217, 0, 0.067);
    padding: 10px;
    text-align: center;
    width: 32%;
}

.offer-code {
    font-weight: bold;
}

.accordion .card-header {
    cursor: pointer;
    
}
.card-header h5{
    color: blue;
    text-decoration: underline;
}

.badge-icon {
    font-size: 24px;
    margin-right: 10px;
}












/* review */

.review-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
   
}

.star-rating i {
    color: orange;
}
.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;
}




















/* more product */
/* 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%;
}