    * {
      font-family: 'Vazirmatn', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8f9fa;
    }

    /* Header Top Section */
    .header-top {
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .logo img {
      height: 100px;
    }

    .search-box {
      position: relative;
      width: 100%;
      max-width: 420px;
    }

    .search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    .header-buttons .btn {
      border-radius: 30px;
      padding: 8px 20px;
      font-weight: 500;
    }

    .btn-install {
      background-color: #6fc1a1;
      color: #fff;
      transition: 0.3s;
    }

    .btn-install:hover {
      background-color: #5cb08d;
    }

    .btn-call {
      border: 1.5px solid #6fc1a1;
      color: #6fc1a1;
      transition: 0.3s;
    }

    .btn-call:hover {
      background-color: #6fc1a1;
      color: #fff;
    }

    /* Navbar */
    .main-nav {
      background-color: #fff;
      border-top: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 10px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

    .main-nav ul li a {
      color: #003366;
      font-weight: 500;
      transition: 0.3s;
      text-decoration: none;
    }

    .main-nav ul li a:hover {
      color: #6fc1a1;
    }

    .main-nav ul li a.active {
      color: #6fc1a1;
      font-weight: 600;
    }

    /* Mobile Header */
    .mobile-header {
      display: none;
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: relative;
    }

    .mobile-header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px;
    }

.mobile-logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
}

    .mobile-menu-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #003366;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
      background-color: #f0f0f0;
    }

    .mobile-search-box {
      position: relative;
      margin: 10px 15px;
    }

    .mobile-search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .mobile-search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
      overflow-y: auto;
      transition: transform 0.3s ease;
      transform: translateX(100%);
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: block;
    }

    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      background-color: #003366;
      color: white;
    }

    .mobile-nav-header .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .mobile-nav-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
    }

    .mobile-nav-close:hover {
      background-color: rgba(255,255,255,0.2);
    }

    .mobile-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav ul li:last-child {
      border-bottom: none;
    }

    .mobile-nav ul li a {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      color: #003366;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .mobile-nav ul li a i {
      margin-left: 10px;
      color: #6fc1a1;
      width: 20px;
      text-align: center;
    }

    .mobile-nav ul li a:hover {
      background-color: #f9f9f9;
      color: #6fc1a1;
    }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: transparent;
      padding: 20px 0;
      margin-bottom: 0;
    }

    .breadcrumb-item a {
      color: #6fc1a1;
      text-decoration: none;
      font-weight: 500;
    }

    .breadcrumb-item.active {
      color: #003366;
      font-weight: 600;
    }

    /* Product Section */
    .product-section {
      padding: 40px 0 80px;
    }

    .product-container {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      overflow: hidden;
      margin-bottom: 40px;
    }

    /* Product Gallery */
    .product-gallery {
      position: relative;
      padding: 30px;
      border-left: 1px solid #f0f0f0;
    }

    .main-image {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 20px;
      background: #fafafa;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .main-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: opacity 0.5s ease-in-out;
    }

    .image-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #e50a5d;
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .thumbnail-gallery {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 10px 0;
    }

    .thumbnail {
      width: 80px;
      height: 80px;
      border: 2px solid transparent;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      flex-shrink: 0;
      background: #fafafa;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .thumbnail.active {
      border-color: #6fc1a1;
    }

    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Product Info */
    .product-info {
      padding: 40px;
    }

    .product-category {
      color: #6fc1a1;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 10px;
      display: block;
    }

    .product-title {
      color: #003366;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .stars {
      color: #ffb400;
    }

    .rating-text {
      color: #666;
      font-size: 0.9rem;
    }

    .product-price {
      margin-bottom: 25px;
    }

    .current-price {
      color: #003366;
      font-size: 2rem;
      font-weight: 700;
      margin-left: 10px;
    }

    .old-price {
      color: #999;
      text-decoration: line-through;
      font-size: 1.2rem;
    }

    .discount-badge {
      background: #e50a5d;
      color: white;
      padding: 4px 10px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-right: 10px;
    }

    .product-features {
      margin-bottom: 30px;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      color: #555;
    }

    .feature-list li i {
      color: #6fc1a1;
      margin-left: 10px;
      font-size: 0.9rem;
    }

    /* Product Options */
    .product-options {
      margin-bottom: 30px;
    }

    .option-group {
      margin-bottom: 20px;
    }

    .option-label {
      display: block;
      margin-bottom: 10px;
      color: #003366;
      font-weight: 600;
    }

    .color-options {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .color-option {
      width: 40px;
      height: 40px;
      border: 2px solid transparent;
      border-radius: 50%;
      cursor: pointer;
      position: relative;
      transition: transform 0.2s;
    }

    .color-option:hover {
      transform: scale(1.1);
    }

    .color-option.active {
      border-color: #003366;
      transform: scale(1.1);
    }

    .color-option.active::after {
      content: '✓';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-weight: bold;
      font-size: 0.8rem;
      text-shadow: 0 0 2px rgba(0,0,0,0.5);
    }

    .size-options {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .size-option {
      padding: 10px 20px;
      border: 2px solid #ddd;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 500;
    }

    .size-option.active {
      border-color: #6fc1a1;
      background: #6fc1a1;
      color: white;
    }

    /* Action Buttons */
    .action-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
    }

    .btn-add-to-cart {
      flex: 1;
      background: #0f766e;
      color: white;
      border: none;
      border-radius: 12px;
      padding: 15px 25px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-add-to-cart:hover {
      background: #6fc1a1;
      transform: translateY(-2px);
    }

    .btn-wishlist {
      width: 55px;
      background: #f8f9fa;
      border: 2px solid #ddd;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      color: #666;
    }

    .btn-wishlist:hover {
      border-color: #e50a5d;
      color: #e50a5d;
    }

    .btn-wishlist.active {
      border-color: #e50a5d;
      background: #e50a5d;
      color: white;
    }

    /* Product Meta */
    .product-meta {
      border-top: 1px solid #f0f0f0;
      padding-top: 20px;
    }

    .meta-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #666;
    }

    .meta-item i {
      color: #6fc1a1;
      margin-left: 10px;
      width: 20px;
      text-align: center;
    }

    /* Product Tabs */
    .product-tabs {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .tab-headers {
      display: flex;
      border-bottom: 1px solid #f0f0f0;
      background: #f8f9fa;
    }

    .tab-header {
      padding: 20px 30px;
      cursor: pointer;
      font-weight: 600;
      color: #666;
      border-bottom: 3px solid transparent;
      transition: all 0.3s;
    }

    .tab-header.active {
      color: #0f766e;
      border-bottom-color: #0f766e;
      background: white;
    }

    .tab-content {
      padding: 40px;
    }

    .tab-pane {
      display: none;
    }

    .tab-pane.active {
      display: block;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }

    .specs-table tr {
      border-bottom: 1px solid #f0f0f0;
    }

    .specs-table td {
      padding: 15px 10px;
    }

    .specs-table td:first-child {
      font-weight: 600;
      color: #003366;
      width: 30%;
    }

    .reviews-list {
      max-height: 400px;
      overflow-y: auto;
    }

    .review-item {
      padding: 25px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .review-item:last-child {
      border-bottom: none;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .reviewer-name {
      font-weight: 600;
      color: #003366;
    }

    .review-date {
      color: #999;
      font-size: 0.9rem;
    }

    .review-text {
      color: #555;
      line-height: 1.6;
    }

    /* Related Products */
    .related-products {
      padding: 60px 0 40px;
    }

    .section-title {
      color: #003366;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .related-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }

    .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .related-image {
      height: 200px;
      background: #fafafa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .related-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .related-content {
      padding: 20px;
    }

    .related-title {
      color: #003366;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
      height: 50px;
      overflow: hidden;
    }

    .related-price {
      color: #0f766e;
      font-weight: 700;
      font-size: 1.2rem;
    }

    /* Footer Styles */
    footer {
      background-color: #ffffff;
      border-top: 1px solid #e5e7eb;
      color: #4b5563;
      padding: 60px 20px 30px;
      text-align: left;
      direction: ltr;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-flex-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
    }

    .footer-col {
      flex: 1 1 200px;
      min-width: 180px;
    }

    .footer-col h4 {
      color: #0f766e;
      font-size: 16px;
      margin-bottom: 18px;
      text-align: left;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #4b5563;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #0f766e;
    }

    .social {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }

    .social a {
      font-size: 22px;
      color: #6b7280;
      transition: color 0.3s;
    }

    .social a:hover {
      color: #0f766e;
    }

    .newsletter {
      margin-top: 30px;
    }

    .newsletter p {
      margin-bottom: 10px;
      font-size: 15px;
      color: #374151;
      text-align: left;
    }

    .newsletter-form {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      max-width: 350px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      text-align: left;
    }

    .newsletter-form button {
      background-color: #0f766e;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 25px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background-color: #115e57;
    }

    .trust-badge {
      text-align: center;
      margin-top: 50px;
    }

    .trust-badge img {
      width: 110px;
      height: auto;
      border-radius: 8px;
      border: 1px solid #d1d5db;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #6b7280;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .product-container {
        flex-direction: column;
      }
      
      .product-gallery {
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
      }
    }

    @media (max-width: 768px) {
      .header-top, .main-nav {
        display: none;
      }
      
      .mobile-header {
        display: block;
      }
      
      .header-buttons {
        margin-top: 10px;
      }

      .search-box {
        max-width: 100%;
      }

      .logo {
        text-align: center;
      }

      .product-info {
        padding: 25px;
      }

      .product-title {
        font-size: 1.5rem;
      }

      .action-buttons {
        flex-direction: column;
      }

      .tab-headers {
        flex-direction: column;
      }

      .tab-header {
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid transparent;
      }

      .tab-header.active {
        border-bottom-color: #f0f0f0;
        border-left-color: #0f766e;
      }

      .footer-flex-row {
        flex-direction: column;
        text-align: left;
        gap: 40px;
      }

      .newsletter-form {
        flex-direction: column;
        align-items: stretch;
      }

      .newsletter-form input {
        width: 100%;
      }

      .newsletter-form button {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .product-gallery {
        padding: 20px;
      }

      .main-image {
        height: 300px;
      }

      .current-price {
        font-size: 1.6rem;
      }

      .tab-content {
        padding: 25px;
      }
    }
    .custom-swal-popup {
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
}

.swal2-close {
  font-size: 24px !important;
  color: #6b7280 !important;
}

.swal2-close:hover {
  color: #374151 !important;
}