.product-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.product-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #f5f5f5; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.product-badges .badge-tag { background: var(--color-brand); color: #fff; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }

.product-actions { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(10px); display: flex; gap: 8px; opacity: 0; transition: opacity .3s, transform .3s; z-index: 2; }
.product-card:hover .product-actions { opacity: 1; transform: translateX(-50%) translateY(0); }
.product-actions button { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--color-black); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); font-size: 0.9rem; transition: background .2s, color .2s; }
.product-actions button:hover { background: var(--color-brand); color: #fff; }

.product-info { padding: var(--space-md); }
.product-name { font-family: var(--font-primary); font-size: 0.9rem; font-weight: 600; color: var(--color-black); margin-bottom: var(--space-xs); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name:hover { color: var(--color-brand); }
.product-price { font-size: 0.95rem; font-weight: 700; color: var(--color-brand); }
.product-price .old-price { text-decoration: line-through; color: var(--color-text-light); font-weight: 400; margin-left: var(--space-xs); font-size: 0.8rem; }

/* Quick view modal placeholder */
.quickview-btn { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* Carousel controls */
.carousel-controls { display: flex; justify-content: center; gap: var(--space-md); margin-top: var(--space-lg); }
.carousel-controls button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; color: var(--color-black); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.carousel-controls button:hover { background: var(--color-brand); border-color: var(--color-brand); color: #fff; }

/* Cart Drawer */
.cart-drawer { position: fixed; top: 0; right: 0; width: 360px; max-width: 90vw; height: 100vh; background: #fff; z-index: 999; transform: translateX(100%); transition: transform .35s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: -4px 0 20px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg); border-bottom: 1px solid var(--color-border); }
.cart-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-close { font-size: 1.2rem; color: var(--color-text-light); padding: var(--space-xs); }
.cart-close:hover { color: var(--color-black); }
.cart-body { flex: 1; overflow-y: auto; padding: var(--space-md); }
.cart-empty { text-align: center; color: var(--color-text-light); padding: var(--space-2xl) 0; }
.cart-footer { border-top: 1px solid var(--color-border); padding: var(--space-lg); }

.cart-item { display: flex; gap: var(--space-md); align-items: center; padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border); }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; background: #f5f5f5; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.cart-item-info .price { font-size: 0.8rem; color: var(--color-brand); font-weight: 700; }
.cart-item-remove { font-size: 0.85rem; color: var(--color-text-light); cursor: pointer; }
.cart-item-remove:hover { color: #d32f2f; }

.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: var(--space-md); font-size: 1rem; }
