/* Reset and Base Styles */
   

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    header {
        background-color: #2c3e50;
        color: white;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .logo span {
        color: #e67e22;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 25px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        font-size: 16px;
    }

    nav ul li a:hover {
        color: #e67e22;
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

    /*Shop*/
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .isi {
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
        }

        .product-card {
            max-width: 1200px;
            width: 100%;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px 0;
        }

        .product-header {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .product-header h1 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.9;
        }

        .product-content {
            display: flex;
            flex-wrap: wrap;
        }

        .image-section {
            flex: 1;
            min-width: 300px;
            padding: 30px 20px;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .image-placeholder {
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .foto {
            width: 100%;
            height: auto;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .foto:hover {
            transform: scale(1.02);
        }

        .info-section {
            flex: 1;
            min-width: 300px;
            padding: 30px 20px;
        }

        .specifications {
            margin-bottom: 30px;
        }

        .specifications h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            font-size: clamp(1.5rem, 3vw, 1.8rem);
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            gap: 5px;
        }

        .spec-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1rem;
        }

        .spec-value {
            color: #34495e;
            font-size: 1rem;
        }

        .size-highlight {
            background-color: #e8f4fc;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #3498db;
        }

        .size-highlight h3 {
            color: #2c3e50;
            margin: 15px 0 10px 0;
            font-size: 1.2rem;
        }

        .size-highlight p {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .features {
            margin-top: 30px;
        }

        .features h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .feature-list {
            list-style-type: none;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1rem;
        }

        .feature-list li:before {
            content: "✓";
            color: #2ecc71;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            padding: 15px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1;
        }

        .btn-primary {
            background-color: #25D366;
            color: white;
        }

        .btn-primary:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-btn {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
        }

        /* Media Queries untuk Responsivitas */
        @media (max-width: 1024px) {
            .product-content {
                flex-direction: column;
            }
            
            .image-section {
                padding: 20px;
            }
            
            .info-section {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .isi {
                padding: 15px;
            }
            
            .product-card {
                margin: 10px 0;
                border-radius: 10px;
            }
            
            .product-header {
                padding: 25px 15px;
            }
            
            .image-section {
                padding: 15px;
                gap: 15px;
            }
            
            .info-section {
                padding: 15px;
            }
            
            .spec-item {
                padding: 12px;
            }
            
            .size-highlight {
                padding: 15px;
            }
            
            .action-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .isi {
                padding: 10px;
            }
            
            .product-header {
                padding: 20px 10px;
            }
            
            .product-header h1 {
                font-size: 1.6rem;
            }
            
            .image-section {
                padding: 10px;
            }
            
            .info-section {
                padding: 10px;
            }
            
            .spec-item {
                flex-direction: column;
                padding: 10px;
                gap: 8px;
            }
            
            .spec-label, .spec-value {
                font-size: 0.9rem;
            }
            
            .feature-list li {
                font-size: 0.9rem;
                padding: 10px 0;
            }
            
            .size-highlight {
                padding: 12px;
            }
            
            .size-highlight h3 {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 320px) {
            .product-header h1 {
                font-size: 1.4rem;
            }
            
            .specifications h2 {
                font-size: 1.3rem;
            }
            
            .features h3 {
                font-size: 1.1rem;
            }
        }

        /* Tambahan untuk orientasi landscape di mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .isi {
                align-items: flex-start;
                padding: 10px;
            }
            
            .product-card {
                margin: 10px 0;
            }
        }

     /* Footer */
    footer {
        background-color: #2c3e50;
        color: white;
        padding: 40px 0 20px;
        text-align: center;
        margin-top: 60px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: #e67e22;
        bottom: 0;
        left: 0;
    }

    .footer-section p, .footer-section a {
        color: #bdc3c7;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 400;
    }

    .footer-section a:hover {
        color: #e67e22;
    }

    .social-icons a {
        display: inline-block;
        margin-right: 15px;
        font-size: 18px;
    }

    .copyright {
        border-top: 1px solid #34495e;
        padding-top: 20px;
        font-size: 14px;
        color: #bdc3c7;
        font-weight: 300;
    }
   


    /* Responsive Styles */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        nav ul.show {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
        }

        .page-header h1 {
            font-size: 32px;
        }

        .page-header p {
            font-size: 16px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .page-header {
            padding: 60px 20px;
        }

        .page-header h1 {
            font-size: 28px;
        }

        .service-title {
            font-size: 22px;
        }

        .service-content {
            padding: 20px;
        }
    }