/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color: #F7F4F3;
    padding-bottom: 0px;    
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header and Navigation styles */
.home-header {
    min-height: 5vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: #22333B;
}

.home-header + .body {
    padding-top: 50px; /* only affects .body immediately after a header */
}


nav {
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: #22333B;
}

nav img {
    width: 200px;
}

.nav-links {
    display: flex;
    margin-left: auto; /* Push nav links to the right */
    background-color: #22333B;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px 35px 10px;
    text-decoration: none;
    color: #F7F4F3;
    font-size: 26px;
    position: relative;
}

.show-menu {
    display: block !important;
}

nav ul li a::before,
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    transition: transform 0.3s ease;
}

nav ul li a::before {
    background-color: #F7F4F3;
    transform: scaleX(0);
}

nav ul li a::after {
    border-top: 2px solid #F7F4F3;
    transform: scaleX(0);
}

nav ul li a:hover::before,
nav ul li a:focus::before,
nav ul li a:active::before,
nav ul li.current-menu-item a::before,
nav ul li a:hover::after,
nav ul li a:focus::after,
nav ul li a:active::after,
nav ul li.current-menu-item a::after {
    transform: scaleX(1);
}

/* Submenu styles */
nav ul li ul {
    display: block; /* Keep it in the flow */
    position: absolute;/* Ensure it appears properly */
    z-index: 999 !important;
    background: #F7F4F3;
    z-index: 1;
    width: 100%;
    padding-top: 10px;

    /* Hide initially with opacity and visibility */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Apply a delay only when showing the menu */
nav ul li:hover ul,
nav ul li:focus-within ul {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
    transition-delay: 0.1s; /* Adds a delay before showing */
}

/* Override dropdown positioning for larger screens */
@media (min-width: 769px) {
    nav ul li ul {
        position: absolute; /* Change position to absolute */
        top: calc(100% - 2px); /* Position the dropdown below the parent item */
        left: 0; /* Align the dropdown with the parent item */
        box-shadow: 0 0 100px rgb(0, 0, 0);
    }
}

nav ul li ul li {
    display: block;
    text-align: center;
}

nav ul li ul li a {
    padding: 10px 20px;
    color: #0A0908;
    font-size: 20px;
}

/* Main content styles */
h1 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

h4 {
    font-weight: 600;
    font-style: italic;
    padding: 10px;
}

p {
    color: #F7F4F3;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px;
    border: 0px solid #ccc;
    gap: 20px; /* Adjust this value to control spacing */
    align-items: stretch; /* ensures all columns same height */
}

@media (min-width: 769px) {
    .row {
        padding: 50px 100px;
    }
}

.col {
    width: 25%;
    margin-bottom: 40px;
    border: 3px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #F7F4F3;
}

.col img {
    width: 100%;
    height: auto;
}


/* Responsive styles */
@media (max-width: 768px) {
    .col {
        width: 45%;
    }

    nav {
        padding: 1% 3%;
    }

    .home-header,
    nav {
      width: 100vw; /* force full viewport width */
      margin: 0;
    }
}

@media (max-width: 576px) {
    .col {
        width: 100%;
    }

    nav img {
        width: 200px;
    }

    .text-box {
        top: 30%;
    }

    .text-box h1 {
        font-size: 36px;
    }

    .text-box p {
        font-size: 10px;
    }
}

/* On mobile (max 576px), show 2 items per row */
@media (max-width: 576px) {
    .handle-section .col {
        width: 45%; /* 2 per row */
        margin-bottom: 10px;
    }
    
    .handle-section h3 {
        font-size: 12px; /* Smaller text */
        margin: 0px 0;
    }

    .handle-section .price {
        font-size: 12px; /* Smaller price text */
        margin-top: 0px;
    }

    @media (max-width: 576px) {
        .handle-section .layer h3 {
            font-size: 18px; /* Smaller text for mobile */
        }
    }

    @media (max-width: 576px) {
        .handle-section .layer {
            padding: 0px;
            background-color: #F7F4F3;
        }
    }
}

/* Product section styles */
.product-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.button {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.product a {
    display: block;
    text-decoration: none;
}

.product img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.layer {
    padding: 5px;
    background-color: #F7F4F3;
}

.layer h3 {
    margin-top: 5px;
    font-size: 26px;
    text-align: center;
    color: #22333B;
}

.layer h3 a,
.layer h3 a:visited {
    color: #22333B;
    text-decoration: none;
}

/* Removed hover effects for images */
.image-default img {
    width: 100%;
}

.image-hover {
    display: none;
}

@media (max-width: 768px) {
    .product {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .product {
        width: 100%;
    }
}

/* Fixed section styles */
.fixed-section {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #22333B;
    padding: 30px 0;
    color: #F7F4F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-maps {
    display: flex;
    align-items: center;
}

.site-maps a {
    color: #F7F4F3;
    text-decoration: none;
    margin-right: 20px;
}

.free-text {
    margin-right: 20px;
}

/* Product section styles */
.product-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.product-content {
    display: flex; /* Change to flex layout */
    justify-content: space-between; /* Distribute items along the main axis */
    align-items: flex-start; /* Align items to the top */
    max-width: 100%;
}

.product-images {
    width: 100%; /* Increase to 80% for larger images on web */
    height: 400px; /* Fixed height for the image container */
    position: relative;
    margin: 0 auto; /* Centers the images */
    overflow: hidden; /* Ensures any image overflow is hidden */
    padding-left: 0px; /* Keeps the left padding for alignment */
    border: 0px solid #ddd; /* Optional: Adds a border around the image container */
    display:flex;
}

/* Media query for web (larger screens) */
@media (min-width: 768px) {
    .product-images {
        height: 700px;
        padding-top: 50px;
        padding-bottom: 50px;
        max-width: 50%; /* Reduce width so text moves left */
        flex-shrink: 0; /* Prevents image section from growing */
    }  
}

.product-images img {
    width: 100%;  /* Ensures images scale within the container */
    height: 100%; /* Forces the image to fill the container's height */
    object-fit: contain; /* Ensures the image scales while maintaining its aspect ratio */
    display: none;
}

.product-images .active-image {
    display: block; /* Only the active image is visible */
}

/*mandelli images*/
.product-sectionmandelli {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.product-contentmandelli {
    display: flex; /* Change to flex layout */
    justify-content: space-between; /* Distribute items along the main axis */
    align-items: flex-start; /* Align items to the top */
    max-width: 100%;
}

.product-imagesmandelli {
    width: 100%; /* Increase to 80% for larger images on web */
    height: 300px; /* Fixed height for the image container */
    position: relative;
    margin: 0 auto; /* Centers the images */
    overflow: hidden; /* Ensures any image overflow is hidden */
    padding-left: 0px; /* Keeps the left padding for alignment */
    border: 0px solid #ddd; /* Optional: Adds a border around the image container */
    display:flex;
}

/* Media query for web (larger screens) */
@media (min-width: 768px) {
    .product-imagesmandelli {
        height: 400px; /* Reduce height slightly */
        padding-top: 40px;
        padding-bottom: 40px;
        max-width: 40%; /* Reduce width so text moves left */
        flex-shrink: 0; /* Prevents image section from growing */
    }
}


@media (max-width: 576px) {
    .product-contentmandelli {
        flex-direction: column;
        align-items: center;
        display: flex;
        align-items: flex-start; /* Aligns items to the top */
        gap: 40px; /* Space between image and text */
    }
}

.product-imagesmandelli img {
    width: 100%;  /* Ensures images scale within the container */
    height: 100%; /* Forces the image to fill the container's height */
    object-fit: contain; /* Ensures the image scales while maintaining its aspect ratio */
    display: none;
}

.product-imagesmandelli .active-image {
    display: block; /* Only the active image is visible */
}


.technical-specs {
    display: flex;
    font-size: 14px;
    flex-direction: column;
    text-decoration: underline;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
}

@media (min-width: 576px) {
    .technical-specs{
        height: 10vh; /* Adjust height to center vertically */
    }
}

@media (max-width: 576px) {
    .technical-specs{
        padding-bottom: 50px;
    }
}

.technical-specs h2 a {
    color: #333; /* Keep text color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s;
}

.technical-specs h2 a:hover {
    color: #555; /* Slightly lighter color on hover */
}
/*mandelli images end*/

.image-navigation {
    position: absolute;
    top: 50%; /* Vertically center the arrows */
    transform: translateY(-50%); /* Fine-tuning for vertical centering */
    left: 0px; /* Left arrow */
    right: 0px; /* Right arrow */
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none; /* Prevent interaction with the arrows */
}

.image-navigation .fa {
    font-size: 50px; /* Adjust arrow size */
    color: #22333B;
    cursor: pointer;
    pointer-events: all; /* Ensures the arrows are clickable */
}

.image-navigation .fa:hover {
    color: #0A0908; /* Change color to light when hovered */
}

/* Reduce the distance of arrows from the image */
.left-arrow {
    position: absolute;
    left: 10px; /* Reduced distance from the left edge */
}

.right-arrow {
    position: absolute;
    right: 10px; /* Reduced distance from the right edge */
}

/* Media query for web (larger screens) */
@media (min-width: 768px) {
    .left-arrow {
        left: 2%; 
    }

    .right-arrow {
        right: 2%;
    }
}

.product-details {
    max-width: 38%; /* Adjusted width */
}

/* Media query for larger screens (Web) */
@media (min-width: 768px) {
    .product-details {
        padding-left: 100px; /* Apply left padding only on web */
        padding-right:100px;
        padding-top:100px;
        text-align: justify;
        flex: 1; /* Ensures text takes up more space */
        max-width: 60%;
    }
}

.product-details h1,
.product-details h2,
.product-details p {
    margin-bottom: 20px;
    color: black;
}

.product-details p {
     margin: 5px 0;
     font-size: large;
}

.product-details ul {
    padding-left: 40px;
    margin-top: 10px; 
    margin-top: -10px;
    margin-bottom: 20px;
    list-style-position: outside;
}

.product-details li {
    margin-bottom: 12px;
    margin-top: 10px; 
    color: black;
    font-size: 1rem;
    line-height: 1.5;
    list-style-type: disc;
}

/* Footer styles */
.custom-footer {
    background-color: #22333B;
    color: #F7F4F3;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: auto; /* This pushes the footer to the bottom of the page */
}

.custom-site-maps {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.custom-footer-links a {
    color: #F7F4F3;
    text-decoration: none;
    margin-right: 20px;
}

.custom-free-text {
    padding-right: 50px;
}

/* Responsive styles for footer */
@media (max-width: 576px) {
    .custom-site-maps {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        padding: 0;
    }

    .custom-footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }

    .custom-footer-links a {
        margin: 5px 10px; /* Adjust margins for better spacing */
    }

    .custom-free-text {
        padding: 0;
    }
}


/* Side Panel Styles */
.side-panel {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 270px;
    height: 100%;
    background-color: #22333B;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1;
    overflow-y: auto;
}

.side-panel ul {
    list-style: none;
    padding: 0;
    /* Add this line to display links vertically */
    flex-direction: column;
}

.side-panel ul li {
    margin-bottom: 10px;
}

.side-panel ul li a {
    color: #F7F4F3;
    text-decoration: none;
    font-size: 24px;
    display: block;
    padding: 15px 0;
}

.close-btn {
    font-size: 40px;
    color: #F7F4F3;
    cursor: pointer;
    text-align: right;
}

/* Show sidebar menu on small screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .side-panel.show {
        display: block;
    }
}

/* Hamburger Menu Animation */
.hamburger-menu {
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #F7F4F3;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile view styles */
@media (max-width: 768px) {
    .product-content {
        flex-direction: column;
        align-items: center;
    }

    .product-images {
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
        position: relative; /* Ensure the image container has relative positioning */
    }

    .product-details {
        max-width: 100%;
        text-align: center;
    }

    .product-details p{
        max-width: 100%;
        text-align: justify;
    }

    .product-details ul {
        text-align: left;
        padding-left: 60px;
    }

    .image-navigation {
        width: 100%; /* Make sure navigation width matches the image container */
        padding: 0;
    }

    .left-arrow {
        left: 10px; /* Adjust as needed to place arrow at the left edge */
        right: auto;
    }

    .right-arrow {
        right: 10px; /* Adjust as needed to place arrow at the right edge */
        left: auto;
    }

    .image-navigation .fa {
        font-size: 30px; /* Adjust the font size for smaller screens */
    }
}

/* Submenu styles for mobile with black background */
@media (max-width: 768px) {
    nav ul li ul {
        background-color: #22333B; /* Set background color to black */
        color: #F7F4F3; /* Ensure text is white for readability */
        padding-left: 20px; /* Add padding to create indent */
    }

    nav ul li ul li a {
        color: #F7F4F3; /* Ensure text is white for readability */
        text-align: left; /* Align text to the left */
        padding-left: 10px; /* Add additional padding for better indentation */
    }
}

/* Sale Banner Styling */
.sale-banner {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e60000; /* Red color for the banner */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10; /* Ensure it sits on top of the image */
}

/* Adjust the position and size of the image container */
.image-default {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures a square box */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Product price styling */
.price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.standard-price {
    color: #888;
}

.original-price {
    text-decoration: line-through; /* Strikethrough for the original price */
    color: #888;
    margin-right: 10px;
}

.new-price {
    color: #e60000; /* Red color for sale price */
}

/* Responsive styling for individual products */
@media (max-width: 768px) {
    .col {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .col {
        width: 100%;
    }
    .price {
        font-size: 16px;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the section */
    object-position: center center; /* Default positioning */
  }
  
  @media (max-width: 768px) {
    .hero-image {
      object-position: top center; /* Adjust the focal point for smaller screens */
    }
  }
  
.home-title {
    font-family: 'Poppins', sans-serif;
    color: #22333B;
    text-align: center;
    text-decoration: underline;
    padding-top: 50px;
}

.quote-section {
    margin: 40px auto;
    max-width: 1400px;
    background-color: #F7F4F3;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    width: 90%;
}

.quote-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #22333B;
}

.quote-form-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* NEW: horizontal row group */
.quote-form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

/* Default column */
.quote-form-column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}

/* Wide column for variation/quantity */
.quote-form-column.wide {
    flex: 1 1 48%;
}

.quote-form-column label {
    margin: 10px 0 5px;
    font-weight: 500;
}

.quote-form-column input,
.quote-form-column select {
    padding: 10px;
    height: 44px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #F7F4F3;
    font-family: 'Poppins', sans-serif;
}

/* Dropdown arrow style */
.quote-form-column select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2322333B" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 30px;
    cursor: pointer;
}

.quote-form-button {
    text-align: center;
    margin-top: 30px;
}

.quote-form-button button {
    padding: 12px 30px;
    background-color: #22333B;
    border: none;
    color: #F7F4F3;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-form-button button:hover {
    background-color: #22333B;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .quote-section {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }

    .quote-form-grid {
        gap: 5px;
    }

    .quote-form-row {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 5px;
    }

    .quote-form-column,
    .quote-form-column.wide {
        flex: 1 1 100%;
    }

    .quote-form-button {
        margin-top: 20px;
    }
}

.product-category {
  padding: 40px 20px;
  background-color: #F7F4F3; /* Default background */
}

.product-category:nth-child(even) {
  background-color: #f0f0f0; /* Alternate background for every second category */
}

.category-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 5px;
    background-color: #22333B;
    color: #F7F4F3;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 25px;
    cursor: pointer;
    display: none; /* Initially hidden */
    transition: opacity 0.3s;
  }
  
  #back-to-top:hover {
    background-color: #22333B;
  }
  
.features-section {
    margin: 10px auto;
    max-width: 1000px;
    background-color: #F7F4F3;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    width: 50%;
    margin-bottom: 60px;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #22333B;
}

.features-section ul {
    padding-left: 5%;
    margin-bottom: 20px;
    color: #22333B;
    font-size: larger;
}

@media screen and (max-width: 768px) {
    .features-section {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
        margin-bottom: 60px;
    }
    
    .features-section ul {
        font-size: medium
    }
}

.bubble-nav-section {
    background-color: #F7F4F3; /* Replace with your desired color */
    padding: 20px 0;
    text-align: center;
  }

.category-bubbles {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 40px 0;
    background-color: #F7F4F3;
    flex-wrap: wrap;
  }
  
  .category-bubbles .bubble {
    background-color: #22333B;
    color: #F7F4F3;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .category-bubbles .bubble:hover {
    background-color: #22333B;
    color: #F7F4F3;
  }

  html {
    scroll-behavior: smooth;
  }

  
  .login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .login-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
  }
  
  .login-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .login-box button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .login-box .error {
    color: red;
    text-align: center;
    margin-top: 10px;
  }


  .product-details h3 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
  }
  
  .product-details p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
  }
  
  /* UPOD Info Section */
    .upod-info {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
    }
    
    .upod-info h2 {
      text-align: center;
      font-size: 2em;
      margin-bottom: 40px;
      font-weight: 600;
    }
    
    /* Remove background, padding, borders, and shadows */
    .upod-info-block {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 50px;
      flex-wrap: wrap; /* for mobile */
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
    }
    
    .upod-text {
      flex: 1 1 200px;
    }
    
    .upod-text h3 {
      font-size: 1.5em;
      margin-bottom: 15px;
      font-weight: 500;
    }
    
    .upod-text p {
        font-size: 1em;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px; /* ensures same spacing across all blocks */
      }
    
    .upod-image {
      flex: 1 1 300px;
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
    }
    
    .upod-image img {
      width: 120%;
      max-width: 800px;
      height: auto;
      display: block;
      border-radius: 0; /* remove rounded corners */
      box-shadow: none; /* remove shadow */
    }
    
    /* Default: show desktop image, hide mobile image */
    .upod-image .desktop-img {
      display: block;
    }
    
    .upod-image .mobile-img {
      display: none;
    }
    
    /* Responsive for mobile */
    
    @media (max-width: 768px) {
  
      .product-details h3 {
    text-align: center;
  }
      .upod-info-block {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0px;
      }
    
      .upod-image img {
        max-width: 90%;
        margin: 0 auto;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
      }
    
      .upod-image .desktop-img {
        display: none;
      }
    
      .upod-image .mobile-img {
        display: block;
        width: 90%;
        margin: 0 auto;
      }
    }
  
    /* FEATURES / SPECIFICATIONS SECTION */
  .upod-features-section {
    max-width: 1400px; /* wider on web */
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .upod-features-section h2 {
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
  }
  
  /* SPEC BLOCK */
  .upod-product-spec-block {
    margin-bottom: 20px;
    padding: 0; /* no padding for cleaner look */
    background: transparent; /* no background */
    box-shadow: none; /* no shadow */
    border-radius: 0; /* remove corners */
  }
  
  /* SPEC TEXT */
  .upod-spec-text h3 {
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
  }
  
  .upod-spec-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
  
  }
  
  .upod-spec-text ul li {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 6px;
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 1024px) {
    .upod-features-section {
      max-width: 1000px; /* reduce width for smaller desktops/tablets */
    }
  }
  
  @media (max-width: 768px) {
    .upod-features-section {
      padding: 0 15px;
    }
  
    .upod-features-section h2 {
      font-size: 1.4em;
    }
  
    .upod-spec-text h3 {
      font-size: 1em;
    }
  
    .upod-spec-text ul li {
      font-size: 0.85em;
    }
  }
  