/* --- GLOBAL VARIABLES & THEME --- */
:root {
    --primary-red: #721115; 
    --bg-pink: #FCEAEB; 
    --text-light: #FCEAEB;
}

body {
    background-color: var(--bg-pink);
    font-family: 'Courier Prime', monospace; 
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- HEADER & NAV --- */
.top-header { padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; }
.auth-buttons .btn { border: 1px solid var(--primary-red); border-radius: 0; padding: 5px 20px; text-decoration: none;}
.btn-login { background-color: var(--primary-red); color: var(--text-light); }
.btn-signup { background-color: var(--bg-pink); color: var(--primary-red); margin-left: -5px; }
.header-logo { height: 50px; object-fit: contain; }
.header-icons i { color: var(--primary-red); font-size: 1.2rem; margin-left: 15px; cursor: pointer; transition: transform 0.3s; }
.header-icons i:hover { transform: scale(1.2); }
.main-nav { background-color: var(--primary-red); padding: 10px 0; display: flex; justify-content: center; }
.main-nav a { color: var(--text-light); text-decoration: none; margin: 0 20px; font-size: 0.9rem; }
.main-nav a:hover { opacity: 0.7; }

/* --- HERO SECTION (Landing Page) --- */
.hero-section { display: flex; min-height: 80vh; background-color: var(--primary-red); color: var(--text-light); position: relative; overflow: hidden;}
.hero-left { width: 50%; background-image: repeating-conic-gradient(var(--bg-pink) 0% 25%, var(--primary-red) 0% 50%); background-size: 100px 100px; position: relative; }
.hero-right { width: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero-text-main { font-size: 3.5rem; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; }
.hero-text-sub { font-size: 2rem; font-family: 'Courier Prime', monospace; }
.btn-shop-now { margin-top: 20px; border: 1px solid var(--text-light); color: var(--text-light); background: transparent; padding: 10px 30px; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; transition: all 0.4s ease; }
.btn-shop-now:hover { background: var(--text-light); color: var(--primary-red); }

/* --- POLAROIDS --- */
.polaroid { background: white; padding: 10px 10px 30px 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); position: absolute; transition: transform 0.5s ease; }
.polaroid img { width: 150px; height: 150px; object-fit: cover; }
.p1 { top: 15%; left: 20%; transform: rotate(-10deg); z-index: 2; }
.p2 { top: 30%; left: 50%; transform: rotate(15deg); z-index: 1; }
.p3 { bottom: 15%; left: 30%; transform: rotate(-5deg); z-index: 3; }
.polaroid:hover { transform: scale(1.1) rotate(0deg); z-index: 10; }

/* --- FORMS (Login/Signup) --- */
.auth-container { min-height: 70vh; display: flex; justify-content: center; align-items: center; background: repeating-conic-gradient(#d58b90 0% 25%, #e1a6aa 0% 50%); background-size: 150px 150px; padding: 50px 20px; }
.auth-box { background: white; border: 2px solid var(--primary-red); padding: 0; width: 100%; max-width: 400px; box-shadow: 10px 10px 0px rgba(114, 17, 21, 0.2); }
.auth-header { background-color: var(--primary-red); color: white; padding: 15px; text-align: center; font-size: 1.5rem; font-family: sans-serif; }
.auth-body { padding: 30px; }
.auth-body input { border: 1px solid #ccc; border-radius: 5px; margin-bottom: 15px; font-family: sans-serif; }
.auth-body .btn-submit { background-color: var(--primary-red); color: white; width: 100%; border-radius: 5px; }

/* --- CUSTOM FOOTER --- */
.site-footer { background-color: var(--primary-red); color: var(--text-light); padding: 50px 5% 20px; font-family: 'Courier Prime', monospace; font-size: 0.8rem; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 30px; }
.footer-col { flex: 1; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 20px; }
.contact-info-row { display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-info-row i { margin-right: 15px; margin-top: 3px; font-size: 1.2rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; list-style: none; padding: 0; margin: 0 auto; max-width: 250px; text-align: left; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 0.7; }
.footer-icons i { font-size: 1.8rem; margin-left: 10px; cursor: pointer; }
.footer-bottom-logo { text-align: center; margin-top: 40px; }
.footer-bottom-logo img { max-width: 80%; height: auto; }

/* Cart sidebar slide-close behavior */
#cartOffcanvas.offcanvas {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(100%, 380px) !important;
    height: 100vh !important;
    display: block !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#cartOffcanvas.offcanvas.custom-open,
#cartOffcanvas.offcanvas.show {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#cartOffcanvas.offcanvas:not(.custom-open):not(.show) {
    transform: translateX(100%) !important;
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET FIXES)
   ========================================= */

@media (max-width: 768px) {
    /* 1. Stack the Header & Navigation */
    .top-header { 
        flex-direction: column; 
        gap: 15px; 
        padding: 20px 5%;
    }
    .main-nav { 
        flex-wrap: wrap; 
        padding: 10px 5%;
    }
    .main-nav a { 
        margin: 5px 10px; 
    }

    /* 2. Stack the Landing Page Hero Section */
    .hero-section { 
        flex-direction: column; 
    }
    .hero-left, .hero-right { 
        width: 100%; 
        min-height: 40vh; 
        padding: 30px 0;
    }
    .hero-text-main { font-size: 2.5rem; }
    .hero-text-sub { font-size: 1.5rem; }
    
    /* Shrink the polaroids so they fit on mobile */
    .polaroid img { width: 100px; height: 100px; }
    .polaroid { padding: 5px 5px 20px 5px; }
    .p1 { top: 5%; left: 10%; }
    .p2 { top: 30%; left: 50%; }
    .p3 { bottom: 5%; left: 20%; }

    /* 3. Fix the Shopping Pages (Tops/Bottoms) */
    .col-md-2 { margin-bottom: 20px; } /* Adds space below the filter */
    h2 { font-size: 2rem !important; } /* Shrinks the TOPS/BOTTOMS title */
    .d-flex.justify-content-between.align-items-center { 
        flex-direction: column-reverse; 
        gap: 15px; 
    }

    /* 4. Stack the Footer */
    .footer-top { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .footer-col { text-align: center !important; }
    .contact-info-row { 
        flex-direction: column; 
        align-items: center; 
    }
    .contact-info-row i { 
        margin-right: 0; 
        margin-bottom: 10px; 
    }
    .footer-links { 
        text-align: center; 
    }

    /* 5. Fresh from the Ukay Mobile Grid */
    .product-grid {
        justify-content: center; /* Keeps the grid centered */
        gap: 15px; 
    }
    
    .retro-window {
        width: 45%; /* Forces exactly 2 windows per row */
        min-width: unset; /* Removes the 150px limit so they scale perfectly */
        margin-bottom: 10px;
    }

    /* Mobile Phones Portrait */
@media (max-width: 480px) {
    .retro-window {
        width: 100%; /* Stacks them 1 on top of the other */
        max-width: 300px; /* Stops them from looking overly huge */
    }
}
}

/* --- FRESH FROM THE UKAY SECTION --- */
.fresh-ukay {
    background-color: #f4e3d7; /* Light beige from your mockup */
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #7a151a;
    margin-bottom: 40px;
    font-family: 'Courier New', Courier, monospace; /* Adjust to match your exact font */
}

.section-title em {
    font-style: italic;
    font-family: cursive; /* Replace with your specific script font */
}

.product-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Retro Window Styling */
.retro-window {
    border: 3px solid #7a151a;
    background-color: #e5d1c4;
    width: 15%; /* Fits 6 across nicely */
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.window-header {
    background-color: #7a151a;
    padding: 2px 5px;
    display: flex;
    justify-content: flex-start;
}

.window-controls {
    display: flex;
    gap: 3px;
}

.control-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #f4e3d7;
    border: 1px solid #7a151a;
    font-size: 8px;
    line-height: 10px;
    text-align: center;
    color: #7a151a;
    cursor: pointer;
}

/* Update the window-body to have a fixed height and center the image */
.window-body {
    padding: 10px;
    background-color: #e5d1c4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px; /* Forces all image areas to be exactly the same size */
}

/* Change object-fit to 'contain' so tall items like the skirt don't get chopped off */
.window-body img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

/* Give the product name a min-height so 1-line and 2-line titles take up the same space */
.product-name {
    display: flex; /* Changed to flex to center the text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    color: #7a151a;
    padding: 5px 10px;
    border-bottom: 2px solid #7a151a;
    min-height: 40px; /* Accounts for 2 lines of text */
}

/* Ensures the bottom section stays pinned perfectly to the bottom of the card */
.window-footer {
    border-top: 2px solid #7a151a;
    background-color: #f4e3d7;
    margin-top: auto; /* Pushes the footer to the bottom */
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.price {
    font-size: 0.8rem;
    color: #7a151a;
    padding-left: 5px;
}

.buy-now {
    background-color: #7a151a;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 0.7rem;
    cursor: pointer;
}

.cart-icon {
    padding-right: 5px;
    color: #7a151a;
}

.shop-more-btn {
    background-color: #7a151a;
    color: white;
    padding: 10px 25px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
}

/* --- THRIFT BANNER SECTION --- */
.thrift-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keeps the background image contained */
}

/* --- THRIFT BANNER SECTION --- */
.thrift-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keeps the images contained */
}

/* This container holds both images side-by-side */
.banner-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; /* Forces the two images to sit next to each other */
    z-index: 1; /* Keeps them behind the text */
}

/* This makes each image take up exactly half the banner */
.banner-img-half {
    width: 50%;
    height: 100%;
    object-fit: cover; /* Fills the space without stretching the photo */
}

.banner-content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Keeps text clearly above the images */
}

.banner-main-text {
    font-size: 12rem;
    color: white;
    font-family: 'Parisienne', cursive;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    margin: 0;
}

.banner-subtext-left {
    position: absolute;
    left: 5%;
    top: 20px;
    color: white;
    width: 250px;
    font-size: 0.8rem;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
}

.banner-subtext-right {
    position: absolute;
    right: 5%;
    bottom: 20px;
    color: white;
    font-size: 0.8rem;
    font-family: 'IBM Plex Mono', monospace;
}

/* --- ALL ABOUT OUR THRIFT SHOP SECTION --- */
.about-shop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background-color: #FCEAEB; /* Matches your --bg-pink variable */
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: #721115; /* Matches your --primary-red */
    margin-bottom: 20px;
    font-family: 'Courier Prime', monospace;
    line-height: 1.2;
}

.about-text h2 em {
    font-family: 'Parisienne', cursive;
    font-size: 4rem;
    font-weight: normal;
}

.about-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more-btn {
    background-color: transparent;
    color: #721115;
    border: 2px solid #721115;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Courier Prime', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #721115;
    color: #FCEAEB;
}

.about-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.media-player-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.2));
}

/* --- WHY SHOP WITH US (FILM STRIP) SECTION --- */
.why-shop {
    padding: 80px 5%;
    background-color: #f4e3d7;
    text-align: center;
}

/* --- FILM FRAME IMAGES --- */
.frame-img {
    width: 100%;
    height: 160px; /* Keeps all photos the same uniform height */
    object-fit: cover; /* Crops nicely without stretching */
    border: 2px solid var(--primary-red); /* Ties into your theme colors */
    border-radius: 4px; /* Slight rounding for a softer retro look */
    margin-bottom: 15px;
    transition: transform 0.4s ease; /* Preps the image for a hover effect */
}

/* Optional: Adds a subtle zoom to the photo when the frame pops out */
.film-frame:hover .frame-img {
    transform: scale(1.03); 
}

.film-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222; /* Dark film strip background */
    padding: 20px 10px;
    gap: 20px;
    /* Creating the film strip holes using a repeating linear gradient */
    background-image: 
        repeating-linear-gradient(to right, transparent 0, transparent 10px, #f4e3d7 10px, #f4e3d7 20px),
        repeating-linear-gradient(to right, transparent 0, transparent 10px, #f4e3d7 10px, #f4e3d7 20px);
    background-size: 100% 15px;
    background-position: top, bottom;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.film-frame {
    flex: 1;
    background-color: #FCEAEB;
    border: 3px solid #721115;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frame-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.frame-content h3 {
    color: #721115;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.frame-content p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

/* Make it stack neatly on smaller screens */
@media (max-width: 768px) {
    .about-shop {
        flex-direction: column;
    }
    .film-strip-container {
        flex-direction: column;
        background-image: none; /* Removes holes on mobile so it doesn't look messy */
        background-color: transparent;
        padding: 0;
    }
    .film-frame {
        width: 100%;
    }
}

/* =========================================
   🔥 JAW-DROPPING ANIMATIONS 🔥
   ========================================= */

/* 1. Floating & Glowing Media Player */
.about-media {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { 
        transform: translateY(-20px) rotate(2deg); 
        filter: drop-shadow(0px 20px 30px rgba(114, 17, 21, 0.4)); 
    }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* 2. Slide-In Effect for About Text */
.about-text h2 { animation: slideInLeft 0.8s ease-out forwards; }
.about-text p { animation: slideInLeft 1.2s ease-out forwards; }
.learn-more-btn { animation: slideInLeft 1.5s ease-out forwards; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* 3. Rolling Film Strip Background */
.film-strip-container {
    /* Moves the background gradient to simulate rolling film */
    animation: rollFilm 2s linear infinite;
}

@keyframes rollFilm {
    from { background-position: 0 top, 0 bottom; }
    to { background-position: -40px top, -40px bottom; } /* Matches the 20px gradient size */
}

/* 4. 3D Pop-Out Hover Effect for Film Frames */
.film-frame {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.film-frame:hover {
    transform: translateY(-15px) scale(1.05); /* Lifts and enlarges */
    box-shadow: 0 20px 40px rgba(114, 17, 21, 0.3); /* Deep shadow */
    border-color: #222; /* Changes border color for punchiness */
    z-index: 10;
}

/* 5. Icon Pop on Hover */
.frame-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.film-frame:hover .frame-icon {
    transform: scale(1.4) rotate(15deg); /* Pops and twists the emoji */
}

/* =========================================
   🚀 ADVANCED PROFESSIONAL ANIMATIONS 🚀
   ========================================= */

/* --- 1. INFINITE Y2K MARQUEE --- */
.marquee-container {
    background-color: var(--primary-red);
    color: var(--bg-pink);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--bg-pink);
    border-bottom: 2px solid var(--bg-pink);
    display: flex;
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.marquee-track {
    display: flex;
    animation: scrollingMarquee 15s linear infinite;
}

.marquee-track span {
    padding: 0 20px;
}

@keyframes scrollingMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half to loop seamlessly */
}

/* --- 2. SCROLL REVEAL CLASSES --- */
/* Elements start hidden, pushed slightly down */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Class added by JavaScript when scrolled into view */
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add a slight delay to grid items so they cascade in 1 by 1 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- 3. 3D PARALLAX PREP --- */
.retro-window, .polaroid {
    transform-style: preserve-3d;
    will-change: transform; /* Tells the browser to optimize this element */
}

/* Global Styles matching THRIFTEE */
body {
  font-family: Arial, sans-serif;
  background-color: #faf0f0; /* Light pink background */
  margin: 0;
  color: #333;
}

.checkout-container {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  gap: 40px;
  padding: 0 20px;
}

.checkout-main {
  flex: 2;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.checkout-sidebar {
  flex: 1;
  background: #fdfdfd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: fit-content;
}

/* Breadcrumbs */
.breadcrumbs { font-size: 0.9em; margin-bottom: 25px; color: #888; }
.breadcrumbs a { color: #007bff; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs strong { color: #000; font-size: 1.2em; }

/* Forms */
.form-group { margin-bottom: 15px; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.form-row > * { flex: 1; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Radio Buttons / Methods */
.method-box {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 15px;
  background-color: #000; /* Black for Cart page checkout */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 15px;
}
.btn-primary:hover { background-color: #333; }

.btn-maroon {
  background-color: #5c0f11; /* Thriftee Dark Maroon */
}
.btn-maroon:hover { background-color: #3d0a0b; }

.btn-secondary {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: #5c0f11;
  border: 1px solid #5c0f11;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 10px;
}
.btn-secondary:hover { background-color: #fcf4f4; }

/* --- EDITORIAL WISHLIST MODAL STYLES --- */

/* Give the modal box the Y2K hard shadow and crisp borders */
#favModal .modal-content {
    border: 2px solid var(--primary-red, #5c0f11) !important;
    box-shadow: 10px 10px 0px var(--primary-red, #5c0f11) !important;
    border-radius: 0 !important;
    background-color: var(--bg-pink, #faf0f0) !important;
}

#favModal .modal-header {
    border-bottom: 2px solid var(--primary-red, #5c0f11) !important;
    background-color: var(--white, #ffffff);
}

/* Make the title elegant */
#favModal .modal-title {
    font-family: 'Playfair Display', serif !important;
    font-style: italic;
    font-size: 2.5rem;
    letter-spacing: -1px;
    text-transform: capitalize;
    color: var(--primary-red, #5c0f11) !important;
}

/* Style the generated item cards */
#fav-items .card {
    border: 1px solid var(--primary-red, #5c0f11) !important;
    border-radius: 0 !important;
    background-color: var(--white, #ffffff) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 10px;
}

#fav-items .card:hover {
    box-shadow: 4px 4px 0px rgba(92, 15, 17, 0.15);
    transform: translateY(-2px);
}

/* Clean up the images */
#fav-items img {
    border-radius: 0 !important;
    border-right: 1px solid var(--primary-red, #5c0f11) !important;
    object-fit: cover;
}

/* Typography for item name and price */
#fav-items h5, 
#fav-items .card-title {
    font-family: 'Courier Prime', monospace !important;
    font-weight: bold;
    font-size: 0.95rem !important;
    color: var(--primary-red, #5c0f11) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

#fav-items p, 
#fav-items .card-text {
    font-family: 'Courier Prime', monospace !important;
    font-size: 0.9rem !important;
    color: var(--primary-red, #5c0f11) !important;
}

/* Professional Add to Cart Button */
#fav-items button.btn-danger:not(.remove-btn),
#fav-items .btn:first-of-type {
    background-color: var(--primary-red, #5c0f11) !important;
    color: var(--bg-pink, #faf0f0) !important;
    font-family: 'Courier Prime', monospace !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0 !important;
    border: 1px solid var(--primary-red, #5c0f11) !important;
    font-size: 0.75rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

#fav-items button.btn-danger:not(.remove-btn):hover,
#fav-items .btn:first-of-type:hover {
    background-color: var(--white, #ffffff) !important;
    color: var(--primary-red, #5c0f11) !important;
}

/* Professional Trash/Remove Button */
#fav-items button.remove-btn, 
#fav-items button .fa-trash,
#fav-items .btn:last-child {
    background-color: transparent !important;
    color: var(--primary-red, #5c0f11) !important;
    border: 1px solid var(--primary-red, #5c0f11) !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

#fav-items button.remove-btn:hover,
#fav-items .btn:last-child:hover {
    background-color: var(--primary-red, #5c0f11) !important;
    color: var(--white, #ffffff) !important;
}

