/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdf2e9;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.company-moto-name {
  margin-right: 35rem;
}

.logo {
  height: 9rem;
}
.logos-headers {
  width: 15rem;
}

/****************************/
/* NAVIGATION */
/****************************/

.main-nav-list {
  list-style: none;
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #a80d13;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #767676;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #aaa;
}

/****************************/
/* MOBLIE */
/****************************/
.btn-mobile-nav {
  border: none;
  background-color: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

body {
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Main Content */
.intro {
  text-align: center;
  padding: 40px 0;
}

.intro h1 {
  font-size: 5rem;
  margin-bottom: 10px;
  color: #a80d13;
}

/* Grid Layout */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.quality-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #a80d13;
}

.quality-card h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #a80d13;
}

.quality-card span {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  color: #666;
  font-style: italic;
}

.para-lines {
  font-size: 1.8rem;
}

/* Table Styles */
/* Container */

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border: 2px solid #000000; /* Black outer border */
  border-radius: 4px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* White background */
}

/* Header: Black background with White text */
.product-table thead tr {
  background-color: #000000;
  color: #ffffff;
}

.product-table th {
  font-size: 3rem;
  padding: 15px 20px;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #ff0000; /* Bold Red accent under header */
}

/* Body: White background with Black text */
.product-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #e0e0e0;
  color: #000000;
  font-size: 18px;
}

/* Specific styling for the first column to make it pop */
.product-table tbody td:first-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0000; /* Red text for Calibers */
}

/* Row Hover: Light Red/Pink tint */
.product-table tbody tr:hover {
  background-color: #fff5f5; /* Very faint red hover */
  cursor: default;
}

/* Responsive Queries */
@media screen and (max-width: 768px) {
  .product-table th,
  .product-table td {
    padding: 10px;
    font-size: 12px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
}
.footer h1 {
  color: #ddd;
  font-family: "Georgia", serif;
  font-size: 6rem;
  padding-bottom: 2rem;
}

.footer p {
  margin: 10px 0;
  font-size: 2rem;
  color: #ddd;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.copyright-text {
  color: aliceblue;
  padding-top: 2rem;
  font-size: 12px;
}

.icons {
  margin-top: 10px;
}
.icons a {
  margin: 0 12px;
  font-size: 50px;
}
