/* Default (mobile-first) styles */

/* Style for the product description text */
.product-description {
    color: #000; /* Black color for the description text */
/*    font-weight: bolder;  Regular weight for the description text 
*/    font-size: 16px; /* Same size as the offer-strong text */
}.slick-next4, .slick-next5 {
    background-color: rgba(0, 0, 0, 0.5); /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove default border */
    padding: 10px 15px; /* Add padding for better click area */
    cursor: pointer; /* Change cursor to pointer on hover */
    border-radius: 5px; /* Add rounded corners */
    display: block; /* Ensures the button behaves as a block element */
    position: relative; /* Allows for proper positioning */
}
@media screen and (max-width: 768px) {
    .offer-strong {
        font-size: 18px !important;
        display: contents;
    }
}
@media screen and (max-width: 768px) {
  .logo-container {
    margin: 0 !important;      /* removes top, right, bottom, left margin */
    padding: 0 !important;     /* optional: also removes internal spacing */
  }
}
@media screen and (max-width: 768px) {
  .logo-container {
    margin: 0 !important;         /* clears all margins */
    margin-top: -50px !important; /* overrides with custom top */
  }
}

/* Styles for .slick-next4 */
.slick-next4 {
    margin-left: 1060px; /* Adjust for desktop */
    margin-top: -150px; /* Adjust for desktop */
}

/* Styles for .slick-next5 */
.slick-next5 {
    margin-left: 660px; /* Adjust for desktop */
    margin-top: -150px; /* Adjust for desktop */
}
/* Responsive styles */
@media (max-width: 768px) {
    .slick-next4, .slick-next5 {
        display: none; /* Hide buttons on screens 768px and below */
    }
}

@media (max-width: 480px) {
    .slick-next4, .slick-next5 {
        display: none; /* Hide buttons on screens 480px and below */
    }
}



.slick-next5:hover {
    background-color: rgb(249, 81, 0); /* Darken background on hover */
}
.slick-next4:hover {
    background-color: rgb(249, 81, 0); /* Darken background on hover */
}
/* General Styles - Apply to all screens */
.logo-container {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 20px;
  flex-wrap: nowrap; /* default: no wrap on large screens */
}

/* ✅ Enable wrap on small screens only */
@media (max-width: 768px) {
  .logo-container {
    flex-wrap: wrap;
  }
}

.logo-item {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    position: relative; /* Needed for pseudo-element */
    padding: 10px;
    margin: 10px;
    width: 50%; /* Each item takes half width */
}

/* Ensuring same design for ALL mobile screens */
@media (max-width: 768px) {
    .logo-item {
       width: calc(50% - 20px);
    }

    .logo-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 100%; /* Horizontal separator at the bottom */
        left: 0;
        width: 100%;
        height: 1px;
        background-color: rgb(128, 128, 128);
        z-index: -1;
    }
}

/* Desktop Screens - Keep Consistency */
@media (min-width: 768px) {
    .logo-container {
        flex-direction: row; /* Horizontal alignment */
        justify-content: space-between;
    }

    .logo-item {
        flex-direction: row; /* Image and text side by side */
        width: auto; /* Allow automatic width */
    }

    .logo-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        left: 88%; /* Position at end */
        height: 90%;
        border-right: 1px solid orange;
        transform: rotate(18deg);
        transform-origin: 0 0;
        background-color: transparent;
        margin-left: 60px;
    }
}

/* Ensuring Logo Size Consistency */
.logo-container img {
    width: 60px; /* Same size across all screens */
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
}

/* Logo Image Container */
.logo-image-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid rgb(0, 0, 0);
}

/* Text Styling */
.logo-text {
    text-align: center;
    font-weight: bold;
}

.offer-strong {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: bolder;
    font-family: sans-serif;
    font-style: italic;
    margin-left: 14px;
}
@media (max-width: 768px) {
    .logo-container {
        margin-top: -50px; /* Only for mobile screens */
    }
}
@media (max-width: 1024px) {
    .logo-container {
       /* margin-top: -50px; /* Applies to mobile and tablet screens */
    }
}

