:root {
    /* The Core Palette */
    --rose-nude: #E6B2A6; /* Primary: Feminine, Soft */
    --rose-nude-light: #F9F2F0; /* Backgrounds */
    --rose-nude-dark: #D49B8E; /* Accents */
    --charcoal: #1A1A1A; /* Secondary: Professional, Bold */
    --charcoal-muted: #333333;
    
    /* Neutral Accents */
    --white: #FFFFFF;
    --off-white: #FCF9F8;
    --border-color: #EAE0DD;
    --gold-subtle: #D4AF37; /* Very subtle for high-end feel */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Cairo', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(230, 178, 166, 0.15);
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--charcoal);
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Luxury Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--rose-nude-light); }
::-webkit-scrollbar-thumb { background: var(--rose-nude); border-radius: 10px; }

/* Global Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Premium Header Compact */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px; /* Fixed compact height */
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0; /* Remove padding as header has fixed height */
}

/* Header Utilities */
.cart-icon-wrapper,
.wishlist-icon-wrapper {
    position: relative;
    cursor: pointer;
}

.cart-badge,
.wishlist-icon-wrapper .wishlist-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--rose-nude);
    color: var(--charcoal);
    font-size: 0.65rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wishlist-icon-wrapper .wishlist-badge {
    background: var(--rose-nude-dark);
    color: var(--white);
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
}

/* Desktop Nav Integrated */
.desktop-nav {
    border: none;
    padding: 0;
    margin: 0 40px;
    flex: 1; /* Take available space */
    display: flex;
    justify-content: center;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 5px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    z-index: 2000;
    border-top: 1px solid var(--border-color);
    border-radius: 20px 20px 0 0;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--charcoal-muted);
    font-size: 0.7rem;
    font-weight: 600;
    flex: 1;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.mobile-bottom-nav .nav-item.active {
    color: var(--rose-nude-dark);
}

.mobile-bottom-nav .nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 3px;
    background: var(--rose-nude);
    border-radius: 0 0 5px 5px;
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
    color: var(--rose-nude-dark);
}

.nav-cart-wrapper {
    position: relative;
}

.mobile-bottom-nav .nav-item {
    position: relative;
}

.mobile-bottom-nav .wishlist-badge {
    position: absolute;
    top: 5px;
    right: 50%;
    margin-right: -15px; /* Center relative to icon */
    background: var(--rose-nude-dark);
    color: #fff;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Utilities */
.desktop-hide { display: none; }

@media (max-width: 992px) {
    .mobile-hide { display: none; }
    .desktop-hide { display: flex; }
    
    .container { padding: 0 20px; }
    
    .logo-main { font-size: 1.6rem; letter-spacing: 2px; }
    .logo-sub { font-size: 0.6rem; letter-spacing: 4px; }
    
    .navbar { padding: 15px 0; }
    
    body { padding-bottom: 70px; } /* Space for bottom nav */
}

.logo-container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    height: 60px; /* Adjust height to fit header */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Removed Text Logo Styles */

.mobile-menu-trigger {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.mobile-menu-trigger:hover {
    color: var(--rose-nude-dark);
}

/* Hero Section with Advanced Effects */
.hero-slider {
    height: 90vh;
    min-height: 600px;
    width: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out; /* Smooth Zoom fallback */
}

/* Ken Burns Effect on Active Slide */
.swiper-slide-active .slide-bg {
    animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(230, 178, 166, 0.1));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    padding-top: 80px;
}

.slide-content span {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: var(--rose-nude-light);
}

.slide-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-height: 1.1em; /* Reserve space for typing */
}

/* Typewriter Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--rose-nude);
    margin-right: 5px;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Advanced Text Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for staggered effect */
.swiper-slide-active .animate-text:nth-child(1) { transition-delay: 0.4s; }
.swiper-slide-active .animate-text:nth-child(2) { transition-delay: 0.6s; }
.swiper-slide-active .animate-text:nth-child(3) { transition-delay: 0.8s; }

.btn-luxury {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill shape */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-luxury:hover {
    background: var(--rose-nude);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 178, 166, 0.4);
}

/* Hero Slider Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: scale(1.1);
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: var(--transition-smooth);
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--rose-nude);
    transform: scale(1.2);
}

/* Hero Responsive Fix */
@media (max-width: 992px) {
    .hero-slider { height: 70vh; min-height: 500px; }
    
    .slide-content h1 { font-size: 3rem; }
}

/* .logo-sub removed */

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--rose-nude);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--rose-nude-dark);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons i {
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--charcoal);
}

.nav-icons i:hover {
    color: var(--rose-nude);
    transform: scale(1.1);
}

/* Features Strip */
.features-strip {
    background: var(--off-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-strip .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-box i {
    font-size: 2rem;
    color: var(--rose-nude-dark);
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #777;
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--rose-nude);
}

.section-header.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--charcoal);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* Mosaic Grid */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.mosaic-item.large {
    grid-row: span 2;
    grid-column: span 1;
}

@media (min-width: 992px) {
    .mosaic-item.large {
        grid-column: span 2;
    }
}

.mosaic-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    transition: var(--transition-smooth);
}

.mosaic-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.mosaic-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--white);
    z-index: 2;
}

.mosaic-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.link-underline {
    font-weight: 600;
    border-bottom: 1px solid var(--white);
    padding-bottom: 2px;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: none;
    border-radius: 4px; /* More editorial/sharp look */
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.p-img-wrapper {
    position: relative;
    height: 380px; /* Taller for editorial look */
    overflow: hidden;
    background: #f9f9f9;
}

.p-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .p-img-wrapper img {
    transform: scale(1.1);
}

/* Badge */
.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--charcoal);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Actions */
.p-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.product-card:hover .p-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-action {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.btn-action:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Info */
.p-info {
    padding: 20px 10px;
    text-align: center;
}

.cat-name {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 600;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--rose-nude-light);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 50px; /* Pill */
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--rose-nude-dark);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-top: 10px;
    max-width: 300px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-brand .social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--rose-nude);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--rose-nude);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    border-color: var(--rose-nude);
    color: var(--rose-nude);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0; /* Left side for RTL feels more natural or Right depending on preference, sticking to left for now */
    width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 2002;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Close Drawer Button */
.close-drawer {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.close-drawer:hover {
    color: var(--rose-nude);
    transform: rotate(90deg);
}

/* Quick View Modal */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.quick-view-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quick-view-modal {
    background: var(--white);
    width: 900px;
    max-width: 95%;
    height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: var(--charcoal);
}

.close-modal:hover {
    color: var(--rose-nude);
}

/* Admin Panel Styles */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px;
    flex-shrink: 0;
}

.sidebar h2 {
    color: var(--rose-nude);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: block;
    padding: 12px 15px;
    color: #ddd;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.sidebar ul li a:hover, .sidebar ul li a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding-right: 20px;
}

.main-content {
    flex: 1;
    padding: 30px;
    background: #f4f6f9;
    overflow-x: hidden;
}

.admin-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header & Nav */
    .logo-container img {
        height: 40px; /* Smaller logo on mobile */
    }

    .navbar {
        padding: 0 15px; /* Ensure spacing from edges */
    }

    /* Hero Section */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none; /* Hide arrows on mobile */
    }

    .slide-content h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }
    
    .slide-content {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    /* Features Strip */
    .features-strip .container {
        gap: 20px;
    }

    .feature-box {
        flex: 1 1 100%; /* Full width */
        justify-content: center;
        background: var(--white);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header.flex-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .section-header.flex-header .line {
        margin: 10px auto 0;
    }

    /* Mosaic Grid */
    .mosaic-grid {
        grid-template-columns: 1fr; /* Single column */
        grid-auto-rows: 200px;
    }
    
    .mosaic-item.large {
        grid-row: span 1;
        grid-column: span 1;
        height: 250px;
    }

    /* Product Cards */
    .product-card {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Always show shadow on mobile */
    }

    .p-img-wrapper {
        height: 200px; /* Adjusted height for 2-col grid */
    }

    .p-info {
        padding: 10px 5px;
    }

    .product-card h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .price {
        font-size: 0.9rem;
    }

    .cat-name {
        font-size: 0.6rem;
        margin-bottom: 4px;
    }

    .badge-new {
        padding: 2px 8px;
        font-size: 0.6rem;
        top: 8px;
        left: 8px;
    }
    
    .p-actions {
        opacity: 1;
        transform: translateY(0);
        bottom: 10px;
        gap: 5px;
    }
    
    .btn-action {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        display: block;
        padding-bottom: 80px; /* Space for bottom nav */
    }
    
    .footer-grid {
        gap: 30px;
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    
    .footer-col h4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col h4::after {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--rose-nude);
        margin-top: 10px;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-brand p {
        margin: 10px auto;
    }
    
    .footer-brand img {
        margin: 0 auto 20px;
        display: block;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 85%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .btn-luxury {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.card h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--rose-nude-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Icon Fix */
.sidebar ul li a i { margin-left: 10px; }