.luxury-portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 48px 24px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.luxury-product-card {
    background: transparent;
    display: flex;
    flex-direction: column;
}
.luxury-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 135%; /* High-end fashion 3:4 crop layout */
    overflow: hidden;
    background-color: #fcfcfc;
    margin-bottom: 14px;
    -webkit-user-select: none; /* Disables standard text copy bubbles during triple taps */
    user-select: none;
}
.luxury-image-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.luxury-image-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #f4f4f4;
}
.placeholder-brand {
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #999;
}
.luxury-brand-heading {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: #111111; font-weight: 600; margin-bottom: 4px;
}
.luxury-description {
    font-size: 14px; color: #444444; margin: 0 0 12px 0; line-height: 1.4;
}
.luxury-pricing {
    display: flex; flex-direction: column; gap: 2px;
}
.luxury-crossed-out-stack {
    display: flex; gap: 10px; align-items: center; margin-top: 2px;
}
.price-label { font-size: 14px; }
.primary-price { color: #111111; font-weight: 500; }
.red-alert { color: #b82c2c; font-weight: 600; }
.strikethrough { color: #999999; text-decoration: line-through; font-weight: 300; font-size: 12px; }

/* Fixed Mobile Floating Toast Notification */
.luxury-toast {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: #111111;
    color: #ffffff;
    padding: 16px 24px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    z-index: 9999999 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.6;
    text-align: left;
    white-space: nowrap;
}
.luxury-toast.show {
    bottom: 50px;
}
@media (max-width: 480px) {
    .luxury-portal-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
    .luxury-description { font-size: 13px; }
}