* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d7a3e;
    --secondary-blue: #0f5a8e;
    --accent-orange: #ff9f43;
    --light-white: #f8fafb;
    --dark-text: #1a1a1a;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-white);
}



/* --- Header & Footer --- */
header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); padding: 15px 0; position: sticky; top: 0; z-index: 1000; width: 100%; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.5rem; font-weight: 700; color: var(--dark-text); }
.logo-icon { background-color: var(--primary-blue); color: white; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px; }
.nav-links { display: flex; align-items: center; }
.nav-links ul { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-blue); }
.btn-primary { background-color: var(--primary-blue); color: var(--bg-white); padding: 10px 24px; border-radius: 8px; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-text); }
footer { background: #1e2a39; color: #aab2bd; padding: 20px 0; text-align: center; font-size: 0.9rem; }



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 50%, #1a472a 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Products Section */
.products-section {
    padding: 4rem 2rem;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Featured Product Layout */
.featured-product-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;
}

.featured-product-image {
    position: relative;
    background: #f7f4ef !important; /* Changed from linear-gradient */
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-product-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.featured-product-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-product-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.featured-product-name {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.featured-product-type {
    color: var(--secondary-blue);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.featured-product-description {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.featured-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.featured-feature-tag {
    background-color: #e8f2ed;
    color: var(--primary-green);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-green);
}

.featured-product-usage {
    background-color: #f0f7f4;
    border-left: 5px solid var(--primary-green);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.featured-usage-title {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.featured-usage-steps {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.featured-usage-steps li {
    margin-bottom: 0.7rem;
    margin-left: 1.5rem;
}

.featured-product-footer {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.featured-product-price {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 122, 62, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.15);
    border-color: var(--accent-orange);
}


.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: #f7f4ef !important;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-type {
    color: var(--secondary-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-usage {
    background-color: #f0f7f4;
    border-left: 4px solid var(--primary-green);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.usage-title {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.usage-steps {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.usage-steps li {
    margin-bottom: 0.4rem;
    margin-left: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: #e8f2ed;
    color: var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--primary-green);
}

.product-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    color: var(--accent-orange);
    font-weight: 700;
}

/* --- Contact Section --- */
#contact {
    padding: 80px 0;
    background-color: var(--bg-light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: flex-start;
}

.contact-info-card,
.contact-form-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-circle.phone { background-color: #1a9cff; }
.icon-circle.email { background-color: #31c471; }
.icon-circle.address { background-color: #f8af45; }

.contact-detail-text strong {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    display: block;
    margin-bottom: 2px;
}

.contact-detail-text p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.btn-expert {
    background-color: #f8b045;
    color: white;
    width: 100%;
    justify-content: center;
    padding: 16px;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.btn-expert:hover {
    background-color: #e69c2e;
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e6f0;
    border-radius: 16px;
    background-color: #f8fafc;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a9b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 153, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-gradient {
    width: 100%;
    background: linear-gradient(90deg, #0d99ff, #68c058);
    color: white;
    border: none;
    font-weight: 600;
    padding: 16px;
    font-size: 1.1rem;
    cursor: pointer;
    justify-content: center;
    border-radius: 16px;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-product-name {
      font-size: 2rem;
  }

  .featured-product-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .featured-product-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-product-image {
    height: 350px;
  }

  .featured-product-content {
    padding: 2rem;
  }

  .featured-product-name {
    font-size: 1.8rem;
  }

  .featured-product-type {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.5rem;
  }

  .logo {
      font-size: 1.3rem;
  }

  .product-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
  }

  .featured-product-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-product-name {
      font-size: 1.6rem;
  }

  .featured-product-image {
      height: 250px;
  }

  .featured-product-content {
      padding: 1rem;
  }

  .featured-product-footer {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
  }

  .cta-button {
      width: 100%;
      text-align: center;
  }
}



/* Force Side-by-Side Layout */
.side-by-side-container {
    display: flex !important;
    align-items: center;
    gap: 40px; /* Space between image and text */
    flex-wrap: nowrap; /* Prevents text from dropping below */
}

/* Fix the Slideshow size so it doesn't take over */
.slideshow-wrapper {
    flex: 0 0 50%; /* Image takes exactly 50% of the width */
    max-width: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .side-by-side-container {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 20px;
    }

    .slideshow-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 300px;
    }

    .featured-product-content {
        flex: 1 1 100%;
        padding: 2rem 0;
    }

    .featured-product-name {
        font-size: 1.8rem;
    }

    .featured-product-type {
        font-size: 1rem;
    }

    .featured-product-description {
        font-size: 0.95rem;
    }

    .featured-product-footer {
        width: 100%;
    }

    .specs-maintenance-row {
        flex-direction: column;
    }

    .featured-product-usage {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .side-by-side-container {
        gap: 15px;
        padding: 0;
    }

    .slideshow-wrapper {
        min-height: 250px;
    }

    .featured-product-content {
        padding: 1rem 0;
    }

    .featured-product-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .featured-product-type {
        font-size: 0.9rem;
    }

    .featured-product-features {
        gap: 0.5rem;
    }

    .featured-feature-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .specs-maintenance-row {
        gap: 15px;
    }

    .featured-product-usage {
        padding: 1rem;
        border-left-width: 4px;
        margin-bottom: 1.5rem;
    }

    .featured-usage-title {
        font-size: 1rem;
    }

    .featured-usage-steps {
        font-size: 0.85rem;
    }

    .featured-usage-steps li {
        margin-bottom: 0.5rem;
    }

    .centered-footer {
        justify-content: center;
    }

    .red-btn {
        width: 100%;
        text-align: center;
    }
}



.slideshow-img {
    width: 100% !important;
    height: 500px !important;
    object-fit: contain !important;
    background-color: #f7f4ef !important; 
    border-radius: 12px;
    box-shadow: none !important; /* Removes the '3D' shadow effect */
}

/* 2. Fix the Product Grid cards background */
.product-image-container {
    position: relative;
    /* Updated from the old green gradient to match your new theme */
    background: #f7f4ef !important; 
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container for side-by-side layout */
.side-by-side-container {
    display: flex !important;
    align-items: flex-start; /* Aligns text to the top of the image */
    gap: 50px;
    flex-wrap: nowrap;
    padding: 40px 0;
}

/* Slideshow Sizing */
.slideshow-wrapper {
    flex: 0 0 45%; 
    max-width: 550px;
    position: sticky;
    top: 100px;
    background-color: #f7f4ef !important; /* Match background */
}

.slideshow-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Right Side Content Styling */
.featured-product-content {
    flex: 1;
    padding: 0 !important;
}

.featured-product-name {
    font-size: 2.8rem;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.featured-product-type {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Responsive fix for Mobile */
@media (max-width: 992px) {
    .side-by-side-container {
        flex-direction: column !important;
    }
    .slideshow-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
    }
}






.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.chatbot-toggler:hover {
    transform: scale(1.1);
}

.chatbot-toggler .fa-times { display: none; }
body.show-chatbot .chatbot-toggler .fa-times { display: block; }
body.show-chatbot .chatbot-toggler .fa-comments { display: none; }

.chatbot {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 380px;
    max-width: 90%;
    max-height: 520px;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.chatbot-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.chatbot-header-logo .logo-icon { background: rgba(255,255,255,0.2); }
.chatbot-close-btn { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }

.chatbot-log {
    flex-grow: 1;
    padding: 20px;
    list-style: none;
    overflow-y: auto;
}

.chatbot-log li { display: flex; margin-bottom: 15px; max-width: 90%; word-wrap: break-word; }
.chatbot-log .bot p { background-color: var(--bg-light-gray); color: var(--text-dark); border-radius: 0 15px 15px 15px; padding: 10px 15px; font-size: 0.9rem; }
.chatbot-log .user { justify-content: flex-end; }
.chatbot-log .user p { background-color: var(--primary-green); color: white; border-radius: 15px 0 15px 15px; padding: 10px 15px; font-size: 0.9rem; }

.chatbot-input-area { display: flex; padding: 10px 20px; border-top: 1px solid var(--border-color); gap: 10px; }
.chatbot-input { flex-grow: 1; border: 1px solid var(--border-color); padding: 10px; border-radius: 8px; outline: none; transition: border-color 0.2s; }
.chatbot-input:focus { border-color: var(--primary-blue); }

.chatbot-send-btn { background-color: var(--primary-blue); color: white; border: none; width: 45px; height: 45px; border-radius: 8px; font-size: 1.2rem; cursor: pointer; transition: background-color 0.2s; }
.chatbot-send-btn:hover { background-color: #1c66e0; }



@media (max-width: 490px) {
    .chatbot {
        right: 15px;
        bottom: 80px;
        width: calc(100% - 30px);
        max-height: 70vh;
    }
    .chatbot-toggler {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
        font-size: 1.8rem;
    }
}


.chat-options {
  list-style: none;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chat-options li {
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  border: 1px solid #e2e8f0;
  transition: 0.2s;
}

.chat-options li:hover {
  background: var(--primary-blue);
  color: white;
}

.chat-options li.selected {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.chat-options button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: #28a745;
  color: white;
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}






/* Change the background of the product section */
#products.products-section {
    background-color: #f7f4ef !important; /* Change this hex code to your preferred color */
   padding: 1rem 2rem 4rem 2rem;
}

/* Style the button to be light red */
.cta-button.red-btn {
    background: #ff6b6b !important; /* Light Red color */
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3) !important;
}

/* Change color slightly on hover */
.cta-button.red-btn:hover {
    background: #ff5252 !important; 
    transform: translateY(-2px);
}


/* Creates the two-column layout for the lists */
.specs-maintenance-row {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Ensures both lists take up equal width */
.specs-maintenance-row .featured-product-usage {
    flex: 1;
    margin-bottom: 0; /* Remove default margin to keep them aligned */
    height: 100%;
}

/* Adjust the main container to allow the row to span full width below */
.featured-product-content {
    display: flex;
    flex-direction: column;
}

/* Responsive: Stack the lists on top of each other on small screens */
@media (max-width: 768px) {
    .specs-maintenance-row {
        flex-direction: column;
        gap: 20px;
    }
}


/* 1. Reduce the gap above the two boxes */
.specs-maintenance-row {
    display: flex;
    gap: 30px;
    margin-top: 1px !important; /* Reduced from 40px to 10px */
    width: 100%;
}

/* 2. Center the "Call to Order Now" button */
.centered-footer {
    display: flex !important;
    justify-content: center !important; /* Horizontally centers the button */
    align-items: center !important;
    width: 100% !important;
    margin-top: 30px !important;
    padding: 20px 0 !important;
}

/* 3. Ensure the Red Button is styled correctly */
.cta-button.red-btn {
    background: #ff6b6b !important; /* Light Red */
    color: white !important;
    padding: 12px 40px !important; /* Wider button */
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3) !important;
}

.cta-button.red-btn:hover {
    background: #ff5252 !important;
    transform: translateY(-2px);
}


/* 1. Make the individual Feature Tags pop up as a whole box */
.featured-feature-tag {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    /* Keeps your existing design/colors exactly as they are */
}

.featured-feature-tag:hover {
    transform: translateY(-5px); /* Lifts the whole tag */
    box-shadow: 0 4px 10px rgba(45, 122, 62, 0.2); /* Soft shadow for 'pop' effect */
}

/* 2. Make the Maintenance & Care / Specifications boxes pop up */
.featured-product-usage {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    /* Ensures the design/colors remain identical to your root style */
}

.featured-product-usage:hover {
    transform: scale(1.02); /* Subtle enlargement of the entire container */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Soft lift effect */
}

/* 3. Disable any pointer/text-specific hover effects */
.featured-usage-steps li:hover,
.featured-feature-tag span:hover {
    transform: none !important;
    padding-left: 0 !important;
}


/* MOBILE FIX FOR PRODUCT TITLE HIDING */
@media (max-width: 768px) {

    .side-by-side-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .slideshow-wrapper {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
    }

 .featured-product-content {
    width: 100% !important;
    padding-top: 80px !important;
    z-index: 2;
    position: relative;
}

    .featured-product-name {
        margin-top: 10px !important;
        word-break: break-word;
    }

}

