 

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", system-ui;
}
body{
    line-height: 1.5;
}
.card-wrapper{
    max-width: 1100px;
    margin: 0 auto;
}
img{
    width: 100%;
    display: block;
}
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.img-select{
    display: flex;
}
.img-item{
    margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}
.product-content{
    padding: 2rem 1rem;
}
.product-title{
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}
.product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background:#fe5902;
    color: #f5f4f3;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product-link:hover{
    opacity: 0.9;
}
.product-rating{
    color: #ffc107;
}
.product-rating span{
    font-weight: 600;
    color: #252525;
}
.product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}
.product-price span{
    font-weight: 400;
}
.last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.new-price span{
    color: #256eff;
}
.product-detail h2{
    text-transform: capitalize;
    color: #070707;
    padding-bottom: 0.6rem;
}
.product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}
.product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(img/15.jpg) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.product-detail ul li span{
    font-weight: 400;
}
.purchase-info{
    margin: 1.5rem 0;
}
.purchase-info input,
.purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
.purchase-info input{
    width: 60px;
}
.purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.purchase-info .btn:first-of-type{
    background: #01005e;
    color: #dfdfdf;
}
.purchase-info .btn:last-of-type{
    background: #01005e;
}
.purchase-info .btn:hover{
    opacity: 0.9;
}
.purchase-info .btn{
  color: #f5f5f5;
}
.social-links{
    display: flex;
    align-items: center;
}
.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: blue;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
    background-color: #9b1f37;
}
.social-links a:hover{
    background: blue;
    border-color: transparent;
    color: #fff;
}

@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper{
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content{
        padding-top: 0;
    }
}

.table {
  max-width:100%;
  margin: 0 auto;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;

}
.table h2{
    justify-content: center;
    text-align: center;
}
.product-detail h2 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: bold;
  text-align: left;
  color: #12263a;
  margin-bottom: 1rem;
}
.productimages{

    width: 50%;
    height: 50vh;
    background-color: #000;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

thead th {
  background-color: #e3e4e6;
  color:  #01005e;
  padding: 10px;
  text-align: left;
  font-size: 1.2rem;
  text-transform: capitalize;
}

tbody td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  color: #333;
  font-size: 1rem;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

td[data-label]::before {
  content: attr(data-label);
  font-weight: bold;
  display: none;
}



@media screen and (max-width: 575px) {
    .product-title {
        font-size: 1.8rem;
    }
    .product-content {
        padding: 1rem 0.5rem;
    }
    .card {
        grid-template-columns: 1fr;
    }
    .purchase-info input {
        width: 50px;
    }
    .img-showcase img {
        width: 100%;
        height: auto;
    }
    .table {
        margin-left: 0;
        margin-bottom: 10%;
    }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .product-title {
        font-size: 2.2rem;
    }
    .product-content {
        padding: 1.5rem;
    }
    .card {
        grid-template-columns: 1fr;
    }
    .img-showcase img {
        width: 100%;
    }
    .purchase-info input {
        width: 55px;
    }
    .table {
        margin-bottom: 8%;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .product-title {
        font-size: 2.5rem;
    }
    .card {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
    .img-showcase img {
        width: 100%;
    }
    .purchase-info input {
        width: 60px;
    }
    .table {
        
        margin-bottom: 6%;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .product-title {
        font-size: 2.8rem;
    }
    .product-content {
        padding: 2rem;
    }
    .card {
        grid-template-columns: repeat(2, 1fr);
    }
    .img-showcase img {
        width: 100%;
    }
    .purchase-info input {
        width: 65px;
    }
    
}
@media screen and (min-width: 1200px) {
    .product-title {
        font-size: 3rem;
    }
    .product-content {
        padding: 3rem;
    }
    .card {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
    .img-showcase img {
        width: 100%;
    }
    .purchase-info input {
        width: 70px;
    }
    
}
/*******************************************************************************************feature Products***************************************************/
/* Default Styles (Desktop) */
.titlefeautured h11 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Poppins", system-ui;
    margin-left: 41%;
    color: rgb(24, 23, 23);
    text-align: center;
 
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .titlefeautured h11 {
        font-size: 30px; /* Reduce font size for tablets */
        margin-left: 35%; /* Adjust margin for better centering on tablets */
    }
}

/* Small Screens (Mobile Devices) */
@media (max-width: 768px) {
    .titlefeautured h11 {
        font-size: 28px; /* Reduce font size for mobile devices */
        margin-left: 30%; /* Adjust margin to better align the title */
    }
}

/* Extra Small Screens (Narrow Mobile Devices) */
@media (max-width: 480px) {
    .titlefeautured h11 {
        font-size: 24px; /* Reduce font size for narrow mobile devices */
        margin-left: 25%; /* Adjust margin to ensure proper centering */
    }
}
/* Default Styles (Desktop) */
/* Already included styles */

.biter {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    height: 44vh;
    
}
.bites {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.bite {
    min-width: 25%; /* 5 products per slide */
    box-sizing: border-box;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 8px;
    margin: 0 5px;
    text-align: center;
    height: 100%;
    font-family: "Poppins", system-ui;
    font-size: 14px; /* Default font size for desktop */
    color:#333333 ;
}
 
.fear h2{
       font-size: 18px;
    font-weight:600;
 color: #000000;
}
.bite img {
    max-width: 70%;
    max-height: 50%;
    border-radius: 8px;
    margin-left: 18%;
}

.bite-container {
    display: none; /* Hide all slide containers initially */
    width: 100%;
}

.active {
    display: flex; /* Show the active slide container */
}

.button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgb(255, 255, 255);
    color: #fe5902;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 0; /* Set to a lower value to ensure it is below the fullscreen overlay */
    width: 40px;
    height: 10vh;
    border: none;
}

.prev {
    left: 30px;
    
}
.next {
    right: 30px;
   
}
/* When fullscreen navigation is active, hide the slide button */
.overlay.active .button {
    display: none; /* or adjust the position as needed */
}

.bite {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures that items are distributed vertically */
    height: 100%; /* Full height of the card */
}

.bite button {
    width: 100%; /* Full width */
    padding: 15px;
    background-color: #fe5902; /* Customize button color */
    color: #ffffff;
    border: none;
    font-family: "Poppins", system-ui;
    font-size: 16px;
    border-radius: 8px 8px 8px 8px; /* Rounded bottom corners */
    cursor: pointer;
    margin-top: auto; /* Pushes the button to the bottom */
}

.bite button:hover{
    background-color: #000000;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.bite:hover button {
    display: block; /* Display the button on hover */
}
.bite a{
    color: #000000;
    text-decoration: none;
}

/* Media Queries for different screen sizes */

/* For extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
    .biter {
        height: auto; /* Adjust height for phones */
        margin-top: 20px;
    }

    .bites {
        margin-left: 0%;
    }

    .bite {
        min-width: 36.30%; /* Show 2 items per slide */
        font-size: 14px; /* Smaller font for phones */
       
    }

    .button {
        width: 30px;
        height: 8vh;
    }
    .prev {
    left: 0;
}

.next {
    right: 0;
}
.bite button{
    border-radius: 8px 8px 8px 8px;
    width: 100%;
}
}

/* For small devices (tablets, 576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .biter {
        height: auto; /* Adjust height for tablets */
    }
    .bites {
        margin-left: 0%;
    }
    .bite {
        min-width: 33.33%; /* Show 3 items per slide */
        font-size: 15px;
    }

    .button {
        width: 35px;
        height: 9vh;
    }
    .prev {
    left: 0;
}

.next {
    right: 0;
}
}

/* For medium devices (iPads, 768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .biter {
        height: auto; /* Adjust height for iPads */
 
    }
    .bites {
        margin-left:0%;
    }
    .bite {
        min-width: 25%; /* Show 4 items per slide */
        font-size: 15px;
    }

    .button {
        width: 38px;
        height: 9vh;
    }
    .prev {
    left: 0;
}

.next {
    right: 0;
}
}

/* For large devices (desktops, laptops, 992px - 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .biter {
        height: auto; /* Adjust height for iPads */
 
    }
    .bites {
        margin-left:0%;
    }
    .bite {
        min-width: 20%; /* Show 5 items per slide */
    }

    .button {
        width: 40px;
        height: 10vh;
    }
    .prev {
    left: 0;
}

.next {
    right: 0;
}
}

/* Extra large devices (large desktops, 1200px to 1599px) */
@media (min-width: 1200px) and (max-width: 1700.98px) {
    .biter {
        height: auto; /* Adjust height for iPads */
    }
    .bites {
        margin-left: 0%;
    }
    .bite {
        min-width: 4%; /* Maintain 5 items per slide */
    }
}

/* Ultra wide devices (larger desktops, 1600px to 2000px) */
@media (min-width: 1800px) and (max-width: 2000px) {
    .biter {
        height: auto;
    }
    .bites {
        margin-left: 5%;
    }
    .bite {
        min-width: 8%; /* Increase items per slide for larger screens */
    }
}


.hover-button {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.5s ease-in-out;
        }

        .container:hover .image {
            transform: scale(1.1);
        }

        .container:hover .hover-button {
            bottom: 20px;
        }
        .prev {
    left: 0;
}

.next {
    right: 0;
}

/*******************************footer social media icon******************************************/
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-link {
    color: white;
    font-size: 20px;
    width: 30px; /* Set a fixed width for a perfect circle */
    height: 30px; /* Set a fixed height for a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%; /* Make it circular */
    transition: color 0.3s ease, background-color 0.3s ease;
    margin-top: 20px;
}

.icon-link:hover {
    color: #D94F25; /* Adjust the hover color if needed */
    background-color: #ffffff;
}
