

.et_pb_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Root styles to normalize margins and set universal color and box sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    color: black; 
}

/* General container layout */


/* Main content styling */
.main-content {
    flex: 0 0 100%;
    border-right: none;
}

/* Sidebar styling */
.sidebar {
    flex: 0 0 20%; 
    padding: 20px;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0; /* Set to the top of the viewport when it hits */
    height: 100vh; /* Optional: May set to full viewport height if desired */
    overflow-y: auto;
}

/* Header styles */
.main-content h1, .sidebar h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-content h2, .main-content h3, .sidebar h2, .sidebar h3 {
    font-weight: bold;
    margin-top: 0; 
    margin-bottom: 5px; 
}

/* Paragraph styles */
.main-content p, .sidebar p {
    line-height: 1.6;
    margin: 0 15px 10px 15px;
}

/* Introduction and Image Section */
.intro-and-image {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.text-section {
    width: 60%;
}

.image-section {
    width: 40%;
}
.image-section img {
    border: 2px solid #ccc; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto; 
}


/* Styling images to be responsive with borders */
.main-image img, .series-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

/* Series Section Styling */
.series-section {
    background-color: #f8f8f8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    margin: 20px 0;
    border-bottom: 1px solid #ccc; /* Border after each series for clear division */
}

.series-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd; /* Border after each product series */
}

.series-image {
    flex: 0 30%;
    text-align: center;
    margin-right: 20px;
}
.series-text ul {
    list-style-type: disc; /* Defines bullet points */
    margin-left: 20px; /* Indents the list */
    padding-left: 0;
}

.series-text ul li {
    margin-bottom: 10px; /* Space between items */
}

.series-text {
    flex: 0 70%;
    padding-left: 20px;
}

/* FAQ Sections */
.faq-section {
    background-color: #f8f8f8;
    padding: 20px;
    margin-top: 20px;
}
.faq-title {
    text-align: center;
    background-color: black;
    color: white;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    padding: 15px; /* Adds padding around the text for better visibility */
}
.faq-container .faq-block {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-container .faq-block:last-child {
    border-bottom: none;
}

.container {
    width: 100%;
    max-width: 1200px;   /* ðŸ”¥ FIX */
    margin: 0 auto;      /* center */
    padding: 20px 40px;
}
.main-content {
    padding: 20px;
    background-color: transparent !important;
    border: none !important;   /* ðŸ”¥ removes all borders */
    border-radius: 0 !important;
}

.first-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.text-column {
    width: 60%;
    margin-right: 20px;
}

.image-column {
    width: 40%;
}

.image-column img {
    max-width: 100%;
    height: auto;
}

.third-section,
.fourth-section,
.sixth-section {
    margin-bottom: 20px;
}

.sixth-section .related-product {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sixth-section .related-product img {
    max-width: 100px;
    height: auto;
}
/* ==============================
   Custom Breadcrumb
   ============================== */

.custom-breadcrumb {
    margin: 12px 0 18px;
    font-size: 14px;
}

.custom-breadcrumb .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.custom-breadcrumb .breadcrumb-item {
    color: #6b7280; /* neutral gray */
    font-weight: 400;
    line-height: 1.4;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #1f2937; /* dark text */
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #ff5722; /* IndMALL brand accent */
    text-decoration: underline;
}

/* Separator */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "â€º";
    margin: 0 8px;
    color: #9ca3af;
    font-size: 14px;
}

/* Current page */
.custom-breadcrumb .breadcrumb-item[aria-current="page"] {
    color: #111827;
    font-weight: 500;
    pointer-events: none;
}
@media (max-width: 768px) {
    .custom-breadcrumb {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .custom-breadcrumb .breadcrumb {
        row-gap: 4px;
    }
}

/* Grid Layout */

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .content-area {
        flex-direction: column;
    }

    .main-content, .sidebar {
        flex: 1 0 100%;
        padding: 10px 0;
        border-right: none; /* Remove border in mobile view */
    }

    .intro-and-image, .series-item {
        flex-direction: column;
    }

    .text-section, .image-section {
        width: 100%;
    }
    .sidebar {
        order: -1; /* This will move the sidebar to the top on mobile views */
    }
}

/* ðŸ”¥ FINAL WORKING FIX */

.vendor-section .related-vendor-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px;
}

/* ðŸŽ¯ CORRECT TARGET */
.vendor-section .related-vendor-card {
    width: calc(33.33% - 14px) !important;
    max-width: calc(33.33% - 14px) !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .vendor-section .related-vendor-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.product-page-layout .main-content{
    width:100%;
}
/* ðŸš¨ FINAL HARD FIX (OVERRIDE EVERYTHING) */

.related-vendors-box .related-vendor-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

/* Ensure cards fit inside grid */
.related-vendors-box .related-vendor-card {
    width: 100% !important;
    max-width: 100% !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .related-vendors-box .related-vendor-wrapper {
        grid-template-columns: 1fr !important;
    }
}
.main-h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}
.series-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-top: 10px;
}
.section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;   /* ✅ FULL TEXT WIDTH */
    height: 3px;
    background: #2b6cb0;
}
.series-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    max-width: 900px;
}
/* SECTION */
.series-wrapper {
    margin-top: 50px;
    padding: 30px;
}
.series-wrapper {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 40px 25px;
    border-radius: 12px;
    margin: 40px 0;
}
/* H2 */
.section-title {
    display: inline-block;
    border-bottom: 2px solid #ddd;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

/* INTRO */
.series-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    max-width: 850px;
}

/* DIVIDER */
.series-divider {
    border-top: 1px solid #ddd;
    margin: 20px 0 30px;
}

/* GRID */
.series-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 👈 CLEAN like screenshot */
    gap: 30px;
}

/* CARD */
.series-card {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

/* HOVER */
.series-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* TITLE */
.series-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 10px;
}

/* TEXT */
.series-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.series-card-grid {
    grid-template-columns: repeat(3, 1fr);
}
}
/* WRAPPER */
.models-wrapper {
    margin-top: 50px;
}

/* INTRO */
.models-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* GRID */

/* CARD */
.model-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: 0.3s;
}

/* HOVER */
.model-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* IMAGE */
.model-img img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

/* TITLE */
.model-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* SPEC */
.model-spec {
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* BUTTON */
.model-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}
.breadcrumb-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.custom-breadcrumb {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.custom-breadcrumb a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-sep {
    color: #999;
    margin: 0 5px;
}
/* GRID - 4 CARDS */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ✅ 4 per row */
    gap: 20px;
}

/* CARD */
.model-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: 0.3s;
}

/* HOVER */
.model-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* IMAGE */
.model-img img {
    max-width: 133px;
    height: auto;
    margin-bottom: 10px;
}

/* TITLE */
.model-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* SPEC */
.model-spec {
    font-size: 13px;
    text-align: left;
}

/* EACH ROW */
.spec-row {
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

/* BUTTON */
.model-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}
/* WRAPPER */
.faq-wrapper {
    margin-top: 50px;
}

/* INTRO */
.faq-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* ITEM */
.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    padding: 15px;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 15px;
    margin: 0;
}

/* ICON */
.faq-icon {
    font-size: 18px;
    font-weight: bold;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
}

/* ACTIVE */
.faq-answer.active {
    display: block;
}
/* ============================= */
/* ✅ SAFE PAGE WRAPPER FIX */
/* ============================= */

.indmall-page-wrapper {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 40px;
}

/* Clean content */
.indmall-page-wrapper .main-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

/* Remove unwanted divider line */
.indmall-page-wrapper .main-content {
    border: none !important;
    box-shadow: none !important;
}

/* Ensure no left line */
.indmall-page-wrapper * {
    border-left: none !important;
}
/* 🚫 Remove top empty space */

.indmall-page-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove space above breadcrumb */
.breadcrumb-wrapper {
    margin-top: 0 !important;
}

/* Remove space from first heading */
.main-content h1 {
    margin-top: 10px !important;
}

/* Remove Divi default top spacing */
.et_pb_section:first-child {
    padding-top: 0 !important;
}

.et_pb_row:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.main-content h1 {
    text-align: left;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0C71C3!important;
}
.main-content h1 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Custom underline */
.main-content h1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;

    width: 30%;              /* 👈 line width */
    height: 2px;
    opacity: 0.8;
    background: #2EA3F2;
    border-radius: 2px;
}
/* Alternate row colors */

.series-section .series-item:nth-child(odd) {
    background: #ffffff;   /* white */
}

.series-section .series-item:nth-child(even) {
    background: #f9fafb;   /* light grey */
}
.series-item {
    padding: 25px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
}

/* Hover effect */
.series-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.series-image img {
    max-width: 100%;
    height: auto;

    border-radius: 10px;  /* 👈 smooth corners */
    padding: 10px;        /* 👈 inner space */
    background: #fff;     /* 👈 white card feel */

    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: 0.3s;
}
.series-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.second-paragraph {
     background: linear-gradient(135deg, #f5f9ff, #ffffff);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 35px;           /* inner space */
    margin: 40px 0;               /* space above & below */

    border-radius: 10px;          /* smooth corners */
    border: 1px solid #e5e7eb;    /* subtle border */

    line-height: 1.7;
}
.models-highlight {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    padding: 40px 25px;
    margin: 50px 0;
    border-radius: 12px;
}
.series-section {
    display: block;   /* ensure no fixed layout */
    height: auto;     /* 🔥 remove fixed height */
    min-height: auto; /* 🔥 remove forced height */
    padding-bottom: 0;
}

.series-item {
    margin-bottom: 20px;
}