@charset "utf-8";

/* ============================================================
   GLOBAL RESET & TYPOGRAPHY
============================================================ */

html, body {
    margin: 0;
    padding: 0;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.58;
    font-weight: 400;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    background: #ffffff; /* HARD FIX */
    color: #222;
}

/* Text */
p,
.text-normal,
#slt-page p,
#slt-page .text-normal {
    font-size: 17px;
    line-height: 1.58;
    margin-bottom: 16px;
}

/* Links */
a {
    text-decoration: none;
    color: #939598;
}
a:hover {
    text-decoration: none;
}

/* Titles */
#slt-page .section-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}

#slt-page .section-sub {
    font-size: 21px;
    font-weight: 600;
    margin-top: 28px;
}

#slt-page a {
    font-size: 17px;
}

/* ============================================================
   GLOBAL ELEMENTS
============================================================ */

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

fieldset, img {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Footer (no dark backgrounds) */
.panel-footer {
    background: #ffffff;
    color: #222;
}

/* ============================================================
   LAYOUT
============================================================ */

.row[name="carousel"] .col-lg-12 {
    padding: 0;
}

.row[name="carousel"] img {
    width: 100%;
    height: auto;
}

.customContent {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .customContent {
        max-width: 95%;
    }
}

@media (max-width: 600px) {
    .customContent {
        max-width: 100%;
        padding: 10px;
    }
}

/* Homepage spacing */
[name="customContent"] .col-lg-12 {
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    [name="customContent"] .col-lg-12 {
        margin-top: 30px;
    }
}

/* ============================================================
   IMAGE VIEWER
============================================================ */

.picshade {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0.9;
    z-index: 99;
    display: none;
}

.pictures_eyes_close {
    position: fixed;
    top: 70px;
    right: 30px;
    width: 26px;
    height: 26px;
    background: url(../images/core/close.png) no-repeat;
    z-index: 1001;
    display: none;
    cursor: pointer;
}

.pictures_eyes {
    position: fixed;
    width: 100%;
    top: 10vh;
    left: 0;
    z-index: 199;
    display: none;
}

.pictures_eyes_in {
    position: relative;
    text-align: center;
}

.pictures_eyes_in img {
    max-height: 500px;
}

.pictures_eyes_in .prev,
.pictures_eyes_in .next {
    position: absolute;
    top: 50%;
    width: 51px;
    height: 51px;
    cursor: pointer;
}

.pictures_eyes_in .prev {
    left: 35px;
    background: url(../images/core/Tleft.png) no-repeat;
}

.pictures_eyes_in .next {
    right: 35px;
    background: url(../images/core/Tright.png) no-repeat;
}

.pictures_eyes_indicators {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 299;
}

.pictures_eyes_indicators a {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin: 6px 3px 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
    opacity: 0.5;
    overflow: hidden;
}

.pictures_eyes_indicators img {
    width: 100%;
    height: 70px;
}

.pictures_eyes_indicators .current {
    opacity: 1;
}

/* ============================================================
   UTILITIES
============================================================ */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}

/* ============================================================
   ALERT
============================================================ */

.custom-alert {
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    background: #e8f3ff;
    color: #003366;
    border: 1px solid #bcdcff;
}

/* Scoped product styles (safe, no conflicts) */
.rz-product {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 900px;
  margin: auto;
  padding: 0 12px;
}

/* Headings */
.rz-product h2 {
  font-size: 20px;
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.rz-product h3 {
  font-size: 16px;
  margin-top: 16px;
}

/* Text */
.rz-product p {
  font-size: 14px;
}

/* Video */
.rz-video {
  margin: 20px 0;
}

.rz-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* Tables */
.rz-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.rz-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.rz-table th,
.rz-table td {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 600px) {
  .rz-product h2 { font-size: 18px; }
  .rz-product p { font-size: 13px; }
}