/* product */
.product-section {
    padding: 80px 0;
}
@media(max-width:767.5px){
    .product-section{
        padding: 0;
        padding-top: 50px;
    } 
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
@media(max-width: 991px){
    .section-header{
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .section-header{
        margin-bottom: 25px;
    }
}

.sub-heading {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.card-inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-top {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.card-inner:hover .product-img {
    transform: scale(1.08);
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 2;
    background: #232323;
    color: #fff;
}

.tag.new {
    background: #4CAF50;
}

.tag.sale {
    background: #FF5722;
}

.hover-buttons {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-inner:hover .hover-buttons {
    right: 15px;
    opacity: 1;
}

.hover-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.hover-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    color: #232323;
    margin-bottom: 10px;
    font-weight: 500;
}

.price-box {
    margin-bottom: 10px;
}

.regular-price {
    font-size: 20px;
    color: #232323;
    font-weight: 600;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-status {
    color: #4CAF50;
    font-size: 14px;
}

.rating {
    color: #FFC107;
    font-size: 14px;
}

/* Owl Carousel Customization */
.owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
    position: unset !important;
}
.owl-carousel .owl-dot span{
    background-color: #7A5C43 !important;
    border-color: #7A5C43 !important;
}

.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot:hover span, .owl-carousel .owl-dot.active span {
    background: #7A5C43 !important;
    width: 20px;
    border-radius: 4px;
}



/* Fix for owl carousel navigation */
.product-grid {
    position: relative;
    /* padding: 0 30px; */
}


/* Adjust button positions */
.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
    position: relative;
}

.owl-carousel .owl-nav button.owl-next {
    right: -15px;
}