@import '../fonts/fonts.css';


*{
  font-family: IranSansX !important;
}

html,
body {
    font-family: IranSansX !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

}

body {
    font-family: IranSansX !important;
    font-weight: 400;
    color: #000;
    position: relative;
    overflow-x: hidden;
}

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

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0
}

a {
    color: #2c3e50;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-weight: 400;
    margin-top: 0
}

h1 {
    font-size: 70px;
    line-height: 80px
}

h2 {
    font-size: 36px;
    line-height: 46px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 18px;
    line-height: 28px
}

h6 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    font-family: 'Lato', sans-serif;
}

.d-table {
    width: 100%;
    height: 100%
}

.bg-gray {
    background-color: #f9f9f9
}

.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 10px;
    }
    50% {
        top: -10px;
    }
    100% {
        top: 10px;
    }
}

@keyframes animation-jump {
    0% {
        top: 10px;
    }
    50% {
        top: -10px;
    }
    100% {
        top: 10px;
    }
}


/*-------------------------------------------------------------------------------------
    preloader
---------------------------------------------------------------------------------------*/

.preloader {
    background: #7E7E81;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    header area
---------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 18px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.navbar-nav .nav-item {
    padding: 0 8px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #BD3EC1
}

.navbar-nav .nav-item .nav-link.active {
    color: #7E7E81
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 10px 0;
    animation: slideDown 0.5s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/*-------------------------------------------------------------------------------------
    home area
---------------------------------------------------------------------------------------*/

#home-area {
    position: relative;
    padding: 200px 0 170px;
    background-image: url(../images/banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom
}

.pattern-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 700px;
    background-image: url(../images/dot.png);
}

.caption h1 {
    font-weight: 700;
    margin: 0 0 25px;
}
.form-control::placeholder {
    color: #7e7e7e !important;
}

.caption p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500
}

.caption a {
    display: inline-block;
    background-color: #7E7E81;
    padding: 14px 30px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    margin: 30px 0 0;
}

.caption a:hover {
    background-color: #7E7E81;
}

.caption-img {
    position: relative;
    z-index: 9;
}

.caption-img img {
    max-width: 350px;
}

/*-------------------------------------------------------------------------------------
    home slider
---------------------------------------------------------------------------------------*/

.slide-single .caption-img img {
    max-width: 300px;
    margin: 0 auto
}

.owl-item.active .slide-single h1 {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}

.owl-item.active .slide-single h3 {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.owl-item.active .slide-single p {
    -webkit-animation: 1s .4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.owl-item.active .slide-single a {
    -webkit-animation: 1s .6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}

.owl-item.active .slide-single img {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

.home-carousel .owl-nav > div {
    position: absolute;
    left: 20px;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    line-height: 68px;
    border-radius: 50%;
    font-size: 30px;
    background-color: rgba(255, 77, 28, 0.5);
    color: #fff;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0
}

.home-carousel .owl-nav .owl-next {
    left: auto;
    right: 20px
}

.home-carousel .owl-nav > div:hover {
    background-color: rgba(255, 77, 28);
}

#home-area:hover .owl-nav > div {
    visibility: visible;
    opacity: 1;
}

.home-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 100%;
    text-align: center
}

.home-carousel .owl-dot {
    width: 30px;
    height: 8px;
    border-radius: 2px;
    border: 2px solid #7E7E81;
    display: inline-block;
    margin: 0 4px
}

.home-carousel .owl-dot.active {
    background-color: #7E7E81;
}

/*-------------------------------------------------------------------------------------
    home newsletter
---------------------------------------------------------------------------------------*/

.home-newsletter {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    z-index: 9;
}

.home-newsletter input {
    background-color: #f5f5f5;
    border: 0;
    height: 60px;
    padding-left: 20px;
    font-size: 15px;
}

.home-newsletter button {
    background-color: #7E7E81;
    width: 100%;
    border: 0;
    color: #fff;
    height: 60px;
    border-radius: 3px;
    font-weight: 600
}

.home-newsletter button:hover {
    background-color: #7E7E81;
}

.home-newsletter h2 {
    font-weight: 700;
    font-size: 34px;
}

.home-newsletter form {
    margin-top: 34px;
}

/*-------------------------------------------------------------------------------------
    section heading
---------------------------------------------------------------------------------------*/

.section-heading {
    margin: 0 0 60px;
}

.section-heading h2 {
    font-weight: 800;
}

/*-------------------------------------------------------------------------------------
    feature area
---------------------------------------------------------------------------------------*/

#feature-area {
    padding: 105px 0 100px;
}

.feature-single h4 {
    font-weight: 700;
}

.feature-single .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background-color: rgba(255, 77, 28, 0.1);
    border-radius: 50%;
}

.feature-single i {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 50px;
    border-radius: 50%;
    margin: 10px 0 0;
    background-color: rgba(255, 77, 28, 0.1);
    color: #7E7E81
}

/*-------------------------------------------------------------------------------------
    customers area
---------------------------------------------------------------------------------------*/





#customers-area .section-heading h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#customers-area .section-heading p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
}

.customers-slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 20px 0;
}

.customers-slider {
    display: flex;
    animation: slideLogos 30s linear infinite;
    width: max-content;
}

.customers-slider:hover {
    animation-play-state: paused;
}

.customer-logo {
    flex: 0 0 auto;
    width: 209px;
    height: 286px;
    margin: 0 25px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.customer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.customer-logo:hover::before {
    left: 100%;
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.customer-logo img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for Customers Area */
@media (max-width: 991px) {
    .customer-logo {
        width: 150px;
        height: 85px;
        margin: 0 20px;
    }
    
    .customers-slider {
        animation-duration: 25s;
    }
}

@media (max-width: 767px) {
    .customers-slider-container {
        margin-top: 30px;
    }
    
    .customer-logo {
        width: 130px;
        height: 75px;
        margin: 0 15px;
    }
    
    .customers-slider {
        animation-duration: 20s;
    }
    
    #customers-area .section-heading h2 {
        font-size: 28px;
    }
    
    #customers-area .section-heading p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .customer-logo {
        width: 110px;
        height: 65px;
        margin: 0 12px;
    }
    
    .customers-slider {
        animation-duration: 18s;
    }
}

/*-------------------------------------------------------------------------------------
    about area
---------------------------------------------------------------------------------------*/

#about-area {
    padding: 120px 0;
}

.about-info {
    padding: 40px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: #fff
}

.about-info h2 {
    font-weight: 700;
    margin-bottom: 16px;
}

.about-info ul {
    margin-top: 10px;
}

.about-info ul li {
    display: block;
    padding: 8px 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px
}

.about-info li i {
    color: #0cff84;
}

.about-img {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.about-img img {
    max-width: 350px;
}

/*-------------------------------------------------------------------------------------
    video area
---------------------------------------------------------------------------------------*/

#video-area {
    padding: 120px 0;
    background-image: url(../images/banner-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.video-cont {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.video-cont h2 {
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff
}

.video-cont p {
    color: #fff
}

.video-box {
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/circle-1.png)
}

.video-box a {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 80px;
    padding: 0 28px;
    background-color: #7E7E81;
    color: #fff;
    position: relative
}

.video-box a:hover {
    background-color: #130f40;
    color: #fff;
}

.video-box a:after {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    height: 90px;
    width: 90px;
    border: 3px solid #7E7E81;
    border-radius: 50%;
    -webkit-animation: icon-bubble 1s infinite forwards linear;
    animation: icon-bubble 1s infinite forwards linear;
}

.video-box a:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    height: 90px;
    width: 90px;
    border: 3px solid #7E7E81;
    border-radius: 50%;
    -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
    animation: icon-bubble 1s infinite forwards linear 0.5s;
}

@-webkit-keyframes icon-bubble {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.55;
    }

    75% {
        -webkit-transform: scale(1.32);
        transform: scale(1.32);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes icon-bubble {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.55;
    }

    75% {
        -webkit-transform: scale(1.32);
        transform: scale(1.32);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    why choose area
---------------------------------------------------------------------------------------*/

#why-chose-area {
    padding: 110px 0 120px;
    position: relative
}

.circle-bg {
    position: absolute;
    left: -20%;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/circle-2.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.why-chose-cont {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.why-chose-single {
    padding: 10px 35px;
}

.why-chose-single h4 {
    font-weight: 700;
}

.why-chose-single i {
    display: inline-block;
    font-size: 50px;
    margin: 0 0 16px;
    color: #7E7E81
}

.product-gallery.owl-carousel {
    background-color: #FFEDE8;

}

.product-gallery.owl-carousel img {
    max-width: 300px;
    margin: 0 auto;
}

.product-gallery.owl-carousel .owl-nav {
    width: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0
}

.product-gallery.owl-carousel .owl-nav > div {
    position: absolute;
    left: 0;
    bottom: -65px;
    right: 0;
    text-align: center;
    background-color: #130f40;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px
}

.product-gallery.owl-carousel .owl-nav > div:hover {
    background-color: #7E7E81;
}

.product-gallery.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: 0
}

/*-------------------------------------------------------------------------------------
    product area
---------------------------------------------------------------------------------------*/

#product-area {
    padding: 110px 0 120px
}

.product-wrap {
    background-color: #f9f9f9;
    padding: 50px 20px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.product-single {
    border: 2px solid #e6f0fa;
    padding: 30px 0 40px;
    background-color: rgba(255, 77, 28, 0.1);
    height: 100%
}

.product-single img {
    max-width: 150px;
    margin: 0 auto 30px;
}

.product-single h3 {
    font-weight: 700;
    margin: 20px 0 0
}

.product-single sup {
    opacity: 0.5;
    margin-left: 5px
}

.product-single h4 {
    font-weight: 700;
}

.product-single li {
    font-size: 14px;
    padding: 4px 0;
}

.product-cont li i {
    color: #0cff84;
}

.product-single a {
    display: inline-block;
    padding: 10px 15px;
    color: #341f97;
    font-size: 14px;
    margin: 25px 0 0;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #341f97
}

.product-single a:hover {
    background-color: #7E7E81;
    border-color: #7E7E81;
    color: #fff
}

.product-single a i {
    padding-right: 4px
}

.more-prod-btn a {
    display: inline-block;
    background-color: #7E7E81;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    margin: 50px 0 0;
    font-weight: 600;
}

.more-prod-btn a:hover {
    background-color: #7E7E81;
}

/*-------------------------------------------------------------------------------------
    newsletter area
---------------------------------------------------------------------------------------*/

#newsletter-area {
    padding: 110px 0 120px;
    background-image: url(../images/banner-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.newsletter-box {
    padding: 60px 40px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 30px;
}

.newsletter-form {
    position: relative
}

.newsletter-form input {
    width: 100%;
    float: left;
    color: #7e7e7e;
    border: 0;
    height: 65px;
    padding-left: 30px;
    border-radius: 30px;
    border: 3px solid #e0e3f7
}

.newsletter-form button {
    background-color: #7E7E81;
    border: 0;
    border-radius: 4px;
    color: #fff;
    height: 52px;
    position: absolute;
    right: 6px;
    top: 6px;
    border-radius: 4px 30px 30px 4px;
    padding: 0 40px;
    font-weight: 600
}

.newsletter-form button:hover {
    background-color: #7E7E81;
}

/*-------------------------------------------------------------------------------------
    faq area
---------------------------------------------------------------------------------------*/

#faq-area {
    padding: 110px 0;
}

.card-header {
    padding: 0;
    border: 0;
    background-color: #f9f9f9;
}

.card {
    margin-bottom: 10px;
    border: 1px solid #e6f0fa;
}

.card-header a {
    padding: 15px 20px;
    display: block;
    font-weight: 600;
    color: #000;
    position: relative
}

.card-body {
    color: #777;
    font-family: 'Lato', sans-serif;
    line-height: 26px;
}

.card-header a:hover {
    background-color: #7E7E81;
    color: #fff;
    border-radius: 2px;
}

.card-header.active a:after {
    content: '\ef9a';
    color: #7E7E81;
}

.card-header a:after {
    content: '\efc2';
    font-family: 'IcoFont';
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 16px;
    color: #7E7E81
}

.card-header.active a:hover:after,
.card-header a:hover:after {
    color: #fff
}

/*-------------------------------------------------------------------------------------
    testimonial area
---------------------------------------------------------------------------------------*/

.testi-area {
    padding: 110px 0 160px
}

.testi-single {
    border-radius: 10px;
    padding: 20px 30px 30px;
    background-color: #fff;
    border: 1px solid #e6f0fa;
}

.testi-single img {
    max-width: 80px;
    border-radius: 50%;
    margin: 0 auto
}

.client-comment p i {
    color: #f9aa1f;
    font-size: 16px;
}

.testi-single .client-info {
    margin: 30px 0 0;
    overflow: hidden;
}

.client-details h4 {
    color: #7E7E81;
    font-weight: 600;
    margin: 15px 0 0
}

.client-details {
    margin: 8px 0 0;
}

.client-comment span {
    color: #6d70a6;
    font-size: 40px;
    display: inline-block;
}

.testi-carousel.owl-carousel .owl-nav {
    width: 200px;
    margin: 40px auto 0;
    position: relative
}

.testi-carousel.owl-carousel .owl-nav > div {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 4px;
    margin-left: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(229, 240, 255, 0.5);
    background-color: #fff;
    color: #040da8;
}

.testi-carousel.owl-carousel .owl-nav .owl-next {
    left: 60px;
}

.testi-carousel.owl-carousel .owl-nav > div:hover {
    background-color: #092EED;
    color: #fff
}

/*-------------------------------------------------------------------------------------
    contact area
---------------------------------------------------------------------------------------*/

#contact-area {
    padding: 110px 0 105px;
    background-image: url(../images/shape-1.png);
    background-position: right;
    background-repeat: no-repeat
}

.contact-form input {
    height: 55px;
    border: 0;
    padding-left: 20px;
    border-bottom: 1px solid #e6f0fa;
    border-radius: 0;
}

.contact-form textarea {
    border: 0;
    border-bottom: 1px solid #e6f0fa;
    padding: 20px 0 0 20px;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}

.contact-form button {
    background-color: #7E7E81;
    border: 0;
    padding: 14px 30px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600
}

.contact-form button:hover {
    background-color: #7E7E81;
}

.contact-img {
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.contact-img img {
    max-width: 350px;
}

.help-block.with-errors li {
    color: #ff0000;
    margin: 4px 0 0;
}

.messages {
    margin: 15px 0 0
}

.messages button {
    color: #000;
    padding: 0;
    background-color: transparent
}

.messages button:hover {
    background-color: transparent
}

/*-------------------------------------------------------------------------------------
    footer area
---------------------------------------------------------------------------------------*/

.footer-social li {
    display: inline-block;
}

.footer-social li a {
    display: block;
    border: 1px solid #7E7E81;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    color: #7E7E81;
    font-size: 18px;
    margin-right: 4px;
}

#footer {
    padding: 50px 0 30px;
}

.footer-social li span {
    padding-right: 10px;
    font-weight: 600;
}

.copyright-text p a {
    color: #7E7E81;
}

.copyright-text a:hover {
    color: #7E7E81;
}

/*-------------------------------------------------------------------------------------
    demo area
---------------------------------------------------------------------------------------*/

.demo-header {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.demo-header h2 {
    font-weight: 700;
    color: #fff;
    font-size: 40px;
    line-height: 50px
}

.demo-body {
    padding: 100px 0 40px;
}

.demo-img {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2)
}

.demo-sing-cont h5 {
    font-weight: 700;
    margin: 24px 0 0;
    color: #7E7E81
}

.demo-sing-cont a {
    display: inline-block;
    padding: 8px 26px;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
}

.demo-sing-cont a:hover {
    background-size: 200% auto
}

.demo-single {
    margin: 0 0 60px;
}

.demo-header-cont a {
    display: inline-block;
    padding: 10px 33px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin: 30px 10px 0 0;
    background-color: #7E7E81
}

.demo-header-cont a:hover {
    background-color: #7E7E81
}

/* استایل‌های بخش گالری */
.gallery-section {
    padding: 100px 0;
}

.gallery-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.gallery-section .section-heading p {
    color: #666;
    font-size: 16px;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-overlay a:hover {
    background: #007bff;
    color: #fff;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 991px) {
    .gallery-section {
        padding: 70px 0;
    }
    
    .gallery-section .section-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section .section-heading h2 {
        font-size: 26px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .gallery-section .section-heading h2 {
        font-size: 22px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/*-------------------------------------------------------------------------------------
    درباره ما
---------------------------------------------------------------------------------------*/

.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-content {
    padding-right: 30px;
}

.about-content .section-title {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-content .section-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #7E7E81;
    font-size: 20px;
    margin-left: 10px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/*-------------------------------------------------------------------------------------
    تیم ما
---------------------------------------------------------------------------------------*/

.team-section {
    padding: 100px 0;
}

.team-section .section-header {
    margin-bottom: 50px;
}

.team-section .section-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-section .section-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-section,
    .team-section {
        padding: 60px 0;
    }
    
    .member-image img {
        height: 250px;
    }
}

/*-------------------------------------------------------------------------------------
    صفحه درباره ما
---------------------------------------------------------------------------------------*/

.page-header {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
}

.page-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #7E7E81;
    text-decoration: none;
}

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

.about-main-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .subtitle {
    color: #7E7E81;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content .section-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #7E7E81;
    font-size: 20px;
    margin-left: 10px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 16px;
}

.about-stats {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: #7E7E81;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #7E7E81;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge span {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 5px 0 0;
}

.team-section {
    padding: 80px 0;
}

.team-section .section-header {
    margin-bottom: 50px;
}

.team-section .section-description {
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(98, 189, 98, 0.9);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: translateY(-3px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .page-header,
    .about-main-section,
    .team-section {
        padding: 60px 0;
    }
    
    .member-image img {
        height: 250px;
    }
    
    .stat-item h3 {
        font-size: 30px;
    }
}

/*-------------------------------------------------------------------------------------
    بخش محصولات
---------------------------------------------------------------------------------------*/

/* Products Section - New Luxury Design */
.products-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23BD3EC1" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23BD3EC1" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23BD3EC1" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.title-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BD3EC1, #a832b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(189, 62, 193, 0.3);
    position: relative;
}

.title-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #BD3EC1, #a832b3);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.title-icon i {
    font-size: 32px;
    color: white;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #BD3EC1, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 400;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #BD3EC1, #a832b3);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #BD3EC1;
    border-radius: 50%;
    top: -2px;
}

.title-decoration::before {
    left: -10px;
}

.title-decoration::after {
    right: -10px;
}

/* Product Grid */
.product-grid {
    position: relative;
}

/* Glass Card Styling */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(189, 62, 193, 0.1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(189, 62, 193, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 62, 193, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 62, 193, 0.8), rgba(108, 92, 231, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.view-icon {
    font-size: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.glass-card:hover .view-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Locked Product Styling */
.image-wrapper.locked {
    position: relative;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.lock-icon {
    font-size: 3rem;
    color: #BD3EC1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(189, 62, 193, 0.5);
}

.lock-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #BD3EC1;
}

.lock-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #6c757d;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    background: #BD3EC1;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(189, 62, 193, 0.4);
}

.favorite-btn.active {
    background: #e74c3c;
    color: white;
    animation: heartBeat 1.5s ease-in-out;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.premium {
    background: linear-gradient(135deg, #BD3EC1, #a832b3);
    color: white;
    box-shadow: 0 4px 15px rgba(189, 62, 193, 0.4);
}

/* Product Content */
.product-content {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.product-header {
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-category {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-category i {
    margin-left: 6px;
    color: #BD3EC1;
    font-size: 0.8rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.glass-btn {
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 44px;
    letter-spacing: 0.2px;
    text-transform: none;
    font-family: inherit;
    flex: 1;
    min-width: 0;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn span,
.glass-btn i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.glass-btn:hover span {
    transform: translateX(2px);
}

.glass-btn:hover i {
    transform: scale(1.1);
}

/* Primary Button - Add to Cart */
.glass-btn.primary {
    background: linear-gradient(135deg, #BD3EC1 0%, #a832b3 50%, #8e2a9a 100%);
    color: white;
    box-shadow: 
        0 6px 20px rgba(189, 62, 193, 0.3),
        0 3px 8px rgba(189, 62, 193, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.glass-btn.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-btn.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(189, 62, 193, 0.4),
        0 6px 15px rgba(189, 62, 193, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #a832b3 0%, #8e2a9a 50%, #7a2378 100%);
}

.glass-btn.primary:hover::after {
    opacity: 1;
}

.glass-btn.primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 6px 15px rgba(189, 62, 193, 0.3),
        0 3px 8px rgba(189, 62, 193, 0.2);
}

/* Secondary Button - View Details */
.glass-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #495057;
    border: 2px solid rgba(189, 62, 193, 0.15);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(189, 62, 193, 0.1);
    position: relative;
}

.glass-btn.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 62, 193, 0.05), transparent);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.glass-btn.secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #BD3EC1;
    border-color: rgba(189, 62, 193, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        0 3px 12px rgba(189, 62, 193, 0.15);
}

.glass-btn.secondary:hover::after {
    opacity: 1;
}

.glass-btn.secondary:active {
    transform: translateY(0);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(189, 62, 193, 0.1);
}

/* Premium Button - Subscribe */
.glass-btn.premium {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    color: white;
    box-shadow: 
        0 6px 20px rgba(243, 156, 18, 0.3),
        0 3px 8px rgba(243, 156, 18, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.glass-btn.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-btn.premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(243, 156, 18, 0.4),
        0 6px 15px rgba(243, 156, 18, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 50%, #c0392b 100%);
}

.glass-btn.premium:hover::after {
    opacity: 1;
}

.glass-btn.premium:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 6px 15px rgba(243, 156, 18, 0.3),
        0 3px 8px rgba(243, 156, 18, 0.2);
}

/* Button Icons */
.glass-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-btn.primary i {
    color: rgba(255, 255, 255, 0.9);
}

.glass-btn.secondary i {
    color: #BD3EC1;
    transition: all 0.3s ease;
}

.glass-btn.secondary:hover i {
    color: #BD3EC1;
    transform: scale(1.1);
}

.glass-btn.premium i {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Text */
.glass-btn span {
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Loading State */
.glass-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.glass-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Focus States */
.glass-btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(189, 62, 193, 0.2),
        0 6px 20px rgba(189, 62, 193, 0.3);
}

.glass-btn.secondary:focus {
    box-shadow: 
        0 0 0 3px rgba(189, 62, 193, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.08);
}

.glass-btn.premium:focus {
    box-shadow: 
        0 0 0 3px rgba(243, 156, 18, 0.2),
        0 6px 20px rgba(243, 156, 18, 0.3);
}

/* Disabled State */
.glass-btn:disabled,
.glass-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.glass-btn:disabled:hover,
.glass-btn.disabled:hover {
    transform: none;
    box-shadow: inherit;
}

/* Responsive adjustments for buttons */
@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .glass-btn {
        flex: none;
        width: 100%;
        min-height: 48px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Header Authentication Styles - Restored */
.auth-wrapper {
    position: relative;
}

.auth-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 12px;
    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-button .user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-button .user-avatar i {
    font-size: 16px;
    color: #7E7E81;
}

.auth-button .user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
}

.auth-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #eee;
}

.auth-wrapper:hover .auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-dropdown-header {
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.auth-dropdown-header h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 4px;
}

.auth-dropdown-header p {
    color: #7E7E81;
    font-size: 14px;
    margin: 0;
}

.auth-menu {
    display: grid;
    gap: 8px;
}

.auth-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.auth-menu-item:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateX(-5px);
    color: #7E7E81;
}

.auth-menu-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    font-size: 16px;
    color: #7E7E81;
    transition: all 0.3s ease;
}

.auth-menu-item:hover i {
    background: #7E7E81;
    color: white;
}

.auth-menu-item span {
    font-size: 14px;
    font-weight: 500;
}

.auth-menu-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* Dark Mode Styles for Header */
[data-theme="dark"] .auth-button {
    background: #1a1a1a;
    border-color: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .auth-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .auth-button .user-name {
    color: #fff;
}

[data-theme="dark"] .auth-dropdown {
    background: #1a1a1a;
    border-color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .auth-dropdown-header {
    border-bottom-color: #333;
}

[data-theme="dark"] .auth-dropdown-header h4 {
    color: #fff;
}

[data-theme="dark"] .auth-menu-item {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .auth-menu-item:hover {
    background: rgba(46, 204, 113, 0.15);
}

[data-theme="dark"] .auth-menu-divider {
    background: #333;
}

/* Responsive Design for Header */
@media (max-width: 991px) {
    .auth-dropdown {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: none;
    }

    [data-theme="dark"] .auth-dropdown {
        background: #1a1a1a;
        border: 1px solid #333;
    }
}

/* Product Area Modern Styles */
.product-area {
    position: relative;
    overflow: hidden;
}

.product-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Section Heading */
.section-heading {
    margin-bottom: 4rem;
}

.section-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.1);
}

.section-icon i {
    color: white !important;
    font-size: 2.5rem !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b6b);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Product Cards */
.product-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-new {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.badge-premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-premium i {
    margin-left: 5px;
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image-main {
    transform: scale(1.1);
}

/* Locked Product Container */
.locked-product-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.locked-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.7);
}

.lock-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.lock-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.lock-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.lock-plan {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hover Overlay */
.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-hover-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-overlay {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    font-weight: 500;
}

.btn-overlay:hover {
    background: rgba(255, 107, 107, 0.8);
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}

.btn-overlay i {
    font-size: 1.1rem;
}

/* دکمه ذره‌بین ویژه */
.btn-zoom {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.8), rgba(0, 184, 148, 0.8));
    border-color: rgba(0, 212, 170, 0.3);
}

.btn-zoom:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 1), rgba(0, 184, 148, 1));
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
}

/* دکمه مشاهده */
.btn-view {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.6));
    border-color: rgba(255, 107, 107, 0.3);
}

.btn-view:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 1), rgba(255, 107, 107, 0.8));
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-header {
    margin-bottom: 15px;
}

.product-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 3.2rem;
}

.product-category-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-category-modern i {
    font-size: 0.8rem;
}

.product-description-modern {
    color: var(--text-color-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 4.5rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
}

.btn-primary-modern,
.btn-premium-modern {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #ff6b6b, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    color: white;
}

.btn-premium-modern {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
}

.btn-premium-modern:hover {
    background: linear-gradient(135deg, #ffb347, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    color: #333;
}

/* View All Button */
.btn-view-all-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-view-all-modern:hover::before {
    left: 100%;
}

.btn-view-all-modern:hover {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    color: white;
}

/* Empty State */
.empty-state {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.empty-icon {
    margin-bottom: 2rem;
}

.empty-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.empty-description {
    color: var(--text-color-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Lightbox Styling */
.mfp-container {
    z-index: 9999;
}

.mfp-bg {
    background: rgba(0, 0, 0, 0.9);
}

.mfp-image-holder .mfp-close {
    color: white;
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mfp-image-holder .mfp-close:hover {
    opacity: 1;
}

.mfp-title {
    color: white;
    font-size: 1.1rem;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

/* Lightbox Navigation */
.mfp-arrow {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mfp-arrow:hover {
    opacity: 1;
}

.mfp-arrow-left:before {
    border-right-color: white;
}

.mfp-arrow-right:before {
    border-left-color: white;
}

/* Lightbox Counter */
.mfp-counter {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Body class when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Enhanced Zoom Button */
.btn-zoom {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.9), rgba(0, 184, 148, 0.9));
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-zoom:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 1), rgba(0, 184, 148, 1));
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
    transform: translateY(-2px);
}

.btn-zoom i {
    color: white;
    font-size: 1.2rem;
}

/* Loading Animation for Lightbox */
.mfp-preloader {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    animation: mfp-rotate 1s infinite linear;
}

@keyframes mfp-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-card-modern {
        margin-bottom: 20px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title-modern {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .product-description-modern {
        min-height: auto;
    }
    
    .btn-view-all-modern {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .overlay-buttons {
        gap: 10px;
    }
    
    .btn-overlay {
        padding: 10px 16px;
        min-width: 100px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .section-icon {
        width: 60px;
        height: 60px;
    }
    
    .section-icon i {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-badges {
        top: 10px;
        left: 10px;
    }
    
    .badge-new,
    .badge-premium {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .overlay-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .btn-overlay {
        padding: 8px 12px;
        min-width: 80px;
        font-size: 0.8rem;
    }
    
    .btn-overlay span {
        display: none;
    }
}

/* Subscription Upgrade Styles */
.btn-disabled {
    display: inline-block;
    padding: 12px 24px;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: not-allowed;
    opacity: 0.6;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-disabled:hover {
    background: #6c757d;
    color: #fff;
    text-decoration: none;
}

.upgrade-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 2px solid transparent;
    animation: upgradeGlow 2s ease-in-out infinite alternate;
}

.upgrade-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

@keyframes upgradeGlow {
    0% {
        box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.8), 0 0 30px rgba(40, 167, 69, 0.4);
    }
}


.plan-status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-status-badge.current {
    background: #ffc107;
    color: #212529;
}

.plan-status-badge.upgrade {
    background: #28a745;
    color: white;
}

.plan-status-badge.blocked {
    background: #dc3545;
    color: white;
}
