/* =====================================================
   COMPANY STYLES – JAN (GLOBAL)
===================================================== */
/* =========================
   1. CSS VARIABLES
========================= */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --white: #ffffff;
    --black: #000000;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* =============== RESET =============== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  box-shadow: none !important;
}

/* =============== GLOBAL BODY =============== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

/* =============== LAYOUT =============== */
/* .container-product {
  display: flex; 
} */

.product-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.product-image {
  flex: 1;
  max-width: 50vw;
}

.ov-details {
  flex: 1;
  width: 60%;
  padding: 3rem;
}

/* =============== FEATURES =============== */
.features-showcase {
  display: flex;
  justify-content: center;
  width: auto; 
}

.features-table {
  display: flex;
  margin-left: 1rem;
}

.features-display,
.features-display-2 {
  background-color: #f1f5f9;
}

.features-display-2 {
  margin-top: auto;
}

.features-display:hover,
.features-display-2:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
  cursor: pointer;
}

/* =============== TABLE =============== */
td {
  border: 1px solid #00000012;
  padding: 0.5rem;
  background: #fff;
  color: #64748b;
}

th {
  padding: 1rem;
  font-size: 1.5rem;
}

.spec-table {
  text-align: center;
}

/* =============== HEADER / NAV =============== */
.product-header-bar {
  width: 100%;
  margin-top: 80px;
}

.container-headerbar {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  gap: 30px;
}

.product-header-bar-options {
  display: flex;
  gap: 2.5rem;
  min-width: 20rem;
  align-items: center;
}

.product-header-a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

/* =============== DROPDOWN =============== */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  padding: 8px 0;
  display: none;
  z-index: 9999;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* =============== OVERVIEW =============== */
.container-ov,
.container-spec {
  padding: 2rem;
}

.overview-container {
  display: flex;
}

.overview-p {
  text-align: justify;
  color: grey;
  font-size: 1rem;
}

.bold-text-span {
  font-weight: 600;
}

#overviewText,
#specText,
#docText {
  text-underline-offset: 15px;
  text-decoration-color: black;
}

/* =============== SLIDESHOW =============== */
.slideshow {
  position: relative;
  height: 250px;
  overflow: hidden;
  
}

.slideshow img {
  width: 100%;
  /*  height: 150px;  */
  object-fit: contain;
  display: none;
}
.products-showcase {
    width: 100%;
    max-width: 600px;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* DOTS */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #111827;
}


/* .prev,
.next {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }
 */
/* =============== BLOG LIST =============== */
/* .blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-content {
  padding: 18px;
}

.blog-title {
  font-size: 18px;
  font-weight: bold;
}

.blog-summary {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #0a8f3d;
  font-weight: bold;
  text-decoration: none;
}

/* =============== BLOG DETAIL =============== */
/* .container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.blog-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-category {
  color: #0a8f3d;
  font-weight: bold;
}

.blog-date {
  font-size: 14px;
  color: #666;
}

.blog-body {
  max-width: 850px;
  margin-top: 50px;
  font-size: 17px;
  line-height: 1.9;
} */

/* =============== FLOAT BUTTONS =============== */
 #myBtn {
  right: 10px;
  background-color: #623d3d;
} 

/* =============== MOBILE =============== */
/* @media (max-width: 768px) {
  .container-product,
  .product-container,
  .overview-container {
    flex-direction: column;
  }

  .product-image,
  .ov-details {
    max-width: 100%;
    padding: 1rem;
    text-align: center;
  }

  .blog-header {
    grid-template-columns: 1fr;
  }
} */
 
/* =============== MODEL-SPECIFIC =============== */
body.model-m32 .product-title-class {
  color: #1e40af;
}

body.model-s45 .product-title-class {
  color: #7c2d12;
}
/* =========================
   FORMS
========================= */
.form-message {
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}



/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 120px; /* Above back-to-top button */
    right: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Pulse ring */
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);
    animation: pulse-ring 2.5s infinite;
    z-index: -1;
}

.social-links {
    position: relative;
}

/* Pulse animation */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* (KEEP EVERYTHING YOU PASTED — NO CHANGES NEEDED) */
/* =========================
   DOCUMENTS / DATASHEET SECTION
========================= */

.container-doc {
    padding: 3rem 2rem;
}

.doc-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.doc-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    transition: 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.doc-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.doc-type {
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
}

.doc-card h4 {
    margin: 0.5rem 0 1.2rem;
    font-size: 1.1rem;
}

.doc-btn {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   DOCUMENTS / DATASHEET SECTION
========================= */

.container-doc {
    padding: 3rem 2rem;
}

.doc-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.doc-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    transition: 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.doc-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.doc-type {
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
}

.doc-card h4 {
    margin: 0.5rem 0 1.2rem;
    font-size: 1.1rem;
}

.doc-btn {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
/* =========================
  


