Fix: Restore website functionality - all pages and APIs working

This commit is contained in:
Local Server
2026-01-14 07:16:04 -06:00
parent dc58a8ae5f
commit 9f659a2c59
41 changed files with 10890 additions and 3029 deletions

View File

@@ -188,6 +188,53 @@
color: #1a1a1a;
}
/* Button Styles for Cart/Wishlist Dropdowns */
.action-dropdown .btn-outline,
.action-dropdown .btn-text,
.action-dropdown .btn-primary-full {
display: inline-block;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
text-align: center;
text-decoration: none;
cursor: pointer;
transition: all 0.2s;
border: none;
}
.action-dropdown .btn-outline {
background: transparent;
color: #6b46c1;
border: 1px solid #6b46c1;
}
.action-dropdown .btn-outline:hover {
background: #f3f0ff;
}
.action-dropdown .btn-text {
background: transparent;
color: #6b7280;
padding: 8px;
}
.action-dropdown .btn-text:hover {
color: #FCB1D8;
}
.action-dropdown .btn-primary-full {
background: #6b46c1;
color: white;
width: 100%;
margin-top: 8px;
}
.action-dropdown .btn-primary-full:hover {
background: #5a38a3;
}
/* Scrollbar for dropdown body */
.dropdown-body::-webkit-scrollbar {
width: 6px;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,280 @@
/**
* Mobile Navbar Fixes
* Ensures hamburger menu, cart, and wishlist are visible on mobile devices
*/
/* Mobile hamburger menu - always visible on small screens */
@media (max-width: 768px) {
.mobile-toggle {
display: flex !important;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 10;
}
.toggle-line {
width: 24px;
height: 3px;
background-color: #202023;
border-radius: 2px;
transition: all 0.3s ease;
}
/* Hide desktop menu on mobile */
.navbar-menu {
display: none !important;
}
/* Ensure cart and wishlist icons are visible */
.navbar-actions {
display: flex !important;
gap: 12px;
align-items: center;
}
.action-item {
display: block !important;
}
.action-btn {
display: flex !important;
align-items: center;
justify-content: center;
position: relative;
background: none;
border: none;
cursor: pointer;
padding: 8px;
color: #202023;
font-size: 20px;
}
.action-btn i {
display: block !important;
}
.action-badge {
display: flex !important;
position: absolute;
top: 2px;
right: 2px;
background: #fcb1d8;
color: #202023;
font-size: 11px;
font-weight: 600;
min-width: 18px;
height: 18px;
border-radius: 50%;
align-items: center;
justify-content: center;
padding: 0 4px;
}
.action-badge.show {
opacity: 1 !important;
visibility: visible !important;
}
/* Mobile menu overlay */
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 999;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
/* Mobile menu sidebar */
.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: white;
box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
transition: right 0.3s ease;
z-index: 1000;
overflow-y: auto;
padding: 20px;
}
.mobile-menu.active {
right: 0;
}
.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid #f0f0f0;
}
.mobile-brand {
font-family: "Roboto", sans-serif;
font-size: 18px;
font-weight: 600;
color: #202023;
}
.mobile-close {
background: none;
border: none;
font-size: 24px;
color: #202023;
cursor: pointer;
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-menu-list {
list-style: none;
padding: 0;
margin: 0;
}
.mobile-menu-list li {
margin-bottom: 4px;
}
.mobile-link {
display: block;
padding: 12px 16px;
color: #202023;
text-decoration: none;
font-size: 16px;
font-weight: 500;
border-radius: 8px;
transition: all 0.2s ease;
}
.mobile-link:hover,
.mobile-link:focus {
background: #ffebeb;
color: #fcb1d8;
}
/* Dropdown menus on mobile */
.action-dropdown {
position: fixed !important;
right: 0;
left: 0;
top: auto;
bottom: 0;
width: 100% !important;
max-width: 100% !important;
max-height: 70vh;
border-radius: 16px 16px 0 0 !important;
transform: translateY(100%) !important;
}
.action-dropdown.show {
transform: translateY(0) !important;
}
/* Compact dropdown on mobile */
.dropdown-head {
padding: 16px;
border-bottom: 1px solid #f0f0f0;
}
.dropdown-head h3 {
font-size: 18px;
}
.dropdown-body {
max-height: calc(70vh - 140px);
overflow-y: auto;
padding: 12px;
}
.dropdown-foot {
padding: 12px 16px;
border-top: 1px solid #f0f0f0;
}
/* Prevent body scroll when menu is open */
body.menu-open {
overflow: hidden;
}
}
/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
.navbar-actions {
gap: 16px;
}
.action-btn {
font-size: 22px;
}
.action-dropdown {
max-width: 360px !important;
}
}
/* Desktop - hide mobile elements */
@media (min-width: 769px) {
.mobile-toggle {
display: none !important;
}
.mobile-menu,
.mobile-menu-overlay {
display: none !important;
}
}
/* Accessibility improvements */
.action-btn:focus,
.mobile-toggle:focus,
.mobile-close:focus {
outline: 2px solid #fcb1d8;
outline-offset: 2px;
}
.mobile-link:focus {
outline: 2px solid #fcb1d8;
outline-offset: -2px;
}
/* Smooth transitions */
* {
-webkit-tap-highlight-color: transparent;
}
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
/* Fix for iOS Safari button styling */
button:focus {
outline: none;
}
button:focus-visible {
outline: 2px solid #fcb1d8;
outline-offset: 2px;
}

View File

@@ -0,0 +1,139 @@
/* Page-specific overrides for home, portfolio, blog, etc. */
/* Sticky Banner Wrapper */
.sticky-banner-wrapper {
position: sticky;
top: 0;
z-index: 1000;
background: #ffd0d0;
}
.sticky-banner-wrapper .modern-navbar {
position: relative;
box-shadow: none;
}
/* CRITICAL FIX: Force dropdowns below navbar */
.modern-navbar {
position: relative !important;
overflow: visible !important;
transform: none !important;
}
.modern-navbar .navbar-wrapper {
overflow: visible !important;
}
.modern-navbar .navbar-actions {
overflow: visible !important;
display: flex !important;
gap: 8px !important;
}
.modern-navbar .action-btn,
.modern-navbar #wishlistToggle,
.modern-navbar #cartToggle {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 44px !important;
height: 44px !important;
}
.modern-navbar .action-item,
.modern-navbar .wishlist-dropdown-wrapper,
.modern-navbar .cart-dropdown-wrapper {
position: relative !important;
overflow: visible !important;
}
.modern-navbar .action-dropdown,
.modern-navbar #cartPanel,
.modern-navbar #wishlistPanel {
position: absolute !important;
right: 0 !important;
left: auto !important;
z-index: 999999 !important;
background: white !important;
width: 400px !important;
max-height: 500px !important;
}
@media (max-width: 639px) {
.modern-navbar .action-dropdown,
.modern-navbar #cartPanel,
.modern-navbar #wishlistPanel {
position: fixed !important;
top: 60px !important;
right: 8px !important;
left: 8px !important;
width: auto !important;
max-width: 400px !important;
}
}
/* Product Title Link */
.product-title-link {
text-decoration: none !important;
color: #202023 !important;
display: block !important;
cursor: pointer !important;
transition: color 0.3s ease;
position: relative;
z-index: 10;
}
.product-title-link:hover {
color: #fcb1d8 !important;
}
.product-title-link h3 {
color: inherit;
transition: color 0.3s ease;
margin: 0;
pointer-events: none;
}
.product-title-link:hover h3 {
color: #fcb1d8 !important;
}
/* Contact Page Mobile */
@media (max-width: 768px) {
#contactForm > div[style*="grid-template-columns"] {
grid-template-columns: 1fr !important;
}
.contact-form-wrapper {
padding: 24px !important;
border-radius: 12px !important;
}
.contact-section {
padding: 40px 0 !important;
}
section[style*="padding: 100px"] {
padding: 60px 0 !important;
}
h1[style*="font-size: 2.5rem"] {
font-size: 1.8rem !important;
}
h2[style*="font-size: 2rem"] {
font-size: 1.5rem !important;
}
#contactInfoSection div[style*="grid-template-columns"] {
grid-template-columns: 1fr !important;
gap: 16px !important;
}
input, textarea, button {
font-size: 16px !important;
}
}
@media (max-width: 480px) {
.contact-form-wrapper {
padding: 20px !important;
}
.container {
padding-left: 16px !important;
padding-right: 16px !important;
}
}

View File

@@ -232,18 +232,18 @@
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
right: -100%;
width: 280px;
height: 100vh;
background: white;
z-index: 9999;
transition: left 0.3s ease;
transition: right 0.3s ease;
overflow-y: auto;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.mobile-menu.active {
left: 0;
right: 0;
}
.mobile-menu-overlay {

View File

@@ -0,0 +1,630 @@
/**
* Responsive Layout Utilities
* Mobile-first responsive design system
*/
/* ========================================
RESPONSIVE UTILITIES
======================================== */
/* Loading States */
.loading {
position: relative;
pointer-events: none;
opacity: 0.6;
}
.loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
border: 4px solid #f3f3f3;
border-top: 4px solid #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Accessibility */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border-width: 0;
}
.focus-visible:focus {
outline: 2px solid #667eea;
outline-offset: 2px;
}
/* Responsive Images */
img {
max-width: 100%;
height: auto;
display: block;
}
/* Container Queries */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
@media (min-width: 768px) {
.container {
padding: 0 40px;
}
}
@media (min-width: 1024px) {
.container {
padding: 0 60px;
}
}
/* Grid System */
.grid {
display: grid;
gap: 20px;
grid-template-columns: 1fr;
}
@media (min-width: 640px) {
.grid-2 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1024px) {
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
}
/* Flex Utilities */
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-wrap {
flex-wrap: wrap;
}
.items-center {
align-items: center;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
/* Spacing */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
/* Display Utilities */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
@media (max-width: 639px) {
.sm\\:hidden { display: none !important; }
}
@media (min-width: 640px) {
.sm\\:block { display: block; }
}
@media (max-width: 767px) {
.md\\:hidden { display: none !important; }
}
@media (min-width: 768px) {
.md\\:block { display: block; }
.md\\:flex { display: flex; }
}
@media (max-width: 1023px) {
.lg\\:hidden { display: none !important; }
}
@media (min-width: 1024px) {
.lg\\:block { display: block; }
.lg\\:flex { display: flex; }
}
/* ========================================
RESPONSIVE PRODUCT CARDS
======================================== */
.products-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
padding: 20px 0;
}
@media (min-width: 640px) {
.products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
}
@media (min-width: 768px) {
.products-grid {
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
}
@media (min-width: 1024px) {
.products-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.product-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.product-image-wrapper {
position: relative;
padding-top: 100%;
overflow: hidden;
background: #f5f5f5;
}
/* .product-image styles moved to main.css - do not override */
/* Commented out to prevent conflict with main.css product-image styles */
/*
.product-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
*/
.product-info {
padding: 16px;
}
.product-title {
font-size: 1rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #333;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-price {
font-size: 1.25rem;
font-weight: 700;
color: #667eea;
margin: 0 0 12px 0;
}
.product-actions {
display: flex;
gap: 8px;
flex-direction: column;
}
@media (min-width: 768px) {
.product-actions {
flex-direction: row;
}
}
.wishlist-btn {
position: absolute;
top: 12px;
right: 12px;
width: 40px;
height: 40px;
border-radius: 50%;
background: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: #666;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
z-index: 10;
}
.wishlist-btn:hover {
background: #667eea;
color: white;
transform: scale(1.1);
}
.wishlist-btn.active {
background: #dc3545;
color: white;
}
/* ========================================
RESPONSIVE CART/WISHLIST DROPDOWNS
======================================== */
.action-dropdown {
position: absolute;
top: 100%;
right: 0;
width: 100vw;
max-width: 400px;
background: white;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
border-radius: 12px;
margin-top: 8px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
max-height: 80vh;
overflow-y: auto;
}
@media (max-width: 639px) {
.action-dropdown {
position: fixed;
top: auto;
bottom: 0;
left: 0;
right: 0;
max-width: 100%;
border-radius: 12px 12px 0 0;
transform: translateY(100%);
}
}
.action-dropdown.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid #eee;
}
.dropdown-head h3 {
margin: 0;
font-size: 1.125rem;
font-weight: 600;
}
.dropdown-close {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #666;
padding: 4px;
line-height: 1;
}
.dropdown-body {
padding: 16px;
max-height: 400px;
overflow-y: auto;
}
.dropdown-foot {
padding: 16px 20px;
border-top: 1px solid #eee;
}
.cart-item,
.wishlist-item {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid #eee;
}
.cart-item:last-child,
.wishlist-item:last-child {
border-bottom: none;
}
.cart-item-image,
.wishlist-item-image {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 8px;
flex-shrink: 0;
}
.cart-item-details,
.wishlist-item-details {
flex: 1;
}
.cart-item-title,
.wishlist-item-title {
font-size: 0.875rem;
font-weight: 600;
margin: 0 0 4px 0;
}
.cart-item-price,
.wishlist-item-price {
font-size: 0.875rem;
color: #667eea;
font-weight: 600;
margin: 0;
}
.cart-item-remove,
.wishlist-item-remove {
background: none;
border: none;
color: #999;
cursor: pointer;
padding: 4px;
font-size: 16px;
}
.cart-item-remove:hover,
.wishlist-item-remove:hover {
color: #dc3545;
}
.empty-state {
text-align: center;
padding: 40px 20px;
color: #999;
}
/* ========================================
RESPONSIVE BUTTONS
======================================== */
button,
.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
font-size: 1rem;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
border: none;
white-space: nowrap;
}
.btn-primary,
.btn-primary-full {
background: #667eea;
color: white;
width: 100%;
}
.btn-primary:hover {
background: #5568d3;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}
.btn-secondary {
background: #28a745;
color: white;
}
.btn-secondary:hover {
background: #218838;
}
.btn-outline {
background: white;
color: #667eea;
border: 2px solid #667eea;
width: 100%;
}
.btn-outline:hover {
background: #667eea;
color: white;
}
.btn-text {
background: none;
color: #667eea;
text-decoration: underline;
padding: 8px;
}
@media (max-width: 639px) {
button,
.btn {
font-size: 0.875rem;
padding: 10px 20px;
}
}
/* ========================================
RESPONSIVE NAVIGATION
======================================== */
/* Navbar styles removed - see navbar.css for all navbar styling */
.action-btn {
position: relative;
background: none;
border: none;
font-size: 24px;
color: #333;
cursor: pointer;
padding: 8px;
}
.action-badge {
position: absolute;
top: 0;
right: 0;
background: #dc3545;
color: white;
font-size: 10px;
font-weight: 700;
min-width: 18px;
height: 18px;
border-radius: 9px;
display: none;
align-items: center;
justify-content: center;
padding: 0 4px;
}
/* Mobile Menu */
@media (max-width: 767px) {
.mobile-menu-toggle {
display: block;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
padding: 8px;
}
.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: white;
box-shadow: -4px 0 12px rgba(0,0,0,0.1);
transition: right 0.3s ease;
z-index: 1001;
overflow-y: auto;
}
.mobile-menu.active {
right: 0;
}
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0,0,0,0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1000;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
}
/* Print Styles */
@media print {
.modern-navbar,
.navbar-actions,
.mobile-menu,
.action-dropdown,
button {
display: none !important;
}
}

View File

@@ -0,0 +1,299 @@
/* Cart and Wishlist Item Styles */
/* Cart Items */
.cart-item {
display: flex;
gap: 12px;
padding: 16px;
background: #fafafa;
border-radius: 8px;
margin-bottom: 12px;
transition: all 0.2s;
}
.cart-item:hover {
background: #f5f5f5;
}
.cart-item-image {
flex-shrink: 0;
width: 80px;
height: 80px;
border-radius: 6px;
overflow: hidden;
background: white;
}
.cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cart-item-details {
flex: 1;
display: flex;
flex-direction: column;
gap: 6px;
}
.cart-item-name {
margin: 0;
font-size: 14px;
font-weight: 600;
color: #1a1a1a;
line-height: 1.4;
}
.cart-item-price {
margin: 0;
font-size: 15px;
font-weight: 700;
color: #6b46c1;
}
.cart-item-quantity {
display: flex;
align-items: center;
gap: 8px;
margin-top: 4px;
}
.qty-btn {
width: 28px;
height: 28px;
border: 1px solid #d1d5db;
background: white;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s;
color: #6b7280;
}
.qty-btn:hover {
border-color: #6b46c1;
color: #6b46c1;
background: #f3f0ff;
}
.qty-value {
min-width: 32px;
text-align: center;
font-size: 14px;
font-weight: 600;
color: #1a1a1a;
}
.cart-item-actions {
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-between;
}
.cart-item-remove {
width: 32px;
height: 32px;
border: none;
background: transparent;
color: #9ca3af;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.cart-item-remove:hover {
background: #fee2e2;
color: #dc2626;
}
.cart-item-total {
margin: 0;
font-size: 16px;
font-weight: 700;
color: #1a1a1a;
}
/* Wishlist Items */
.wishlist-item {
display: flex;
gap: 12px;
padding: 16px;
background: #fafafa;
border-radius: 8px;
margin-bottom: 12px;
position: relative;
transition: all 0.2s;
}
.wishlist-item:hover {
background: #f5f5f5;
}
.wishlist-item-image {
flex-shrink: 0;
width: 80px;
height: 80px;
border-radius: 6px;
overflow: hidden;
background: white;
}
.wishlist-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.wishlist-item-details {
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}
.wishlist-item-name {
margin: 0;
font-size: 14px;
font-weight: 600;
color: #1a1a1a;
line-height: 1.4;
padding-right: 24px;
}
.wishlist-item-price {
margin: 0;
font-size: 15px;
font-weight: 700;
color: #6b46c1;
}
.btn-move-to-cart {
align-self: flex-start;
padding: 6px 14px;
border: 1px solid #6b46c1;
background: transparent;
color: #6b46c1;
font-size: 13px;
font-weight: 500;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
transition: all 0.2s;
}
.btn-move-to-cart:hover {
background: #6b46c1;
color: white;
}
.wishlist-item-remove {
position: absolute;
top: 12px;
right: 12px;
width: 28px;
height: 28px;
border: none;
background: transparent;
color: #9ca3af;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.wishlist-item-remove:hover {
background: #fee2e2;
color: #dc2626;
}
/* Notifications */
.notification {
position: fixed;
bottom: 24px;
right: 24px;
min-width: 280px;
padding: 16px 20px;
background: white;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
gap: 12px;
z-index: 10000;
transform: translateY(100px);
opacity: 0;
transition: all 0.3s ease;
font-family: 'Roboto', sans-serif;
}
.notification.show {
transform: translateY(0);
opacity: 1;
}
.notification i {
font-size: 20px;
flex-shrink: 0;
}
.notification-success {
border-left: 4px solid #10b981;
}
.notification-success i {
color: #10b981;
}
.notification-info {
border-left: 4px solid #3b82f6;
}
.notification-info i {
color: #3b82f6;
}
.notification span {
flex: 1;
font-size: 14px;
font-weight: 500;
color: #1a1a1a;
}
/* Mobile Responsive */
@media (max-width: 640px) {
.cart-item,
.wishlist-item {
padding: 12px;
}
.cart-item-image,
.wishlist-item-image {
width: 64px;
height: 64px;
}
.cart-item-name,
.wishlist-item-name {
font-size: 13px;
}
.notification {
right: 16px;
left: 16px;
min-width: auto;
}
}