* {
	font-family: 'Inter', sans-serif;
	-webkit-tap-highlight-color: transparent;
}

body {
	background-color: #f8fafc;
	padding-bottom: 80px;
}

.product-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-nav {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.nav-item.active {
	color: #3b82f6;
}

.cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ef4444;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-bar:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.scroll-container {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
	display: none;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.fade-in {
	animation: fadeIn 0.3s ease-out;
}

.bottom-nav {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.nav-item.active {
	color: #3b82f6;
}

.menu-item {
	transition: background-color 0.2s ease;
}

.menu-item:active {
	background-color: #f1f5f9;
}

.profile-image {
	border: 3px solid #3b82f6;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.stats-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shimmer {
	position: relative;
	overflow: hidden;
}

.shimmer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.payment-method {
	border: 2px solid #e5e7eb;
	transition: all 0.2s ease;
}

.payment-method.active {
	border-color: #3b82f6;
	background-color: #eff6ff;
}

.shipment-method {
	border: 1px solid #e5e7eb;
	transition: all 0.2s ease;
}

.shipment-method.active {
	border-color: #3b82f6;
	background-color: #eff6ff;
}

.quantity-btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: background-color 0.2s ease;
}

.coupon-input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.success-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	margin: 0 auto 1rem;
}

.order-item {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	background: white;
}
        
.form-input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
        
.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
        
.form-group {
    margin-bottom: 16px;
}
        
.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: #374151;
}
        
.error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}
    
/* Tambahan untuk Modal Alamat Pilihan */
.address-card {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.address-card:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.address-card.active {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.address-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.address-card-icon {
    width: 40px;
    height: 40px;
    background-color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
}

.address-card-content {
    flex: 1;
}

.address-card-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.address-card-detail {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.address-card-default {
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}