* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #D4643F;
            --primary-dark: #C85433;
            --secondary-color: #2C2C2A;
            --text-color: #333;
            --text-light: #666;
            --bg-light: #FFF8F0;
            --bg-white: #FFFFFF;
            --border-color: rgba(0, 0, 0, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            background: linear-gradient(135deg, #FFF8F0 0%, #FFFBF5 100%);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 2rem;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero-icon {
            font-size: 80px;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Products Section */
        .products-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 3rem;
            text-align: center;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }

        .product-icon {
            font-size: 56px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .product-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .product-card p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 20px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .product-icon img{
            width: 100%;
        }
        
        .logo {
          display: flex;
          align-items: center;
          gap: 10px;
        }

      .logo img {
    height: 35px;
    width: auto;
    display: block;
}

       .logo span {
          font-size: 1.5rem;
          font-weight: bold;
    }

        .btn-small {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-small:hover {
            background: var(--primary-dark);
        }

        /* About Section */
        .about-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: rgba(212, 100, 63, 0.08);
            border-radius: 12px;
            margin-top: 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-icon {
            font-size: 150px;
            text-align: center;
        }

        .about-text p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        /* Location Section */
        .location-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 4rem 2rem;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        .location-info {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .location-info h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-icon {
            font-size: 24px;
        }

        .info-text {
            font-size: 14px;
            color: var(--text-light);
        }

        .hours {
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .hours-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .hours-text {
            font-size: 13px;
            color: var(--text-light);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            color: white;
            transition: all 0.3s;
            font-weight: bold;
        }

        .social-facebook {
            background: var(--primary-color);
        }

        .social-facebook:hover {
            background: var(--primary-dark);
        }

        .social-instagram {
            background: #E1306C;
        }

        .social-instagram:hover {
            background: #C71650;
        }

        .social-twitter {
            background: #1DA1F2;
        }

        .social-twitter:hover {
            background: #1a8cd8;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Section */
        .contact-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 4rem 2rem;
        }

        .contact-form {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        footer p {
            margin: 0;
            font-size: 14px;
        }

        footer p:last-child {
            margin-top: 0.5rem;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .location-content {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .stats {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .products-section,
            .about-section,
            .location-section,
            .contact-section {
                padding: 2rem 1rem;
            }

            .section-title {
                font-size: 24px;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }