#video-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 5px 0;
    margin-bottom:20px;
}

.video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.styled-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}
.product-price{
    color:black;
}

.swiper-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0; /* Give space for arrows */
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.product-wrapper {
    width: 100%;
    max-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 3px;
    height: 200px;
    padding: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

.product-wrapper:hover {
    border-color: #ffbf00; /* Change to your desired color */
}


.product-imager {
    width:100%;height:100px;object-fit: cover;object-position: center;display: block;
}

.product-info {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: white;
    text-align: left;
    margin:3px;
    display: block; /* Ensures each item takes up its own line */
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff6600;
    top: 40%;
    background: transparent;
    padding: 10px;
    transition: background 0.3s ease, opacity 0.3s ease; /* fade effect */
    opacity: 0.7; /* slightly faded by default */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5); /* light black background on hover */
    opacity: 1; /* fully visible on hover */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #ffbf00;
    font-size: 30px;
}
.add-to-cart-btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff, #f7f7f7);
    border: 1px solid black;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    letter-spacing: 0.3px;
    font-family: "Arial", sans-serif;
}

/* Hover effect */
.add-to-cart-btn:hover {
    border-color: #d35400;
    color: #d35400;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.18);
    transform: translateY(-1px);
}

/* Pressing / Active state */
.add-to-cart-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.s-prod1{
   width: 16%;}
   @media screen and (max-width: 768px) {
 .s-prod1{
   width: 32%;}      
   }
 