/*
Theme Name: TempShop.ir
Theme URI: https://TempShop.ir
Description: Designer Theme Wordpress
Author: TempShop.ir
Author URI: TempShop.ir
Version: 1.0
*/
:root {
    --primary-color: #15C502 !important;
    --second-color: #19D405 !important;
    --tree-color: #FFA700 !important;
}
/* Font Definitions */
@font-face {
    font-family: "Num-Bold";
    font-weight: normal;
    src: url("assets/fonts/Num-Bold.woff") format("woff");
}
@font-face {
    font-family: "Num-Medium";
    font-weight: normal;
    src: url("assets/fonts/Num-Medium.woff") format("woff");
}
@font-face {
    font-family: "Num-Light";
    font-weight: normal;
    src: url("assets/fonts/Num-Light.woff") format("woff");
}
@font-face {
    font-family: "AwesomePro";
    font-style: normal;
    font-weight: 300;
    font-display: auto;
    src: url("assets/fonts/AwesomePro.woff") format("woff");
}
@font-face {
    font-family: "AwesomeFree";
    font-style: normal;
	word-spacing:-1px;
    font-weight: 300;
    font-display: auto;
    src: url("assets/fonts/AwesomeFree.woff") format("woff");
}
/* Global Styles */
body {
    background-color:#F6F6F8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Num-Light;
	overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	transition: all 0.3s ease;
    
}
*:hover {
  transition: all 0.3s ease;
}


a, a:hover {
    text-decoration: none;
	
}
strong{
font-family: Num-Medium, sans-serif;
font-weight: normal;
}
/* Input and Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 15px !important;
    font-family: Num-Light !important;
    font-size: 16px;
    color: #888 !important; /* Assuming the last color definition is preferred */
    border: 2px solid #f9fafb !important;
    border-radius: 8px !important;
    outline: none;
    box-shadow: none !important;
    box-sizing: border-box !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border-color: #eee !important;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475a6b' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 18px;
    padding-left: 45px;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
    cursor: pointer;
    accent-color:#EBF7E1;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
    border-color: #eee !important;
}
label {
    display: inline-block;
    margin-bottom: 6px;
    font-family: Num-Medium, sans-serif;
    font-size: 15px;
    color: #444;
    cursor: pointer;
}
fieldset {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
legend {
    font-family: Num-Medium, sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    padding: 0 10px;
}

/* Buttons and Links */
button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: Num-Medium, sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    
    border: none;
    border-radius: 8px;
    cursor: pointer;
    
    background-color: transparent;
    color: inherit;
}
.woocommerce img, .woocommerce-page img {
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}
.min-page .woocommerce-customer-details{display:none}


.btn-primary,
button[type="submit"],
input[type="submit"] {
    background-color: var(--primary-color);
    color: #ffffff !important;
	
}
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: var(--second-color);
	
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
	
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
	
}
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 8px;
    background-color: #f9fafb;
    color: var(--primary-color);
    font-size: 20px;
	
}
.btn-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
	
}
button:disabled,
.button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
	
}
.content-sections a,
.min-page a {
    color:#0000EE;    
}

/* Utility Classes */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-primary { color: var(--primary-color); }
.text-success { color: var(--primary-color); }
.text-danger { color: #ef4444; }
.text-warning { color: #f59e0b; }
.text-muted { color: #64748b; }
.bg-primary { background-color: var(--primary-color); }
.bg-light { background-color: #f9fafb; }
.bg-#fff { background-color: #ffffff; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Num-Medium !important;
    color: #444;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: normal !important;
}
h1 { font-size: 20px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
h4 { font-size: 18px; }
h5 { font-size: 12px; }
h6 { font-size: 10px; }
p {
    font-family: Num-Light, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}
ul, ol {
    margin: 15px 15px 15px 20px;
    color: #475569;
    line-height: 1.8;
}
li { margin-bottom: 5px; }

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Num-Light, sans-serif;
}
th, td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #e2e8f0;
}
th {
    background-color: #f9fafb;
    font-family: Num-Medium, sans-serif;
    color: #444;
}

/* Code and Pre */
pre, code {
    font-family: monospace;
    background-color: #f1f5f9;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 14px;
    direction: ltr;
    text-align: left;
}
pre {
    padding: 15px;
    overflow-x: auto;
}
.container {
	max-width:1400px;
	width:100%;
	margin:0 auto;
}
.site-header{
	width:100%;
}


.product-summary {
	flex:1;
	display:flex;
	flex-direction:column;
	justify-content:center;
}	

/* Navigation Bar */
.navbar {
    top: 0;
    width: 100%;
    z-index: 1000;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    position: relative; /* اضافه شد: تا مگامنو نسبت به این کادر 1400 پیکسلی وسط‌چین شود */
}
.logo-section {
    display: inline-block;
    vertical-align: middle;
}
.logo {
    width: auto;
    height: 60px;
    display: inline-block;
    margin: 20px 0;
}
.logo img {
    width: 100%;
    height: auto;
}

.menu-section {
    flex: 1;
    margin: 0 10px;
    /* position: relative; حذف شد تا مانع وسط‌چین شدن مگامنو نشود */
}
.main-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}
.menu-item { 
    position: relative; /* برای اینکه زیرمنوی ساده دقیقا زیر کلمه باز شود */
}

/* ضروری: آیتم دارای مگامنو آزاد می‌شود تا مگامنو به جای کلمه، کل کادر هدر را معیار قرار دهد */
.menu-item:has(.mega-menu) { 
    position: static; 
} 

.menu-link {
    text-decoration: none;
    color: #444;
    font-weight: normal;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-family: Num-Medium;
}
.menu-link:hover { color: var(--primary-color); }
.menu-link i:first-child {
    font-size: 18px;
    color: var(--primary-color);
}
.menu-link .fa-chevron-down {
    font-size: 12px;
    color: #5a6a7a;
    margin-right: 4px;
}

/* استایل زیرمنوی ساده */
.simple-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
    padding: 16px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 100;
    backdrop-filter: blur(4px);
    margin-top: 5px;
}
.menu-item:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}
.simple-dropdown a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: #5a6a7a;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    margin: 2px 0;
}
.simple-dropdown a i {
    width: 22px;
    font-size: 16px;
    color: #5a6a7a;
}
.simple-dropdown a:hover {
    background: #f9fafb;
    color: var(--primary-color);
}
.simple-dropdown a:hover i {
    color: var(--primary-color);
}

/* استایل مگامنو (اصلاح شده برای قرارگیری دقیق در وسط) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0; /* چسبیدن به لبه چپ nav-container */
    right: 0; /* چسبیدن به لبه راست nav-container */
    width: 100%; /* عرض دقیقاً برابر با کادر پدر یعنی 1400 پیکسل می‌شود */
    transform: translateY(20px); /* فقط حرکت عمودی برای انیمیشن */
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.6fr;
    gap: 24px;
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
    direction: rtl;
    margin-top: -15px;
}
.menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px); /* فقط حرکت عمودی */
}

/* استایل ستون‌ها و محتوای مگامنو */
.mega-col {
    background: #fff;
    border-radius: 8px;
    padding: 20px 16px;
    border: 1px solid transparent;
}
.mega-col:hover { background: #f9fafb; }

.mega-col:hover .mega-title i { background: #fff; }
.mega-col.special .mega-title i{ background: #fff; }


.mega-col .mega-title{
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #e2e8f0;
    font-family: Num-Medium;
}
.mega-col .mega-title i {
    font-size: 24px;
    background: #f9fafb;
    border-radius: 8px;
    color: var(--primary-color);
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
}
.mega-col .sub-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mega-col .sub-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5a6a7a;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
}
.mega-col .sub-links a i {
    width: 22px;
    font-size: 15px;
    color: var(--primary-color);
}
.mega-col .sub-links a:hover {
    background: #fff;
    color: var(--primary-color);
}
.mega-col .view-all {
    margin-top: 16px;
    padding: 8px 10px;
    background: #f9fafb;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: normal;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: fit-content;
    font-family: Num-Medium, sans-serif;
}
.mega-col .view-all i { font-size: 12px; }
.mega-col .view-all:hover {
    background: var(--primary-color);
    color: #fff;
    gap: 12px;
}
.mega-col.special { background: #f9fafb; }
.mega-col.special h3 i { background: #fff; }

.special-offer {
    background: #fff;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    margin-bottom: 20px;
}
.special-offer .offer-icon {
    font-size: 50px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.special-offer h4 {
    color: #444;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: Num-Medium !important;
    font-weight: normal;
}
.special-offer p {
    color: #5a6a7a;
    font-size: 13px;
    margin-bottom: 15px;
}
.special-offer .offer-price {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    display: inline-block;
    font-weight: normal;
}
.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.brand-tag {
    color: var(--primary-color);
    margin-left: 5px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    color: #5a6a7a;  
    cursor: default;		
}
.brand-tag:hover {
    background: var(--primary-color);
    color: #fff;	
}

/* Header Tools */
.tools-section {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-toggle i,
.cart-toggle i{
    background: #fff;
    border: none;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}
.search-toggle i:hover,
.cart-toggle i:hover {
    background: var(--primary-color);
    color: #fff;
}
.cart-toggle { position: relative; }

.cart-count {
    position: absolute;
    top: -6px;
    right: -4px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    border-radius: 8px;
    width: 24px;
    text-align: center;
    border: 2px solid #fff;
    font-family: Num-Light;
    font-weight: normal;
    height: 24px;
    line-height: 24px;
}

/* User Section */
.user-section { position: relative; }
.user-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: normal;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Num-Medium;
    width: auto;
}
.user-btn i { font-size: 16px; }
.user-btn:hover { background: var(--second-color); }
.user-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
	margin-top: 8px;
    border-radius: 8px;
    padding: 14px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 100;
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
}
.user-section.active .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}
.user-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #5a6a7a;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
}
.user-menu a i {
    width: 20px;
    color: var(--primary-color);
}
.user-menu a:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
	margin:0;
}
.mobile-menu-toggle i{
background: #fff;
  border: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;    
}
.mobile-menu-toggle i:hover {
    background: var(--primary-color);
    color: #fff;
}
.logo-m{width: auto;height: 55px;}
.logo-m img{width: auto;height:55px;}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #fff;
    z-index:9999;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-mobile-menu i{
    background: #f9fafb;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: #ddd;
    font-size: 20px;
    cursor: pointer;
    line-height: 45px;
    position: absolute;
    left: 15px;
    top: 20px;
}
.close-mobile-menu i:hover {
    background: var(--primary-color);
    color: #fff;
}
.mobile-menu-content { padding:0 20px 20px 20px; }
.mobile-menu-item { border-bottom: 1px solid #f9fafb; }
.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #444;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: normal;
    font-family: Num-Medium;
}
.mobile-menu-link i{font-size: 14px;}
.mobile-menu-link span{line-height: 32px;}
.mobile-menu-link span i:first-child {
  width: 36px;
  height: 36px;
  background: #f9fafb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  float: right;
  margin-left: 10px;
}


.mobile-submenu {
    display: none;
    padding-right: 20px;
    background: #f9fafb;
    border-radius: 8px;
    margin: 8px 0 16px;
    padding: 12px;
}
.mobile-submenu.active { display: block; }
.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    color: #5a6a7a;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
}
.mobile-submenu a i {
    width: 18px;
    color: var(--primary-color);
}
.mobile-submenu a:hover {
    background: #fff;
    color: var(--primary-color);
}
.mobile-mega-grid { display: grid; gap: 16px; }
.mobile-mega-col h4 {
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mobile-mega-col{margin-bottom:10px;}
.mobile-mega-title{font-family:Num-Medium ;color: #444;font-size: 18px;margin-bottom:10px;}
.mobile-mega-title i:first-child {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  float: right;
  margin-left: 10px;
}


/* Search Popup */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 244, 244, 0.73);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
}
.search-popup.active {
    opacity: 1;
    visibility: visible;
}
.search-popup-content {
    width: 600px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
}
.search-popup-content input {
    flex: 1;
    border: none !important;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    background: transparent;
}
.search-popup-content button {
    width: 60px;
    height: 60px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 24px;   
    line-height: 65px;
}
.search-popup-content button:hover { background: var(--second-color); }
.close-search {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary-color);
}
.close-search:hover {
    background:var(--second-color);
}


/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    left: -500px;
    width: 450px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    font-family: Num-Light;
}
.cart-sidebar.open { left: 0; }
.cart-header {
    padding: 20px 25px;
    background: #fff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed #e2e8f0;
}
.cart-header h3 {
    font-size: 18px;
   font-family:Num-Medium !important;
    margin: 0;
    color: #444;
}
.cart-header h3 i {
    font-size: 20px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    margin-left: 5px;
}

.cart-title-sidebar i{width: 36px;
  height: 36px;
  background: #f9fafb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  float: right;
  margin-left: 10px;}

.cart-items-count {
    font-size: 14px;
    font-family: Num-Medium;
    float: left;
    width: auto;
    overflow: hidden;
    position: relative;
    text-align: left;
    background: #f9fafb;
    color: var(--primary-color);
    padding: 1px 5px;
    margin-bottom: 5px;
    border-radius: 4px;
}
.close-cart i{
    background: #f9fafb;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: #ddd;
    font-size: 20px;
    cursor: pointer;
    line-height: 45px;
    position: absolute;
    left: 10px;
    top: 10px;
}
.close-cart i:hover {
    background: var(--primary-color);
    color: #fff;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}
.cart-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #888;
}
.cart-empty-message i {
    font-size: 70px;
    color: #e2e8f0;
    margin-bottom: 15px;
}
.cart-empty-message p {
    font-size: 16px;
    margin: 0;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 12px;
    
}
.cart-item-image {
    width: 70px;
    height:70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    
}
.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.cart-item-details {
    flex: 1;
    min-width: 0;
}
.cart-item-title {
    font-size: 14px;
    font-family: Num-Medium;
    color: #1e293b;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight:normal !important;
}
.cart-item-title:hover { color: var(--primary-color); }
.cart-item-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: normal;
    margin-bottom: 2px;
    font-family: Num-Medium;
}
.cart-item-quantity {
    font-size: 12px;
    color: #64748b;
}

.cart-item-remove {
    color: #888;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 36px;
    height: 36px;
}
.cart-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}
.cart-footer {
    padding: 20px 25px 50px 25px;
    background: #fff;
    border-top: 1px solid #f9fafb;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: Num-Medium;
    color: #1e293b;
    width: 100%;
}
.cart-total span:last-child {
    color: var(--primary-color);
    font-size: 22px;
   font-family:Num-Medium !important;
}
.cart-total .woocommerce-Price-currencySymbol {
    font-family: Num-Light !important;
    color: #888 !important;
    font-size: 14px !important;
}
.checkout-btn {
    display: block;
    width: 100%;
    padding: 20px 15px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-family: Num-Medium;
    font-size: 18px;
    
    border: none;
    cursor: pointer;
}
.checkout-btn i {
    margin-left: 8px;
    font-size: 18px;
}
.checkout-btn:hover { background: var(--second-color); }
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 244, 244, 0.73);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    
}
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero-search-section{width: 100%;margin-top: 100px;}


/* Typography */
.hero-title {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 20px;
	text-align: center;
    line-height: 1.3;
   font-family:Num-Bold !important;
    letter-spacing: -5px;
}

.hero-title span {
    color: var(--primary-color);
}
.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 auto 40px;
    line-height: 1.8;
    max-width: 600px;
	text-align: center;
}

.highlight-count {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: bold;
    margin: 0 4px;
    text-align: center;
}

.hero-title{
  font-size:40px;
  direction: rtl;
}



/* Search Wrapper */
.search-wrapper {
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 80px;
}
.search-wrapper:focus-within { box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1); }
.search-wrapper input[type="text"],.search-wrapper input.search-input{ border: none !important; }
.search-wrapper form { width: 100%; }
.search-input {
    flex: 1;
    border: none;
    padding: 2px 15px !important;
    font-size: 18px !important;
    background: transparent;
    color: #1e2a41;
    outline: none;
    width: 100% !important;
    float: right;
}
.search-input::placeholder {
    color: #a0b3cc;
    font-weight: 300;
}
.search-popup-content input[type="text"]:focus,
.search-popup-content input,
input.newsletter-input,
input.newsletter-input:focus,
.search-wrapper input[type="text"]:focus,
.search-wrapper input[type="text"] {
    padding: none;
    color: none;
    background-color: none;
    border: none;
    box-shadow: none;
}
.search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;       
    margin-left: 5px;
    float: left;
    position: absolute;
    left: 5px;
    top: 8px;
    height: 65px;
    width: 65px;
}
.search-btn:hover { background: var(--second-color); }
.popular-searches {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #475569;
    font-size: 15px;
    margin-bottom: 20px;
}
.popular-searches span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
}
.popular-searches span:hover {
    background: var(--primary-color);
    cursor: pointer;
    color: #fff;
}
.popular-searches span:hover i { color: #fff; }
.popular-searches i {
    color: var(--primary-color);
    font-size: 22px;
    margin-left: 5px;
}




#totopscroller { text-align: center; }
#totopscroller .fa-angle-double-down {
    font-size: 45px;
    height: 60px;
    width: 35px;
    margin: 30px auto;
    text-align: center;
    line-height: 60px;
    color:#E5E7EB;
    cursor: pointer;
    animation: fadeInDown linear 1s infinite !important;
}
@-webkit-keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translateY(-20px); } 100% { opacity: 1; -webkit-transform: translateY(0); } }
@-moz-keyframes { 0% { opacity: 0; -moz-transform: translateY(-20px); } 100% { opacity: 1; -moz-transform: translateY(0); } }
@-o-keyframes fadeInDown { 0% { opacity: 0; -o-transform: translateY(-20px); } 100% { opacity: 1; -o-transform: translateY(0); } }
@keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Advanced Section Header */
.section-header-advanced {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 40px 0;
    direction: rtl;
}
.section-header-advanced .header-icon {
    flex: 0 0 auto;
    width: 65px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 65px;
}
.section-header-advanced .header-icon i {
    font-size: 34px;
    color: #fff;
    
}
.section-header-advanced .header-text {
    flex: 1;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: normal;
}
.section-header-advanced .header-text h2 {
    font-size: 24px;
    font-family: Num-Bold !important;
    color: #444;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.section-header-advanced .header-text h2 span {
    color: var(--primary-color);
    font-family: Num-Bold !important;
}
.section-header-advanced .header-text .description {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}
.section-header-advanced .header-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    padding: 0 25px;
    border-radius: 8px;
    color: #444;
    font-family: Num-Light;
    font-size: 16px;
    text-decoration: none;
    
    height: 60px;
}
.section-header-advanced .header-btn i {
    font-size: 18px;
    color: var(--primary-color);
    
}
.section-header-advanced .header-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.section-header-advanced .header-btn:hover i {
    color: #fff;
    transform: translateX(-4px);
}

/* Themes Grid */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.theme-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    
    position: relative;
    padding: 15px 15px 15px 15px;
}
.theme-card:hover {
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
}
.price-section .old-price {
    font-size: 16px;
    color: #888;
    position: relative;
    margin-bottom: -2px;
    display: block;
}
.price-section .old-price b {
    background: #f00;
    color: #fff;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 5px;
}
.old-price .woocommerce-Price-currencySymbol { display: none; }
.woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #888;
    font-family: Num-Light;
    font-weight: normal;
}
.price-box .woocommerce-Price-currencySymbol { font-size: 14px; }
.price-box .woocommerce-Price-currencySymbol {
    font-size: 16px;
    color: #888;
    font-family: Num-Light;
    font-weight: normal;
}
.price-box .old-price .woocommerce-Price-currencySymbol { display: none; }
.theme-sale {
    background: var(--tree-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 48px;
    height: 48px;
    font-size: 11px;
    font-family: Num-Medium;
}
.theme-image {
    height: 305px;
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.theme-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.theme-info { width: 100%; }
.theme-category {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
}
.theme-name {
    font-size: 16px;
    font-weight: normal !important;
    color: #444;
    line-height: 1.6;
    min-height:55px;
    margin: 10px 0;
}
.theme-name a {
    text-decoration: none;
    color: inherit;
}
.theme-name a:hover { color: var(--primary-color); }
.theme-footer {
    align-items: center;
    justify-content: space-between;
    border-top: 2px dashed #f9fafb;
    padding: 10px 0;
    height: 70px;
    display: block;
}
.theme-footer .added_to_cart { display: none; }
.plugin-footer .added_to_cart { display: none; }
.price-section {
    width: auto;
    text-align: right;
    float: right;
    height: 50px;
}
.free-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}
.install-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e1ebff;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.install-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Section Header */
.section-header {
    text-align: right;
    margin-bottom: 50px;
    margin-top: 50px;
}
.section-header h2 {
    font-size: 32px;
   font-family:Num-Medium !important;
    color: #444;
    margin-bottom: 5px;
}
.section-header h2 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
   font-family:Num-Medium !important;
}
.section-header p {
    color: #444;
    position: relative;
    display: inline-block;
    font-family: Num-Light;
}

/* Plugins Grid */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.plugin-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 15px;
}
.plugin-card:hover {
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
}
.plugin-image {
    height: 210px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.plugin-image img {
    border-radius: 8px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
}
.plugin-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.plugin-name {
    font-size: 16px;
    font-family: Num-Medium;
    margin-bottom: 0px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    font-weight: normal;
}
.plugin-name a {
    color: #444;
display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;	
}
.plugin-name a:hover { color: var(--primary-color); }
.plugin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 2px dashed #f9fafb;
    padding-top: 10px;
}
.plugin-footer .price-section {
    width: 120px;
    text-align: right;
    transform: scale(0.85);
}
.plugin-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    width: 80px;
    line-height: 10px;
}
.plugin-card .current-price {
    font-size: 20px;
    font-weight: normal;
    color: var(--primary-color);
    width: 100%;
   font-family:Num-Medium !important;
}
.plugin-card .old-price {
    font-size: 12px;
    color: #888;
}
.plugin-sale {
    background: var(--tree-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 40px;
    height: 40px;
    font-size: 11px;
    margin-left: 5px;
    font-family: Num-Medium;
}
.free-badge {
    background: #5090f9;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: normal;
    font-family: Num-Medium;
    margin-top: 5px;
}
.install-btn {
    font-size: 20px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    float: left;
    margin-left: 5px;
}
.plugin-footer .install-btn { margin-top: 5px; }
.install-btn:hover {
    background: var(--primary-color);
    color: #fff;
    
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.plugin-badge { animation: pulse 2s infinite; }

/* Footer */
.footer { position: relative; }
.footer-container {
   width: 1400px;
    margin: 0 auto;
    padding: 80px 0 35px 0;
    position: relative;
    z-index: 2;
}
.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1.8fr 1.2fr 1.2fr;
    gap: 35px;
    margin-bottom: 50px;
}
.footer-column {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;    
}
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}
.footer-icon-item {
    text-align: center;
    flex: 1;
    background: #f9fafb;
    height: 125px;
    width: 120px;
    padding: 10px;
    border-radius: 8px;
}
.footer-icon-item img {
    height: auto;
    width: 100%;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
    color: #888;
    text-align: justify;
}
.footer-column h3 {
    color: #444;
    font-size: 18px;
    font-family: Num-Bold !important;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-column h3 i {
    font-size: 20px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
}
.footer-links {
    list-style: none;
}
ul.footer-links {
    margin:0; 
        
}
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}
.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-8px);
    
}
.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}
.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}
.contact-info { list-style: none; }
ul.contact-info{
 margin:0;
 padding: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #475569;
    
}
.contact-info li i {
    width: 38px;
    height: 38px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    
}
.contact-info li span { flex: 1; font-weight: 500; }

/* Footer Middle Section */
.footer-middle {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px 35px;
    background: #fff;
    border-radius: 8px;
}
.newsletter { display: flex; flex-direction: column; }
.newsletter h3 {
    color: #444;
    font-size: 18px;
    font-family: Num-Bold !important;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.newsletter h3 i {
    font-size: 28px;
    color: var(--primary-color);
    background: #f9fafb;
    border-radius: 8px;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
}
.newsletter p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #475569;
    line-height: 1.8;
    padding-right: 62px;
	text-align: right;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #f9fafb;
}
.newsletter-form input[type="email"] { border: none !important; }
.newsletter-form:focus-within { border-color: #eee !important; }
.newsletter-input {
    flex: 1;
    padding: 15px 20px !important;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: #444;
    font-size: 14px;
    outline: none;
}
.newsletter-input::placeholder { color: #64748b; }
.newsletter-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    
    display: flex;
    align-items: center;
    gap: 10px;
    
    font-family: Num-Medium;
}
.newsletter-btn:hover { background: var(--second-color); }
.newsletter-btn i { font-size: 18px; }
.stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
    font-size: 38px;
   font-family:Num-Bold !important;
    color: var(--primary-color);
    line-height: 2.2;
    background: #f9fafb;
    height: 80px;
    border-radius:8px;
    width: 140px;
    margin: 0 auto;
}
.stat-label {
    font-size: 16px;
    color: #888;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}
.stat-label i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Trust Section */
.trust-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    margin-bottom: 40px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    
    line-height: 30px;
    background: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    width: 23%;
}
.trust-badge i {
    font-size: 32px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 8px;
}
.trust-badge span {
    display: flex;
    flex-direction: column;
}
.trust-badge strong {
    color: #444;
    font-size: 16px;
   font-family:Num-Bold !important;
    font-weight: normal;
}
.trust-badge small {
    font-size: 13px;
    color: #666;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 2px dashed #e2e8f0;
    font-size: 14px;
}
.copyright {
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: normal;
}
.copyright i {
    color: #ff3366;
    animation: heartbeat 1.5s ease infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.footer-bottom-links {
    display: flex;
    gap: 30px;
}
.footer-bottom-links a {
    color: #444;
    text-decoration: none;
    
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-bottom-links a i {
    color: var(--primary-color);
    font-size: 12px;
    opacity: 0;
    
}
.footer-bottom-links a:hover {
    color: var(--primary-color);
}
.footer-bottom-links a:hover i {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top i{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(174, 175, 177, 0.15);   
    z-index: 100;
}
.back-to-top i:hover{
    background: var(--second-color);
    color: #fff;
    transform: translateY(-2px) scale(1.1);
    border-color: var(--primary-color);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Announcement Bar */
.top-announcement {
    background:#999;
    position: relative;
    width: 100%;
    z-index: 1001;
    font-family: Num-Light, sans-serif;
    animation: slideDownAnnouncement 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: top;
}
@keyframes slideDownAnnouncement {
    0% { opacity: 0; transform: translateY(-100%) scaleY(0.8); }
    100% { opacity: 1; transform: translateY(0) scaleY(1); }
}
.announcement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    direction: rtl;
}
.announcement-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
.announcement-content i {
    font-size: 36px;
    padding: 16px;
    
    color: #fff;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.announcement-text {
    font-size: 18px;
    color: #eee;
    font-weight: 450;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 16px 6px 8px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    width: 100%;
    min-height: 70px;
}
.announcement-text i.fal.fa-bullhorn { display: none; }
a.announcement-link {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
padding: 10px 20px;
  border-radius: 6px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family:Num-Light;
    float: left;
    position: absolute;
    left: 10px;
}
a.announcement-link:hover {
    background: var(--second-color);
    gap: 12px;
}
button.announcement-close {
    background: #a3a3a3;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    border: none !important;
    padding: 0;
}
button.announcement-close:hover {
    background: #acacac;
}
.announcement-content i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(0);
}
.announcement-content i:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
}

/* Product Page Specific Styles */
.product-page {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: Num-Light, sans-serif;
}
.product-header {
    transform: scale(0.96);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    isolation: isolate;
    margin-bottom: 10px;
}
.product-gallery {
    position: relative;
    width: 750px;
    height:540px;
    overflow: hidden;
    border: 5px solid #fff;
    z-index: 2;
    background-color: #fff;
    cursor: move;
    float: right;
    margin-left: 50px;
    margin-bottom: 10px;
    box-shadow:0 15px 30px -15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.product-gallery img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}
.product-title {
    font-size: 26px;
    font-family: Num-Bold !important;
    color: #444;
    line-height: 1.8;
    margin: 30px 0 20px 0;
    display: flex;
    position: relative;
    padding-left: 120px;
}

.version-meta {
	font-size:15px;
	color:#E8E8EA;
	font-family: Num-Light;
	background: #888;
	padding: 3px 10px 5px 10px;
	height: auto;
	border-radius: 4px;
	margin-top: 3px;
	width: auto;
	text-align: center;
	position: absolute;
	left: 0;
	}
.version-meta b {
	color:#fff;
	font-weight:normal;
	}


.price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 18px;
    padding: 0;
    width: 100%;
}
.price-all {
    width: 100%;
    display: inline-grid;
    margin: 0;
}
.current-price{
font-family:Num-Bold !important;
 font-size: 34px;
 color:var(--primary-color);
 margin: 0;
}
.theme-card .current-price {
    font-size: 22px;
    font-weight: normal;
    color: var(--primary-color);
    width: 100%;
   font-family:Num-Medium !important;
}

.old-price bdi {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
}
.discount-badge {
    background: #f00;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    position: relative;
    font-family: Num-Medium;
    font-weight: normal;
    float: right;
    padding: 5px 5px 2px 5px;
    line-height: 25px;
    height: 30px;
}
.regular-badge{float: right;margin-left: 10px;}
.regular-badge bdi {
  font-size: 20px;
  color: #888;
  text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.added { display: none; }
.woocommerce a.added_to_cart {
    background: #666;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    
    position: relative;
    overflow: hidden;
    padding: 15px 35px;
    font-family: Num-Medium;
    font-weight: normal;
    border-radius: 8px;
    cursor: pointer;
    
    font-size: 18px;
    width: 260px;
}
.woocommerce a.added_to_cart:hover { background: #444; color: #fff; }
.woocommerce a.added_to_cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
}
.woocommerce a.added_to_cart:hover::after {
    width: 270px;
    height: 270px;
    
}
.woocommerce a.added_to_cart::before {
    content: "\f00c";
    font-family: "AwesomePro";
    margin-right: 5px;
    display: inline-block;
}
.button.add_to_cart_button.loading::after { display: none; }
.woocommerce a.button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    align-items: center;
    gap: 10px;
    
    position: relative;
    overflow: hidden;
    padding: 16px 22px;
    font-family: Num-Medium;
    font-weight: normal;
    border-radius: 8px;
    cursor: pointer;
    
    font-size: 16px;
    width: auto;
}
.woocommerce a.button:hover { background: var(--second-color); color: #fff; }
.woocommerce a.button i {  }
.btn-outline {
    background:var(--tree-color);
    color: #fff;
    border: none;
    
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    font-family: Num-Medium;
    font-weight: normal;
    border-radius: 8px;
    gap: 10px;
    cursor: pointer;
    
    font-size: 18px;
    width: 292.5px;
    height: 70px;
    text-align: center;
}
.btn-outline:hover {opacity:0.8; }
.btn-outline i {
    
    margin-left: 5px;
}
.product-features-mini {
    display: flex;
    gap: 20px;
    font-size: 14px;
    margin-top: 8px;
}
.product-features-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Section Navigation */
.section-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 5px 0;
    width: 100%;
    position: sticky;
    top: 0;
    opacity: 0;
    z-index: 100;
    padding: 5px 0;
    margin-bottom: 20px;
    background-color: transparent;
    box-shadow: none;
}
.section-nav.visible { opacity: 1; transform: translateY(0); }
.section-nav.sticky {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    padding: 5px 5px;
}
.nav-btn {
    color: #444;
    font-size: 18px;
    font-family:Num-Light, sans-serif;
    font-weight: normal;
    border-radius: 8px;
    background: #fff;
    border: none;
    padding: 15px 24px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-btn i {
    font-size: 24px;
    color: var(--primary-color);
}
.nav-btn:hover i { color: #fff; }
.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.nav-btn.active {
    background: var(--primary-color);
    color: #fff;
}
.nav-btn.active i { color: #fff; }

/* Product Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 2.0fr 1.0fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}
.specs-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
    background: #fff;
    border-radius: 8px;
    padding: 28px 22px;
}
.specs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}
.specs-header i {
    font-size: 28px;
    color: var(--primary-color);
    background: #f9fafb;
    border-radius: 8px;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
}
.specs-header h3 {
    font-size: 18px;
    font-family: Num-Bold !important;
    color: #444;
    margin: 0;
}
.specs-list {
    list-style: none;
    margin-bottom: 25px;
}
ul.specs-list {
    margin: 0;
}
ul.specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 2px dotted #f9fafb;
    font-size: 16px;
    color: #888;
    margin-bottom: 0;
}
ul.specs-list li a {
    color: #888;
}
ul.specs-list li a:hover { color: var(--primary-color); }
.specs-list li:last-child { border-bottom: none; }
.specs-list li i {
    width: 36px;
    height: 36px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    float: right;
    margin-left: 10px;
}
.specs-list li strong {
    margin-left: 5px;
    color: #444;
    font-family: Num-Medium, sans-serif;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0;
}
.specs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.specs-tag {
    background: #f9fafb;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    
}
.specs-tag i {
    margin-left: 5px;
}
.specs-tag:hover {
    background: var(--primary-color);
    color: #fff;
}
.specs-tag:hover i { color: #fff; }

/* Content Sections */
.content-sections {
    background: #fff;
    border-radius: 8px;
    padding:28px 22px;
}
.section {
    scroll-margin-top: 80px;
    margin-bottom: 40px;
}
.section:last-child { margin-bottom: 0; }
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 18px;
    font-family: Num-Bold !important;
    color: #444;
}
.section-title i {
    font-size: 28px;
    color: var(--primary-color);
    background: #f9fafb;
    border-radius: 8px;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
}
.section p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.section ul {
    margin-right: 20px;
    line-height: 2;
}

/* Accordion */
.accordion-box {
    background: #fff;
    border-radius: 8px;
    padding:10px 20px;
    margin: 30px 0;
    border: 2px solid #f9fafb;
}
.accordion-item ul, .accordion-item ol {
    margin: 0;
    color: #475569;
    line-height: 1;
	list-style: none !important;
}
.accordion-item ul br, .accordion-item ol br { display: none; }
.accordion-item ul li, .accordion-item ol li {
    padding: 10px 15px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    border-radius: 4px;
}
.accordion-item ul li:nth-of-type(odd), .accordion-item ol li:nth-of-type(odd) { background-color: #f9fafb; }
.accordion-item { border-bottom: 1px solid #f9fafb; }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: right;
    font-size: 16px;
    font-weight: normal;
    color: #444;
    
    font-family: Num-Medium, sans-serif;
}
.accordion-header i {
    font-size: 20px;
    color: var(--primary-color);
}
.accordion-header[aria-expanded="true"] i.fa-chevron-down { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    color: #475569;
    line-height: 1.8;
    font-family: Num-Light, sans-serif;
}
.accordion-content.active { max-height: 600px; }
.accordion-content-inner {
    font-size: 14px;
    margin-bottom: 20px;
    padding:5px 10px;
}

/* Info Items */
.date-item {
    font-family: Num-Medium, sans-serif;
    font-size: 14px;
    float: left;
    background: var(--primary-color);
    padding: 2px 10px;
    margin: 3px 15px;
    border-radius: 4px;
    color: #fff;
    margin-top: 0px;
}
.ainfo {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    direction: rtl;
}
.ainfo-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.garanty span::before {
  content: "\f132";
    font-family: "AwesomePro";
}
.download span::before{
  content: "\f021";
    font-family: "AwesomePro";
}
.update span::before{
  content: "\f021";
    font-family: "AwesomePro";
}
.support span::before{
  content: "\f4fd";
    font-family: "AwesomePro";
}
.exclusive span::before{
  content: "\f5a2";
    font-family: "AwesomePro";
}
.speciall span::before{
  content: "\f2eb";
    font-family: "AwesomePro";
}
.iran span::before{
  content: "\f024";
    font-family: "AwesomePro";
}
.license span::before{
  content: "\f2f7";
    font-family: "AwesomePro";
}
.responsive span::before{
  content: "\f5fc";
    font-family: "AwesomePro";
} 
.ioncube span::before{
  content: "\f3ed";
    font-family: "AwesomePro";
} 



.garanty span::before,.download span::before,.update span::before,.support span::before,
.exclusive span::before,.speciall span::before,.iran span::before,.license span::before,.responsive span::before,.ioncube span::before  {
width: 67.1px;
  height: 67.1px;
  border-radius: 8px;
  background: #ffffff;
  color:#888;
  font-size: 32px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 67px;
}


.ainfo-item.garanty:hover span::before {
  color: #ffffff;
  background: #00BFA5; /* Material: Teal A400 */
}

.ainfo-item.download:hover span::before {
  background: #F50057; /* Material: Pink A400 */
  color: #ffffff;
}

.ainfo-item.update:hover span::before {
  background: #00C853; /* Material: Green A700 */
  color: #ffffff;
}

.ainfo-item.support:hover span::before {
  background: #AA00FF; /* Material: Purple A700 */
  color: #ffffff;
}

.ainfo-item.ioncube:hover span::before {
  background: #2962FF; /* Material: Blue A700 */
  color: #ffffff;
}

.ainfo-item.speciall:hover span::before {
  background: #FFCA28; /* Material: Amber 400 */
  color: #ffffff;
}

.ainfo-item.iran:hover span::before {
  background: #42A5F5; /* Material: Blue 400 */
  color: #ffffff;
}

.ainfo-item.license:hover span::before {
  background: #D50000; /* Material: Red A700 */
  color: #ffffff;
}

.ainfo-item.responsive:hover span::before {
  background: #78909C; /* Material: Blue Grey 400 — خودش material هست */
  color: #ffffff;
}

.ainfo-item[data-tooltip]:before, .ainfo-item[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    bottom: 100%;
    right: 50%;
    transform: translateX(50%) translateY(5px);
    white-space: nowrap;
    z-index: 100;
}
.ainfo-item[data-tooltip]:before {
    content: "";
    border: 8px solid transparent;
    border-top-color: #1e293b;
    margin-bottom: -5px;
    transform: translateX(50%) translateY(5px);
}
.ainfo-item[data-tooltip]:after {
    content: attr(data-tooltip);
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 16px;
    font-weight:nurmal;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-family: Num-Light, sans-serif;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}
.ainfo-item[data-tooltip]:hover:before, .ainfo-item[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
    transform: translateX(50%) translateY(0);
}

/* Simple Page */
.simple-page { margin-top: 80px; }
.min-page {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 50px;
    
    margin-top: 80px;
    overflow: hidden;
}
.min-page h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f9fafb;
    font-size: 18px;
    font-family: Num-Medium;
    color: #444;
    font-weight: normal;
}
.min-page h2 {
    font-family: Num-Medium, sans-serif;
    font-size: 22px;
    color: #444;
    margin: 30px 0 20px;
}
.min-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}
.lin-50 {
    height: 10px;
    width: 100%;
    margin: 20px auto;
}
.lin-100 {
    height: 10px;
    width: 100%;
    margin: 45px auto;
}

/* Inner Header */
.inner-header {
    margin: 50px 0 20px auto;
    width: 100%;
}
.inner-header .container { padding: 0; }
.inner-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.inner-title {
    font-family: Num-Bold !important;
    font-size: 24px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
    color: #475569;
}
.breadcrumb a {
    color: #475569;
    text-decoration: none;
    
}
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb i {
    font-size: 14px;
    color: var(--primary-color);
}
.breadcrumb span {
    color: var(--primary-color);
    font-weight: 500;
}

/* Related Offers */
.related-offers {
    margin: 30px 0;
    border-radius: 8px;
}
.related-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.related-header i {
    font-size: 28px;
    color: var(--primary-color);
    background: #f9fafb;
    border-radius: 8px;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
}
.related-header h4 {
    font-size: 18px;
    font-family: Num-Bold !important;
    color: #444;
    margin: 0;
}
.related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.related-list li { margin-bottom: 12px; }
.related-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
}
.related-list li a i {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    
}
.related-list li a span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}
.related-list li a:hover {
    color:var(--primary-color);
}
.related-list li a:hover i {
    background: #fff;
    color: var(--primary-color);
}

/* Sale Timer */
.sale-timer {
    color: #444;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.timer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    font-size: 18px;
    
    font-family: Num-Light;
}
.timer-label i { font-size: 1.4rem; }
.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-right: auto;
}
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    backdrop-filter: blur(4px);
    padding: 10px 12px;
    border-radius: 8px;
    width: 65px;
}
.timer-value {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.2;
    font-family: Num-Bold !important;
    direction: ltr;
}
.timer-unit-text {
    font-size: 0.80rem;
    opacity: 0.9;
    
}
.timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ddd;
    margin: 0 -2px;
}
.sale-timer.expired { background: #64748b; }
.sale-timer.expired .timer-display {
    font-size: 1.1rem;
    font-weight: normal;
    font-family: Num-Medium;
}

/* Timer on Product Image (Scoped) */
.theme-image {
    position: relative;
    overflow: hidden;
}
.home-product-timer-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
}
.home-product-timer-wrapper .sale-timer {
    background: rgba(207, 207, 207, 0.59);
    color: #000;
    flex-wrap: nowrap;
    width: 96%;
    height: 70px;
    padding: 0;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    transform: translateX(-50%);
    left: 50%;
    backdrop-filter: blur(4px);
}
.home-product-timer-wrapper .timer-display {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    margin: 0 auto;
}
.home-product-timer-wrapper .timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 8px 2px;
    border-radius: 6px;
    width: 60px;
}
.home-product-timer-wrapper .timer-value {
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.2;
    font-family: Num-Medium !important;
    direction: ltr;
}
.home-product-timer-wrapper .timer-unit-text {
    font-size: 0.65rem;
    opacity: 0.9;
    
}
.home-product-timer-wrapper .timer-separator {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #ddd;
    margin: 0 -2px;
}
.home-product-timer-wrapper .sale-timer.expired { background: #64748b; }
.home-product-timer-wrapper .sale-timer.expired .timer-display {
    font-size: 1rem;
    font-weight: normal;
    font-family: Num-Medium;
}

/* Single Post/Comments */
body.single-post #comments {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f1f1f1;
    font-family: inherit;
}
body.single-post .comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}
body.single-post .comment-list, body.single-post .comment-list .children {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.single-post .comment-body {
    background: #ffffff;
    border: 2px solid #f9fafb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    
    position: relative;
}
body.single-post .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
body.single-post .comment-author .avatar {
    border-radius: 8px;
    width: 55px;
    height: 55px;
    margin-left: 15px;
}
body.single-post .comment-author b, body.single-post .comment-author cite {
    font-style: normal;
    font-weight: normal;
    font-size: 1.0rem;
    font-family: "Num-Medium";
    color: #444;
}
body.single-post .comment-meta {
    font-size: 0.85rem;
    margin-bottom: 15px;
}
body.single-post .comment-meta a {
    color: #888;
    text-decoration: none;
}
body.single-post .comment-meta .says { display: none; }
body.single-post .comment-content p {
    display: inline-block;
    color: #888;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}
body.single-post .reply a ,.woo-reply a{
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
padding: 2px 12px 5px 12px;
  border-radius: 4px;
  font-size: 13px;
    font-weight: normal;
    text-decoration: none;
}

body.single-post .reply a:hover ,.woo-reply a:hover{ background-color: var(--second-color); }
body.single-post .comment-list .children {
    padding-right: 40px;
    margin-top: 20px;
}
body.single-post #respond {
background: #ffffff;
  border: 2px solid #f9fafb;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  position: relative;	
	
}
body.single-post #reply-title,.comment-reply-title{
    font-size: 1.1rem;
    font-weight: normal;
	font-family: "Num-Medium";
    margin-bottom: 20px;
    color: #444;
}
body.single-post #reply-title small,.comment-reply-title  small{
    margin-right: 15px;
}
body.single-post .comment-form input[type="text"],
body.single-post .comment-form input[type="email"],
body.single-post .comment-form input[type="url"],
body.single-post .comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
    margin-bottom: 15px;
}
body.single-post .comment-form input:focus,
body.single-post .comment-form textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
body.single-post .comment-form textarea {
    height: 150px;
    resize: vertical;
    border-radius: 20px !important;
}
body.single-post .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
body.single-post .comment-form-cookies-consent input { margin-left: 8px; }
body.single-post .form-submit .submit a {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
}
body.single-post .form-submit .submit a:hover { background-color: var(--second-color); }
body.single-post .form-submit .submit:active { transform: scale(0.98); }
body.single-post .comment-list .children { padding-right: 15px; }
body.single-post .comment-author .avatar { width: 40px; height: 40px;  background: #fff;
  border: 1px solid var(--primary-color);
  padding:1px ; }
body.single-post #respond { padding: 20px; }

/* WooCommerce Review Form */
.woocommerce #review_form #respond .form-submit input {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: normal;
    font-size: 16px;
    
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Num-Medium;
    width: auto;
}
.woocommerce #review_form #respond .form-submit input:hover { background: var(--second-color); }

/* Pagination */
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
    direction: rtl;
}
.page-numbers-item { display: inline-flex; }
.page-numbers-item a,
.page-numbers-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 12px;
    background: #ffffff;
    border-radius: 8px;
    font-family: Num-Medium, sans-serif;
    font-size: 16px;
    color: #444;
    text-decoration: none;
    
    border: 1px solid transparent;
}
.page-numbers-item a:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.page-numbers-item span.active,
.page-numbers-item span.current {
    background: var(--primary-color);
    color: #ffffff;
    font-family: Num-Medium !important;
}
.page-numbers-item a i, .page-numbers-item span i {
    font-size: 20px;
    line-height: 1;
    color: var(--primary-color);
}
.page-numbers-item a:hover i { color: #ffffff; }

/* Description Box */
.description_in {
    position: relative;
    color: #86939e;
    background-color: #f9fafb;
    font-family: "Num-Light";
    padding: 20px;
    margin-bottom: 40px !important;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
    text-align: justify;
}
.description_in::before {
    content: "\f509";
    font-family: AwesomePro;
    left: 20px;
    position: absolute;
    transform-origin: right top;
    font-size: 130px;
    color: #7f7c7c0a;
    z-index: 0;
    bottom: 5px;
}
.description_in p{
margin: 0;    
}
/* Demo Button Icon */
.demo-btn i {
    font-size: 24px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    float: left;
    margin-left: 5px;
}
.demo-btn:hover i {
    color: #fff;
    background: var(--primary-color);
}
.cartt-btn i {
    font-size: 24px;
    color: var(--primary-color);
    background: #f9fafb;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    float: left;
    margin-left: 5px;
}
.cartt-btn:hover i {
    color: #fff;
    background: var(--primary-color);
}
.cart-btn i {
    font-size: 20px;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

/* WooCommerce Messages */
.woocommerce-message::before { color: #6c97bb !important; }
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 15px 55px !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
    position: relative;
    border: none !important;
    width: auto !important;
    padding-left: 15px !important;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message, .woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
    font-weight: normal !important;
    font-family: Num-Light !important;
}
.woocommerce-error a strong, .woocommerce-info a strong, .woocommerce-message a strong {
    font-weight: normal !important;
    font-family: Num-Medium !important;
}
.woocommerce-error {
background-color: #ffe3e3 !important;
  color: #e03131 !important;
  border: 1px solid #e7b3b3 !important;    
}
.woocommerce-info {
background-color: #ecfdf5 !important;
  color: #047857 !important;
  border: 1px solid #c4e6d6 !important;
}
.woocommerce-message {
background-color: #e2eef8 !important;
  border: 1px solid #c2daee !important;
  color: #228be6 !important;
}

.woocommerce-message::before { color:#73aac0 !important; }
.woocommerce-info::before { color: #047857 !important; }
.woocommerce-error { color: #e03131 !important; }
.woocommerce-message a, .woocommerce-info a, .woocommerce-error a { font-weight: normal !important; }
.woocommerce-message a strong, .woocommerce-info a strong, .woocommerce-error a strong { font-weight: normal !important; }
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  top: 1.2em;
}
/* Custom Login Form */
.woocommerce-form.my-custom-login-form {
    border: 1px solid #f9fafb;
    padding: 20px;
    margin: 2em 0;
    text-align: right;
    border-radius: 5px;
}
.min-page .woocommerce-message{display:none}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{width: 200px;
  float: left;}


/* Cart Button */
.cart-btn {
    padding: 0;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 292.5px;
    font-family: Num-Medium;
    font-weight: normal;
    height: 70px;
    display: inline-flex;
    padding: 22px 0 !important;
}
.cart-btn.loading .icon { animation: spin 1s linear infinite; }
.cart-btn.added {
    background: var(--second-color);
    cursor: default;
}
@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* WooCommerce General Buttons */
.woocommerce button.button,
#respond input#submit.alt,
a.button.alt,
button.button.alt,
input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--primary-color);
    font-weight: normal;
    font-size: 16px;
    font-family: Num-Light;
    margin-top: 8px;
    color: #fff !important;
    border-radius: 4px;
}
.woocommerce button.button:hover,
#respond input#submit.alt:hover,
a.button.alt:hover,
button.button.alt:hover,
input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--second-color);
}

/* Checkout Review Order Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    font-family: inherit;
    margin-bottom: 20px;
}
.woocommerce-checkout-review-order-table .table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}
.woocommerce-checkout-review-order-table .table-row:last-child { border-bottom: none; }
.woocommerce-checkout-review-order-table .table-head { border-bottom: 1px solid #eee; }
.woocommerce-checkout-review-order-table .table-head .table-cell {
    font-family: Num-Medium;
    font-weight: normal;
    font-size: 18px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.woocommerce-checkout-review-order-table .product-name {
    flex: 1;
    font-weight: normal;
    color: #888;
    line-height: 1.5;
    font-size: 16px;
}
.woocommerce-checkout-review-order-table .product-name dl.variation p {
  text-align: right;
}
.woocommerce-checkout-review-order-table .product-name dl.variation{
  margin-top: 5px;
}

.woocommerce-checkout-review-order-table .product-quantity {
    font-weight: 600;
    color: #fff;
    font-size: 0.9em;
    margin: 0 5px;
    background: var(--tree-color);
    padding: 0 5px;
    border-radius: 4px;
}
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .table-cell.td {
    font-weight: 600;
    color: #111111;
    text-align: end;
}
.woocommerce-checkout-review-order-table .table-foot .table-cell.th {
    font-weight: 500;
    color: #666666;
}
.woocommerce-checkout-review-order-table .shipping-row {
    display: block;
    background-color: #fdfdfd;
}
.woocommerce-checkout-review-order-table .shipping-row ul {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}
.woocommerce-checkout-review-order-table .order-total {
    background-color: #eee;
    padding: 24px;
}
.woocommerce-checkout-review-order-table .order-total .table-cell.th {
    font-size: 1.2em;
    font-weight: normal;
    color: #444;
    font-family: Num-Medium;
}
.woocommerce-checkout-review-order-table .order-total .table-cell.td {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--primary-color);
    background: #f9fafb;
    padding: 2px 10px !important;
    border-radius: 8px;
}

/* Checkout Coupon Form */
.woocommerce form.checkout_coupon .form-row-first {
    width: 85%;
    overflow: visible;
}
.woocommerce form.checkout_coupon .form-row-last {
    width: 15%;
    overflow: visible;
}
.form-row-last button.button {
    width: 100%;
    padding: 21px !important;
    margin: 0;
}

/* Payment Methods */
.woocommerce-checkout #payment div.payment_box p { font-size: 14px; }
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: left;
    padding: 10px 25px;
    height: 45px;
    margin-top: 0;
}
.woocommerce-checkout #payment {
    background: #f9fafb;
    border-radius: 8px;
}
.woocommerce-checkout #payment div.payment_box {
    background-color: #eee;
    color: #888;
    border-radius: 8px;
}
.woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
    border: 1em solid #eee;
    border-top-color: rgb(220, 215, 226);
    border-right-color: rgb(220, 215, 226);
    border-left-color: rgb(220, 215, 226);
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
}
.woocommerce-checkout #payment ul.payment_methods {
    text-align: right;
    padding: 1em;
    border-bottom: 1px solid #eee;
    margin: 0;
    list-style: none outside;
}

/* Shop Table */
.woocommerce table.shop_table th {
    font-weight: normal;
    padding-bottom: 20px;
}
.woocommerce table.shop_table {
    border: none !important;
    border-radius: 8px;
    background: #f9fafb;
    padding: 15px;
}
.woocommerce table.shop_table td {
    border-top: 1px solid #eee;
    border-bottom: none !important;
}
.woocommerce-page table.cart td.actions .input-text { width: 200px; }
.coupon button.button {
    width: auto;
    padding: 19px !important;
    margin-top: 2px;
}
.actions button.button {
    width: auto;
    padding: 19px !important;
    margin-top: 2px;
}
.woocommerce table.shop_table td { padding: 9px 0; }
.woocommerce .quantity .qty {
    width: 5em;
    text-align: center;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 70px;
    box-shadow: none;
    border-radius: 4px;
}
.woocommerce a.remove {
    font-size: 1.8em;
    height: 1.2em;
    width: 1.2em;
    line-height: 1.2;
    border-radius: 4px;
    color: #f00 !important;
    font-weight: 700;
    background: #ffffffad;
    margin-right: 5px;
}
.woocommerce a.remove:hover {
    color: #fff !important;
    background: #f00;
}
.cart_totals.calculated_shipping h2 { display: none; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: left;
    width: 100%;
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals tr td { text-align: left; }
.woocommerce .cart-collaterals .cart_totals th,
.woocommerce-page .cart-collaterals .cart_totalsth {
    background-color: none;
    border-bottom: none;
}
.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity input[type="number"] { -moz-appearance: textfield; }
.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #eee;
    background-color: #ffffff;
    border-radius: 8px;
}
.quantity input[type="number"] {
    width: 45px !important;
    height: 40px;
    padding: 0;
    border: none !important;
    text-align: center;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}
.quantity .qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 0 !important;
}
.quantity .qty-btn:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
}
.quantity .qty-btn i {
    font-size: 13px;
    line-height: 1;
    display: inline-block;
}
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: normal;
    font-family: Num-Medium;
}

/* WooCommerce Checkout */
.woocommerce-checkout .wc-proceed-to-checkout { padding: 0; }
.woocommerce th, .woocommerce td {
    border: none !important;
    padding: 15px 10px !important;
}
.woocommerce-order-overview.order_details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    margin: 20px 0;
    gap: 10px;
}
.woocommerce-order-overview.order_details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    
    line-height: 30px;
    background: #f9fafb;
    padding: 15px 10px;
    border-radius: 8px;
    width: 25%;
    font-size: 14px;
}
.woocommerce-order-overview.order_details li strong {
    display: block;
    color: #444;
    font-weight: normal;
    margin-top: 5px;
    font-size: 13px !important;
    font-family: Num-Medium;
}
.woocommerce-order-overview.order_details li::before {
    font-family: "AwesomePro";
    font-size: 20px;
    color: var(--primary-color);
    background: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
}
.woocommerce-order-overview.order_details li.order::before { content: "\f022"; }
.woocommerce-order-overview.order_details li.date::before { content: "\f133"; }
.woocommerce-order-overview.order_details li.total::before { content: "\f53d"; }
.woocommerce-order-overview.order_details li.email::before { content: "@"; }
.woocommerce-order-overview.order_details li.method::before { content: "\f09d"; }
.woocommerce ul.order_details li {
    margin-left: 0px !important;
    font-size: 14px;
    line-height: 0px !important;
    border-left: 0px !important;
    padding-left: 10px !important;
    margin-right: 0px !important;
    padding-right: 10px !important;
}
.woocommerce ul.order_details { margin: 0 0 1em; list-style: none; }

/* Reviews and Comments */
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: 2px solid #f9fafb;
    border-radius: 8px;
	padding: 25px;
}

#respond input#submit {
  display: inline-block !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
  padding: 15px 15px 15px 15px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

#respond input#submit:hover{
opacity:0.8;
}
.woocommerce #reviews #comments ol.commentlist #respond {
border: 2px solid #f9fafb;
  border-radius: 8px;
  padding: 25px;
  margin:20px 50px 0 0
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    font-size: 16px;
    color: #888;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 45px;
  height: 45px;
  border: none;
  background: none;
  padding: 0;
}
/* استایل‌های مربوط به زیباسازی variation در سبد خرید و تسویه حساب */
dl.variation {
   grid-template-columns: auto 1fr;
  gap: 5px 10px;   
display: grid;
}
dl.variation p {
  margin: 0;
  font-size: 12px;
  color: #000;
  text-align: left;
}
dl.variation dt {
color: #888;
  font-weight: normal !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: right;
  font-size: 12px;
}
dl.variation dd {
margin: 0;
  text-align: left;
  line-height: 20px !important;
}
/* ردیف جمع کل */
dl.variation dt:last-of-type,
dl.variation dd:last-of-type {
    color: #888;
    font-weight: normal !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: right;
    font-size: 12px;
}
/* Blog Post Styles */
.post-header {
    padding-top: 40px;
    margin-bottom: 0;
    width: 100%;
}
.post-summary {
    max-width: 100%;
    margin: auto;
}
.post-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: Num-Bold !important;
}
.post-meta-box {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.post-details-grid {
    display: grid;
    grid-template-columns: 2.0fr 1.0fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}
.specs-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
    background: #fff;
    border-radius: 8px;
    padding: 28px 22px;
}
.specs-header, .related-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.specs-list li, .related-list li { margin-bottom: 10px; }
.ptag a {
    background: #f9fafb;
    padding: 5px 10px;
    margin: 4px;
    border-radius: 8px;
    display: inline-block;
    color: var(--primary-color);
}
.ptag a:hover {
    background: var(--primary-color);
    color: #fff;
}
.latest-post-box {
    display: flex;
    background: #fff;
    border: 2px solid #f9fafb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
   
    gap: 15px;
}
.lp-thumb {
    width: 130px;
    min-width: 130px;
    height: 130px;
    overflow: hidden;
}
.lp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 8px;
}
.lp-content { flex: 1; }
.lp-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.lp-title a {
    color: #333;
}
.lp-title a:hover { color: var(--primary-color); }
.lp-meta {
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}
.lp-meta i {
    margin-left: 4px;
    color: #aaa;
}
.lp-excerpt {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.lp-more {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: auto;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    float: left;
    padding: 10px 15px;
}
.lp-more:hover {
    background: var(--primary-color);
    color: #fff;
}
.lp-more i {
    margin-right: 6px;
    margin-top: 2px;
}

/* Navigation */
.navigation {
	width:100%;
	height:auto;
	margin-bottom:10px;
	overflow:hidden;
	display:block;
	position:relative;
	}
.navigation ul {
	padding:0;
	margin:0;
	}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
	color:#fff;
	text-decoration:none;
	}
.navigation li {
	display:inline;
	margin-bottom:5px;
	}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
	display:inline-block;
	height:50px;
	line-height:50px;
	width:auto;
	padding:0px 20px 0px 20px;
	margin:0 2px;
	border-radius:8px;
	color:var(--primary-color);
	font-family:"Num-Light";
	background:#f9fafb;
	font-size:20px;
	}
.navigation li a:hover, .navigation li.active a {
	background:var(--primary-color);
	color:#fff;
	}

/* Search Post */
.serche-post {
    width: 100%;
    margin-bottom: 20px;
}
.serche-mob {
  width: 100%;
  padding: 5px 20px 15px 20px;
  border-bottom: 2px solid #f9fafb;
  overflow: hidden;
  position: relative;
}
/* 404 Error Page */
.error-404-wrap {
    text-align: center;
    padding: 50px 20px;
}
.error-404-wrap h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.error-404-wrap p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}
.error-404-buttons a {
    display: inline-block;
    margin: 7px;
    padding: 12px 25px;
    background: #f9fafb;
    color: var(--second-color);
    border-radius: 8px;
    text-decoration: none;
   
}
.error-404-buttons a:hover {
    background: var(--second-color);
    color: #fff;
}
.error-search {
    max-width: 420px;
    margin: 30px auto 0 auto;
}
.error-search input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f9fafb;
    border-radius: 8px;
    margin-bottom: 10px;
}
.error-search input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.error-search input[type="submit"]:hover { background: var(--second-color); }

/* WooCommerce Notices */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background-color: #ecfdf5;
    border: 2px solid #cff8e5;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    font-family: "AwesomePro";
    font-size: 20px;
    background-color: var(--primary-color);
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    content: "\f00c";
    margin-left: 10px;
}
.woocommerce #reviews #comments h2 { font-family: Num-Medium !important; }
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
padding: 10px 15px;
  font-size: 14px;
  position: absolute;
  left: 15px;
  border-radius: 4px;
    top: 12px;
}

.woocommerce-message .button {
background: #73aac0 !important;
}
.woocommerce-message .button:hover {
background:#81b7cd !important;
}
.woocommerce-error .button{
background: #e03131 !important;
}
.woocommerce-error .button:hover{
background:#fb4141 !important;
}




/* استایل پایه برای تمام برچسب‌ها */
.custom-review-badge {
    display: inline-block;
    padding: 4px 8px;
    margin-right: 8px; /* فاصله از نام کاربر (برای سایت‌های راست‌چین) */
    border-radius: 4px;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
    vertical-align: middle;
}

/* رنگ برچسب طراح محصول (آبی) - رنگ روشن‌تر */
.custom-review-badge.badge-designer {
    background-color: #3c8ed6; /* رنگ آبی روشن‌تر */
}

/* رنگ برچسب خریدار محصول (سبز) - رنگ روشن‌تر */
.custom-review-badge.badge-buyer {
    background-color: #68c668; /* رنگ سبز روشن‌تر */
}

/* رنگ برچسب کاربر میهمان/عادی (طوسی) - رنگ روشن‌تر */
.custom-review-badge.badge-guest {
    background-color: #b0b0b0; /* رنگ طوسی روشن‌تر */
}


/* مخفی کردن برچسب پیش‌فرض "مالک تایید شده" ووکامرس برای جلوگیری از تکرار */
.woocommerce-review__verified {
    display: none !important;
}


.woocommerce-Reviews-title{
display:none;
}


/* ۱. مخفی کردن آیکون لودینگ پیش‌فرض ووکامرس */
.woocommerce .blockUI.blockOverlay::before {
    display: none !important;
}

/* ۲. تنظیم پس‌زمینه لودینگ (کمی شفاف و روشن) */
.woocommerce .blockUI.blockOverlay {
    background-color: rgba(255, 255, 255, 0.8) !important;
    opacity: 1 !important;
}

/* ۳. ایجاد لودینگ جدید و حرفه‌ای */
.woocommerce .blockUI.blockOverlay::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px; /* اندازه لودینگ */
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    border-radius: 50%;
    border: 4px solid #e0e0e0; /* رنگ پس‌زمینه حلقه */
    border-top: 4px solid var(--primary-color); /* رنگ اصلی چرخنده - اینجا صورتی/قرمز است، آن را با رنگ سایت خود عوض کنید */
    animation: woo-custom-spin 0.8s linear infinite;
    z-index: 999999 !important;
}

/* ۴. انیمیشن چرخش */
@keyframes woo-custom-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.btn-gallery {
  text-align: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom:-40px;
}
.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  background-color:rgba(0, 0, 0, 0.21);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 50px;
  top: 10px;
  left: 10px;
  height: 50px;
  text-align: center;
}
.btn-gallery .icon {
    font-size:22px;
    transition: transform 0.3s ease;
}

.btn-gallery .text {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    font-size: 16px;
    font-family: Num-Medium !important;
}


.product-gallery:hover .btn-gallery {
    width: 200px;
    background-color:rgba(0, 0, 0, 0.39);
    padding: 0 20px;
}

.product-gallery:hover .btn-gallery .icon {
    transform: translateX(6px);
}

.product-gallery:hover .btn-gallery .text {
    opacity: 1;
}


#global-skeleton {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex; flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}
.sk-anim {
    background: #f0f2f5;
    background-image: linear-gradient(90deg, #f0f2f5 0px, #e4e7eb 40px, #f0f2f5 80px);
    background-size: 600px;
    animation: sk-shimmer 1.5s infinite linear;
    border-radius: 6px;
}
@keyframes sk-shimmer {
    0% { background-position: -300px; }
    100% { background-position: 300px; }
}
.sk-header { width: 100%; height: 70px; border-radius: 0; margin-bottom: 30px; }
.sk-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.sk-hero { width: 100%; height: 350px; margin-bottom: 40px; }
.sk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.sk-card { display: flex; flex-direction: column; gap: 12px; }
.sk-img { width: 100%; height: 220px; }
.sk-line { width: 100%; height: 16px; }
.sk-line.short { width: 60%; }


.term-description{background-color: #fff;
  color: #1864ab;
padding: 25px;font-size: 16px;
border-radius: 8px;
padding-right: 150px;
position: relative;
text-align: justify;
margin: 10px 0;
}
.term-description p{margin: 0;color: #1864ab;}
.term-description::before{
  content: "\f19a";
  font-family: "AwesomeFree";
  position: absolute;
  right: 20px;
  font-size: 100px;
}





/* مخزن پاپ‌آپ‌ها در گوشه پایین سمت چپ (مناسب سایت‌های راست‌چین) */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* استایل پایه پاپ‌آپ */
.cart-toast {
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    gap: 15px;
    direction: rtl;
    width: max-content;
    max-width: 350px;
    overflow: hidden;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    align-items: center;
}

/* کلاس برای نمایش پاپ‌آپ */
.cart-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* متن پاپ‌آپ */
.cart-toast-text {
    font-size: 16px;
    font-family: Num-Light, sans-serif;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    text-align: right;
    letter-spacing: -2px;
}

/* نوار پیشرفت (تایمر 5 ثانیه) */
.cart-toast-progress {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    width: 100%;
}

.cart-toast-progress::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    animation: toastProgress 5s linear forwards;
}

.cart-toast.success .cart-toast-progress::before { background: var(--primary-color); }
.cart-toast.error .cart-toast-progress::before { background: #ef4444; }

@keyframes toastProgress {
    100% { width: 0; }
}

/* ================= انیمیشن آیکون‌های SVG ================= */
.toast-icon {
    width: 50px;
    height: 50px;
    display: block;
}

.toast-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.toast-check, .toast-cross {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform-origin: 50% 50%;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

/* رنگ آیکون موفقیت */
.cart-toast.success .toast-circle, .cart-toast.success .toast-check {
    stroke: var(--primary-color);
}

/* رنگ آیکون خطا */
.cart-toast.error .toast-circle, .cart-toast.error .toast-cross {
    stroke: #ef4444;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}









/* ==========================================
   Full Responsive Styles
============================================= */

/* ====== Large Desktop ====== */
@media screen and (max-width: 1400px){
.announcement-container{padding-left:20px;
padding-right:20px;}

.container,.footer-container{
width:1200px;
padding-left:20px;
padding-right:20px;
} 
.product-gallery {
  width: 550px;
  height: 580px !important;
}

.footer-icon-item {
  height: auto;
}
    .nav-container {
        padding: 0 20px;
		max-width:1200px;
    }
.plugins-grid{
grid-template-columns:repeat(5,1fr);
}

.themes-grid{
grid-template-columns:repeat(4,1fr);
}

.product-details-grid{
grid-template-columns:1.8fr 1fr;
}

.post-details-grid{
grid-template-columns:1.8fr 1fr;
}

.footer-top{
gap:25px;
grid-template-columns: repeat(2,1fr);
}


.theme-image {
  height: 250px;
}
.home-product-timer-wrapper .timer-unit {
  padding: 5px 2px;
  width: 50px;
}
.cart-btn ,.btn-outline{
  width: 272.5px;
}
}


/* ====== Laptop ====== */
@media screen and (max-width:1200px){

.container,.footer-container{
width:992px;
padding-left:15px;
padding-right:15px;
}
.newsletter-form input[type="email"] {
  font-size: 14px;
}
.product-header {
    transform: scale(1.0);
	}
.nav-btn {
  font-size: 16px;	
}	
.product-gallery {
  width: 100%;
  margin-left: 0;
  margin-bottom:20px;
}
.user-menu .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--messages,
.user-menu .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--question,
.user-menu .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--comments{
  display: none;
}
.woocommerce-MyAccount-navigation {
  display:none !important;
}
.MyAccount-content{
  min-height: auto !important;
  width: 100% !important;
  float: right !important;
}
.user-menu a {
  font-size: 16px;
  border-radius: 8px;
  padding: 10px 15px !important;
}

.product-summary {
  width: 100%;
}
.footer-icon-item {
height: auto;
padding: 40px;
}
.plugin-image {
  height: 190px;
}
.logo-section ,
   .menu-section {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-container {
        padding: 0 20px;
    }
    .mega-menu {
        right: 0;
        width: 700px;
    }
.plugins-grid{
grid-template-columns:repeat(4,1fr);
}

.themes-grid{
grid-template-columns:repeat(3,1fr);
}

.product-card{
padding:18px;
}

.product-card img{
height:auto;
}

.section-header-advanced{
gap:10px;
}


.footer-middle{
grid-template-columns:1fr 1fr;
}
.theme-image {
  height: 280px;
}
}


/* ====== Tablet Landscape ====== */
@media screen and (max-width:992px){

.container,.footer-container{
width:768px;
}
.notic-meta-title {
  font-size: 16px !important;
}

.dl-order-grid {
	grid-template-columns: repeat(2,1fr) !important;
	}
.store-meta-item {
  display: block !important;
}
.store-meta-icon {
  width: 85px !important;
  height: 85px !important;
  font-size: 36px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 20px !important;
}
.store-meta-content {
  text-align: center;
}

.dashboard_in {
  padding: 20px !important;
  margin: 20px 20px 0 20px !important;
}
.dashboard_in p{
  font-size: 14px !important;
}
.dashboard_in::before, .close-btn{
  display: none !important;
}

.product-header {
  padding: 50px 0 0px 0;
}
.btn-outline,.cart-btn{width: 262.5px;}


.section-nav {
  display: none;
}

.newsletter-form input[type="email"] {
  font-size: 12px;
}

.dashboard-stats{
grid-template-columns: repeat(2,1fr) !important;
    display: grid !important;
	gap: 10px !important;
}
.footer-icon-item {
padding: 20px;
}
 .footer-top {
    grid-template-columns: repeat(1,1fr);
  }
  
  
  
  
  
.footer-bottom {
  display: inline;
  width: 100% !important;
  border: none !important;
}
.copyright {
  padding: 20px 0;
  font-size: 14px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.footer-bottom-links {
  display: none;
}

.trust-section {
  display: inline;
width: 768px;
}
.trust-badge {
  width: 359px;
  float: right;
  margin: 5px;
}
  .plugin-image {
    height: 210px;
  }
 .theme-image {
    height: 330px;
  }
.product-details-grid,
.post-details-grid{
grid-template-columns:1fr;
gap:25px;
}

.specs-sidebar{
position:relative;
top:0;
}

.plugins-grid{
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.themes-grid{
grid-template-columns:repeat(2,1fr);
gap:18px;
}



.product-card{
padding:16px;
}

.product-card h3{
font-size:16px;
}


.footer-middle{
grid-template-columns:1fr;
gap:20px;
}

.footer-column{
padding:22px;
}
.announcement-text {
  font-size: 16px;
}
a.announcement-link {
  padding: 5px 10px;
  font-size: 15px;
}
    .dl-segment-tabs{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden;
        gap:8px;
        width:100%;
        white-space:nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .dl-segment-tabs .dl-segment-btn{
        flex:0 0 auto !important;
        width:auto !important;
        white-space:nowrap;
    }	
}


/* ====== Tablet Portrait ====== */
@media screen and (max-width:768px){
.container,.footer-container{
width:576px;
padding-left:14px;
padding-right:14px;
}
.dl-segment-pane b {
  font-size: 12px;
}
.notic-meta-grid {
  grid-template-columns:repeat(1,1fr) !important;
}
a.announcement-link ,.ainfo{
  display:none
}
  .product-gallery {
    height: 500px !important;
  }
.announcement-text {
  font-size: 15px;
}
.flat-orders-container{
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
    -webkit-overflow-scrolling:touch;
}
.term-description::before {
  display: none;
}
.term-description {
  padding: 20px;
}
.flat-orders-header,
.flat-order-row{
    min-width:900px;
}

.cart-toggle {
}

.dl-detail-hero .dl-list-actions {
	justify-content:center;
	width:100%;
	}

	.dl-stats-overview {
	grid-template-columns:1fr;
	}
.dl-stat-list {
	grid-template-columns:1fr;
	}	
	.custom-layout-form .form-grid-2-cols {
	grid-template-columns:1fr;
	gap:15px;
	}
.custom-layout-form .password-fieldset {
	padding:15px;
	}	
	.flat-order-summary {
	flex-direction:column;
	padding:15px;
	}
.flat-summary-item {
	flex:1 1 100%;
	flex-direction:row;
	justify-content:space-between;
	align-items:center;
	border-right:none;
	}
.flat-summary-value {
	padding-right:0;
	}
.flat-summary-item:last-child {
	border-bottom:none;
	}
	.flat-orders-header {
	display:none;
	}
.flat-order-row {
	display:flex;
	flex-direction:column;
	align-items:stretch;
	gap:12px;
	padding:20px;
	}
.flat-order-cell {
	width:100%;
	flex-direction:row;
	justify-content:space-between;
	align-items:center;
	border-bottom:1px dashed #e9ecef;
	padding-bottom:12px;
	}
.flat-order-cell:last-child {
	border-bottom:none;
	padding-bottom:0;
	}
.flat-mobile-label {
	display:block;
	margin-bottom:0;
	}
.flat-cell-content {
	text-align:left;
	}
.store-meta-item {
    display:block !important;
overflow: hidden;
  }
.store-meta-grid {
  display: block !important;
}
.store-meta-item {
  margin-bottom: 20px;
}
  .store-meta-icon {
width: 65px !important;
    height: 65px !important;
    font-size: 28px !important;
    margin-bottom: 0 !important;
margin-left: 20px !important;float: right;
  }
 .store-meta-content {
    text-align: right !important;
  }
.ticket-alert-box {
  display: block;
  overflow: hidden;
}
.ticket-alert-btn {
 float: none;
    margin: 0 auto;
    width:200px !important;
    display: block;
    text-align: center;
  }
.ticket-alert-content {
  display: block;text-align: center;
  margin-bottom: 20px;
}

.footer-icon-item {
padding: 10px;
}
.newsletter h3 ,
.section-header-advanced .header-text h2{
font-size:18px;
}

.section-header-advanced .description{
font-size:13px;
}
  .trust-badge {
    width: 260px;
  }


.plugin-image {
  height: 230px;
}
  .theme-image {
    height: 250px;
  }
.plugins-grid{
grid-template-columns:repeat(2,1fr);
gap:16px;
}

.themes-grid{
grid-template-columns:repeat(2,1fr);
gap:16px;
}

.product-card{
padding:15px;
border-radius:8px;
}

.product-card img{
width:100%;
}

.product-card h3{
font-size:15px;
line-height:1.5;
}

.product-card .price{
font-size:14px;
}



.footer-column{
padding:20px;
text-align:center;
}

.footer-icon{
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

.footer-logo{
justify-content:center;
}

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

.dl-hero-info {
  display: block!important;
  width: 100% !important;
  text-align: center!important;
}
.dl-hero-img {
  margin: 0 auto!important;
}
.dl-hero-title {
  text-align: center!important;
  margin: 20px 0!important;
}
.search-popup-content {
    width: 500px;
}
.flat-notice {
  text-align: center;
padding: 15px !important;
}
.notice-text {
  width: 100%;
}
.flat-btn-primary {
  float:initial !important;
  margin: 0 auto;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  text-align: center;
}
.MyAccount-content .woocommerce-error, .MyAccount-content .woocommerce-info, .MyAccount-content .woocommerce-message {
  margin: 15px !important;
  padding: 15px 10px !important;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  display: none;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  /* برای وسط‌چین کردن */
  display: block !important;
  margin: 0 auto !important;
  float: none !important;
  left: 0 !important;
  right: 0 !important;
  width:200px;
  position: relative;margin-bottom: 20px !important;
}

.cart-sidebar {
    left: -400px;
    width: 350px;
	}
.product-title {
  font-size:22px;
margin: 25px 0 15px 0;

}	
	
}


/* ====== Mobile Large ====== */
@media screen and (max-width:576px){
.container,.footer-container{
width:420px;
padding-left:10px;
padding-right:10px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  font-size: 14px;
}

 .search-popup-content {
    width: 80%;
    position: absolute;
    top: 200px;
    right: 11%;
    left: 11%;
	padding: 2%;
  }
.announcement-text {
  font-size: 14px;
}
.dl-license-box {
	flex-direction:column;
	text-align:center;
	}
.dl-license-detail {
	justify-content:center;
	}
.dl-license-key {
  position: relative!important;
  left: 0 !important;
  width: 100%!important;
  margin: 0 auto!important;
  text-align: center!important;
}
	
	
.download-slider li {
  flex: 0 0 250px !important;
}
.dl-stats-overview {
  grid-template-columns: repeat(1, 1fr) !important;
}
.user-info-namen {
  display: none;
}
.dashboard-stats{
grid-template-columns: repeat(1,1fr) !important;
}

.latest-post-box {
  display: block;
}
.lp-thumb {
  width: 100%;
  min-width: 130px;
  height: auto;
  margin-bottom: 20px;
}
.lp-more {
  display: none;
}
.timer-display{margin-right:0;}
.timer-label{margin-bottom:10px;}
  .btn-outline, .cart-btn,#addToCartForm{
    width: 100%;
  }
.current-price {
  font-size:28px;
}
.product-title {
  font-size:18px;
margin: 20px 0 10px 0;
  display: block;
  position: relative;
  padding-left: 0;
}

.version-meta {
  font-size: 13px;
  padding: 2px 8px 2px 8px;
  margin-top: 0;
  position: relative;
  left: 0;
}


  .product-gallery {
    margin-bottom: 10px;
  }

.accordion-header,body.single-post #reply-title, .comment-reply-title{
  font-size: 14px;
} 
.product-gallery {
  height:400px !important;
  }
.stat-number {
  width: 80%;
  margin: 0 auto;
}

.stat-label {
  margin: 10px 0 20px 0;
}
  .trust-badge {
    width: 100%;
    margin: 5px auto;
  }
.stats,.trust-section,.footer-bottom{
  display: inline;
}
.section-header-advanced .header-btn,.section-header-advanced .header-text .description{
  display: none;
}
.section-header-advanced .header-icon {
  width: 45px;
height: 45px;
}
.section-header-advanced .header-icon i {
  font-size: 30px;
}

.plugin-name {
  font-size: 15px;
}
.plugin-card .current-price {
  font-size: 18px;
}
.old-price bdi {
  font-size: 14px;
}
.price-section .old-price b {
  font-size: 12px;
}


.plugin-image {
  height: 170px;
}

 .theme-image {
    height:auto;
  }
.themes-grid{
grid-template-columns:1fr;
gap:14px;
}

.product-card{
padding:14px;
}

.product-card h3{
font-size:14px;
}

.product-card .price{
font-size:13px;
}

.section-header-advanced .header-text h2{
font-size:20px;
}

.section-header-advanced .header-text .description{
font-size:12px;
}

.product-details-grid{
gap:20px;
}

.post-details-grid{
gap:20px;
}

.specs-sidebar{
padding:18px;
}
.newsletter p,.newsletter-btn i{display:none;}
.newsletter-btn {
  padding: 12px 10px;
  font-size: 14px;
}

.footer-column{
padding:18px 14px;
}


.footer-middle{
gap:15px;
}

.footer-icon a{
width:36px;
height:36px;
font-size:14px;
}
.hero-search-section {
  margin: 160px 0;
}
.hero-title {
  font-size: 30px;
}
.hero-description {
  font-size: 14px;
  margin: 0 auto 30px;
}
#totopscroller{display:none;}
.popular-searches {
  display: none;
}
.popular-searches span {
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 12px;
}
.popular-searches i {
  font-size: 16px;
  margin-left: 2px;
}
.search-btn {
  padding: 18px 15px;
}
.search-input{
  font-size: 16px !important;
}

.dl-list-info {
  min-width: 220px !important;
}
.dl-list-actions {
	width:100%;
	justify-content:center;
	}
.dl-hero-info {
	flex-direction:column;
	text-align:center;
	}
	.dl-list-info {
	flex-direction:column;
	text-align:center;
	align-items:center;
	}
.dl-list-meta {
	justify-content:center;
	}
.dl-order-grid {
	grid-template-columns: repeat(1,1fr) !important;
	}
.msg-btn ,.ques-btn,.view-btn{
  display: none !important;
}
.custom-layout-form .form-grid-2-cols {
  display: block !important;
}
.dl-segment-pane b {
  display: none;
}
.dl-segment-pane.active {
  display: block;
  text-align: center;
}
.dl-dl-action {
  margin: 0 auto;
  display: block;
  text-align: center;
}
}


/* ====== Small Mobile ====== */
@media screen and (max-width:420px){
.container,.footer-container{
width:100%;
padding-left:5%;
padding-right:5%;
}

.plugin-footer .price-section {
    width: 120px;
    transform: scale(1.0);
}

	.flat-auth-container {
	padding:30px 20px;
	border-radius:8px;
	box-shadow:none;
	}
.flat-wc-auth-wrapper {
	padding:20px 0;
	background-color:#ffffff;
	}
.theme-name{
  font-size: 15px;
}
.theme-card .current-price {
  font-size: 18px;
}
.plugin-image {
  height:auto;
}
.plugins-grid{
grid-template-columns:1fr;
gap:14px;
}

.mobile-menu-toggle i {
  margin-left: 12px;
}
.hero-title {
  font-size: 28px;
}
.search-input{
  font-size: 16px !important;
}
 .hero-description {
    font-size: 12px;
  }
.search-wrapper {
  transform: scale(0.9);
}
.user-btn span{display:none;}
.user-btn i {
  font-size:24px;
}
.user-btn {
  border: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.product-card{
padding:12px;
}

.product-card h3{
font-size:13px;
}

.section-header-advanced .header-text h2{
font-size:22px;
}

.section-header-advanced .description{
font-size:11px;
}

.footer-column{
padding:16px 12px;
}
.dl-list-actions {
  height: auto !important;
}

.dl-btn-primary ,.dl-btn-light{
  width: 100%;
}
.dl-license-box {
  padding: 20px 5px;
}
.dl-license-key {
  padding: 6px 5px;
}
}