:root {
   
    --gold: #f5c518;
    --gold-glow: #ffd700;
    --gold-dark: #d4af37;
    --dark: #0a0a0a;
    --darker: #000;
    --light: #eee;
    --gray: #ccc;
    --text: #aaa;
    --white: #fff;
    --cyan: #00ffff;

    
    --bg-gradient: radial-gradient(circle at top center, #111 0%, var(--dark) 100%);
    --gold-gradient: linear-gradient(90deg, var(--white), var(--gold), var(--white));
    --gold-shine: linear-gradient(90deg, transparent, var(--gold), var(--white), var(--gold), transparent);
    --gold-glow-gradient: linear-gradient(90deg, var(--gold), var(--gold-glow));
    --dark-glass-gradient: linear-gradient(135deg, rgba(10, 10, 10, .85), rgba(20, 20, 20, .95));
    --neon-glow-gradient: linear-gradient(145deg, #0e0e11, #141418);

   
    --fs-h1: 4rem;
    --fs-h1-sm: 2rem;
    --fs-title: 1.1rem;
    --fs-price: 1.15rem;
    --fs-btn: 1.05rem;
    --fs-btn-sm: .85rem;
    --fs-footer-heading: 2.1rem;

    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.8rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 5rem;

   
    --radius-sm: 3px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-full: 50px;

   
    --shadow-sm: 0 6px 18px rgba(245, 197, 24, 0.4);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(245, 197, 24, 0.25);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 15px 35px rgba(245, 197, 24, .2);
    --shadow-glow: 0 0 15px rgba(245, 197, 24, 0.6);


    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-shine: 2.5s ease-in-out infinite;

  
    --anim-nebula: nebula 35s linear infinite;
    --anim-shine: shine var(--transition-shine);
    --anim-stars: stars 30s linear infinite;
    --anim-pulse: pulseLine 2.2s ease-in-out infinite;

   
    --gold-bar-height: 5px;
    --gold-bar-margin: 2.5rem;
    --hero-min-height: 85vh;
    --hero-min-height-sm: 70vh;
    --category-height: 220px;
    --category-height-sm: 110px;
    --special-height: 380px;
    --special-height-sm: 300px;
    --img-icon: 70px;
    --img-icon-sm: 60px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MainFont','Vazirmatn', sans-serif ;
    background: var(--dark);
    color: var(--light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}







@keyframes shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.hero-banner {
    position: relative;
    min-height: var(--hero-min-height);
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55)), url("../img/baner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 6px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
}

.hero-content {
    max-width: 650px;
    padding: var(--spacing-lg);
    animation: fadeInUp 1.3s ease;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(245, 197, 24, 0.5);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: var(--fs-price);
    line-height: 2.1;
    margin: var(--spacing-md) 0;
    color: var(--light);
    opacity: 0.95;
}

.btn-gold, .btn-dark {
    padding: 0.9rem 2.5rem;
    border-radius: var( --radius-md);
    font-weight: 700;
    font-size: var(--fs-btn);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    margin: 0 var(--spacing-xs);
}

.btn-gold {
    background: var(--gold);
    color: #000;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 197, 24, 0.7);
}

.btn-dark {
    background: transparent;
    color: var(--white);
    border: 2.5px solid var(--gold);
}

.btn-dark:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
}


.category-palette {
    display: flex;
    height: var(--category-height);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.category-item {
    flex: 1;
    background: linear-gradient(135deg, #0f0f12, #1c1c1f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.category-item:first-child { border-left: none; }

.category-item img {
    width: var(--img-icon);
    height: var(--img-icon);
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all var(--transition-slow);
    margin-bottom: var(--spacing-sm);
}

.category-item span {
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: all var(--transition-normal);
    color: var(--white);
}

.category-item:hover {
    flex: 2.2;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.4);
}

.category-item:hover img {
    filter: brightness(0) invert(0);
    transform: scale(1.3) rotate(15deg);
}

.category-item:hover span {
    opacity: 1;
    color: #000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.product-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, .1);
    transition: all var(--transition-slow);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.product-card img {
    transition: transform var(--transition-slow);
}

.product-card:hover img {
    transform: scale(1.08);
}


@media (min-width: 1024px) {
  .product-card {
    width: 200px;
  }
}


.product-info {
    background: var(--dark-glass-gradient);
    border-top: 1px solid rgba(245, 197, 24, .3);
}

.bg-dark-glass {
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(6px);
}

.product-title {
    font-size: var(--fs-title);
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-title a:hover {
    color: var(--gold) !important;
}

.product-price {
    font-size: var(--fs-price);
    background: var(--gold-glow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(245, 197, 24, .3);
}

.btn-buy {
    font-size: var(--fs-btn-sm);
    padding: .4rem .9rem;
    background: var(--gold);
    color: #000;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.btn-buy:hover {
    background: var(--white);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 197, 24, .6);
}


.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}


.special-product {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: var(--special-height);
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
}

.special-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.special-product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.special-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    color: var(--white);
    transform: translateY(100%);
    transition: all var(--transition-slow);
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.special-product:hover .special-info { transform: translateY(0); }
.special-product:hover img { transform: scale(1.12); }


.discount-card {
    background: var(--neon-glow-gradient);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.8rem;
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.discount-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    border-color: var(--gold);
}

.discount-img {
    position: relative;
    overflow: hidden;
}

.discount-img img {
    width: 70%;
    display: block;
    margin: 0 auto;
    transition: all var(--transition-slow);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
}

.discount-card:hover img {
    transform: scale(1.15) rotate(3deg);
}

.glow-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid rgba(0, 255, 255, 0.2);
    filter: blur(18px);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.discount-card:hover .glow-ring { opacity: 1; }

.discount-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.7);
    opacity: 0;
    transition: opacity var(--transition-slow);
    backdrop-filter: blur(5px);
}

.discount-card:hover .discount-overlay { opacity: 1; }

.btn-neon {
    background: none;
    border: 2.5px solid var(--cyan);
    color: var(--cyan);
    padding: 0.7rem 1.6rem;
    border-radius: var( --radius-md);
    font-weight: 700;
    transition: all var(--transition-normal);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-neon:hover {
    color: var(--white);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
    transform: scale(1.08);
}


.gallery-img {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    padding: var(--spacing-md);
}

.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-img:hover img { transform: scale(1.05); }


.logo-carousel {
    width: 100%; 
    max-width: 100%; 
    overflow: hidden; 
    padding: 10px 0;
}

.track {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    padding-left: 0; 
    will-change: transform;
}

.item {
    flex: 0 0 auto;
    max-width: 120px;
    width: 120px;
    height: 120px;
    aspect-ratio: 1 / 1;
    margin: 0 20px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-fast);
}

.item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: scale-down;
    border-radius: 50%;
}
.logos-container {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}






@media (max-width: 768px) {
    .item {
        width: 80px;
        height: 80px;
        max-width: 80px;
        margin: 0 15px;
    }
    
    .track {
        gap: 20px;
    }
}



.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(245, 197, 24, 0.2);
    border-color: var(--gold);
}

.blog-card img {
    height: 210px;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.blog-card:hover img { transform: scale(1.08); }


.lux-footer {
    background: var(--bg-gradient);
    border-top: 6px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
}

.lux-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2.5px 2.5px at 20% 30%, var(--white), transparent 50%),
        radial-gradient(2px 2px at 80% 70%, var(--gold), transparent 50%),
        radial-gradient(1.5px 1.5px at 50% 90%, var(--white), transparent 50%);
    background-size: 220px 220px, 320px 320px, 280px 280px;
    animation: var(--anim-stars);
    opacity: 0.18;
    z-index: 0;
}

@keyframes stars {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 220px 220px, -320px 320px, 280px -280px; }
}

.gold-bar-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-shine);
    background-size: 300% 100%;
    animation: shine 3s ease-in-out infinite;
}

.footer-heading {
    color: var(--white);
    font-size: var(--fs-footer-heading);
    font-weight: 900;
    background: linear-gradient(90deg, var(--white), var(--gold-glow), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 90px;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--white));
    border-radius: var(--radius-sm);
    box-shadow: 0 0 25px var(--gold);
    animation: var(--anim-pulse);
}

@keyframes pulseLine {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.35); opacity: 0.85; }
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeInUp 1s ease forwards; }
.animate-delay-1 { animation-delay: 0.3s; }
.animate-delay-2 { animation-delay: 0.5s; }
.animate-delay-3 { animation-delay: 0.7s; }


@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .category-palette { height: 180px; }
    .category-item img { width: var(--img-icon-sm); height: var(--img-icon-sm); }
}

@media (max-width: 768px) {
    .hero-banner { min-height: var(--hero-min-height-sm); }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content { padding: var(--spacing-md) var(--spacing-sm); }
    .btn-gold, .btn-dark { display: block; width: 100%; margin: 0.6rem 0; }
    .category-palette { flex-direction: column; height: auto; border-radius: var(--radius-md); }
    .category-item { height: var(--category-height-sm); flex-direction: row; padding: 1.5rem; border-left: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .category-item:last-child { border-bottom: none; }
    .category-item span { margin-right: 1.2rem; opacity: 1; font-size: 1rem; }
    .special-product { height: var(--special-height-sm); }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: var(--fs-h1-sm); }
    .hero-content p { font-size: 1rem; }
    .gold-bar { margin: 2rem 0; }
}





.show-btn{
    color: var(--gold);
    border: 1px solid;
    border-radius: 15px;
    padding: 5px;
    font-weight: 600;
}

.show-btn:hover{
    color: var(--dark);
    background-color: var(--gold);
    border: var(--dark);

}

















.row {
    margin-right: 0;
    margin-left: 0;
}


.swiper {
    overflow: hidden; 
}

.swiper-wrapper {
    max-width: 100%;
}












