
        :root {
            --primary-red: #ef233c;
            --secondary-red: #d90429;
            --primary-blue: #00b4d8;
            --secondary-blue: #0077b6;
            --dark-blue: #03045e;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #2b2d42;
            --transition: all 0.3s ease;
            --container-width: 1320px;
        }

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

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            width: 100%;
        }

        .hero {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            padding: 40px 20px;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .hero2 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: var(--container-width);
            margin: 40px auto;
            padding: 0 20px;
        }

        .left-column {
            flex: 1 1 30%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .right-column {
            flex: 2 1 65%;
            position: relative;
        }

        .banner,
        .slider {
            border-radius: 16px;
            overflow: hidden;
        }

        .banner {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #007bff, #ff4e50);
        }

        .banner img {
            width: 40%;
            object-fit: cover;
        }

        .banner-content p {
            color: #ffffff;
            font-size: 18px;
        }

        .banner-content {
            color: white;
            padding: 20px;
            flex: 1;
        }

        .buy-button.small {
            padding: 6px 12px;
            font-size: 12px;
            border: 1px solid white;
            background: transparent;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .buy-button.small:hover {
            background: white;
            color: #007bff;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            animation: fadeSlider 12s infinite;
        }

        .slide1 {
            animation-delay: 0s;
        }

        .slide2 {
            animation-delay: 4s;
        }

        .slide3 {
            animation-delay: 8s;
        }

        @keyframes fadeSlider {
            0% {
                opacity: 0;
            }
            8% {
                opacity: 1;
            }
            25% {
                opacity: 1;
            }
            33% {
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: white;
            text-align: right;
            z-index: 2;
        }

        .slide-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .buy-button {
            padding: 10px 20px;
            border: 2px solid #ff4e50;
            background: transparent;
            color: #ff4e50;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .buy-button:hover {
            background: #ff4e50;
            color: white;
        }

        .btitle {
            font-size: 23px;
            font-weight: bold;
        }

        @media (max-width: 1024px) {
            .hero2 {
                flex-direction: column;
                padding: 20px;
            }

            .left-column,
            .right-column {
                width: 100%;
            }

            .banner,
            .slider {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .banner,
            .slider {
                height: 250px;
            }

            .slide-content h2 {
                font-size: 20px;
            }

            .slide-content p {
                font-size: 14px;
            }

            .buy-button {
                padding: 8px 16px;
                font-size: 14px;
            }
        }

        .btn-main {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--white);
            color: var(--secondary-red);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background-color: var(--primary-blue);
            color: white;
        }

        .section-padding {
            padding: 80px 20px;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            border-radius: 2px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .category-card {
            background: var(--white);
            padding: 24px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #eef1f6;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 130px;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .category-card img {
            max-width: 140px;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(10%);
        }

        .product-section {
            background-color: var(--white);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 18px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid #edf0f5;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            height: 250px;
            background: #f6f8fb;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

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

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

        .product-image i {
            font-size: 5rem;
            color: #ced4da;
        }

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

        .product-info h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }

        .product-info a {
            text-decoration: none;
            color: inherit;
        }

        .price {
            color: var(--secondary-red);
            font-weight: 900;
            font-size: 1.2rem;
            margin-bottom: 5px;
            display: block;
        }

        .cta-long {
            background: linear-gradient(rgba(3, 4, 94, 0.9), rgba(3, 4, 94, 0.9)),
                url('https://www.zadman.ir/wp-content/uploads/2025/12/restaurant-food-warmer.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-container h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--primary-blue);
        }

        .cta-text {
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 40px;
            text-align: justify;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-outline {
            padding: 15px 40px;
            border: 2px solid var(--white);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark-blue);
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-red);
        }

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

            .section-padding {
                padding: 50px 20px;
            }

            .cta-long {
                padding: 60px 20px;
            }

            .cta-container h2 {
                font-size: 1.8rem;
            }
        }

        .woo-category-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 30px auto;
            max-width: 1300px;
            padding: 0;
        }

        .woo-category-item {
            flex: 1 0 12.5%;
            max-width: 12.5%;
            text-align: center;
            padding: 15px 0;
            box-sizing: border-box;
        }

        .woo-category-image-wrapper {
            width: 120px;
            height: 120px;
            background-color: #eee;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 8px;
            position: relative;
            z-index: 1;
        }

        .woo-category-image-wrapper img {
            max-width: 140px;
            max-height: 140px;
            position: relative;
            z-index: 2;
        }

        .woo-category-title {
            font-size: 15px;
            color: #333;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .woo-category-item {
                flex: 1 0 25%;
                max-width: 25%;
                padding: 20px 0;
            }

            .woo-category-image-wrapper {
                width: 120px;
                height: 120px;
            }

            .woo-category-image-wrapper img {
                max-width: 140px;
                max-height: 140px;
            }

            .woo-category-title {
                font-size: 16px;
            }
        }

        @media (max-width: 600px) {
            .woo-category-item {
                flex: 1 0 50%;
                max-width: 50%;
                padding: 20px 0;
            }

            .woo-category-image-wrapper {
                width: 120px;
                height: 120px;
            }

            .woo-category-image-wrapper img {
                max-width: 140px;
                max-height: 140px;
            }

            .woo-category-title {
                font-size: 17px;
            }
        }

        .blog-section {
            background: var(--light-bg);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .blog-card h3 {
            font-size: 1.1rem;
            color: var(--dark-blue);
            padding: 20px;
        }

        .blog-card a {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        @media (max-width: 900px) {
            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 600px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
