        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
        }
        .header {
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            color: white;
            padding: 3rem 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand, .nav-link {
            color: white !important;
        }
        .nav-link:hover {
            color: #ffdd57 !important;
        }
        .dropdown-menu {
            background-color: #6a11cb;
            border: none;
        }
        .dropdown-item {
            color: white !important;
        }
        .dropdown-item:hover {
            background-color: #2575fc;
            color: #ffdd57 !important;
        }
		
		/* form Pemesanan */
		
		        .progress {
            height: 10px;
            border-radius: 10px;
        }
        .payment-method {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            margin: 10px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .copy-btn {
            cursor: pointer;
            transition: color 0.3s;
        }
        .copy-btn:hover {
            color: #2575fc !important;
        }
        .warning-badge {
            background: #ff4444;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.9em;
        }
        .form-control:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
        .btn-primary {
            background-color: #6a11cb;
            border-color: #6a11cb;
        }
        .btn-primary:hover {
            background-color: #2575fc;
            border-color: #2575fc;
        }
        .qris-image {
            max-width: 200px;
            margin-top: 10px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 5px;
        }
        .payment-method-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        .payment-method-item {
            flex: 1 1 calc(50% - 15px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        .payment-method-item span {
            font-weight: 500;
        }
        .ongkir-text {
            color: red;
            font-weight: 500;
        }
        .delivery-distance {
            margin-bottom: 20px;
        }
        
        /* Slider Custom Styles */
        .slider-container {
            position: relative;
            margin: 20px 0;
            height: 40px;
        }

        .form-range {
            width: 100%;
            height: 10px;
            margin-top: 15px;
            background: transparent;
            -webkit-appearance: none;
        }

        /* Track Styling */
        .form-range::-webkit-slider-runnable-track {
            background: #e9ecef;
            border-radius: 10px;
            height: 10px;
        }

        .form-range::-moz-range-track {
            background: #e9ecef;
            border-radius: 10px;
            height: 10px;
        }

        /* Thumb Styling */
        .form-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            background: var(--thumb-color, #6a11cb);
            border: 3px solid white;
            border-radius: 50%;
            margin-top: -7px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: background 0.3s ease;
            cursor: grab;
        }

        .form-range::-moz-range-thumb {
            width: 24px;
            height: 24px;
            background: var(--thumb-color, #6a11cb);
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: background 0.3s ease;
            cursor: grab;
        }

        /* Progress Fill */
        .progress-bar {
            background: var(--progress-color, #6a11cb);
            height: 10px;
            border-radius: 10px;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            pointer-events: none;
            transition: width 0.3s ease, background 0.3s ease;
        }
		
        .product-card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s;
            background-color: #fff;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background-color: #6a11cb;
            border-color: #6a11cb;
        }
        .btn-primary:hover {
            background-color: #2575fc;
            border-color: #2575fc;
        }
        .footer {
            background-color: #ffffff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }
        .footer a {
            color: #6a11cb;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: #2575fc;
            text-decoration: underline;
        }
        .hero-section {
            background: url('martabak-hero.jpg') no-repeat center center/cover;
            color: white;
            padding: 5rem 0;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        .hero-section h2 {
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero-section p {
            font-size: 1.2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .about-section {
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
		.content-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        .back-btn {
            background-color: #6a11cb;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s;
        }
        .back-btn:hover {
            background-color: #2575fc;
            color: white;
        }
		
		.back-to-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      display: none;
      z-index: 1000;
    }