/* 
  SkyOne Luxury - Global Design System & Colors
  Change the variables below to update the entire project's color scheme!
*/

.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 992px) {
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
}

:root {
    /* ========================================================
       🎨 THEME COLOR PALETTE (EDIT THESE!)
       ======================================================== */
    
    /* Primary Colors - Deep Burgundy / Perfume Aesthetic */
    --color-primary: #831843;       /* Deep Wine / Burgundy */
    --color-primary-hover: #9F1239; /* Rose 800 */
    --color-primary-dark: #4C0519;  /* Rose 950 */

    /* Light Theme Background Colors (Default) */
    --color-bg-base: #F8F9FA;       /* Very light gray for main background */
    --color-bg-surface: #FFFFFF;    /* White for cards/containers */
    --color-bg-elevated: #F1F3F5;   /* For modals/dropdowns */

    /* Light Theme Text Colors */
    --color-text-main: #212529;     /* Main body text (dark gray) */
    --color-text-muted: #6C757D;    /* Secondary text */
    --color-text-inverse: #FFFFFF;  /* Text on primary color backgrounds */

    /* Accent & Status Colors */
    --color-accent: #A1A1AA;        /* Silver / Zinc */
    --color-success: #2E7D32;
    --color-error: #D32F2F;
    --color-warning: #F57C00;
    --color-info: #0288D1;
    
    /* Light Theme Borders & Dividers */
    --color-border: #E9ECEF;
    --color-border-light: rgba(131, 24, 67, 0.15); /* Subtle Burgundy border */

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 15px rgba(131, 24, 67, 0.15); /* Burgundy glow */
}

/* ========================================================
   🌙 DARK THEME VARIABLES
   ======================================================== */
[data-theme="dark"] {
    --color-bg-base: #080808;       /* Deepest black/gray */
    --color-bg-surface: #121212;    
    --color-bg-elevated: #1E1E1E;   

    --color-text-main: #F5F5F5;     
    --color-text-muted: #A0A0A0;    
    --color-text-inverse: #000000;  

    --color-border: #333333;
    --color-border-light: rgba(131, 24, 67, 0.3); 

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 15px rgba(131, 24, 67, 0.25);
}

/* Dark Mode Footer Pills */
[data-theme="dark"] .footer-links a {
    background: #1a1a1a;
    border-color: #333;
    color: #f5f5f5;
}
[data-theme="dark"] .footer-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

:root {
    /* ========================================================
       📏 TYPOGRAPHY & SPACING
       ======================================================== */

    /* ========================================================
       📏 TYPOGRAPHY & SPACING
       ======================================================== */
    --font-main: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-heading: 'Playfair Display', serif; /* Luxurious serif for headings */
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows moved to main :root block */
}

/* ========================================================
   GLOBAL STYLES
   ======================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

.mobile-only { display: none; }
@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
}

/* ========================================================
   COMPONENTS
   ======================================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    box-shadow: 0 4px 12px rgba(131, 24, 67, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 24, 67, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(131, 24, 67, 0.1);
    box-shadow: var(--shadow-glow);
}

/* Cards */
.card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-glow);
}

/* Forms */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(131, 24, 67, 0.2);
}

/* Modern Header Layout */
.navbar { padding: 0; border-bottom: 1px solid var(--color-border); background: var(--color-bg-surface); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }

@media (max-width: 768px) {
    .nav-container { height: 60px; }
}

.header-nav { display: flex; gap: 1.5rem; }
.header-nav a { 
    text-decoration: none; color: var(--color-text-main); 
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase; 
    letter-spacing: 1px; transition: color 0.3s;
}
.header-nav a:hover { color: var(--color-primary); }

@media (max-width: 1024px) {
    .header-nav { display: none; }
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-search { flex: 1; max-width: 550px; }
@keyframes borderSpin {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.header-search form { 
    position: relative; display: flex; align-items: center; 
    border-radius: 50px; 
    padding: 4px 7px; /* adjusted for border inset */
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}
.header-search form::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    width: 1200px; height: 1200px;
    background: conic-gradient(from 0deg, transparent 50%, var(--color-primary) 100%);
    transform: translate(-50%, -50%);
    animation: borderSpin 4s linear infinite;
    z-index: -2;
}
.header-search form::after {
    content: ''; position: absolute;
    inset: 1.5px; /* 1.5px border thickness */
    background: var(--color-bg-base);
    border-radius: 50px;
    z-index: -1;
}
.header-search form:focus-within::before {
    background: var(--color-primary);
    animation: none;
}
.header-search form:focus-within { 
    box-shadow: 0 0 10px rgba(131, 24, 67, 0.2); 
}
.header-search input { 
    flex: 1; border: none; background: transparent; padding: 0.35rem 1rem; 
    font-size: 0.85rem; color: var(--color-text-main); outline: none;
}
.header-search button { 
    background: transparent; border: none; color: var(--color-text-muted); 
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.header-search button:hover { color: var(--color-primary); background: rgba(131, 24, 67, 0.05); }

@media (max-width: 768px) {
    .header-search { display: none; }
}

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { 
    display: flex; align-items: center; gap: 0.6rem; text-decoration: none; 
    color: var(--color-text-main); font-weight: 700; font-size: 0.8rem; 
    text-transform: uppercase; position: relative; transition: color 0.3s;
    letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--color-primary); }
.nav-link i { font-size: 1.2rem; }

@media (max-width: 768px) {
    .nav-right { gap: 1rem; }
    .nav-link span:not(.badge):not(.cart-total-count) { display: none; }
}

/* Badges */
.badge { 
    position: absolute; top: -10px; right: -12px; background: var(--color-primary); 
    color: #fff; font-size: 0.65rem; min-width: 18px; height: 18px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-weight: 700; border: 2px solid var(--color-bg-surface);
}
.cart-info { font-family: var(--font-main); font-weight: 700; color: var(--color-text-main); }

/* Dropdown Menu */
.dropdown { position: relative; padding: 0.5rem 0; }
.dropdown-menu { 
    position: absolute; top: 100%; right: 0; background: var(--color-bg-surface); 
    border: 1px solid var(--color-border); border-radius: var(--radius-md); 
    box-shadow: var(--shadow-md); min-width: 220px; padding: 0.8rem 0; 
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { 
    display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1.5rem; 
    color: var(--color-text-main); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.dropdown-menu a i { width: 20px; text-align: center; color: var(--color-text-muted); font-size: 1rem; }
.dropdown-menu a:hover { background: rgba(131, 24, 67, 0.05); color: var(--color-primary); padding-left: 1.75rem; }
.dropdown-divider { height: 1px; background: var(--color-border); margin: 0.5rem 0; }

.theme-btn { 
    background: transparent; border: 1px solid var(--color-border); 
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer; 
    color: var(--color-text-main); transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.theme-btn:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(131, 24, 67, 0.05); }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 26px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 75%; }
.hamburger span:nth-child(3) { width: 50%; }

@media (max-width: 1024px) {
    .hamburger { display: flex; }
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 100%; }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 100%; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-bg-surface);
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .mobile-menu { display: flex; }
}

.mobile-menu.active { left: 0; }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-main);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-text-main);
    text-transform: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-links a i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.mobile-menu-links a:hover {
    background: rgba(131, 24, 67, 0.05);
    color: var(--color-primary);
}

.mobile-menu-links a:hover i {
    color: var(--color-primary);
}

.mobile-menu-divider {
    padding: 1.5rem 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.admin-link-mobile { color: var(--color-primary) !important; font-weight: 700 !important; }
.logout-link-mobile { color: var(--color-error) !important; margin-top: 1rem; }
.logout-link-mobile i { color: var(--color-error) !important; }

.mobile-search {
    margin-bottom: 2rem;
}

.mobile-search form {
    display: flex;
    align-items: center;
    background: var(--color-bg-base);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
}

.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--color-text-main);
    padding: 0.5rem;
    outline: none;
}

/* Footer */
.footer {
    background-color: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0;
    text-align: center;
}
.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap; /* Keeps it responsive but we'll try to fit it */
}
.footer-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer { padding: 4rem 1.5rem; text-align: left; }
    .footer-logo {
        justify-content: flex-start;
        padding-left: 0.5rem;
    }
    .footer-logo img {
        height: 45px;
    }
    .footer-links {        gap: 0.6rem; 
        flex-direction: row; 
        justify-content: flex-start; 
        padding: 0;
        margin-bottom: 2rem;
    }
    .footer-links a {
        background: #f8f8f8;
        padding: 0.6rem 1.1rem;
        border-radius: 50px;
        font-size: 0.75rem;
        border: 1px solid #eee;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-transform: capitalize;
        font-weight: 600;
    }
    .footer-links a:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
        transform: translateY(-2px);
    }
    .footer p { text-align: left; padding-left: 0.5rem; }
}

.footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* Marketplace Links Styling */
.marketplace-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}
.marketplace-link:hover {
    color: var(--hover-color) !important;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .marketplace-link {
        text-transform: uppercase !important; /* Keep marketplace names uppercase */
    }
}

/* Global Bottom App Nav (Mobile Only) */
.mobile-app-nav {
    display: none;
}

@media (max-width: 992px) {
    .mobile-app-nav.pill-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px; /* Slimmer height */
        background: #000000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        padding: 0 10px 5px; /* Tighter padding */
        border-radius: 25px 25px 0 0;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
    }
    .pill-nav .app-nav-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 45px;
        padding: 0 15px;
        color: #ffffff;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        text-decoration: none !important;
        border-radius: 30px;
        min-width: 45px;
    }
    .pill-nav .app-nav-item i {
        font-size: 1.2rem;
        opacity: 0.6;
        transition: 0.3s;
    }
    .pill-nav .app-nav-item span {
        font-size: 0.85rem;
        font-weight: 700;
        margin-left: 10px;
        display: none; /* Hidden by default */
        white-space: nowrap;
    }
    .pill-nav .app-nav-item.active {
        background: #831843 !important;
        flex: 2.5 !important;
        max-width: 140px !important; 
        display: flex !important;
        flex-direction: row !important; /* Force side-by-side */
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        color: #ffffff !important;
        padding: 0 18px !important;
    }
    .pill-nav .app-nav-item.active i {
        opacity: 1 !important;
        color: #ffffff !important;
        font-size: 1.1rem !important;
        margin: 0 !important;
    }
    .pill-nav .app-nav-item.active span {
        display: block !important;
        opacity: 1 !important;
        color: #ffffff !important;
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }
    @keyframes fadeIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }
    
    .main-footer-area { padding-bottom: 120px; }
    #scroll-to-top { display: none !important; }
}

/* Layout Utilities */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 5%;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ========================================================
   PRODUCT CARD - Premium Redesign
   ======================================================== */
.product-card {
    text-align: left;
    background: #F3F4F6;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-card-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.product-card:hover .product-card-img-wrapper img {
    transform: scale(1.08);
}

.product-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-body {
    padding: 0 4px 8px 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-categories {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.product-card-category {
    background: rgba(131, 24, 67, 0.08);
    color: #831843;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-title {
    font-family: var(--font-main);
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: var(--color-text-main) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    min-height: 2.8rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-align: left !important;
}

.product-card-title a {
    text-decoration: none;
    color: inherit;
}

.product-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    color: var(--color-primary);
}

.product-card-price {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    font-family: var(--font-main) !important;
    letter-spacing: -0.5px !important;
    color: var(--color-primary) !important;
    margin-bottom: 0 !important;
}

.product-card-old-price {
    font-size: 0.9rem !important;
    text-decoration: line-through;
    color: var(--color-text-muted) !important;
    font-weight: 600 !important;
    font-family: var(--font-main) !important;
    margin-left: 2px;
}

.product-card-save-badge {
    background: #DCFCE7;
    color: #166534;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-add-cart {
    flex: 1;
    background: var(--color-bg-elevated) !important;
    color: var(--color-text-main) !important;
    border: 1px solid var(--color-border-light) !important;
    padding: 0.8rem !important;
    border-radius: 10px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: 0.3s;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.btn-add-cart:hover {
    background: #D1D5DB !important;
    transform: none !important;
}

.btn-buy-now {
    flex: 1.2;
    background: var(--color-primary) !important;
    color: var(--color-text-inverse) !important;
    text-align: center;
    padding: 0.8rem !important;
    border-radius: 10px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    border: none !important;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.btn-buy-now:hover {
    background: #70153a !important;
    opacity: 1 !important;
    color: #fff !important;
}

/* Wishlist - floating top-right icon */
.btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 0;
    line-height: 1;
}

.btn-wishlist:hover {
    color: var(--color-error);
    transform: scale(1.1);
}

.btn-wishlist.active {
    color: var(--color-error);
    background-color: #fff;
}
