.modal-backdrop {
background: rgba(14, 41, 84, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
} .modal.show {
display: block !important;
}
.modal.fade.show {
opacity: 1;
} #authModal {
z-index: 1055;
}
#authModal.show {
display: block !important;
opacity: 1;
} #authModal {
z-index: 99999 !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
background: rgba(0, 0, 0, 0.6) !important;
display: none !important;
backdrop-filter: blur(5px) !important;
-webkit-backdrop-filter: blur(5px) !important;
align-items: center !important;
justify-content: center !important;
}
#authModal.show {
display: flex !important;
align-items: center !important;
justify-content: center !important;
opacity: 1 !important;
visibility: visible !important;
padding: 1rem !important;
} .modal-dialog {
margin: 0 !important;
max-width: 500px !important;
width: 90% !important;
max-height: 90vh !important;
overflow-y: auto !important;
transform: none !important;
top: auto !important;
left: auto !important;
position: relative !important;
}
#authModal.modal {
z-index: 99999 !important;
position: fixed !important;
} .modal-dialog {
z-index: 100000 !important;
position: relative !important;
margin: 0 !important;
max-width: 500px !important;
width: 90% !important;
max-height: 90vh !important;
overflow-y: auto !important;
transform: none !important;
top: auto !important;
} .modal-content {
border: none !important;
border-radius: 20px !important;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
background: #ffffff !important;
overflow: hidden !important;
} .modal-header {
border-bottom: 1px solid #e5e7eb !important;
padding: 1.5rem !important;
background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
} .modal-body {
padding: 2rem !important;
max-height: 60vh !important;
overflow-y: auto !important;
} .auth-tabs {
display: flex !important;
width: 100% !important;
border-bottom: 1px solid #e5e7eb !important;
margin-bottom: 1.5rem !important;
}
.auth-tab {
flex: 1 !important;
padding: 1rem !important;
text-align: center !important;
border: none !important;
background: transparent !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
border-radius: 8px 8px 0 0 !important;
}
.auth-tab.active {
background: #3b82f6 !important;
color: #ffffff !important;
border-bottom: 2px solid #3b82f6 !important;
}
.auth-tab:hover {
background: #f3f4f6 !important;
color: #1f2937 !important;
}
.auth-tab.active:hover {
background: #2563eb !important;
color: #ffffff !important;
} .auth-form {
width: 100% !important;
}
.form-floating {
margin-bottom: 1rem !important;
}
.form-control {
border: 2px solid #e5e7eb !important;
border-radius: 12px !important;
padding: 1rem !important;
transition: all 0.3s ease !important;
}
.form-control:focus {
border-color: #3b82f6 !important;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
} .auth-submit-btn {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
border: none !important;
border-radius: 12px !important;
padding: 1rem 2rem !important;
font-weight: 600 !important;
text-transform: uppercase !important;
letter-spacing: 0.5px !important;
transition: all 0.3s ease !important;
}
.auth-submit-btn:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
} .btn-close {
background: none !important;
border: none !important;
font-size: 1.5rem !important;
color: #6b7280 !important;
transition: all 0.3s ease !important;
}
.btn-close:hover {
color: #ef4444 !important;
transform: scale(1.1) !important;
} #authModal.show {
display: block !important;
opacity: 1 !important;
visibility: visible !important;
} .modal-backdrop {
z-index: 99998 !important;
}
.modal-backdrop.fade,
.modal-backdrop.show {
opacity: 0 !important;
display: none !important;
} .auth-modal-content {
border: none;
border-radius: 20px;
box-shadow: 0 25px 50px rgba(14, 41, 84, 0.15);
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
position: relative;
}
.auth-modal-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #6ac8c6 0%, #0e2954 50%, #6ac8c6 100%);
background-size: 200% 100%;
animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { background-position: 200% 0; }
50% { background-position: -200% 0; }
} .auth-modal-content .modal-header {
background: linear-gradient(135deg, #0e2954 0%, #6ac8c6 100%);
color: white;
padding: 2rem;
position: relative;
overflow: hidden;
}
.auth-modal-content .modal-header::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
} .auth-tabs {
display: flex;
gap: 1rem;
width: 100%;
}
.auth-tabs .nav-link {
flex: 1;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.8);
padding: 0.75rem 1.5rem;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.auth-tabs .nav-link:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
color: white;
transform: translateY(-2px);
}
.auth-tabs .nav-link.active {
background: rgba(255, 255, 255, 0.9);
border-color: rgba(255, 255, 255, 0.9);
color: #0e2954;
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
} .auth-modal-content .btn-close {
position: absolute;
top: 1rem;
right: 1rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: white;
border: none;
transition: all 0.3s ease;
}
.auth-modal-content .btn-close:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.1);
} .auth-modal-content .modal-body {
padding: 2.5rem;
background: white;
} .auth-form {
max-width: 100%;
}
.auth-form-header {
text-align: center;
margin-bottom: 2rem;
}
.auth-title {
font-size: 1.75rem;
font-weight: 700;
color: #0e2954;
margin-bottom: 0.5rem;
line-height: 1.3;
}
.auth-subtitle {
color: #6B7280;
font-size: 1rem;
margin: 0;
line-height: 1.5;
} .auth-form .form-floating {
position: relative;
}
.auth-form .form-control {
border: 2px solid #E5E7EB;
border-radius: 12px;
padding: 1rem 1rem 1rem 1rem;
font-size: 1rem;
transition: all 0.3s ease;
background: #F9FAFB;
}
.auth-form .form-control:focus {
border-color: #6ac8c6;
box-shadow: 0 0 0 0.2rem rgba(106, 200, 198, 0.25);
background: white;
transform: translateY(-2px);
}
.auth-form .form-floating > label {
color: #6B7280;
font-weight: 500;
padding: 1rem 1rem;
}
.auth-form .form-control:focus ~ label,
.auth-form .form-control:not(:placeholder-shown) ~ label,
.auth-form .form-control:valid ~ label,
.auth-form .form-control.has-value ~ label {
color: #6ac8c6;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
background: white;
padding: 0 0.5rem;
z-index: 1;
position: relative;
} .auth-form .form-check-input {
width: 1.25rem;
height: 1.25rem;
border: 2px solid #E5E7EB;
border-radius: 6px;
background: #F9FAFB;
transition: all 0.3s ease;
}
.auth-form .form-check-input:checked {
background-color: #6ac8c6;
border-color: #6ac8c6;
box-shadow: 0 0 0 0.2rem rgba(106, 200, 198, 0.25);
}
.auth-form .form-check-label {
color: #374151;
font-weight: 500;
margin-left: 0.5rem;
} .auth-submit-btn {
background: linear-gradient(135deg, #6ac8c6 0%, #0e2954 100%);
border: none;
border-radius: 12px;
padding: 1rem 2rem;
font-weight: 600;
font-size: 1.1rem;
color: white;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
min-height: 56px;
}
.auth-submit-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.auth-submit-btn:hover::before {
left: 100%;
}
.auth-submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(14, 41, 84, 0.3);
background: linear-gradient(135deg, #0e2954 0%, #6ac8c6 100%);
}
.auth-submit-btn:active {
transform: translateY(-1px);
}
.auth-submit-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
} .btn-loading {
display: flex;
align-items: center;
justify-content: center;
}
.auth-submit-btn.loading .btn-text {
display: none;
}
.auth-submit-btn.loading .btn-loading {
display: flex !important;
} .auth-links {
text-align: center;
}
.auth-link {
color: #6ac8c6;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.auth-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: #6ac8c6;
transition: width 0.3s ease;
}
.auth-link:hover {
color: #0e2954;
text-decoration: none;
}
.auth-link:hover::after {
width: 100%;
} .header-user-dropdown .dropdown-menu {
border: none;
border-radius: 16px;
box-shadow: 0 20px 40px rgba(14, 41, 84, 0.15);
padding: 1rem 0;
margin-top: 0.5rem;
background: white;
border: 1px solid rgba(106, 200, 198, 0.1);
min-width: 250px;
z-index: 9999 !important;
position: absolute !important;
top: 100% !important;
right: 0 !important;
left: auto !important;
transform: none !important;
display: none !important;
}
.header-user-dropdown .dropdown-menu.show {
display: block !important;
animation: dropdownFadeIn 0.3s ease-out !important;
}
@keyframes dropdownFadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.header-user-dropdown .dropdown-item {
padding: 0.75rem 1.5rem;
color: #374151;
font-weight: 500;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.75rem;
}
.header-user-dropdown .dropdown-item:hover {
background: linear-gradient(135deg, rgba(106, 200, 198, 0.1) 0%, rgba(14, 41, 84, 0.05) 100%);
color: #0e2954;
transform: translateX(5px);
}
.header-user-dropdown .dropdown-header {
color: #0e2954;
font-weight: 600;
font-size: 0.9rem;
padding: 0.5rem 1.5rem;
margin-bottom: 0.5rem;
}
.header-user-dropdown .dropdown-divider {
margin: 0.5rem 0;
border-color: #E5E7EB;
} .user-status-indicator {
position: absolute;
bottom: -2px;
right: -2px;
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid white;
transition: all 0.3s ease;
} .header-user-dropdown .dropdown-toggle {
background: #063e7f !important;
border: none !important;
padding: 0 !important;
position: relative !important;
}
.header-user-dropdown .dropdown-toggle:focus {
box-shadow: none !important;
outline: none !important;
}
.header-user-dropdown .dropdown-toggle::after {
display: none !important;
} .header-user-dropdown {
position: relative !important;
}
.header-user-dropdown .dropdown-menu {
pointer-events: auto !important;
}
.user-status-indicator.logged-in {
background: #10B981;
box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}
.user-status-indicator.logged-out {
background: #6B7280;
box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.3);
} .header-action-icon {
position: relative;
transition: all 0.3s ease;
}
.header-action-icon:hover {
transform: translateY(-2px);
color: #6ac8c6 !important;
} .auth-message {
padding: 1rem 1.5rem;
border-radius: 12px;
margin-bottom: 1.5rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.75rem;
animation: slideInDown 0.5s ease;
}
.auth-message.success {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
color: #065F46;
border: 1px solid rgba(16, 185, 129, 0.2);
}
.auth-message.error {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
color: #991B1B;
border: 1px solid rgba(239, 68, 68, 0.2);
}
@keyframes slideInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @keyframes modalFadeIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
#authModal.show .modal-dialog {
animation: modalFadeIn 0.3s ease-out !important;
} #authModal {
z-index: 99999 !important;
}
#authModal .modal-dialog {
z-index: 100000 !important;
margin: 0 !important;
position: relative !important;
transform: none !important;
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
}
#authModal .modal-content {
z-index: 100001 !important;
} #authModal.show {
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 1rem !important;
}
#authModal.show .modal-dialog {
margin: 0 !important;
position: relative !important;
transform: none !important;
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
} @media (max-width: 768px) {
.modal-dialog {
width: 95% !important;
max-width: none !important;
margin: 1rem !important;
}
.modal-body {
padding: 1.5rem !important;
}
.auth-tab {
padding: 0.75rem !important;
font-size: 0.9rem !important;
}
.form-control {
padding: 0.75rem !important;
}
.auth-submit-btn {
padding: 0.75rem 1.5rem !important;
font-size: 0.9rem !important;
}
} .cart-user-benefits-section {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
border: 2px solid #e2e8f0;
border-radius: 20px;
padding: 2rem;
margin: 2rem 0;
position: relative;
overflow: hidden;
}
.cart-user-benefits-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
border-radius: 18px;
z-index: 1;
}
.cart-user-benefits-section > * {
position: relative;
z-index: 2;
}
.benefits-header {
text-align: center;
margin-bottom: 2rem;
}
.benefits-title {
color: #1e293b;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.benefits-subtitle {
color: #64748b;
font-size: 1rem;
margin-bottom: 0;
}
.careers-page .benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.careers-page .benefit-card {
background: #ffffff;
border-radius: 16px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
display: flex;
align-items: flex-start;
gap: 1rem;
}
.careers-page .benefit-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
border-color: #3b82f6;
}
.careers-page .benefit-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.careers-page .benefit-icon i {
color: #ffffff;
font-size: 1.25rem;
}
.careers-page .benefit-content h5 {
color: #1e293b;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.careers-page .benefit-content p {
color: #64748b;
font-size: 0.9rem;
margin-bottom: 0;
line-height: 1.5;
}
.benefits-cta {
text-align: center;
padding-top: 1rem;
border-top: 1px solid #e2e8f0;
}
.benefits-cta .btn {
margin: 0 0.5rem;
min-width: 160px;
padding: 0.75rem 1.5rem;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}
.benefits-cta .btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} @media (max-width: 768px) {
.benefits-grid {
grid-template-columns: 1fr;
}
.benefits-cta .btn {
width: 100%;
margin: 0.5rem 0;
}
#authModal .modal-dialog {
margin: 1rem !important;
max-width: calc(100% - 2rem) !important;
}
} @media (max-width: 768px) {
.auth-modal-content .modal-dialog {
margin: 1rem;
max-width: calc(100% - 2rem);
}
.auth-modal-content .modal-body {
padding: 1.5rem;
}
.auth-title {
font-size: 1.5rem;
}
.auth-tabs {
flex-direction: column;
gap: 0.5rem;
}
.auth-tabs .nav-link {
padding: 0.75rem 1rem;
}
} .modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
.modal.show .modal-dialog {
transform: none;
} .tab-pane {
transition: opacity 0.3s ease;
}
.tab-pane.fade:not(.show) {
opacity: 0;
}
.tab-pane.fade.show {
opacity: 1;
} .auth-form .form-control.is-invalid {
border-color: #EF4444;
box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.25);
}
.auth-form .form-control.is-valid {
border-color: #10B981;
box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}
.invalid-feedback {
color: #EF4444;
font-size: 0.875rem;
font-weight: 500;
margin-top: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.valid-feedback {
color: #10B981;
font-size: 0.875rem;
font-weight: 500;
margin-top: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
} .cart-auth-section {
background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
border: 2px solid rgba(106, 200, 198, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
margin-bottom: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.cart-auth-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #6ac8c6 0%, #0e2954 50%, #6ac8c6 100%);
background-size: 200% 100%;
animation: shimmer 3s ease-in-out infinite;
}
.auth-section-header {
margin-bottom: 2rem;
}
.auth-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #6ac8c6 0%, #0e2954 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: white;
font-size: 2rem;
box-shadow: 0 10px 30px rgba(106, 200, 198, 0.3);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.auth-section-title {
font-size: 1.75rem;
font-weight: 700;
color: #0e2954;
margin-bottom: 0.75rem;
line-height: 1.3;
}
.auth-section-subtitle {
color: #6B7280;
font-size: 1.1rem;
margin: 0;
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}
.auth-section-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 2.5rem;
flex-wrap: wrap;
}
.auth-action-btn {
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
min-width: 180px;
position: relative;
overflow: hidden;
}
.auth-action-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.auth-action-btn:hover::before {
left: 100%;
}
.auth-action-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(14, 41, 84, 0.3);
}
.auth-section-benefits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
max-width: 800px;
margin: 0 auto;
}
.benefit-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem;
background: rgba(106, 200, 198, 0.05);
border-radius: 12px;
border: 1px solid rgba(106, 200, 198, 0.1);
transition: all 0.3s ease;
font-weight: 500;
color: #374151;
}
.benefit-item:hover {
background: rgba(106, 200, 198, 0.1);
border-color: rgba(106, 200, 198, 0.2);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(106, 200, 198, 0.15);
}
.benefit-item i {
font-size: 1.25rem;
width: 24px;
text-align: center;
} @media (max-width: 768px) {
.cart-auth-section {
padding: 2rem 1.5rem;
margin-bottom: 1.5rem;
}
.auth-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
.auth-section-title {
font-size: 1.5rem;
}
.auth-section-subtitle {
font-size: 1rem;
}
.auth-section-actions {
flex-direction: column;
align-items: center;
}
.auth-action-btn {
width: 100%;
max-width: 300px;
}
.auth-section-benefits {
grid-template-columns: 1fr;
gap: 1rem;
}
.benefit-item {
padding: 0.75rem;
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.cart-auth-section {
padding: 1.5rem 1rem;
}
.auth-section-title {
font-size: 1.25rem;
}
.auth-section-subtitle {
font-size: 0.9rem;
}
}  .header-auth-buttons {
display: flex;
gap: 0.5rem;
align-items: center;
}
.header-auth-buttons .btn {
font-size: 0.8rem;
padding: 0.4rem 0.8rem;
border-radius: 8px;
font-weight: 500;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.header-auth-buttons .btn-outline-primary {
color: #3b82f6;
border-color: #3b82f6;
background: transparent;
}
.header-auth-buttons .btn-outline-primary:hover {
background: #3b82f6;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.header-auth-buttons .btn-primary {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
border: none;
color: #ffffff;
}
.header-auth-buttons .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
color: #ffffff;
} @media (max-width: 768px) {
.header-auth-buttons {
flex-direction: column;
gap: 0.25rem;
}
.header-auth-buttons .btn {
font-size: 0.7rem;
padding: 0.3rem 0.6rem;
}
}
@media (max-width: 480px) {
.header-auth-buttons {
flex-direction: row;
gap: 0.25rem;
}
.header-auth-buttons .btn {
font-size: 0.65rem;
padding: 0.25rem 0.5rem;
}
.header-auth-buttons .btn i {
display: none;
}
} .cart-auth-section-block {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
border: 1px solid #e2e8f0;
border-radius: 20px;
padding: 2.5rem;
margin: 2rem 0;
box-shadow: 
0 10px 25px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
position: relative;
animation: fadeInUp 0.6s ease-out;
overflow: hidden;
}
.cart-auth-section-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #3b82f6, #1d4ed8, #10b981);
border-radius: 20px 20px 0 0;
}
.cart-auth-section-block::after {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
pointer-events: none;
}
.cart-auth-section-block .auth-section-header {
text-align: center;
margin-bottom: 2.5rem;
position: relative;
z-index: 2;
}
.cart-auth-section-block .auth-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
transition: all 0.4s ease;
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
position: relative;
overflow: hidden;
}
.cart-auth-section-block .auth-icon::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
animation: shimmer 3s infinite;
}
.cart-auth-section-block .auth-icon:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}
.cart-auth-section-block .auth-icon i {
font-size: 2rem;
color: #ffffff;
position: relative;
z-index: 1;
}
.cart-auth-section-block .auth-section-title {
color: #1f2937;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.75rem;
line-height: 1.3;
letter-spacing: -0.025em;
}
.cart-auth-section-block .auth-section-subtitle {
color: #6b7280;
font-size: 1rem;
margin: 0;
line-height: 1.6;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cart-auth-section-block .auth-section-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
position: relative;
z-index: 2;
}
.cart-auth-section-block .auth-action-btn {
padding: 1rem 2rem;
border-radius: 12px;
font-size: 1rem;
font-weight: 600;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.75rem;
min-width: 180px;
justify-content: center;
border: 2px solid transparent;
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.cart-auth-section-block .auth-action-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s ease;
}
.cart-auth-section-block .auth-action-btn:hover::before {
left: 100%;
}
.cart-auth-section-block .auth-action-btn.btn-primary {
background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
color: #ffffff;
border-color: #3b82f6;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.cart-auth-section-block .auth-action-btn.btn-primary:hover {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
border-color: #2563eb;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
color: #ffffff;
}
.cart-auth-section-block .auth-action-btn.btn-outline-primary {
color: #3b82f6;
border-color: #3b82f6;
background: #ffffff;
backdrop-filter: blur(10px);
}
.cart-auth-section-block .auth-action-btn.btn-outline-primary:hover {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: #ffffff;
border-color: #3b82f6;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.cart-auth-section-block .auth-section-benefits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-top: 1.5rem;
position: relative;
z-index: 2;
max-width: 100%;
}
.cart-auth-section-block .benefit-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem;
background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
border-radius: 12px;
border: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cart-auth-section-block .benefit-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.6s ease;
}
.cart-auth-section-block .benefit-item:hover::before {
left: 100%;
}
.cart-auth-section-block .benefit-item:hover {
background: #000000;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cart-auth-section-block .benefit-item i {
font-size: 1.25rem;
color: #ffffff;
width: 20px;
text-align: center;
position: relative;
z-index: 1;
}
.cart-auth-section-block .benefit-item span {
color: #ffffff;
font-weight: 500;
font-size: 0.9rem;
line-height: 1.4;
position: relative;
z-index: 1;
} @media (max-width: 768px) {
.cart-auth-section-block {
padding: 2rem;
margin: 1.5rem 0;
}
.cart-auth-section-block .auth-icon {
width: 70px;
height: 70px;
}
.cart-auth-section-block .auth-icon i {
font-size: 1.75rem;
}
.cart-auth-section-block .auth-section-title {
font-size: 1.25rem;
}
.cart-auth-section-block .auth-section-subtitle {
font-size: 0.9rem;
}
.cart-auth-section-block .auth-section-actions {
flex-direction: column;
gap: 0.75rem;
}
.cart-auth-section-block .auth-action-btn {
width: 100%;
min-width: auto;
padding: 0.875rem 1.5rem;
}
.cart-auth-section-block .auth-section-benefits {
grid-template-columns: 1fr;
gap: 0.75rem;
}
}
@media (max-width: 480px) {
.cart-auth-section-block {
padding: 1.5rem;
margin: 1rem 0;
}
.cart-auth-section-block .auth-icon {
width: 60px;
height: 60px;
}
.cart-auth-section-block .auth-icon i {
font-size: 1.5rem;
}
.cart-auth-section-block .auth-section-title {
font-size: 1.125rem;
}
.cart-auth-section-block .auth-section-subtitle {
font-size: 0.875rem;
}
.cart-auth-section-block .auth-action-btn {
padding: 0.75rem 1.25rem;
font-size: 0.9rem;
}
.cart-auth-section-block .benefit-item {
padding: 1rem;
}
.cart-auth-section-block .benefit-item i {
font-size: 1.125rem;
}
.cart-auth-section-block .benefit-item span {
font-size: 0.85rem;
}
} .auth-modal-content .modal-header,
.modal-header.border-0 {
background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
color: #ffffff;
border: none;
border-radius: 20px 20px 0 0;
padding: 1.5rem;
}
.modal-header.border-0 .modal-title {
color: #ffffff;
font-weight: 600;
font-size: 1.25rem;
}
.modal-header.border-0 .btn-close {
filter: invert(1);
opacity: 0.8;
}
.modal-header.border-0 .btn-close:hover {
opacity: 1;
}  .header-user-icon {
display: flex;
align-items: center;
}
.user-login-btn {
font-size: 0.9rem;
padding: 0.5rem 0.75rem;
border-radius: 10px;
font-weight: 500;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.25rem;
color: #3b82f6;
border-color: #3b82f6;
background: transparent;
}
.user-login-btn:hover {
background: #3b82f6;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
} .auth-divider {
position: relative;
text-align: center;
margin: 1.5rem 0;
}
.auth-divider::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #e5e7eb;
}
.auth-divider span {
background: #ffffff;
padding: 0 1rem;
color: #6b7280;
font-size: 0.9rem;
position: relative;
z-index: 1;
} .auth-register-section {
text-align: center;
margin-top: 1rem;
}
.auth-register-text {
color: #6b7280;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.auth-register-section .btn {
font-size: 0.9rem;
padding: 0.75rem 1rem;
border-radius: 10px;
font-weight: 500;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.auth-register-section .btn-outline-primary {
color: #3b82f6;
border-color: #3b82f6;
background: transparent;
}
.auth-register-section .btn-outline-primary:hover {
background: #3b82f6;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}.site-footer {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
color: #ffffff;
position: relative;
overflow: hidden;
padding: 2rem 0 1rem;
margin-top: 1.5rem;
} .footer-particles {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
animation: float 20s ease-in-out infinite;
}
.footer-pills {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
animation: shimmer 15s ease-in-out infinite;
} .footer-particles::before,
.footer-particles::after {
content: '';
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
animation: floatParticle 8s ease-in-out infinite;
}
.footer-particles::before {
top: 20%;
left: 10%;
animation-delay: 0s;
}
.footer-particles::after {
bottom: 30%;
right: 15%;
animation-delay: 4s;
}
.footer-pills::before,
.footer-pills::after {
content: '';
position: absolute;
width: 60px;
height: 30px;
border-radius: 50px;
background: linear-gradient(135deg, rgba(106, 200, 198, 0.3) 0%, rgba(27, 90, 122, 0.3) 100%);
animation: floatPill 6s ease-in-out infinite;
}
.footer-pills::before {
top: 40%;
left: 20%;
animation-delay: 2s;
}
.footer-pills::after {
bottom: 20%;
right: 25%;
animation-delay: 6s;
}
@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
}
@keyframes shimmer {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
@keyframes floatParticle {
0%, 100% {
transform: translateY(0px) translateX(0px) rotate(0deg);
opacity: 0.7;
}
25% {
transform: translateY(-30px) translateX(10px) rotate(90deg);
opacity: 1;
}
50% {
transform: translateY(-60px) translateX(-5px) rotate(180deg);
opacity: 0.8;
}
75% {
transform: translateY(-30px) translateX(-10px) rotate(270deg);
opacity: 1;
}
}
@keyframes floatPill {
0%, 100% {
transform: translateY(0px) translateX(0px) rotate(0deg);
opacity: 0.6;
}
25% {
transform: translateY(-20px) translateX(15px) rotate(45deg);
opacity: 0.9;
}
50% {
transform: translateY(-40px) translateX(-10px) rotate(90deg);
opacity: 0.7;
}
75% {
transform: translateY(-20px) translateX(-15px) rotate(135deg);
opacity: 0.9;
}
} .footer-particles .particle {
position: absolute;
border-radius: 50%;
animation: floatParticle 8s ease-in-out infinite;
pointer-events: none;
}
.footer-pills .pill {
position: absolute;
border-radius: 50px;
animation: floatPill 6s ease-in-out infinite;
pointer-events: none;
} .footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 48px;
margin-bottom: 0px;
position: relative;
z-index: 3;
} .footer-company {
max-width: 400px;
}
.footer-logo {
margin-bottom: 1.5rem;
}
.footer-logo .logo-img {
height: 50px;
width: auto;
filter: brightness(0) invert(1);
}
.footer-contact {
margin-top: 0px;
}
.contact-item {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
color: #ffffff !important;
transition: all 0.3s ease;
}
.contact-item:hover {
color: #ffffff !important;
transform: translateX(5px);
}
.contact-item svg {
width: 16px;
height: 16px;
color: #3b82f6;
flex-shrink: 0;
}
.contact-item span {
font-size: 0.95rem;
font-weight: 500;
color: #ffffff !important;
} .footer-links h4 {
color: #ffffff;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
}
.footer-links h4::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 30px;
height: 2px;
background: linear-gradient(90deg, #3b82f6, #1d4ed8);
border-radius: 1px;
}
.footer-links ul {
list-style: none;
margin: 0;
padding: 0;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: #ffffff !important;
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
display: inline-block;
}
.footer-links a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #3b82f6, #1d4ed8);
transition: width 0.3s ease;
}
.footer-links a:hover {
color: #ffffff !important;
transform: translateX(5px);
}
.footer-links a:hover::after {
width: 100%;
} .social-icons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-icons a {
width: 45px;
height: 45px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}
.social-icons a:hover {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
border-color: transparent;
}
.social-icons a i {
font-size: 1.1rem;
}
.footer-bottom-content {
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.copyright p {
color: #ffffff !important;
font-size: 0.9rem;
margin: 0;
}
.footer-badges {
display: flex;
gap: 1rem;
align-items: center;
}
.badge {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.1);
padding: 0.5rem 1rem;
border-radius: 20px;
color: #ffffff;
font-size: 0.8rem;
font-weight: 500;
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.badge:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.badge svg {
width: 16px;
height: 16px;
color: #10b981;
} .back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 45px;
height: 45px;
border-radius: 8px;
background: linear-gradient(135deg, #1b5a7a 0%, #6ac8c6 100%);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(27, 90, 122, 0.3);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(27, 90, 122, 0.5);
background: linear-gradient(135deg, #6ac8c6 0%, #1b5a7a 100%);
}
.back-to-top i,
.back-to-top .fas,
.back-to-top .fa {
font-size: 18px;
color: #ffffff !important;
line-height: 1;
display: block;
pointer-events: none;
}
.back-to-top svg {
display: none;
} @media (max-width: 1024px) {
.site-footer {
padding: 1.5rem 0 1rem;
}
.footer-content {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.footer-column {
text-align: center;
}
}
@media (max-width: 768px) { * {
text-align: left !important;
}
body, p, h1, h2, h3, h4, h5, h6, div, span, a, li, td, th, label, input, textarea, select, button, section, article, header, footer, nav, ul, ol {
text-align: left !important;
} [class*="center"], [class*="Center"], [class*="CENTER"] {
text-align: left !important;
justify-content: flex-start !important;
align-items: flex-start !important;
}
.site-footer {
padding: 1.5rem 0 0.75rem;
}
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: left !important;
justify-content: flex-start !important;
}
.footer-column {
margin-bottom:0px;
text-align: left !important;
}
.footer-logo {
margin-bottom: 1rem;
text-align: left !important;
}
.footer-social {
justify-content: flex-start !important;
text-align: left !important;
}
.footer-bottom {
text-align: left !important;
}
.footer-logo .logo-img {
height: 40px;
}
.footer-links h4 {
font-size: 1.2rem;
margin-bottom: 1rem;
}
.footer-links ul {
flex-direction: column;
gap: 0.5rem;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
font-size: 0.9rem;
}
.contact-item {
margin-bottom: 0.75rem;
justify-content: center;
}
.contact-item span {
font-size: 0.9rem;
color: #ffffff !important;
}
.contact-item {
color: #ffffff !important;
}
.footer-links a {
color: #ffffff !important;
}
.social-icons {
justify-content: center;
margin-top: 1rem;
}
.social-icons a {
width: 40px;
height: 40px;
}
.footer-bottom-content {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.footer-bottom p {
font-size: 0.8rem;
color: #ffffff !important;
}
.footer-badges {
justify-content: center;
}
.back-to-top {
bottom: 1rem;
right: 1rem;
width: 45px;
height: 45px;
}
}
@media (max-width: 576px) {
.site-footer {
padding: 1.5rem 0 0.75rem;
}
.footer-content {
gap: 1.5rem;
}
.footer-column {
margin-bottom: 0px;
}
.footer-logo .logo-img {
height: 35px;
}
.footer-links h4 {
font-size: 1.1rem;
}
.footer-links a {
font-size: 0.85rem;
}
.contact-item span {
font-size: 0.85rem;
color: #ffffff !important;
}
.contact-item {
color: #ffffff !important;
}
.footer-links a {
color: #ffffff !important;
}
.copyright p {
color: #ffffff !important;
}
.social-icons a {
width: 35px;
height: 35px;
}
.footer-bottom p {
font-size: 0.75rem;
color: #ffffff !important;
}
.badge {
padding: 0.4rem 0.8rem;
font-size: 0.75rem;
}
.back-to-top {
width: 40px;
height: 40px;
}
.back-to-top svg {
width: 18px;
height: 18px;
}
}.alphaweb-custom-price {
margin-bottom: 0 !important;
padding: 0 !important;
} .alphaweb-business-price, 
.alphaweb-individual-price {
margin: 15px 0;
padding: 15px;
background: #f8f9fa;
border: 2px solid #dee2e6;
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.alphaweb-business-price {
border-color: #28a745;
background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
}
.alphaweb-individual-price {
border-color: #007bff;
background: linear-gradient(135deg, #d1ecf1 0%, #e3f2fd 100%);
}
.alphaweb-business-price .business-price {
color: #28a745;
font-weight: bold;
font-size: 1.2em;
}
.alphaweb-individual-price .individual-price {
color: #007bff;
font-weight: bold;
font-size: 1.2em;
}
.alphaweb-business-price .label, 
.alphaweb-individual-price .label {
font-weight: 600;
display: block;
margin-bottom: 5px;
font-size: 0.9em;
text-transform: uppercase;
letter-spacing: 0.5px;
} .alphaweb-loop-business-price, 
.alphaweb-loop-individual-price {
margin: 8px 0;
padding: 5px 10px;
background: rgba(255,255,255,0.9);
border-radius: 4px;
display: inline-block;
}
.alphaweb-loop-business-price .business-price {
color: #28a745;
font-weight: 600;
font-size: 0.95em;
}
.alphaweb-loop-individual-price .individual-price {
color: #007bff;
font-weight: 600;
font-size: 0.95em;
} .woocommerce-cart-form .product-price .alphaweb-price {
font-weight: bold;
color: #333;
}
.woocommerce-cart-form .product-subtotal .alphaweb-subtotal {
font-weight: bold;
color: #333;
} .alphaweb-checkout-info {
background: #f8f9fa;
border: 2px solid #dee2e6;
border-radius: 6px;
padding: 15px;
margin: 15px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.alphaweb-checkout-info p {
margin: 0;
font-size: 0.95em;
line-height: 1.5;
}
.alphaweb-checkout-info strong {
display: block;
margin-bottom: 5px;
font-size: 1.1em;
}
.alphaweb-checkout-info.business-pricing {
border-color: #28a745;
background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
}
.alphaweb-checkout-info.business-pricing strong {
color: #28a745;
}
.alphaweb-checkout-info.individual-pricing {
border-color: #007bff;
background: linear-gradient(135deg, #d1ecf1 0%, #e3f2fd 100%);
}
.alphaweb-checkout-info.individual-pricing strong {
color: #007bff;
} .alphaweb-price-badge {
display: inline-block;
padding: 3px 8px;
border-radius: 3px;
font-size: 0.75em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-left: 8px;
}
.alphaweb-price-badge.business {
background: #28a745;
color: white;
}
.alphaweb-price-badge.individual {
background: #007bff;
color: white;
} @media (max-width: 768px) {
.alphaweb-business-price, 
.alphaweb-individual-price {
padding: 10px;
margin: 10px 0;
}
.alphaweb-business-price .business-price,
.alphaweb-individual-price .individual-price {
font-size: 1.1em;
}
.alphaweb-checkout-info {
padding: 12px;
margin: 12px 0;
}
} .woocommerce-order-details .alphaweb-order-price {
font-weight: 600;
}
.woocommerce-order-details .alphaweb-customer-type {
font-size: 0.85em;
color: #666;
font-style: italic;
} .alphaweb-admin-price-indicator {
display: inline-block;
padding: 2px 6px;
border-radius: 3px;
font-size: 0.8em;
margin-left: 5px;
}
.alphaweb-admin-price-indicator.business {
background: #d4edda;
color: #28a745;
}
.alphaweb-admin-price-indicator.individual {
background: #d1ecf1;
color: #007bff;
} .alphaweb-free-items-label {
margin-top: 8px;
padding: 8px 12px;
background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
border: 2px solid #28a745;
border-radius: 6px;
display: inline-block;
font-size: 0.9em;
line-height: 1.5;
}
.alphaweb-free-items-label .free-items-info {
color: #155724;
font-weight: 600;
margin-right: 6px;
}
.alphaweb-free-items-label .free-items-badge {
background: #28a745;
color: white;
padding: 4px 10px;
border-radius: 4px;
font-weight: 700;
font-size: 1em;
margin: 0 6px;
display: inline-block;
box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}
.alphaweb-free-items-label .free-items-offer {
color: #155724;
font-size: 0.85em;
font-style: italic;
margin-left: 6px;
} .woocommerce-cart-form .alphaweb-free-items-label,
.cart-table .alphaweb-free-items-label,
.cart-item-luxury .alphaweb-free-items-label {
display: block;
margin-top: 10px;
clear: both;
}
.product-name .alphaweb-free-items-label,
.cart-product-details .alphaweb-free-items-label,
.product-details-luxury .alphaweb-free-items-label {
display: block;
margin-top: 10px;
} .woocommerce-mini-cart-item .alphaweb-free-items-label {
margin-top: 5px;
font-size: 0.85em;
padding: 5px 8px;
} .woocommerce-checkout-review-order-table .alphaweb-free-items-label {
margin-top: 5px;
font-size: 0.85em;
padding: 5px 8px;
} .alphaweb-subtotal-wrapper {
display: block;
}
.alphaweb-paid-subtotal {
display: block;
font-weight: 700;
font-size: 1.1em;
color: #0e2954;
margin-bottom: 5px;
}
.alphaweb-free-subtotal-label {
margin-top: 5px;
font-size: 0.85em;
}
.alphaweb-free-subtotal-label .free-subtotal-badge {
background: #28a745;
color: white;
padding: 3px 8px;
border-radius: 4px;
font-weight: 600;
display: inline-block;
margin-right: 5px;
}
.alphaweb-free-subtotal-label .free-subtotal-offer {
color: #155724;
font-style: italic;
}
.alphaweb-free-subtotal {
color: #28a745;
font-weight: 700;
font-size: 1.1em;
} .alphaweb-buy-x-get-y-message-row {
border-top: 2px solid #dee2e6;
}
.alphaweb-buy-x-get-y-message-wrapper {
padding: 15px 0 !important;
}
.alphaweb-buy-x-get-y-message {
background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
border: 2px solid #28a745;
border-radius: 8px;
padding: 15px 20px;
margin: 0;
color: #155724;
font-size: 0.95em;
line-height: 1.6;
}
.alphaweb-buy-x-get-y-message strong {
color: #0d4723;
font-weight: 700;
display: block;
margin-bottom: 8px;
font-size: 1.1em;
}
.alphaweb-buy-x-get-y-message .message-icon {
display: inline-block;
margin-right: 8px;
font-size: 1.2em;
} .alphaweb-tiered-pricing-message {
margin: 15px 0;
padding: 15px 20px;
background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
border: 2px solid #28a745;
border-radius: 8px;
color: #155724;
font-size: 0.95em;
}
.alphaweb-tiered-pricing-message strong {
display: block;
font-size: 1em;
margin-bottom: 8px;
}
.alphaweb-tiered-pricing-message ul {
list-style: none;
margin: 0;
padding-left: 0;
}
.alphaweb-tiered-pricing-message li {
margin-bottom: 4px;
padding-left: 18px;
position: relative;
}
.alphaweb-tiered-pricing-message li:before {
content: "✔";
color: #28a745;
position: absolute;
left: 0;
} @media (max-width: 768px) {
.alphaweb-free-items-label {
font-size: 0.85em;
padding: 6px 10px;
}
.alphaweb-free-items-label .free-items-badge {
padding: 3px 8px;
font-size: 0.9em;
margin: 0 4px;
}
.alphaweb-free-items-label .free-items-offer {
display: block;
margin-top: 4px;
margin-left: 0;
}
.alphaweb-paid-subtotal {
font-size: 1em;
}
.alphaweb-free-subtotal-label {
font-size: 0.8em;
}
}