@charset "UTF-8";
/* CSS Document */
/*
/* Font */
@font-face {
    font-family: 'Prompt';
    src: url('css/font/Prompt-Light.woff2') format('woff2'),
         url('css/font/Prompt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prompt';
    src: url('css/font/Prompt-Medium.woff2') format('woff2'),
         url('css/font/Prompt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prompt';
    src: url('css/font/Prompt-Bold.woff2') format('woff2'),
         url('css/font/Prompt-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prompt';
    src: url('css/font/Prompt-BoldItalic.woff2') format('woff2'),
         url('css/font/Prompt-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Prompt';
    src: url('css/font/Prompt-ExtraBold.woff2') format('woff2'),
         url('css/font/Prompt-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000f24;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000f24;
  line-height: 1.4;
  margin-top: 0;
}


@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.1rem;
  }
}

html, body {
  overflow-x: clip;
}


body {
  font-family: 'Prompt', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: #c7e8ff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 1rem;
  z-index: 1000;
}

article {
  max-width: 920px;         
  margin: 0 auto 3rem;       
  padding: 0 1rem;       
  line-height: 1.7;
  text-align: left;
}


article p,
article h4 {
  margin: 0 0 1rem;
  text-indent: 5em;
  font-size: 18px;
}


article h5 {
  margin: 1.2rem 0 0.5rem;
  font-size: 18px;
  text-indent: 0;
}

article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;   
}

@media (max-width: 660px) {
  .header {
    height: 1.875rem; 
  }
}

.page-intro {
  padding: 45px 0;
  margin: 10px;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #204bb5;
  text-align: center;
}

@media (max-width: 660px) {
  .header {
    height: 1.875rem; 
  }

  .search-box {
    height: 1.2rem; 
    font-size: 0.65rem;
    padding: 0 0.4rem;
  }

  .search-btn {
    height: 1.2rem; 
    width: 2rem;
    font-size: 0.7rem;
  }

  .language-switcher {
    padding-right: 1.25rem;
  }
}


.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding-right: 1.25rem;
  font-size: 0.75rem;
}

.language-switcher a {
  color: #001f49;
  text-decoration: none;
  padding: 0 0.5rem;
  font-weight: bold;
}

.language-switcher a + a {
  border-left: 1px solid #001f49;
  padding-left: 0.5rem;
}

.language-switcher a:hover {
  text-decoration: underline;
}

@media (max-width: 660px) {
  .language-switcher {
    margin-left: 0rem;
    padding-right: 0rem; 
  }
}

.logo-bar { 
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #fff;
  margin-top: 2.8125rem;
}

.logo-img {
  max-height: 3rem;
  margin-right: 0.75rem;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001f49;
}

@media (max-width: 660px) {
  .logo-bar {
    margin-top: 2.5rem;
    padding-top: 0.5rem; 
    padding-bottom: 0.5rem; 
  }

  .logo-img { 
    max-height: 2.5rem; 
  }

  .company-name { 
    font-size: 1.1rem; 
  }
}

.main-menu {
  background-color: #204bb5;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.main-menu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  display: block;
  color: #fff;
  padding: 1rem;
  text-decoration: none;
  font-weight: 700;
}

.main-menu a:hover {
  background-color: #000f24;
}

* { box-sizing: border-box; } 

.submenu {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #001f49;
  min-width: 200px;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.submenu li a {
  padding: 0.2rem 0.85rem;
  font-weight: 500;
  font-size: 0.85rem;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.has-submenu > a::after {
  content: ' ▼';
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  display: grid !important;
}

.mobile-only {
  display: none;
}

  .main-menu li.product-menu .submenu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    max-height: 70vh;
    max-width: 30vh;
    overflow-y: auto;
    width: 100vw;
  }
  @media (max-width: 780px) {
  .main-menu li.product-menu .submenu li a {
    padding: 0.4rem 0.3rem;
    font-size: 0.8rem;
    font-weight: 400;
  }
}
@media (min-width: 781px) {
  .main-menu li.product-menu .submenu {
    max-width: 50vh;}
  .main-menu li.product-menu .submenu li a {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    font-weight: 400;
  }

  .main-menu li.has-submenu .submenu li a {
    padding: 0.4rem 0.6rem;
    font-size: 1.1rem;
    font-weight: 400;
  }
}
  
@media (min-width: 661px) {
  .main-menu ul {
    padding-left: 1rem;
    flex-wrap: nowrap;
  }

  .main-menu a {
    font-size: 1.2rem; 
  }

  .logo-bar {
    padding-left: 2rem;
    padding-right: 1rem; 
  }
    .main-menu li {
      flex: 0 0 auto;
    }  
}

@media (max-width: 660px) {
  .main-menu a {
    padding: 0.4rem 0.4rem;  
    font-size: 0.85rem;       
    white-space: nowrap;
  }
  .main-menu ul {
    padding-left: 0.65rem; 
  }
}

.main-menu ul,
.logo-bar {
  max-width: 100vw;
  padding-top: 0rem;
}

.mobile-only {
  display: none;
}

@media (max-width: 660px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}

@media (max-width: 660px) {
  .desktop-only {
    display: none; 
  }
  .mobile-only {
    display: block;  
  }
  .main-menu ul {
    flex-wrap: wrap;
  }
}

@media (min-width: 661px) {
  .mobile-only {
    display: none;  
  }
  .desktop-only {
    display: block; 
  }
}

.product-desktop-bar {
  height: 1.875rem;
  background-color: #fdf9e6;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.product-desktop-bar ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 0.55rem;
}

.product-desktop-bar li a {
  color: #000f24;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.2rem 0.4rem;
}

.product-desktop-bar ul li + li::before {
  content: "|";
  color: #000f24; 
  margin: 0 0rem;
}

.product-desktop-bar li a:hover {
  text-decoration: underline;
}

@media (max-width: 1250px) {
  .product-desktop-bar {
    display: none;
  }
}

 .two-column-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  padding: 2rem clamp(1rem, 5vw, 3rem);
  margin: 0 auto;
  gap: 2rem;
  box-sizing: border-box;
}

.left-column {
  width: 60%;
}

.left-column p {padding-top: 30px;}

.right-column {
  width: 40%;
  display: flex;
  justify-content: center;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 864px;
  aspect-ratio: 864 / 520;
  overflow: hidden;
  border-radius: 0.5rem;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slide 12s infinite;
  transition: opacity 1s ease-in-out;
}

.carousel img:nth-child(1) { animation-delay: 0s; }
.carousel img:nth-child(2) { animation-delay: 4s; }
.carousel img:nth-child(3) { animation-delay: 8s; }

@keyframes slide {
  0%   { opacity: 0; }
  8%   { opacity: 1; }  
  33%  { opacity: 1; }  
  41%  { opacity: 0; }  
  100% { opacity: 0; }  
}

@media (max-width: 1024px) {
  .two-column-section {
    flex-direction: column;
    align-items: center;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .carousel {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 864 / 520;
  }

  .cert-image-row img {width: 25%;}
}


.info-bar {
  background-color: #001f49;
  color: white;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.info-bar ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-bar li {
  white-space: nowrap;
  font-size: clamp(0.65rem, 1vw + 0.1rem, 1rem);
  display:flex;align-items:center;gap:8px;
}

.info-bar img{display:block;
  width: 25px;}

  @media (max-width: 768px) {
    .info-bar img {
      width: 17px; 
    }
  }

  .info-address {
    background-color: #ededed;
    color: #001f49;
    font-size: 0.9rem;
    height: 45px;
    display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;       
  }
  
  .info-address p {
    margin: 0;                
  }

.service-heading-wrapper {
  display: block;
  justify-content: center;
  background-color: #204bb5; 
  border-radius: 3rem;        
  padding: 0.5rem 1.25rem;         
  margin: 1rem auto;          
  width: fit-content;            
  max-width: 100%;               
}

.service-heading {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
  white-space: nowrap;  
}

@media (min-width: 768px) {
  .service-heading {
    font-size: 2rem;
  }
}


.three-column-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 3rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 1.5rem;
}

.column h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  color: #001f49;
}

.column p {
  width: 100%;
  height: auto;
  max-width: unset;
  flex-grow: 1;
  line-height: 1.2;
  text-align: left;
  word-break: break-word;
  color:#0c3bb2;
}

.column img {
  width: 100%;
  align-self: center;
  margin-bottom: 2rem;
}

.column a {
  align-self: flex-start;
  color: #fff;
  background-color: #001f49;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
}

.box1 { background-color: #f5f1df; }
.box2 { background-color: #fdf169; }
.box3 { background-color: #c7e8ff; }

/* Responsive */
@media (max-width: 960px) {
  .three-column-section {
    flex-direction: column;
  }

  .column {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    align-items: center;
    text-align: center;
  }

  .three-column-section img {
    width: 100%;       
    max-width: 450px;  
    height: auto;      
    margin-left: auto; 
    margin-right: auto;
    display: block;
  }
  
  .column p {
    text-align: center;
    color: #204bb5;
  }

  .column H3 {
    color: #0b1458;
  }

  .column a {
    align-self: center;
  }
}

.brand-section {
  padding: 2rem clamp(1rem, 5vw, 3rem);
  background-color: #f5f5f5;
  text-align: center;
}

.brand-heading {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #001f49;
}

.brand-two-column {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 960px) {
  .brand-image img {
    width: 70%;
  }}

.contact-section {
  padding: 2rem clamp(1rem, 5vw, 3rem);
  background-color: #204bb5;
}

.contact-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.contact-text {
  flex: 1 1 auto;
}

.contact-image {
  flex: 0 0 auto;
}

.contact-image img {
  max-width: 100%px;
  width: 100%;
  max-width: 320px; 
  height: auto;
  display: block;
}
.contact-heading {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-two-column {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-box {
  box-sizing: border-box;
  flex: 1 1 45%;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  color: #0b1458;
}

.contact-box h3 {
  margin-top: 0;
  color: #204bb5;
}

.contact-box p {
  line-height: 1.6;
}

.contact-text p {  font-size: 17px;}

@media (max-width: 768px) {
  .brand-two-column {
    flex-direction: column;
    align-items: center;
  }

  .contact-two-column {
    flex-direction: column;
  }

  .contact-box {
    flex: 1 1 100%;
    width: 100%;
    padding: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text,
  .contact-image {
    flex: 1 1 100%;
  }

  .contact-image img {
    margin-top: 1rem;
  }
}

.footer {
  width: 100%;
  margin-top: 0rem;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: #001f49;
}

.footer-top {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu li a {
  text-decoration: none;
  color: #001f49;
  font-weight: 500;
}

.footer-menu li a:hover {
  text-decoration: underline;
}

.footer-search input {
  border: 1px solid #204bb5;
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  color: #204bb5;
  outline: none;
  background-color: white;
}

.footer-bottom {
  background-color: #f9f3df;
  text-align: center;
  padding: 0.75rem 1rem;
  color: #3d3d3d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-search {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-search input {
    width: 60%;
    max-width: 300px;
  }

  .footer-menu {
    justify-content: center;
    text-align: center;
    gap: 0.8rem 1rem;
  }
}

.main-content {
  margin-top: 0.01rem;}

.brand-banner {
  width: 100%;
  padding: 3rem clamp(1rem, 5vw, 3rem) 0.7rem; 
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.brand-left {
  float: left;
  width: 60%;
}

.brand-right {
  float: right;
  width: 35%;
  text-align: right;
}

.brand-logos {
  margin-bottom: 1rem;
}

.brand-logo {
  height: 60px;
  margin-right: 1.5rem;
  object-fit: contain;
}

.brand-description h3,
.category-intro h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #001f49;
  margin: 0 0 0.5rem;
}

.brand-description p,
.category-intro p {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #001f49;
  margin: 0;
}

.cert-heading {
  font-weight: 700;
  color: #001f49;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.cert-images img {
  height: 48px;
  margin-left: 1rem;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-left,
  .brand-right {
    float: none;
    width: 100%;
    text-align: left;
  }

  .brand-banner {
    padding-top: 2.5rem; 
  }

  .cert-images img {
    margin-left: 0;
    margin-right: 1rem;
    margin-top: 0.5rem;
  }

  .cert-images {
    margin-top: 0.75rem;
  }

  .brand-logo {
    margin-right: 1rem;
    height: 50px;
  }
}


.product-heading-section {
  text-align: center;
  padding: 2rem 0rem;

}

.product-heading-wrapper {
  display: inline-block;
  background-color: #fdf169;
  padding: 0.4rem 2rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}

.product-main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #001f49;
  margin: 0;
}

.product-subheading {
  font-size: 1.4rem;
  color: #000f24;
  font-weight: 700;
  margin-bottom: 2rem;
}

.product-submenu {
  font-size: 1.2rem;
  color: #204bb5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  line-height: 0.7;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem);
}

.product-submenu a {
  text-decoration: none;
  color: #204bb5;
}

.product-submenu a:hover {
  text-decoration: underline;
}

@media (min-width: 780px) {
  .line-break {
    flex-basis: 100%;
    width: 0;
    height: 0;
  }
}

.product-grid {
  display: grid;
  grid-auto-flow: dense; 
}

.product-item {
  background-color: #f5f1df;
  text-align: center;
  margin-bottom: 35px;
}

.product-item img {
  width: 100%;
  height: auto;
  display: block;
}

.product_detail img, 
.product_detailwide img {
  height: 170px !important;
  object-fit: cover; 
  display: inline-block; 
  vertical-align: middle;
}

.product_detail, .product_detailwide {
  padding-top: 40px;
}

.product_detail p .product-caption,
.product_detailwide p .product-caption{
  font-size: 1rem;
  line-height: 1.1;
}

.product_detail H3,
.product_detailwide H3
 {  font-size: 0.95rem;
  line-height: 1.1;}

.product-caption {
  display: inline-block;           
  padding: 5px 25px;        
  background-color: #ffffff; 
  margin-top: 1px;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: 45px;
  border-style:solid;
  border-color: #0b1458;
  text-decoration: none;
  color: #204bb5;
}

H3 .product-caption {font-size: clamp(0.4rem, 4vw, 1.2rem);}

.product-item:hover .product-caption {
  background-color: #fdf169;
}

.product-item:hover a {
  color: #0b1458; 
}

.product-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1279px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product_detailwide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

@media (max-width: 1279px) {
  .product_detailwide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product_detailwide {
    grid-template-columns: repeat(1, 1fr);
  }
}


.product-grid-detail {
  display: grid;
  grid-auto-flow: dense;
  text-align: center;
  margin-bottom: 35px;
  background: transparent; 
  gap: 0;
}

.product-grid-wrap{
  background:#f5f1df;
  padding: 1rem 0;
}

@media (min-width: 1280px) {
  .product-grid-detail { grid-template-columns: repeat(6, 1fr); }
  .product_detail { grid-column: span 1; }
  .product_detailwide { grid-column: span 2; }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .product-grid-detail { grid-template-columns: repeat(4, 1fr); }
  .product_detail { grid-column: span 1; }
  .product_detailwide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .product-grid-detail { grid-template-columns: repeat(2, 1fr); }
  .product_detail { grid-column: span 1; }
  .product_detailwide { grid-column: span 2; }
}

.product-grid-detail > .product_detail,
.product-grid-detail > .product_detailwide{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  background: transparent;
  border-bottom: 1px solid rgba(0, 31, 73, 0.12);
}


.product_detail img,
.product_detailwide img{
  width: 100%;
  max-height: 170px;
  display: block;
  object-fit: contain;
}

.product_detail h3,
.product_detailwide h3{
  width: 100%;
  margin: 0;
  padding: 0.6rem 0 0.9rem;
  background: #f5f1df;
}

.product-caption{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 25px;
  background-color: #ffffff;

  font-weight: 500;
  border-radius: 45px;
  border: 1px solid #0b1458;

  text-decoration: none;
  color: #204bb5;
}

.product-grid-detail :hover .product-caption{
  background-color: #fdf169;
}

.product-grid-detail:hover a{
  color: #0b1458;
}

.product_detailwide .quick-detail{
  width: 100%;
  max-width: 400px;
}

.quick-detail{
  width: 100%;
  max-width: 220px;
  margin: 0.2rem auto 0.9rem;
  font-size: 0.85rem;
  color: #001f49;
}

.quick-detail summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  background: #fff;
  color: #204bb5;
  font-weight: 400;
}

.quick-detail summary::-webkit-details-marker{
  display: none;
}

.quick-detail[open] summary{
  background: #fdf169;
  color: #0b1458;
}

.quick-detail > div{
  text-align: left;
  margin-top: 0.5rem;
  background: rgba(245, 241, 223, 0.6);
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
}

.quick-detail p{
  margin: 0.15rem 0;
  font-size: 1rem;
}

.quick-detail summary::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor; 
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.quick-detail[open] summary::after{
  transform: rotate(180deg) translateY(-1px);
}

.quick-detail[open] summary{
  background: #fdf169;
  color: #0b1458;
}


.product-description{
  text-align: center;
}

.product-description .product-heading-wrapper{
  display: inline-block;
  margin-top: 2rem;
}

.product-description > h1 {
  font-size: clamp(1.4rem, 1vw + 0.9rem, 1.8rem);
}

.product-description > h2 {
color: #0c3bb2;
margin-bottom: 2px;
font-size: clamp(1.4rem, 1vw + 0.9rem, 1.8rem);
}

.product-description > h4,
.product-description > p {
  font-size: clamp(1.2rem, 1vw + 0.9rem, 1.5rem);
  margin-top: 2px;
}

.product-description > h3 {
  color: #0c3bb2;
  font-weight: 300;  
  font-size: clamp(0.8rem, 1vw + 0.9rem, 1rem);
}

.product-main-image{
  display: block;
  margin: 1.5rem auto 1rem;
  width: auto;                 
  max-width: min(900px, 100%); 
  height: auto;
}

.product-thumbs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-thumb{
  width: 150px;
  max-width: 30%;
  cursor: pointer;
}

.product-thumb:hover{
  opacity: 1;
  transform: translateY(-2px);
}

.product-thumb.is-active{
  opacity: 1;
  outline: 1px solid whitesmoke;
  outline-offset: 1px;
}

.product-description table{
  margin: 2rem auto 0;
  border-collapse: collapse;
}

.product-description th,
.product-description td{
  padding: 10px 20px;
  text-align: center;
}

.product-description th{
  background: #0c3bb2;
  color: #fff;
}

.product-description tr:nth-child(even){
  background: #f2f2f2;
}

@media (max-width: 768px){
  .product-table th:last-child,
  .product-table td:last-child{
    display: none;
  }
}

.product-color {
  margin-top: 60px;
  text-align: center;
}

.product-color > p {
  margin-bottom: 0.5rem;
}

.product-color > div {
  display: inline-block;      
  align-items: center;
  gap: 0.5rem;               
  margin-right: 2rem;        
}

.product-color > div p {
  margin: 0;
}


.return{
  margin: 100px 0px 80px;
  text-align: center;
  color: #0c3bb2;
}


.articles{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post{
  border: 1px solid #ddd;
  background: #fffbe6;;
  padding: 14px;
  border-radius: 10px;
}

.post h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.post p{
  margin: 0 0 10px;
  line-height: 1.5;
}

.more{
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 900px){
  .articles{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .articles{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  body.product-folder .brand-description p,
  body.product-folder .brand-right .cert-heading{
    display: none;
  }
}

.article1{
  display: grid;
  gap: 16px;
}

.article1 article {width: 80vw;}


.faq{
  border: 1px solid #ddd;
  background: #d5edff;
  padding: 14px;
  border-radius: 10px;
  margin: 5px 45px;
}

.faq:nth-child(even) {
  background: #e8f2fa;
}

hr {border:0;
  border-top:1px dotted #b0cee4;
  margin-top:8px;
  width: 840px;}

.DBD-Certificate {
  width: 100%;
  margin: 15px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;}
  
  .DBD-Certificate img
  {width: 140px;}