
.cart-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cart-btn:hover{
    transform: translate(-2px , -2px) scale(1.2);
    transition: all 0.3s linear;
}


.navbar-brand i {
    font-size: 1.5rem;
    color: #333;
}

.navbar-brand:hover i{
    color: rgb(224, 164, 51) !important;
    transform: rotateY(180deg);
    transition: all 0.6s linear;
}

#navbarNav a{
    
    position: relative;
}

#navbarNav a::before{
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0px;
    background: linear-gradient(to right, rgb(196, 165, 108) ,rgb(207, 152, 51) 100%);
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    transition: 0.7s;
    
}

#navbarNav a:hover::before{
    transform: scalex(0.9);
}

.sec1{
    background: linear-gradient(to right, rgb(231, 229, 225) ,rgb(231, 203, 152) 100%);
}

.sec1 h1{
    font-size: 60px;
}



/* ----------------------- Sec 2 Cards -------------------------------- */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */

.autoplay .card {
    height: 100%;
}

.product-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s linear;
}

.product-card:hover {
    border-color: #a49e9e;
    transform: translateY(-5px);
}

.product-card {
    border: 2px solid #ddd;       
    border-radius: 15px;           
    overflow: hidden;              
    position: relative;
}

.product-card img {
    height: 400px;                 
    object-fit: cover;             
}

.product-card .card-img-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px;
}

.product-card h5 {
    font-size: 1.1rem;
}

.product-card .price {
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFD700; 
}   

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

#headerFeactured{
    font-size: 45px;
}

.view-all-btn {
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.search-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1) ;
    margin-bottom: 10px;
    border-radius: 50%;
}


.sec4 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sec4 .container {
    max-width: 1200px;
}

.sec4 img {
    max-width: 500px;
    transition: transform 0.3s ease;
}

.sec4 img:hover {
    transform: scale(1.02);
}

.sec4 h6 {
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.sec4 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sec4 p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
}


#image1 , #image2 , #image3{
    width: 300px;
    height: 450px;
}



.headerFooter{
    font-size: 25px;
    position: relative;
}


.headerFooter::before{
    content: "";
    background: linear-gradient(to right, rgb(196, 165, 108) ,rgb(207, 152, 51) 100%);
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0px;
    top: 100%;
}


.headerFooter:hover::before{
    width: 50%;
    transition: all 0.9s linear;
}


footer .container .row .iconLink {
    transition: all 0.3s ease-in-out; 
    display: inline-block; 
}

footer .container .row .iconLink:hover {
    transform: translateX(3px);
    color: rgb(199, 104, 45) !important;
}

.icoons:hover{
    transform: translate(-3px , -3px) scale(1.2) !important;
}




/* ---------------------------- About --------------------------------- */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */

.stat-number{
    font-size: 40px;
    font-weight: bolder;
    color: rgb(207, 152, 51);
}

.sec1-about{
    background: linear-gradient(to right, rgb(231, 229, 225) ,rgb(231, 203, 152) 100%);
}

.sec1-about p{
    max-width: 600px;
}

/* ---------------------------- Add Product---------------------------- */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */

textarea{
    min-height: 150px !important;
}


#iconBussnes{
    font-size: 1.5rem;
    color: #333;
}


#FormForAddProduct:hover #iconBussnes{
    color: rgb(224, 164, 51) !important;
    transform: rotateY(180deg);
    transition: all 0.6s linear;
}




