@font-face{
    font-family: 'vazir';
    src: url('/font/vazir.eot') format('eot');
    src: url('/font/vazir.ttf') format('ttf');
    src: url('/font/vazir.woff') format('woff');
    src: url('/font/vazir.woff2') format('woff');
}

body{
font-family: 'vazir';
}

.navbar {
    background-color: #ffffff !important;
    border-bottom: 3px solid #dc3545; 
}

.navbar-brand {
    font-weight: bold;
    color: #dc3545;
}

.nav-link {
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    color: #dc3545;
}

.btn-danger {
    background-color: #dc3545 !important;
    border: none;
    transition: 0.3s;
}

.btn-danger:hover {
    background-color: #b02a37 !important;
}


.hero-section {
    background-image: url('img/1.jpg'); 
    background-size: cover;
    background-position: center;
    color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; 
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%; 
}

.hero-content h1 {
    font-size: 3.8em; 
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5em; 
    margin-bottom: 40px; 
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f61;
    color: #ffffff;
    padding: 18px 35px; 
    font-size: 1.3em; 
    text-decoration: none;
    border-radius: 10px; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e65a4e;
    transform: translateY(-3px); 
}


.about-snippet-section {
    background-color: #f8f9fa;
    padding: 80px 20px; 
    text-align: center;
}

.snippet-content {
    max-width: 750px; 
    margin: 0 auto;
}

.about-snippet-section h2 {
    font-size: 2.6em; 
    margin-bottom: 30px;
    color: #333;
}

.about-snippet-section p {
    font-size: 1.2em; 
    line-height: 1.8;
    color: #555;
}


.features-section {
    padding: 80px 20px; 
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px; 
    border: 1px solid #e0e0e0; 
    border-radius: 12px; 
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.feature-item img {
    width: 70px; 
    height: 70px;
    margin-bottom: 20px; 
    opacity: 0.9; 
}

.feature-item h3 {
    font-size: 1.6em; 
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    font-size: 1.1em; 
    line-height: 1.7;
    color: #666;
}


@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2em;
    }
    .hero-content p {
        font-size: 1.3em;
    }
    .cta-button {
        font-size: 1.2em;
        padding: 16px 30px;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    .feature-item {
        padding: 25px;
    }
    .feature-item img {
        width: 65px;
        height: 65px;
    }
}


@media (max-width: 768px) {
    .hero-section {
        height: 60vh; 
    }
    .hero-content {
        width: 95%; 
    }
    .hero-content h1 {
        font-size: 2.8em; 
    }
    .hero-content p {
        font-size: 1.2em; 
        margin-bottom: 30px;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 14px 28px;
    }
    .about-snippet-section, .features-section {
        padding: 60px 15px; 
    }
    .about-snippet-section h2 {
        font-size: 2.2em;
    }
    .about-snippet-section p {
        font-size: 1.1em;
    }
    .features-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .feature-item {
        padding: 20px;
    }
    .feature-item img {
        width: 60px;
        height: 60px;
    }
    .feature-item h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh; 
    }
    .hero-content h1 {
        font-size: 2.2em; 
    }
    .hero-content p {
        font-size: 1.1em; 
        margin-bottom: 25px;
    }
    .cta-button {
        font-size: 1em;
        padding: 12px 24px;
    }
    .about-snippet-section h2 {
        font-size: 1.9em;
    }
    .about-snippet-section p, .feature-item p {
        font-size: 1em;
    }
    .features-section {
        padding: 40px 10px;
    }
    .feature-item {
        padding: 15px;
    }
    .feature-item img {
        width: 50px;
        height: 50px;
    }
    .feature-item h3 {
        font-size: 1.2em;
    }
}


.products-section {
    padding: 80px 20px;
    background-color: #f8f9fa; 
    text-align: center;
}

.products-section h2 {
    font-size: 2.6em;
    margin-bottom: 40px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 35px; 
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 250px;  
    object-fit: cover; 
    display: block;
}

.product-info {
    padding: 20px;
    flex-grow: 1; 
}

.product-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px; 
}

.product-card .details-button {
    display: inline-block;
    background-color: #28a745; 
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; 
}

.product-card .details-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}


.product-detail-page {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
}

.product-images-gallery {
    flex: 1 1 450px; 
    min-width: 300px; 
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px;
}

.thumbnail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    border-color: #ff6f61; 
}

.product-details-main {
    flex: 2 1 500px; 
    min-width: 300px;
    text-align: right; 
}

.product-details-main h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #333;
}

.product-description p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.product-price {
    font-size: 1.7em;
    font-weight: bold;
    color: #ff6f61; 
    margin-bottom: 30px;
}

.telegram-order-button {
    display: inline-block;
    background-color: #0088cc; 
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.telegram-order-button:hover {
    background-color: #006699;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .products-section h2 {
        font-size: 2.3em;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .product-card img {
        height: 220px;
    }
    .product-info h3 {
        font-size: 1.3em;
    }
    .product-card .details-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .product-detail-page {
        flex-direction: column; 
        align-items: center;
    }
    .product-images-gallery, .product-details-main {
        flex-basis: 100%; 
        max-width: 500px;
    }
    .product-detail-page h1 {
        font-size: 2.4em;
    }
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr); 
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 15px;
    }
    .products-section h2 {
        font-size: 2em;
    }
    .products-grid {
        grid-template-columns: 1fr; 
    }
    .product-card img {
        height: 200px;
    }
    .product-info p {
        font-size: 0.95em;
    }
    .product-detail-page {
        margin: 30px auto;
        padding: 20px;
    }
    .product-detail-page h1 {
        font-size: 2.2em;
    }
    .product-description p {
        font-size: 1em;
    }
    .product-price {
        font-size: 1.5em;
    }
    .telegram-order-button {
        font-size: 1.1em;
        padding: 13px 25px;
    }
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 40px 10px;
    }
    .products-section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .product-card {
        border-radius: 10px;
    }
    .product-card img {
        height: 180px;
    }
    .product-info {
        padding: 15px;
    }
    .product-info h3 {
        font-size: 1.2em;
    }
    .product-info p {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    .product-card .details-button {
        font-size: 0.95em;
        padding: 10px 18px;
    }
    .product-detail-page {
        margin: 20px auto;
        padding: 15px;
    }
    .product-detail-page h1 {
        font-size: 2em;
    }
    .product-description p {
        font-size: 0.95em;
    }
    .product-price {
        font-size: 1.3em;
    }
    .telegram-order-button {
        font-size: 1em;
        padding: 12px 22px;
    }
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px;
    }
    .thumbnail-gallery img {
        height: 70px;
    }
}

.section-title {
    font-size: 1.1rem;     
    text-align: center;    
    margin: 15px auto;     
    color: #333;
}

.category-grid {
    display: flex;
    flex-direction: column;
    align-items: center;    
    gap: 10px;           
    padding: 10px;
}

.category-card {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    color: #333;
    width: 80%;             
    text-align: center;
}

@media (min-width: 600px) {
    .category-grid {
        flex-direction: row; 
        justify-content: center;
        flex-wrap: wrap;     
    }

    .category-card {
        width: auto;         
        min-width: 120px;
    }
}

.category-card {
    transition: all 0.6s ease; 
}

.category-card:hover {
    background-color: #007bff; 
    color: #ffffff;            
    cursor: pointer;
}



:root {
    --primary-color: #ff4d4d; 
    --white: #ffffff;
    --transition-speed: 0.8s;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #000;
    direction: rtl;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease-in-out, visibility var(--transition-speed);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1); 
}

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 80%;
}

.slide.active .animate-text {
    animation: fadeInUp 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-group {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e60000;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: #000;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    transition: 0.3s;
}

.slider-btn:hover { background: rgba(255,255,255,0.5); }
.prev { right: 20px; }
.next { left: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-color);
    width: 30px; 
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .hero-content h1 { font-size: 1.5rem; }
    .btn-group { flex-direction: column; align-items: center; }
    .slider-btn { display: none; } 
}

.faq-section * {
    box-sizing: border-box;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa; 
    direction: rtl;
    font-family: 'Tahoma', sans-serif; 
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-section .section-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

.faq-section .faq-container {
    width: 100%;
}

.faq-section .faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.faq-section .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.faq-section .faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-section .faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #34495e;
    line-height: 1.5;
}

.faq-section .faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0; 
    margin-right: 15px;
}

.faq-section .faq-icon::before, 
.faq-section .faq-icon::after {
    content: "";
    position: absolute;
    background-color: #3498db;
    transition: all 0.3s ease;
}

.faq-section .faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-section .faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-section .faq-item.active {
    border-color: #3498db;
}

.faq-section .faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0; 
}

.faq-section .faq-item.active .faq-question span {
    color: #3498db;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.faq-section .faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #5e6d7e;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}


@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-title {
        font-size: 1.75rem;
    }

    .faq-section .faq-question {
        padding: 15px 20px;
    }

    .faq-section .faq-question span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section .container {
        padding: 0 15px;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
    }

    .faq-section .faq-question {
        padding: 12px 15px;
    }

    .faq-section .faq-question span {
        font-size: 0.9rem;
    }

    .faq-section .faq-answer p {
        padding: 0 15px 20px 15px;
        font-size: 0.85rem;
    }
    
    .faq-section .faq-icon {
        width: 15px;
        height: 15px;
    }
}

.flash-sale-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    direction: rtl;
    overflow: hidden;
}

.flash-sale-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.flash-title {
    font-size: 2.2rem;
    color: #e74c3c; 
    margin-bottom: 5px;
}

.flash-subtitle {
    color: #7f8c8d;
}

.countdown-container {
    display: flex;
    align-items: center;
    background: #2c3e50;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.2);
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.timer-box span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.timer-box small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.timer-separator {
    font-size: 1.5rem;
    margin: 0 5px;
    font-weight: bold;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.flash-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f1f1;
}

.flash-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 250px;
    background: #f9f9f9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 1;
}

.card-info {
    padding: 25px;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.price-wrapper {
    margin-bottom: 20px;
}

.new-price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

.old-price {
    font-size: 1rem;
    color: #bdc3c7;
    text-decoration: line-through;
}

.stock-container {
    margin-bottom: 20px;
}

.stock-bar {
    height: 8px;
    background: #ecf0f1;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.stock-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to left, #e74c3c, #ff7675);
    border-radius: 10px;
}

.stock-text {
    display: block;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 8px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2c3e50;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #34495e;
}

@media (max-width: 768px) {
    .flash-header {
        flex-direction: column;
        text-align: center;
    }
    .flash-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .flash-grid { grid-template-columns: 1fr; }
}

.add-to-cart-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 16px;
    background: #2c3e50;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.add-to-cart-btn:hover {
    background: #34495e;
    color: #fff;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.site-footer.premium {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); 
    color: #f8f9fa; 
    padding: 90px 0 40px;
    font-family: 'Vazirmatn', sans-serif; 
    direction: rtl;
    position: relative;
    overflow: hidden; 
}


.site-footer.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon fill="%23455a70" points="0,0 0,100 100,100 100,0"/><polygon fill="%2331445a" points="50,0 0,50 50,100 100,50"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.site-footer.premium .container {
    max-width: 1250px; 
    margin: 0 auto;
    padding: 0 30px;
    position: relative; 
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 50px; 
    margin-bottom: 60px;
    text-align: right;
}

.footer-col h4.footer-title {
    font-size: 1.4rem; 
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600; 
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px; 
    height: 4px; 
    background: linear-gradient(90deg, #e74c3c 0%, #ff9f43 100%); 
    border-radius: 3px;
}

.footer-col p,
.footer-col ul li {
    font-size: 1rem;
    line-height: 2.1; 
    margin-bottom: 12px;
    opacity: 0.9; 
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.35s ease-in-out, transform 0.3s ease-in-out; 
    display: inline-block; 
}

.footer-col ul li a:hover {
    color: #e74c3c;
    transform: translateX(5px); 
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    background: #fff; 
    color: #333;
    font-size: 0.95rem;
    font-family: inherit; 
}

.newsletter-btn {
    padding: 12px 20px;
    border: none;
    background: #e74c3c;
    color: white;
    cursor: pointer;
    font-size: 1.1rem; 
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
}

.newsletter-btn:hover {
    background: #c0392b;
    transform: scale(1.05); 
}


.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px;
    margin-left: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 50%;
    font-size: 1.7rem; 
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.social-icons a:hover {
    background: linear-gradient(90deg, #e74c3c 0%, #ff9f43 100%); 
    color: #ffffff;
    transform: translateY(-4px) scale(1.1); 
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .site-footer.premium .container {
        padding: 0 25px;
    }
    .footer-content {
        gap: 40px;
    }
    .footer-col h4.footer-title {
        font-size: 1.25rem;
    }
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-footer.premium {
        padding: 70px 0 30px;
    }
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }
    .newsletter-form input[type="email"],
    .newsletter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
     .newsletter-btn {
        border-radius: 6px 0 0 6px; 
    }
     .newsletter-form input[type="email"] {
        border-radius: 0 6px 6px 0;
    }
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .site-footer.premium {
        padding: 50px 0 20px;
    }
    .footer-col h4.footer-title::after {
        width: 40px;
        height: 3px;
    }
    .newsletter-form {
        flex-direction: column;
        box-shadow: none;
    }
     .newsletter-form input[type="email"] {
        border-radius: 6px 6px 0 0;
        margin-bottom: 5px;
    }
    .newsletter-btn {
        border-radius: 0 0 6px 6px;
    }
    .social-icons {
        margin-top: 20px;
        display: flex;
        justify-content: center; 
    }
    .social-icons a {
        margin: 0 7px; 
    }
    .footer-bottom {
        font-size: 0.85rem;
    }
}

#best-a{
    color: white;
    text-decoration: none;
}