.submit-btn {
    background: #bf1f1f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    color: #ffffff;
}

.submit-btn:focus {
    color: #ffffff;
}

.submit-btn:hover:not(:disabled) {
    background: #bf1f1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 31, 31, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Outline Button */
.submit-outline-btn {
    background: transparent;
    color: #bf1f1f;
    border: 1px solid #bf1f1f;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Hover State */
.submit-outline-btn:hover:not(:disabled) {
    background: #bf1f1f;
    color: #ffffff;
}

/* PWA Install Popup Styles */
#pwa-install-popup .model-content {
    max-width: 400px;
    width: 90%;
}

#pwa-install-popup .eblog-p-sub-heading img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    #pwa-install-popup .model-content {
        width: 95%;
        max-width: 350px;
        padding: 30px 20px;
    }
    
    #pwa-install-popup .eblog-p-sub-heading h3 {
        font-size: 22px;
    }
    
    #pwa-install-popup .eblog-p-sub-heading p {
        font-size: 13px;
    }
}
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 31, 31, 0.3);
}

/* Disabled State */
.submit-outline-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.plus-minus-btn {
    background: transparent;
    color: #bf1f1f;
    border: 1.5px solid #bf1f1f;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.plus-minus-btn:hover:not(:disabled) {
    background: #bf1f1f;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 31, 31, 0.25);
}

.plus-minus-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toast notifications */
.toast-container {
	position: fixed;
	right: 16px;
	top: 16px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.toast {
	min-width: 260px;
	max-width: 360px;
	background: #1f2937;
	color: #fff;
	border-radius: 10px;
	padding: 12px 36px 12px 14px; /* extra right padding for close button */
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .2s ease, transform .2s ease;
	font-size: 15px;
	line-height: 1.4;
	position: relative; /* for absolute close button */
}

.toast.show {
	opacity: 1;
	transform: translateY(0);
}

.toast.success { background: #10b981; }
.toast.error { background: #ef4444; }
.toast.info { background: #1e3a8a; }
.toast.warning { background: #78350f; }

.toast .toast-close {
	margin-left: auto; /* fallback */
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	position: absolute;
	top: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Cart icon badge */
.cart-icon-wrapper {
	position: relative;
}

.cart-badge {
	position: absolute;
	top: -6px;
	right: -8px;
	background: #bf1f1f;
	color: #fff;
	border-radius: 999px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

/* Category Icon Hover Effects */
.category-icon-placeholder:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.category-wrapper a {
	text-decoration: none;
}

.category-wrapper .content-area .title {
	margin-top: 10px;
	text-align: center;
	font-weight: 600;
	color: #1E1E1E;
}

