/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand img {
    max-width: 180px;
}
.nav-link {
    font-size: 13px;
    font-weight: 600;
    border-radius: 3rem;
    color: #212529;
}

.nav-link:hover {
    background-color: #efefef;
}

/* Button Styles */
.header-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 3rem;
    font-weight: 900;
    box-shadow: none;
    line-height: 1.4;
    background: #212529;
    color: white;
}
.header-btn:hover {
    background: #dc3545;
   color: white;
}
/* Card Styles */
.card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

.card-price {
    color: #007aff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: #f1f1f1;
    color: #666;
    padding: 40px 0 0 0;
    text-align: center;
}

footer a {
    color: #007aff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .navbar-brand img {
        max-width: 150px;
    }

    .card-img-top {
        height: 150px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}
/* Footer General Styles */
footer {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer h5 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
}

footer h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #444;
}

footer p, footer a {
    color: #555;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
    text-decoration: underline;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #333;
}

.bg-dark p, .bg-dark h6, .bg-dark i {
    color: #fff !important;
}

/* Footer Icons */
footer i {
    margin-right: 0.5rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 767px) {
    footer .container {
        text-align: center;
    }

    footer h5 {
        margin-top: 1rem;
    }
}
/* General Styles */
.product-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.product-image {
    flex: 1 1 40%;
    border-radius: 12px;
    overflow: hidden;
}

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

.product-details {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title and Meta */
.product-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.product-meta .rating {
    color: #e63946;
    font-weight: bold;
}

.product-meta .type {
    font-size: 0.9rem;
    font-weight: bold;
    color: #555;
}

/* Features Section */
.product-features {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #555;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-features li i {
    color: #1e90ff;
}

/* Pricing Section */
.product-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
}

.product-pricing .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f77f00;
}

.product-pricing .price del {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.product-pricing .discount {
    background-color: #edf2f7;
    color: #38a169;
    font-size: 0.9rem;

}

.product-card-minimal {
    width: 100%;
    max-width: 350px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px auto;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.product-features li {
    margin-bottom: 5px;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0;
}

.product-pricing {
    font-size: 1rem;
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.new-price {
    font-weight: bold;
    color: #e76f51;
}

.btn-primary {
    display: inline-block;
    background: #0071c2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
 
.btn-primary:hover {
    background: #005fa3;
}
.video-container {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}
.video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
} 
.swiper-container {
    width: 100%;
    padding: 20px 0;
}
.swiper-slide {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.card-info {
    padding: 10px;
}
.card-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
}
.card-info p {
    color: #f00;
    font-weight: bold;
}
.swiper-button-next, .swiper-button-prev {
    background-color: rgba(41, 40, 40, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    color: white;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: normal;
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 23* 24);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px -(var(--swiper-navigation-size) /));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .swiper-slide {
        position: relative;
        overflow: hidden;
        border-radius: 15px; /* برای گرد کردن گوشه‌ها */
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    .card-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5); /* پس‌زمینه نیمه‌شفاف */
        color: white;
        padding: 10px;
        text-align: center;
    }

    .card-info h5 {
        margin: 0;
        font-size: 18px;
    }

    .card-info p {
        margin: 5px 0 0;
        font-size: 16px;
        font-weight: bold;
        color: #ffcc00; /* رنگ نوشته قیمت */
    }
    .swiper-container {
        overflow: hidden;
    }
    .imgboxsix .box {
        padding: 20px;
        border-radius: 1rem;
        border: 1px solid #eee;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.03);
        text-align: center;
        transition: all 0.2s ease-in-out;
        height: 100%;
      }
    
      .imgboxsix .box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      }
    
      .imgboxsix .emoji {
        width: 32px!important;
        height: 32px!important;
        margin-bottom: 10px;
      }
    
      .imgboxsix .title {
        font-weight: 600;
        font-size: 15px;
        margin-bottom: 5px;
      }
    
      .imgboxsix .subtitle {
        font-size: 13px;
        color: #777;
      }
    
      .imgboxsix .col-6 {
        padding: 10px;
      }

      .accordion-header span{
        font-size: 2rem!important;
      }
      .custom-accordion .accordion-button:not(.collapsed) {
        background-color: #ffffff !important;
        color: #212529 !important;
        box-shadow: none;
      }
      .custom-accordion .accordion-button:focus {
        box-shadow: none !important;
        outline: none !important;
      }
      
      .custom-accordion .accordion-button::selection {
        background: transparent;
      }
      
      .custom-accordion .accordion-button {
        user-select: none;
      }

      form.variations_form.cart {
    background: #fefefe;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  

  form.variations_form.cart table.variations {
    width: 100%;
    margin-bottom: 10px;
  }
  
  form.variations_form.cart table.variations td,
  form.variations_form.cart table.variations th {
    padding: 5px 0;
    vertical-align: middle;
  }
  

  form.variations_form.cart select {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  

  form.variations_form.cart .reset_variations {
    font-size: 13px;
    color: #007aff;
    margin-top: 5px;
    display: inline-block;
    display: none;
  }
  

  form.variations_form.cart .single_variation {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  

  form.variations_form.cart .single_variation .price del {
    color: #999;
    margin-right: 6px;
  }
  

  form.variations_form.cart .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }
  

  form.variations_form.cart .quantity input.qty {
    width: 70px;
    padding: 8px;
    border-radius: 6px;
    font-size: 15px;
    border: 1px solid #ccc;
    text-align: center;
  }
  

  form.variations_form.cart .single_add_to_cart_button {
    background-color: #007aff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form.variations_form.cart .single_add_to_cart_button:hover {
    background-color: #005ec4;
  }
  .reset_variations {
    font-size: 0 !important;
    position: relative !important;
    width: 20px; 
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 4px 0 10px 0;
  }
  
  .reset_variations::after {
    content: '✕';
    font-size: 18px;
    color: #666;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
  }
  
  form.variations_form.cart .single_add_to_cart_button {
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 10px;
    min-width: 180px;
    transition: 0.3s all ease-in-out;
  }
  .summary entry-summary{
    float: right;
  }




  /* تصویر محصول */
.wc-block-cart-item__image img {
    border-radius: 10px;
    max-width: 80px;
    height: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  /* عنوان محصول */
  .wc-block-components-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #007aff;
    margin-bottom: 4px;
    display: inline-block;
  }
  
  /* قیمت فعلی */
  .wc-block-components-product-price__value {
    font-size: 16px;
    font-weight: bold;
    color: #111;
  }
  
  /* قیمت قبلی */
  .wc-block-components-product-price__regular {
    font-size: 14px;
    color: #888;
    margin-right: 5px;
  }
  
  /* نشان Save */
  .wc-block-components-sale-badge {
    background-color: #e6f7ff;
    color: #007aff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 6px;
  }
  
  /* نوع محصول */
  .wc-block-components-product-details__type {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
  }
  
  /* دکمه حذف */
  .wc-block-cart-item__remove-link {
    font-size: 14px;
    color: #ff3b30;
    margin-top: 10px;
    display: inline-block;
  }
  
  /* تعداد */
  .wc-block-components-quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
  }
  
  .wc-block-components-quantity-selector__input {
    width: 50px;
    padding: 8px;
    font-size: 15px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  .wc-block-components-quantity-selector__button {
    background: #f0f0f0;
    border: none;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* قیمت مجموع (ستون سوم) */
  .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    text-align: right;
  }
  
  /* بخش جمع کل سبد خرید */
  .cart_totals,
  .wp-block-woocommerce-cart-totals-block {
    background: #fafafa;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #eee;
  }
  
  /* سطرهای جمع کل */
  .wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 8px 0;
  }
  
  .wc-block-components-totals-item__label {
    color: #444;
  }
  
  .wc-block-components-totals-item__value {
    font-weight: 600;
    color: #000;
  }
  
  /* دکمه Checkout */
  .wc-block-cart__submit-button {
    display: block;
    width: 100%;
    background-color: #007aff;
    color: white;
    font-size: 17px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .wc-block-cart__submit-button:hover {
    background-color: #005ec4;
  }

  



  
  /* کادر کلی فرم */
.wc-block-checkout__form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  
  /* تیترها */
  .wc-block-components-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  /* ایمیل و نام و تلفن */
  .wc-block-components-text-input input {
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
  }
  
  .wc-block-components-text-input label {
    font-size: 13px;
    color: #555;
  }
  
  /* فیلد تلفن */
  .wc-block-components-address-form__phone input {
    direction: ltr;
  }
  
  /* دکمه Place Order */
  .wc-block-components-checkout-place-order-button {
    background-color: #007aff !important;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    color: white;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  .wc-block-components-checkout-place-order-button:hover {
    background-color: #005ec4 !important;
  }

.wc-block-components-product-details__name {
    font-size: 12px;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-right: 4px;
  }
  

  .wc-block-components-product-details__value {
    font-size: 16px;
    font-weight: 600;
    color: #111;
  }
  .ticket-table-wrapper {
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    background: #fff;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
}

.ticket-table thead {
    background: #f7f9fb;
}

.ticket-table th, .ticket-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.ticket-table th {
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.ticket-table td input[type="number"] {
    width: 70px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.ticket-table .button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ticket-table .button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .ticket-table th, .ticket-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .ticket-table td input[type="number"] {
        width: 60px;
    }

    .ticket-table .button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.search-form {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
  max-width: 400px;
}

.search-input {
  border: none;
  background: transparent;
  padding: 6px 15px;
  flex: 1;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
}

.search-button {
  border: none;
  background: none;
  padding: 6px 15px;
  cursor: pointer;
  font-size: 18px;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.avatar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #eee;
}

.user-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px 0;
  min-width: 180px;
  z-index: 100;
}

.user-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.user-menu a:hover {
  background-color: #f7f7f7;
}



.account-content {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
}
.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
.modal-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 400px;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Base container */
.woocommerce, {
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
}

/* Titles */
.blogtilte h1, .woocommerce h1, .tml h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

/* Navigation menu */
.woocommerce-MyAccount-navigation {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
    display: inline-block;
}

.woocommerce-MyAccount-navigation a {
    text-decoration: none;
    color: #374151;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    transition: background 0.3s;
}

.woocommerce-MyAccount-navigation a:hover,
{
    background: #3b82f6;
    color: white;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: #ececec;
}



/* Main content */
.woocommerce-MyAccount-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}


div.nsl-container.nsl-container-block .nsl-container-buttons{
    width: 100%;
}
/* Avatar + Greeting */
.tml-dashboard-avatar img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.tml-dashboard-greeting {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* WooCommerce Info Box (e.g., No order) */
.woocommerce-info {
    background: #f8f9fc;
    border-left: 4px solid #3b82f6;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 8px;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.woocommerce-info::before {
    content: "🛒";
    font-size: 22px;
    margin-right: 10px;
}

.woocommerce-info a.woocommerce-Button {
    background: #e0e7ff;
    color: #111827;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.woocommerce-info a.woocommerce-Button:hover {
    background: #3b82f6;
    color: #fff;
}

/* Responsive fix */
@media screen and (max-width: 768px) {
    .woocommerce, .tml {
        padding: 15px;
    }

    button, .tml-button, .woocommerce-Button {
        width: 100%;
    }
}


.blogtilte h1 {
  font-size: 28px;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 40px;
}


.tml-submit-wrap button.tml-button,
.nsl-container .nsl-button {
  width: 100%;
  font-size: 16px;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  display: block;
  margin-top: 15px;
}


body.login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f7f7f7;
}

.tml-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 14px;
}

.tml-links li {
  list-style: none;
}

.tml-links a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tml-links a:hover {
  color: #0073aa; /* یا هر رنگ برند شما */
  text-decoration: underline;
}
  .testimonial-section {
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .testimonial-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
  }

  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 30px;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .testimonial-profile img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
  }

  .testimonial-profile div {
    font-weight: bold;
    font-size: 15px;
  }

  .testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }

  .stars {
    color: #f9b000;
    font-size: 18px;
    margin-bottom: 10px;
  }

        .imgboxsix img.wp-smiley, .imgboxsix img.emoji {
        height: 3em !important; 
        width: 3em !important;
    }

    .accordion-item {
    color: none;
    background-color: none; 
    border: none; 
}

.equal-height-img {
  width: 100%;
  height: 200px;
  object-fit: cover;

}

@media (min-width: 768px) {
  .main-image-large {
    height: 415px;
  }
}


.account-wrapper {
  display: flex;
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
}

.account-menu {
  width: 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
}

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

.account-menu li {
  margin-bottom: 15px;
}

.account-menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  display: block;
  padding: 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.account-menu li a:hover,
.account-menu li.active a {
  background: #f0f0f0;
  color: #000;
}


.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex; justify-content: center; align-items: center;
}
.modal-box {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 400px;
  max-width: 90%;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}
.login-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
}
.tab-btn {
  background: none;
  border: none;
  font-weight: 100;
}
.tab-btn.active {
  border-bottom: 2px solid #0073aa;
}
.tab-content .tab-panel {
  display: none;
}
.tab-content .tab-panel.active {
  display: block;
}
.tml-links { display: none !important; }
.loginModal .tab-content{
  background-color: #fff;
}
div.nsl-container .nsl-button-google[data-skin="light"]{
    background-color: #fff !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    border: 1px solid #999 !important;
    padding: 4px !important;
}
.tml input {
    background-color: #fff;
    border-radius: 12px ;
    box-shadow: none;
    border: 1px solid #999;
    padding: 9px;
}
.tml input:active {
    border: 1px solid #999!important;
}
.tml-submit-wrap button.tml-button, .nsl-container .nsl-button
{
    background-color: #4d40ca;
    border-radius: 12px ;
    box-shadow: none;
    border: 1px solid #999;
    padding: 9px;
    color: #fff;
}
.tml-label{
  font-size: .8rem;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.tml .tml-action-confirmaction .success, .tml .tml-error, .tml .tml-message, .tml .tml-success {
    border-left: 4px solid #00a0d2;
    box-shadow: none;
    padding: .75em;
    background: #eee;
}
.modal-body{
  padding-top: 0;
}
.small-txtmodal{
  font-size: .85rem;
}
.login-modal .modal-header{
    border: 0;
    padding-bottom: 8px;
    font-weight: 800; 
} 
.login-modal h1 {
    font-weight: 700;
}

.login-modal .modal-dialog {
    max-width: 450px;
}


@media (max-width: 991px) {
  .navbar-brand {
    text-align: center;
    width: 100%;
  }
  
.navbar-toggler, .xlfooter{
    display: none;
  }
   .search-xs{
    padding: 10px;
    background: #ffffff;
  }
   .search-button{ width: auto;}
  
}


@media (min-width: 991px) {

 .search-xs{
    display: none;
  }
}

.mobile-footer-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  padding: 6px 0 4px;
  z-index: 9999;
}
.mobile-footer-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #333;
  text-decoration: none;
  padding: 4px 0;
}

.mobile-footer-nav .nav-item i,
.mobile-footer-nav .nav-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
}

.mobile-footer-nav .nav-item span {
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.mobile-footer-nav .profile-pic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2px;
}
