/* style.css */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Header Styling */
header.site-header {
  background-color: #ffffff; /* White background for clarity */
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ccc; /* Subtle border for separation */
}
header.site-header .logo {
  width: 100px; /* Adjust as needed */
}

header.site-header nav a {
  text-decoration: none;
  color: #0057b7; /* Brand color for consistency */
  margin-right: 20px;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px; /* Slightly rounded corners for a modern touch */
  transition:
    background-color 0.3s,
    color 0.3s;
}

header.site-header nav a:hover {
  background-color: #f0f0f0; /* Subtle hover effect */
  color: #333;
}

/* Footer Styling */
footer.site-footer {
  background-color: #ffffff; /* Lighter background for a cleaner look */
  color: #333; /* Dark text for better contrast on light background */
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #ccc; /* Subtle border for definition */
}

footer.site-footer nav a {
  text-decoration: none;
  color: #0057b7; /* Consistent brand color */
  margin-right: 20px;
  font-size: 16px;
}

footer.site-footer nav a:hover {
  color: #333; /* Darker color on hover for contrast */
}

footer.site-footer p {
  margin: 0;
  font-size: 14px;
}

.tabs {
  display: flex;
  width: 80%;
  max-width: 1200px;
  border: none;
  margin: 20px auto;
  min-height: 600px;
}

/* Tab Titles Styling */
.tab-titles {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #f0f0f0;
}

.tab {
  padding: 12px 20px;
  margin: 2px 0; /* Adds slight space between tabs */
  color: #333;
  text-decoration: none;
  display: block;
  transition:
    background-color 0.3s,
    color 0.3s;
  background-color: #ffffff; /* Light background for tabs */
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for 3D effect */
  cursor: pointer;
}

.tab:hover {
  background-color: #e6e6e6; /* Lighter shade on hover for visual feedback */
  color: #0057b7; /* Highlight color on hover */
}

/* Active Tab Highlight */
.tab:target {
  background-color: #0057b7;
  color: white;
}

/* Content Styling */
.tab-content {
  flex-grow: 1;
  padding: 20px;
  background-color: #fff;
  overflow: auto;
}

/* Ensures only the targeted content is displayed */
.content {
  display: none; /* All content is hidden by default */
}

.tab-content .content:target {
  display: block; /* Only display the content that matches the target ID */
}

/* Ensure the 'Description' tab content shows when no specific tab is targeted */
body:not(:has(:target)) .content#description {
  display: block;
}

#disclaimer {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  background-color: #f9f9f9; /* Light grey background for distinction */
  border-radius: 8px; /* Soft rounded corners for modern look */
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#disclaimer h1 {
  font-size: 22px;
  color: #0057b7; /* Theme color for headings */
  margin-bottom: 16px;
}
#disclaimer ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 20px;
}

#disclaimer li {
  margin-bottom: 12px;
}

#disclaimer li strong {
  font-size: 18px;
  color: #0057b7;
}

#disclaimer p {
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
#disclaimer strong {
  color: #000; /* Strong emphasis for subtitles */
  font-weight: bold;
}

.shipping-policy {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipping-policy h2 {
  font-size: 20px;
  color: #0057b7;
  margin-bottom: 12px;
}

.shipping-policy p {
  margin-bottom: 10px;
}

/* Styling for the Specifications Section */
#specifications {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#specifications h2 {
  font-size: 20px;
  color: #0057b7;
  margin-bottom: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.spec-table th,
.spec-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.spec-table th {
  background-color: #f0f0f0;
  color: #333;
  font-weight: bold;
}

.spec-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.specs-table-row-gray {
  background-color: #f9f9f9;
}

.specs-table-row-white {
  background-color: #ffffff;
}
.spec-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #a94442; /* Reddish shade to indicate caution */
  font-style: italic; /* Italic text for emphasis */
}
