.elementor-kit-6{--e-global-color-primary:#111111;--e-global-color-secondary:#F9E8B7;--e-global-color-text:#5C5C5C;--e-global-color-accent:#C4A55B;--e-global-typography-primary-font-family:"danaFaNum";--e-global-typography-primary-font-size:2em;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.4em;--e-global-typography-secondary-font-family:"danaFaNum";--e-global-typography-secondary-font-size:1.5em;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:1.5em;--e-global-typography-text-font-family:"danaFaNum";--e-global-typography-text-font-size:1em;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.9em;--e-global-typography-accent-font-family:"danaFaNum";--e-global-typography-accent-font-size:0.9em;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:1.5em;background-color:#EEE8E8;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1366px){.elementor-kit-6 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}}@media(max-width:1024px){.elementor-kit-6 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}@media(min-width:2400px){.elementor-kit-6 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}}/* Start custom CSS *//* Root color variables for easier reuse */
:root {
  --primary: #111111;
  --secondary: #F9E8B7;
  --text-color: #5C5C5C;
  --accent: #C4A55B;
  --site-bg: #EEE8E8;
}

/* Main container */
.woocommerce-Reviews {
  background: var(--site-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

/* Title */
.woocommerce-Reviews h2,
.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
}

/* Review list container */
.woocommerce-Reviews .commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Single review item */
.woocommerce-Reviews .commentlist li {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  gap: 20px;
  transition: box-shadow 0.2s ease;
}

.woocommerce-Reviews .commentlist li:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Reviewer avatar */
.woocommerce-Reviews .commentlist .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  object-fit: cover;
}

/* Reviewer name + meta */
.woocommerce-Reviews .comment-text {
  width: 100%;
}

.woocommerce-Reviews .comment-text .meta {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

/* Comment content (text) */
.woocommerce-Reviews .description {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 15px;
}

/* Star rating style */
.woocommerce-Reviews .star-rating span::before,
.woocommerce-Reviews .star-rating::before {
  color: var(--accent) !important;
}

/* Reply link / admin reply */
.woocommerce-Reviews .comment-reply-link {
  color: var(--primary);
  font-weight: 700;
}

.woocommerce-Reviews .comment-reply-link:hover {
  color: var(--accent);
}

/* Review form wrapper */
#review_form_wrapper, 
.woocommerce-Reviews form#commentform {
  margin-top: 35px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Form title */
#review_form_wrapper h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Form inputs */
#review_form_wrapper input[type="text"],
#review_form_wrapper input[type="email"],
#review_form_wrapper textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--text-color);
  background: var(--site-bg);
  transition: border-color 0.2s ease;
}

#review_form_wrapper textarea {
  min-height: 130px;
}

#review_form_wrapper input:focus,
#review_form_wrapper textarea:focus {
  border-color: var(--accent);
  outline: none;
}

/* Submit button */
#review_form_wrapper input[type="submit"] {
  background: var(--accent);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 15px;
}

#review_form_wrapper input[type="submit"]:hover {
  background: var(--primary);
}

/* Stars in review form */
#review_form_wrapper p.stars a {
  color: var(--accent) !important;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
    margin: 0 0 0 0 !important;
}

/* Mobile */
@media (max-width: 600px) {
.woocommerce-Reviews {
  padding: 5px;
}
  .woocommerce-Reviews .commentlist li {
    flex-direction: column;
    text-align: center;
  }

  .woocommerce-Reviews .commentlist .avatar {
    margin: 0 auto;
  }

  .woocommerce-Reviews h2 {
    font-size: 20px;
  }
}

/*woocommerce erors*/

.woocommerce-error {
    border-top-color: #C4A55B !important;
}

.woocommerce-error li {
    font-family: "DanaFaNum", sans-serif !important;
}

.woocommerce-error {
    background-color: #EEE8E8 !important;
}


/* مخفی کردن سلکت اصلی فقط برای این ویژگی */

select[name="attribute_pa_material-pack"],
label[for="pa_material-pack"]{
    display:none !important;
}

/* رابط رادیویی */

.material-pack-radios{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:20px;
}

.material-pack-radios label{

    display:flex;
    align-items:center;
    gap:8px;

    cursor:pointer;

    color:#fff;

    font-family:"danaFaNum";

    font-size:14px;

    font-weight:600;

    padding:10px 0;

}

.material-pack-radios input{

    width:18px;
    height:18px;

}


/*مخفی کردن قیمت دوم بعد متغیر*/

.woocommerce-variation-price{
    display:none !important;
}/* End custom CSS */