@font-face {
    font-family: "Vazirmatn";
    src: url("fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
            --primary: #2f7d32;
            --primary-light: #4caf50;
            --dark: #1f2937;
            --gray: #6b7280;
            --light: #f8fafc;
            --white: #ffffff;
            --border: #e5e7eb;
            --shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazirmatn', sans-serif;
        }

        html[dir="ltr"] * {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #fff;
            color: var(--dark);
            overflow-x: hidden;
        }

        .container {
            width: min(1200px, 92%);
            margin: auto;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            transition: 0.4s ease-in-out;
            background: transparent;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .navbar {
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            perspective: 1000px;
        }

        .logo img {
            height: 70px;
            width: auto;
            object-fit: contain;
            border-radius: 16px;
            border: 2px solid rgba(212, 175, 55, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #0b0b0b;
        }

        .logo img:hover {
            transform: scale(1.05) rotateY(5deg);
            border-color: rgba(212, 175, 55, 0.9);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
        }

        header.scrolled .logo img {
            height: 60px;
            border-color: rgba(47, 125, 50, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo-text h2 {
            font-size: 20px;
            font-weight: 800;
            color: white;
            transition: 0.3s;
            margin-bottom: 2px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        header.scrolled .logo-text h2 {
            color: var(--primary);
            text-shadow: none;
        }

        .logo-text span {
            font-size: 12px;
            color: #ddd;
            transition: 0.3s;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        header.scrolled .logo-text span {
            color: var(--gray);
            text-shadow: none;
        }

        .menu {
            display: flex;
            gap: 35px;
        }

        .menu a {
            text-decoration: none;
            font-weight: 600;
            color: white;
            transition: 0.3s;
            font-size: 15px;
        }

        header.scrolled .menu a {
            color: var(--dark);
        }

        .menu a:hover {
            color: #8ef08f;
        }

        header.scrolled .menu a:hover {
            color: var(--primary-light);
        }

        .actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }

        .btn-lang {
            background: white;
            color: #222;
        }

        .btn-contact {
            background: var(--primary);
            color: white;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        header.scrolled .btn-lang {
            background: var(--light);
            border: 1px solid var(--border);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            width: 28px;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background: white;
            transition: 0.3s;
            border-radius: 2px;
        }

        header.scrolled .hamburger span {
            background: var(--dark);
        }

        .hamburger.active span {
            background: var(--dark) !important;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .hero {
            min-height: 100vh;
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
                        url("hero.avif");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 140px 0 60px;
        }

        .hero-content {
            max-width: 800px;
            color: white;
        }

        .badge {
            display: inline-block;
            padding: 10px 18px;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .hero h1 {
            font-size: 68px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero p {
            font-size: 18px;
            line-height: 2;
            opacity: .95;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 16px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            transition: 0.3s;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
        }

        .primary-btn {
            background: var(--primary);
            color: white;
        }

        .secondary-btn {
            background: white;
            color: var(--dark);
        }

        .stats {
            margin-top: 60px;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .stat {
            background: linear-gradient(145deg, rgba(40, 45, 50, 0.95), rgba(20, 25, 30, 0.95));
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 25px 30px;
            border-radius: 18px;
            min-width: 170px;
            flex: 1;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: 0.4s;
            position: relative;
            z-index: 10;
        }

        .stat:hover {
            transform: translateY(-8px);
            background: linear-gradient(145deg, rgba(50, 55, 60, 0.98), rgba(25, 30, 35, 0.98));
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .stat h3 {
            font-size: 36px;
            margin-bottom: 8px;
            color: #8ef08f;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .stat span {
            font-size: 15px;
            color: #ffffff;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        html[dir="rtl"] .about-content .section-title {
            text-align: right;
        }

        html[dir="ltr"] .about-content .section-title {
            text-align: left;
        }

        .section-title h2 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: auto;
            line-height: 2;
        }

        .services {
            background: #f8fafc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: .4s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card h3 {
            margin: 20px 0 15px;
            color: var(--primary);
        }

        .service-card p {
            line-height: 2;
            color: var(--gray);
        }

        .products-grid{
            display:flex;
            flex-wrap:wrap;
            justify-content:center;
            gap:40px;
        }

        .product {
            width:330px;
            background:#fff;
            border-radius:28px;
            overflow:hidden;
            position:relative;
            transition:.45s;
            border:1px solid rgba(0,0,0,.05);
            box-shadow:
                0 20px 40px rgba(0,0,0,.08),
                0 5px 15px rgba(0,0,0,.04);
        }

        .product::before{
            content:"";
            position:absolute;
            top:0;
            right:0;
            width:100%;
            height:5px;
            background:linear-gradient(
                90deg,
                #2f7d32,
                #4caf50,
                #d4af37
            );
            z-index:5;
        }

        .product:hover{
            transform:translateY(-12px);
            box-shadow:
                0 35px 70px rgba(0,0,0,.15),
                0 15px 30px rgba(0,0,0,.08);
        }

        .product.new {
            opacity: 0;
            transform: scale(0.9);
        }

        .slider {
            height:280px;
            background:#f9fafb;
            overflow:hidden;
            position:relative;
        }

        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            background: #f8fafc;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 15px;
            transition:.6s;
        }

        .product:hover .slide img{
            transform:scale(1.08);
        }

        .product-badge{
            position:absolute;
            top:18px;
            right:18px;
            z-index:20;
            background:linear-gradient(
                135deg,
                #d4af37,
                #f4d03f
            );
            color:#111;
            padding:8px 14px;
            border-radius:50px;
            font-size:12px;
            font-weight:800;
            box-shadow:0 5px 15px rgba(212,175,55,.35);
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border: none;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            font-size: 18px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
            transition: 0.3s;
            z-index: 5;
        }

        .prev:hover, .next:hover {
            background: var(--primary);
            color: white;
        }

        html[dir="rtl"] .prev { right: 15px; left: auto; }
        html[dir="rtl"] .next { left: 15px; right: auto; }

        html[dir="ltr"] .prev { left: 15px; right: auto; }
        html[dir="ltr"] .next { right: 15px; left: auto; }

        .dots-container {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        .magnifier {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid var(--primary);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0,0,0,0.2);
            pointer-events: none;
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.2s, transform 0.2s;
            z-index: 99;
            background-repeat: no-repeat;
            background-color: #fff;
        }

        .magnifier.active {
            opacity: 1;
            transform: scale(1);
        }

        .product-content {
            padding:18px;
        }

        .product-content h3 {
            font-size:20px;
            font-weight:800;
            margin-bottom:10px;
            color:#1f2937;
        }

        .product-content p {
            color:#6b7280;
            line-height:1.8;
            margin-bottom:12px;
        }

        .product-features{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            margin-bottom:22px;
        }

        .product-features span{
            background:#f3f4f6;
            padding:8px 12px;
            border-radius:10px;
            font-size:13px;
            font-weight:600;
            color:#374151;
        }

        .call-btn{
            display:flex;
            justify-content:center;
            align-items:center;
            gap:10px;

            width:100%;

            padding:13px;

            border-radius:14px;

            background:
                linear-gradient(
                    135deg,
                    #2f7d32,
                    #4caf50
                );

            color:white;
            text-decoration:none;

            font-weight:800;

            transition:.35s;
        }

        .call-btn:hover {
            transform:translateY(-3px);
            box-shadow:
                0 10px 25px rgba(47,125,50,.35);
        }

        .advantages {
            background: #f8fafc;
        }

        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .adv {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-grid img {
            width: 100%;
            border-radius: 25px;
            height: 500px;
            object-fit: cover;
        }

        .about-content p {
            line-height: 2.2;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .cta {
            background: linear-gradient(rgba(47, 125, 50, .92), rgba(47, 125, 50, .92)),
                        url("about.jpg");
            background-size: cover;
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 800px;
            margin: auto;
            line-height: 2;
            margin-bottom: 30px;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 70px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-box h3 {
            margin-bottom: 20px;
            color: #8ef08f;
        }

        .footer-box p {
            line-height: 2;
            color: #d1d5db;
        }

        .footer-box a {
            display: block;
            color: #d1d5db;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        .footer-box a:hover {
            color: white;
        }

        .copy {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            text-align: center;
            color: #9ca3af;
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: 1s;
        }

        .reveal.active {
            opacity: 1;
            transform: none;
        }

        /* ===== NEWS SECTION ===== */
        .news-section {
            background: var(--light);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: 0.35s;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .news-img-wrap {
            position: relative;
            overflow: hidden;
        }

        .news-img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-img {
            transform: scale(1.05);
        }

        .news-tag {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--primary);
            color: white;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
        }

        html[dir="ltr"] .news-tag {
            right: auto;
            left: 14px;
        }

        .news-body {
            padding: 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-date {
            font-size: 12px;
            color: var(--gray);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .news-body h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .news-body p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.9;
            flex: 1;
            margin-bottom: 18px;
        }

        .news-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: 0.25s;
        }

        .news-link:hover {
            color: var(--primary-light);
            letter-spacing: 0.5px;
        }

        @media(max-width: 950px) {
            .hamburger {
                display: flex;
            }

            .logo-text span {
                display: none !important;
            }
            
            .logo-text h2 {
                font-size: 17px;
            }

            .menu {
                position: fixed;
                top: 0;
                width: 280px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
                padding: 110px 30px 30px;
                flex-direction: column;
                gap: 25px;
                transition: 0.4s ease-in-out;
                z-index: 1000;
                text-align: inherit;
                left: -100%;
                right: auto;
            }

            .menu.active {
                left: 0;
            }

            .menu a {
                color: var(--dark) !important;
                font-size: 18px;
                width: 100%;
                border-bottom: 1px solid var(--border);
                padding-bottom: 10px;
            }

            .hero h1 { font-size: 40px; }
            .hero p { font-size: 16px; }
            .about-grid { grid-template-columns: 1fr; gap: 30px; }
            .about-grid img { height: 350px; }
            .stats { justify-content: center; }
            .stat { min-width: 140px; padding: 15px; }
            .stat h3 { font-size: 28px; }
            .stat span { font-size: 13px; }
            .hero { text-align: center; }
            .hero-content { margin: auto; }
            .hero-buttons { justify-content: center; }
            .section-title h2 { font-size: 32px; }
            .cta h2 { font-size: 34px; }
        }

        @media(max-width: 480px) {
            .navbar {
                height: 90px;
            }

            .logo {
                gap: 10px;
            }

            .logo img {
                height: 65px;
                border-radius: 12px;
            }

            header.scrolled .logo img {
                height: 55px;
            }

            .logo-text h2 {
                font-size: 17px;
                font-weight: 800;
                line-height: 1.3;
                max-width: 110px;
                white-space: normal;
            }

            .actions {
                gap: 6px;
            }

            .btn {
                padding: 8px 10px;
                font-size: 12px;
                border-radius: 8px;
            }

            .hamburger {
                width: 24px;
            }
        }

/* ===== MODAL & POPUP STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1; visibility: visible;
}

.modal-box {
    background: #ffffff;
    width: 92%; max-width: 950px;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    transform: translateY(60px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-height: 90vh; overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute; top: 20px; left: 20px; /* برای RTL چپ قرار می‌گیرد */
    background: #f1f5f9; border: none; width: 45px; height: 45px;
    border-radius: 50%; font-size: 26px; cursor: pointer;
    transition: 0.3s; color: var(--dark);
    display: flex; justify-content: center; align-items: center;
    z-index: 10;
}

html[dir="ltr"] .modal-close { left: auto; right: 20px; }

.modal-close:hover {
    background: #ef4444; color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

@media(max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; gap: 25px; }
    .modal-box { padding: 25px 20px; }
}

.modal-gallery { display: flex; flex-direction: column; gap: 15px; }

.modal-gallery > img {
    width: 100%; height: 380px; object-fit: cover;
    border-radius: 20px; border: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.modal-thumbnails {
    display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px;
}

.modal-thumbnails::-webkit-scrollbar { height: 6px; }
.modal-thumbnails::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

.modal-thumbnails img {
    width: 85px; height: 85px; border-radius: 14px; object-fit: cover;
    cursor: pointer; border: 3px solid transparent; opacity: 0.6;
    transition: 0.3s;
}

.modal-thumbnails img:hover, .modal-thumbnails img.active {
    border-color: var(--primary); opacity: 1; transform: translateY(-2px);
}

.modal-info { display: flex; flex-direction: column; }

.modal-info h2 { color: var(--dark); font-size: 32px; font-weight: 900; margin-bottom: 15px; }

.modal-full-desc { color: var(--gray); line-height: 2.2; margin-bottom: 30px; font-size: 15px; }

.view-details-btn { border: none; cursor: pointer; font-size: 15px; }

.benefits-section {
    background: #fff;
    padding: 80px 0;
}
.benefits-content p {
    line-height: 2.2;
    color: var(--gray);
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
}
@media(max-width: 768px) {
    .benefits-content p {
        line-height: 1.8;
    }
}

#page-loader{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.7s ease;
}

#page-loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-ring{
    position:relative;
    width:90px;
    height:90px;
}

.loader-ring span{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:4px solid transparent;
    border-top-color:#2f7d32;
    animation:rotate 1.2s linear infinite;
}

.loader-ring span:nth-child(2){
    inset:10px;
    border-top-color:#4caf50;
    animation-duration:1.8s;
}

.loader-ring span:nth-child(3){
    inset:20px;
    border-top-color:#8bc34a;
    animation-duration:2.4s;
}

@keyframes rotate{
    to{
        transform:rotate(360deg);
    }
}

/* ==========================
   PREMIUM PRODUCT SECTION
========================== */

.services{
    background:
    linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );
}

.premium-product-box{

    max-width:900px;

    margin:auto;

    background:#ffffff;

    padding:60px;

    border-radius:32px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(76,175,80,.15);

    box-shadow:
    0 30px 80px rgba(47,125,50,.08);
}

.premium-product-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:
    linear-gradient(
        90deg,
        #2f7d32,
        #4caf50,
        #8bc34a
    );
}

.premium-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 24px;

    border-radius:50px;

    background:#e8f5e9;

    color:#2f7d32;

    font-weight:800;

    margin-bottom:25px;
}

.premium-product-box h3{

    font-size:42px;

    font-weight:900;

    margin-bottom:20px;

    color:#1f2937;
}

.premium-desc{

    max-width:700px;

    margin:auto;

    color:#6b7280;

    line-height:2.2;

    font-size:17px;
}

.premium-features{

    margin-top:40px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;
}

.feature-item{

    padding:14px 22px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:50px;

    font-weight:700;

    color:#374151;

    transition:.35s;
}

.feature-item:hover{

    transform:translateY(-5px);

    border-color:#4caf50;

    box-shadow:
    0 10px 25px rgba(76,175,80,.15);
}

.premium-btn{

    display:inline-block;

    margin-top:40px;

    padding:16px 36px;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #2f7d32,
        #4caf50
    );

    color:#fff;

    text-decoration:none;

    font-weight:800;

    transition:.35s;
}

.premium-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(47,125,50,.30);
}

@media(max-width:768px){

    .premium-product-box{
        padding:35px 25px;
    }

    .premium-product-box h3{
        font-size:30px;
    }

    .premium-desc{
        font-size:15px;
    }

    .feature-item{
        width:100%;
    }
}