/* styles.css */
:root {
  --primary-color:#B6202D;
  --primary-light:#fff2f3;
  --secondary-color:#333;
  --discount-color:#e74c3c;
  --text-color:#222;
  --bg-color:#f6f7fb;
  --border-color:#eee;
  --white:#fff;
  --shadow:0 2px 8px rgba(0,0,0,0.25);
  --shadow-hover:0 6px 15px rgba(182,32,45,0.1);
}

@font-face {
    font-family:'Yekan Bakh';
    src:url('/static/fonts/YekanBakh-Light.ttf') format('truetype');
    font-weight:300;
    font-style:normal;
    font-display:swap;
}

@font-face {
    font-family:'Yekan Bakh';
    src:url('/static/fonts/YekanBakh-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face {
    font-family:'Yekan Bakh';
    src:url('/static/fonts/YekanBakh-Medium.ttf') format('truetype');
    font-weight:500;
    font-style:normal;
    font-display:swap;
}

@font-face {
    font-family:'Yekan Bakh';
    src:url('/static/fonts/YekanBakh-Bold.ttf') format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

body {
  font-family:'Yekan Bakh';
  background-color:var(--bg-color);
  color:var(--text-color);
  line-height:1.6;
  direction:rtl;
}

* {
  font-family:'Yekan Bakh';
  box-sizing:border-box;
  margin:0;
  padding:0;
  text-decoration:none;
}

button,
input,
select,
textarea {
  font-family:'Yekan Bakh';
  font-size:1rem;
}

.pricing-table th{
    color:#333;
}

hr {
  border:1px dashed #e5e5e5;
  margin:14px 4%;
}

header {
  position:sticky;
  z-index:1000;
  width:100%;
  background-color:#fff;
  box-shadow:var(--shadow);
  top:0;
}

.main-header {
  padding-top:4px;
}

aside {
  flex:1;
  max-width:280px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 3px 8px rgba(0,0,0,0.08);
  overflow:hidden;
  position:sticky;
  top:2rem;
  height:fit-content;
}

table { width:100%; border-collapse:collapse;}
th,td { border:1px solid #eee; padding:10px; text-align:center; font-size:12px; }
th { background:#B6202D; color:#fff; }
td { background:#fff; }

form {
  max-width:600px;
  margin:0 auto;
}

.toast {
  position:fixed;
  top:68px;
  left:42px;
  padding:15px 20px;
  border-radius:8px;
  color:white;
  font-weight:500;
  z-index:1000;
  transform:translateX(-100%);
  transition:transform 0.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.toast.show {
  transform:translateX(0);
}

.toast.success {
  background:#27ae60;
}

.toast.error {
  background:#e74c3c;
}

.toast.info {
  background:#3498db;
}

.dashboard-main {
  padding:0 2%;
}

.dashboard-wrapper {
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.loginForm {
  width:90%;
}

.main-container {
  flex-direction:column;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  padding:18px 0;
  margin:0 3%;
}

.breadcrumb-nav {
  margin:20px 0;
  font-size:0.9rem;
}

.breadcrumb {
  list-style:none;
  display:flex;
  gap:0.5rem;
  padding:0;
}

.breadcrumb-item a {
  text-decoration:none;
  color:var(--primary-color);
  transition:color 0.2s ease;
}

.breadcrumb-item a:hover {
  text-decoration:underline;
}

.breadcrumb-item.active {
  color:#777;
}

.panel-hero {
  background:#B6202D;
  color:#fff;
  border-radius:10px;
  padding:1.2rem;
  text-align:center;
  margin-bottom:18px;
}

.panel-hero h1 {
  font-size:1.4rem;
  margin-bottom:0.5rem;
  font-weight:700;
}

.panel-hero p {
  font-size:0.9rem;
  opacity:0.9;
}

.section-title {
    text-align:center;
    font-size:1.8rem;
    margin:0 0 44px 0;
    color:#222;
    position:relative;
}

.section-title::after {
    content:'';
    position:absolute;
    bottom:-10px;
    right:50%;
    transform:translateX(50%);
    width:80px;
    height:3px;
    background:#B6202D;
    border-radius:2px;
}

.content-wrapper {
  flex:1;
  border-radius:10px;
  margin-top:24px;
}

.panel-welcome {
  background:#B6202D;
  color:#fff;
  border-radius:10px;
  padding:1.5rem 1rem;
  text-align:center;
  margin-bottom:2rem;
}

.panel-welcome h2 {
  margin:0;
  font-size:1.4rem;
  font-weight:700;
}

.panel-welcome p {
  margin-top:0.6rem;
  font-size:0.95rem;
  opacity:0.9;
}

.form-group {
  margin-bottom:18px;
}

.form-label {
  display:block;
  margin-bottom:6px;
  font-size:14px;
  color:#555;
  font-weight:500;
}

.form-control {
  width:100%;
  padding:10px 14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-family:inherit;
  font-size:15px;
  background:#fafafa;
  transition:all 0.2s;
}

.form-control:focus {
  border-color:#B6202D;
  outline:none;
  box-shadow:0 0 5px rgba(182,32,45,0.25);
  background:#fff;
}

.form-actions {
  margin-top:28px;
  text-align:center;
}

.primary-btn {
  background-color:#B6202D;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:10px 32px;
  cursor:pointer;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.primary-btn:hover {
  background-color:#9e1c28;
  box-shadow:0 6px 12px rgba(182,32,45,0.25);
}

.primary-btn i {
  font-size:15px;
}

.action-btn {
  color:white;
  background-color:#B6202D;
  padding:4px 8px;
  border-radius:4px;
  text-decoration:none;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  transition:0.2s ease;
}

@media (max-width:992px) {
  * {
    font-family:'Yekan Bakh',Tahoma,sans-serif;
  }

  .main-container {
    flex-direction:column;
    gap:1rem;
  }

  .main-container h2 {
    font-size: 12px;
  }

  .content-wrapper {
    padding:1.5rem;
  }
  form {
    max-width:100%;
  }
  .dashboard-wrapper {
    flex-direction:column;
  }
  table,th,td { font-size:12px; }
}

:root {
  --color-bg: #FFFFFF;
  --color-primary: #004982;
  --color-primary-dark: #013966;
  --color-accent: #9D0268;
  --color-border: #E9E9E9;
  --color-footer-text: #D9D9D9;
  --color-text: #333;
  --color-secondary: #014aac;
  --color-button-primary: rgba(0, 123, 255, 0.8);
  --color-button-secondary: rgba(248, 249, 250, 0.8);
  --color-chip-bg: #ffefe8;
  --color-chip-border: #ffe7db;
  --font-size-base: 1rem;
  --color-rating: #f39c12;
}

@font-face {
  /* font-family: 'IRANSharp'; */
  font-family: 'Vazir';
}

#productGrid {
    display: grid;
    grid-gap: 10px;  /* فاصله بین آیتم‌ها */
}

body {
  font-family: 'Vazir', Tahoma, Arial, 'Segoe UI', sans-serif;
  /* font-family: 'IRANSharp', Tahoma, Arial, 'Segoe UI', sans-serif; */
  direction: rtl;
  margin: 0;
  line-height: 1.6;
  font-size: var(--font-size-base);
  background-color: var(--color-bg);
}

/* a, p, h1, h2, h3, h4 { */
  /* user-select: none; /* برای مرورگرهای مدرن */ */
  /* -webkit-user-select: none; /* برای مرورگرهای Webkit مثل Chrome و Safari */ */
  /* -moz-user-select: none; /* برای Firefox */ */
  /* -ms-user-select: none; */
/* } */

hr {
  width: 90%;
  border: 0.03125rem solid #e0e0e0;
}

a {
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  user-select: none; /* برای مرورگرهای مدرن */
  -webkit-user-select: none; /* برای مرورگرهای Webkit مثل Chrome و Safari */
  -moz-user-select: none; /* برای Firefox */
  -ms-user-select: none;
}

p {
  font-size: 0.975rem;
  line-height: 2.25rem;
  text-align: justify;
}

h2 {
  color: var(--color-text);
}

.sticky-menu {
  display: none;
}

.breadcrumb {
  top: 5.375rem;
  background-color: var(--color-secondary);
  padding: 0.75rem 5% 1rem 0;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.breadcrumb a {
  color: var(--color-bg);
  margin: 0.5rem;
  font-size: 0.9375rem;
}

.logo {
  margin-left: 5%;
}

.logo img {
  height: 4.75rem;
}

.hamburger-menu {
  display: none;
  font-size: 2rem;
}

.blog-section {
  display: flex;
  margin: 20px;
}

.blog-body {
  flex: 75%;
  padding: 20px;
}

.blog-sidebar {
  flex: 25%;
  padding: 20px;
}

.blog-banner img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.blog-image {
  text-align: center;
}

.blog-image img {
  width: 520px;
  border-radius: 24px;
  margin: 12px 0;
}

.blog-writer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 8px 12px;
  width: auto;
}

.blog-writer .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-writer .author-info img {
  width: 48px;
  border-radius: 24px;
  margin-right: 12px;
}

.blog-writer p {
  font-weight: bold;
}

.share-buttons {
  display: flex;
  gap: 20px;
  margin-left: 12px;
}

.share-buttons a {
  text-decoration: none;
  font-size: 24px;
}

.share-buttons a:hover {
  color: #007bff;
}

.sidebar-section {
  margin-bottom: 24px;
  padding: 15px;
  border-radius: 24px;
  padding: 12px 24px;
  background-color: #f5f5f5;
}

.sidebar-section button {
  text-align: center;
}

.sidebar-section p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.request-services-button {
  display: block;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.request-services-button:hover {
  background-color: #0056b3;
}

.blog-hint {
  background-color: #f5f5f5;
  padding: 14px 32px;
  margin: 32px 0;
  border-radius: 12px;
}

.blog-hint p {
  font-size: 16px;
  text-align: center;
  line-height: 2.4;
}

.blog-hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--color-border); /* Border around the container */
  padding: 28px 12px;
  margin: 32px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0 24px;
}

.image-section img {
  flex: 1;
  width: 220px;
}

.text-section {
  flex: 2;
}

.button-section a {
  flex: 1;
  font-size: 16px;
  color: var(--color-bg);
  background-color: var(--color-primary);
  padding: 8px 32px;
  border-radius: 24px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 1.25rem;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 2.375rem;
  text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.8);
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 5.375rem;
  text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.8);
  font-weight: medium;
  color: var(--color-bg);
}

.hero .button-container {
  display: flex;
  justify-content: center;
  gap: 1.375rem;
}

.hero .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 4rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 2;
  transition: background-color 0.3s;
}

.hero .btn .icon {
  font-size: 1.8rem;
  margin: 0.25rem 0 0.875rem 0;
}

.hero .btn.primary {
  background-color: var(--color-button-primary);
}

.support-conrainer {
  color: var(--color-text);
  margin: 0 10%;
  display: none;
}

.hero .btn.primary:hover {
  background-color: rgba(0, 123, 255, 1);
}

.hero .btn.secondary {
  background-color: rgba(248, 249, 250, 0.8);
  color: #111;
}

.hero .btn.secondary:hover {
  background-color: rgba(248, 249, 250, 1);
}

.view-options {
  text-align: left;
  margin-bottom: 1.625rem;
}

.btn-view {
  background-color: white;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.blog {
  padding: 1.5rem 5%;
}

.blog h2, h3 {
    margin-bottom: 2.625rem;
  }

.blog-list {
  display: flex;
  gap: 1rem;
}

.blog-item {
  color: inherit;
  border: 0.0625rem solid #e9e9e9;
  border-radius: 0.5rem;
  flex: 1 1 calc(25% - 1.125rem);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.blog-item img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.blog-content {
  padding: 1.375rem;
  flex-direction: column;
}

.blog-content h4 {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.blog-content p {
  margin-bottom: 1.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-size: 0.875rem;
  color: var(--color-primary);
  border: none;
  padding: 0.5rem 1.125rem;
  border-radius: 1.5rem;
  margin: auto;
  display: flex;
}

.testimonials {
  background: linear-gradient(40deg, #f0f0f0 20%, #ffffff 40%, #f9f9f9 60%, #f0f0f0 100%);
  padding: 2.125rem 0;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  padding: 1.625rem 20%;
}

.testimonial-item {
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.75rem;
  width: 16.25rem;
  text-align: center;
  flex: 0 0 33.33%;
  transition: transform 0.5s ease;
  background-color: #ffffff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.title p {
  color: #333;
  font-size: 1.25rem;
  font-weight: normal;
  text-align: center;
}

.item-time p {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.rating {
  margin-top: 0.625rem;
  color: #f4c150;
}

.rating i {
  color: var(--color-rating);
}

.team {
  padding: 4.25rem 0;
  background-color: #f0f0f0;
}

.title {
  text-align: center;
}

.team .title i {
  font-size: 2.625rem;
}

.team .title p {
  color: #666;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 5%;
}

.team-member {
  padding: 1.25rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.team-member.active {
  background-color: var(--color-primary);
  color: var(--color-bg);
  transform: scale(1.06);
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.2);
}

.team-member img {
  width: 8.75rem;
  border-radius: 50%;
}

.team-member h3 {
  margin-bottom: 0px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f9f9f9;
  border-radius: 50%;
}

.contact-icons a:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-bg);
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.appointment {
  margin: 5rem 0;
  padding: 0 5%;
}

.appointment-content {
  display: flex;
}

.appointment-form-container {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
}

.appointment-form {
  display: flex;
  flex-direction: column;
}

.appointment-form i {
  margin-right: 1.25rem;
  font-size: 0.75rem;
}

.appointment-image {
  flex: 1 1 50%;
  display: flex;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
  margin-right: 2rem;
}

.appointment-image img {
  max-width: 100%;
}

.appointment-form label {
  margin-bottom: 0.75rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.5rem;
}

.appointment-form button {
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.appointment-form button:hover {
  background-color: var(--color-primary-dark);
}

.no-scroll {
  overflow: hidden;
}

.temporary-banner {
  background-color: yellow;
  height: 58px;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  position: fixed;
  align-items: center;
  border-bottom: 1px solid #ddd;
  z-index: 1001;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4%;
}

.banner-content p {
  font-size: 16px;
  flex: 1;
}

.banner-content a.btn {
  background-color: #333;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
}

.product-page {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product-description {
  color: var(--color-text);
  margin: 0 10%;
  display: none;
}

.product-description.active {
  display: block;
}

.product-description h3 {
  font-size: 22px;
  margin: 52px 0 24px 0;
}

.product-description p,
.product-description ul,
.product-description li {
  font-size: 15px;
  line-height: 36px;
  margin-bottom: 28px;
}

.customers-reviews p {
  margin-bottom: 1rxem;
  line-height: 38px;
}

.product-description.active {
  display: block;
}

.customers-reviews {
  margin-top: 20px;
}

/* .review {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
} */

.product-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 28px 5%;
  gap: 18px;
}

.product-images {
  flex: 0 0 35%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.product-images hr {
  margin: 12px auto;
}

.product-images .main-image {
  max-width: 320px;
  height: 320px;
  padding: 32px 20px;
}

.product-images .thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 8px;
  margin-top: 18px;
  gap: 8px;
}

.product-images .thumbnail-container img {
  flex: 1 1 auto;
  max-width: 72px;
  max-height: 72px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
  padding: 10px;
}

.product-images .thumbnail-container img:hover {
  border-color: var(--color-primary);
}

.product-details {
  display: flex;
  flex: 0 0 63%;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.details-info {
  width: 100%;
  padding: 6px 38px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.details-info ul {
  margin: 28px 0;
}

.details-info li {
  margin: 22px 0;
  color: var(--color-primary-dark);
}

.details-info hr {
  width: 100%;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 48px 0 32px 0;
  color: #19b16a;
  border: 1.5px dashed #19b16a;
  border-radius: 12px;
  padding: 12px 0;
}

.product-usage {
  text-align: right;
  font-weight: bold;
  margin: 32px 18px 0 18px;
  color: #19b16a;
  border: 1.5px dashed #a91d3a;
  border-radius: 12px;
  padding: 0 12px;
  color: #a91d3a;
  text-align: justify;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
}

.product-tabs {
  display: flex;
  justify-content: center;
}

.product-tabs i {
  margin-left: 8px;
}

.tab-button {
  padding: 15px 32px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 15px;
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-button.active {
  background-color: #02346E;
  color: #fff;
}

.tab-button:hover {
  opacity: 1;
}

.tab-button.active:hover {
  box-shadow: none;
  cursor: default;
}

.review {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.review h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.review .review-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.review ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.review p {
  font-size: 15px;
  color: #333;
}

.support-section {
  padding: 24px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.support-section img {
  width: 90px;
}

.support-section h3 {
  margin: 12px 0;
}

.support-section p {
  text-align: center;
  margin-bottom: 28px;
}

.support-section a {
  background-color: var(--color-primary);
  padding: 12px 42px;
  color: #fff;
  border-radius: 8px;
}

.product-video {
  text-align: center;
  align-items: center;
}

.product-video video {
  width: 640px;
  margin: 12px 0 42px 0;
}

.quantity-column {
  display: none;
}

.product-page {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product-description {
  color: var(--color-text);
  margin: 0 10%;
  display: none;
}

.product-description.active {
  display: block;
}

.product-description h3 {
  font-size: 22px;
  margin: 52px 0 24px 0;
}

.product-description p,
.product-description ul,
.product-description li {
  font-size: 15px;
  line-height: 36px;
  margin-bottom: 28px;
}

.customers-reviews p {
  margin-bottom: 1em;
  line-height: 38px;
}

.product-description.active {
  display: block;
}

.pricing-table {
  min-width: 100%;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.pricing-table th {
  background-color: #f4f4f4;
}

.details-container {
  margin: 48px 0;
  background-color: #f9f9f9;
  padding: 42px 0;
}

.review h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.review .review-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.review ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.review p {
  font-size: 15px;
  color: #333;
}

.support-section {
  max-width: 80%;
  margin: 0 10%;
  padding: 24px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.support-section img {
  width: 90px;
}

.support-section h3 {
  margin: 12px 0;
}

.support-section p {
  text-align: center;
  margin-bottom: 28px;
}

.support-section a {
  background-color: var(--color-primary);
  padding: 12px 42px;
  color: #fff;
  border-radius: 8px;
}

.product-video {
  text-align: center;
  align-items: center;
}

.product-video video {
  width: 640px;
  margin: 12px 0 42px 0;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button i {
  color: white;
  font-size: 28px;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    top:0;
    right:0;
  }

  .sticky-menu {
    display: block;
  }

  .side-menu {
    display: none;
  }

  .products .container h2{
    color: var(--color-text);
  }

  .team .container h2 {
    color: var(--color-text);
  }

  .blog .container h2{
    color: var(--color-text);
  }

  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-images {
    width: 100%;
    margin-left: 0;
  }

  .product-images .thumbnail-container {
    justify-content: center;
  }

  .product-tabs button {
    width: 100%;
    margin: 0;
    margin-bottom: 12px;
  }

  .logo {
    display: none;
  }

  .view-options {
    display: none;
  }

  .hamburger-menu {
    display: block;
    margin: 0 12px;
    border: none;
    background-color: #fff;
    font-size: 32px;
  }

  .open {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
  }

  .quantity-column {
    display: table-cell;
    background-color: var(--color-primary);
    color: white;
  }

  .product-tabs button {
    width: 100%;
    margin: 0;
    margin-bottom: 12px;
  }

.pricing-table thead {
display: none;
}

.pricing-table tr {
display: block;
margin-bottom: 4px;
padding: 8px;
width: 100%;
}

.pricing-table td {
display: flex;
justify-content: space-between;
padding: 14px;
border: none;
}

.pricing-table th {
  border: none;
  width: auto;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: normal;
}

.pricing-table td:last-child {
border-bottom: none;
}

.pricing-table td::before {
content: attr(data-label);
font-weight: bold;
color: #333;
margin-right: 10px;
}

  .breadcrumb {
    top: 50px;
    padding: 12px 5%;
  }

  .breadcrumb a {
    font-size: 14px;
    margin: 4px;
  }

  .hero {
    height: 94vh;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 1.6em;
    margin-top: 56px;
    margin-bottom: 48px;
  }

  .hero h3 {
    font-size: 1.5em;
    margin-bottom: 96px;
  }

  .hero .btn {
    padding: 12px 18px;
    font-size: 0.8em;
    line-height: 22px;
    margin-bottom: 24px;
    background-color: var(--color-text);
    color: var(-color-bg);
  }

  .button-container i {
    font-size: 10px;
  }

  .products {
    padding: 12px 5%;
  }

  .view-options {}

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .benefits {
    overflow: hidden;
  }

  .benefits-grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .benefit-item {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 18px;
  }

  .team {
    padding: 40px 5%;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }

  .testimonials {
    display: none;
  }

  .about {
    padding: 12px 32px;
  }

  .about-content {
    text-align: center;
  }

  .container h2 {
    font-size: 18px;
    margin: 32px 0;
    color: var(--color-bg);
  }

  .about .container h2 {
    color: var(--color-text);
    margin: 12px 0;
  }

  .about img {
    display: none;
  }

  .appointment-content {
    padding: 0;
  }

  .appointment-image {
    display: none;
  }

  .blog-list {
    flex-direction: column;
  }

  .blog-item {
    margin-bottom: 20px;
  }

  footer {
    background-color: var(--color-primary);
    color: var(--color-footer-text);
    margin-top: 32px;
    padding: 24px 5%;
    text-align: center;
  }

  footer p {
    font-size: 14px;
    line-height: 1.4;
  }

  .footer-logos {
    margin: 16px 0;
  }

  .footer-logos img {
    height: 80px;
    margin: 0 12px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-section {
    text-align: center;
  }

  .social-media {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
  }

  .social-media img {
    width: 32px;
    border-radius: 50%;
  }

  .copywrite p {
    font-size: 12px;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button i {
    font-size: 24px;
  }

  .product-video {
    width: 90vw;
  }

  .temporary-banner p {
    font-size: 12px;
  }

  .banner-content {
    width: 90vw;
  }

  .banner-content a.btn {
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
  }

  .copywrite p {
    font-size: 10px;
  }
