/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    /* Color Palette - Premium Feminine */
    --primary-rose: #D48C8C;
    --soft-pink: #F8E1E1;
    --deep-lavender: #9B7B9B;
    --bg-gradient: linear-gradient(135deg, #FFF5F7 0%, #FAEDFF 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    --accent-gold: #D4AF37;
    --rose-gold: #B76E79;
    --action-success: #88B991;

    --text-main: #4A3E3E;
    --text-muted: #847272;
    --white: #ffffff;

    --shadow-soft: 0 10px 30px rgba(183, 110, 121, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(183, 110, 121, 0.15);

    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes wing-flap {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(0.5);
    }
}

@keyframes butterfly-vibe {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(10deg);
    }

    50% {
        transform: translate(-5px, -25px) rotate(-5deg);
    }

    75% {
        transform: translate(-15px, -10px) rotate(8deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
.section-title,
.menu-title {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

/* Butterfly Background Elements */
.butterfly-bg {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
    filter: blur(1px);
}

.bf-1 {
    top: 10%;
    left: 5%;
    width: 60px;
    animation: butterfly-vibe 15s infinite ease-in-out;
}

.bf-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    animation: butterfly-vibe 20s infinite ease-in-out reverse;
}

.bf-3 {
    bottom: 20%;
    left: 15%;
    width: 40px;
    animation: butterfly-vibe 12s infinite ease-in-out;
}

.header-container {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-glass);
}

.menu-btn,
.cart-btn {
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--primary-rose);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
    position: relative;
}

.menu-btn:hover,
.cart-btn:hover {
    transform: scale(1.1);
    background: var(--primary-rose);
    color: var(--white);
}

.logo-img {
    height: 140px;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(183, 110, 121, 0.2));
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid var(--white);
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    /* Background managed by .hero-slide now */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: -60px;
    /* Overlap with sticky search */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Removed background gradient so the image/GIF is 100% visible */
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Hero Slider Base */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero Nav Buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.hero-slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn.prev {
    left: 20px;
}

.hero-slider-btn.next {
    right: 20px;
}

/* Hero Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    /* Above the overlay content */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Search Bar */
.search-section {
    margin: 0;
    padding: 20px;
    display: flex;
    gap: 20px;
    position: sticky;
    top: 130px;
    z-index: 900;
    background: rgba(255, 245, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
}

.search-bar {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 5px 25px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 15px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    background: none;
    border: none;
    color: var(--primary-rose);
    cursor: pointer;
}

.category-select {
    min-width: 250px;
    height: 60px;
    border: 1px solid var(--soft-pink);
    border-radius: var(--radius-lg);
    padding: 0 45px 0 25px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-main);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D48C8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.category-select:hover {
    border-color: var(--primary-rose);
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    margin: 60px 0 40px;
    color: #E91E63;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 60px;
    background: #E91E63;
    border-radius: 2px;
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Horizontal scroll grid for category sections */
.product-grid-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-grid-horizontal::-webkit-scrollbar {
    height: 6px;
}

.product-grid-horizontal::-webkit-scrollbar-track {
    background: var(--soft-pink);
    border-radius: 3px;
}

.product-grid-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary-rose);
    border-radius: 3px;
}

.product-grid-horizontal .product-card {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--soft-pink);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(to bottom, transparent 60%, rgba(183, 110, 121, 0.05));
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-info {
    padding: 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #333;
    text-align: left;
}

.product-description {
    font-size: 0.8rem;
    color: #847272;
    margin-bottom: 12px;
    font-weight: 400;
    text-align: left;
    flex: 1;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 12px;
    text-align: left;
}

.buy-btn {
    background: #2ECC71;
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.buy-btn:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-rose);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(212, 140, 140, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    border: 1px solid var(--soft-pink);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glass);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.whatsapp-btn img {
    width: 40px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Modals & Drawers - Glassmorphism */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 62, 62, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 2000;
}

.overlay.active {
    display: block;
}

.side-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 60px 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.overlay.active .side-content {
    transform: translateX(320px);
}

.cart-content {
    left: auto;
    right: -350px;
    width: 350px;
    transform: none;
}

.overlay.active .cart-content {
    transform: translateX(-350px);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.menu-title {
    font-size: 2rem;
    color: var(--primary-rose);
    border-bottom: 2px solid var(--soft-pink);
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.side-nav a {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-main);
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(212, 140, 140, 0.1);
    transition: var(--transition);
}

.side-nav a:hover {
    color: var(--primary-rose);
    padding-left: 15px;
}

/* Cart Specific */
.cart-items {
    overflow-y: auto;
    max-height: calc(100vh - 300px);
}

.cart-footer {
    padding: 30px 0;
    border-top: 1px solid var(--soft-pink);
}

.cart-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

/* Product Modal */
.product-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    padding: 40px;
    overflow-y: auto;
    display: block;
}

.overlay.active .product-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

/* Admin Styles */
.admin-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--soft-pink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.admin-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-item-info {
    flex: 1;
}

.admin-item-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 2px;
}

.admin-item-price {
    font-weight: 600;
    color: #E91E63;
    font-size: 0.85rem;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.admin-btn.edit {
    background: #E3F2FD;
    color: #1976D2;
}

.admin-btn.delete {
    background: #FFEBEE;
    color: #C62828;
}

.admin-btn:hover {
    filter: brightness(0.9);
}

/* Wide Sidebar for Admin */
.side-content.admin-wide {
    width: 600px;
    max-width: 90vw;
    left: -600px;
}

.overlay.active .side-content.admin-wide {
    transform: translateX(600px);
}

@media (max-width: 600px) {
    .side-content.admin-wide {
        width: 100%;
        left: -100%;
    }

    .overlay.active .side-content.admin-wide {
        transform: translateX(100%);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--soft-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-rose);
    border-radius: 5px;
    border: 3px solid var(--soft-pink);
}

/* Responsive Decor */
@media (max-width: 768px) {
    .header-container {
        padding: 0;
        height: 70px;
        overflow: visible;
    }

    .header {
        overflow: visible;
    }

    .logo-img {
        height: 90px;
    }

    .hero-banner {
        height: 180px;
        margin-bottom: -30px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .search-section {
        top: 80px;
        margin: 0 15px;
        padding: 10px;
        gap: 10px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-grid-horizontal .product-card {
        min-width: 160px;
        max-width: 160px;
    }

    .butterfly-bg {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 0;
    }

    .logo-img {
        height: 75px;
    }

    .search-section {
        flex-direction: column;
        top: 75px;
    }

    .category-select {
        width: 100%;
        min-width: unset;
        height: 50px;
    }

    .search-bar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .product-grid-horizontal .product-card {
        min-width: 140px;
        max-width: 140px;
    }

    .product-info {
        padding: 6px;
    }

    .product-title {
        font-size: 0.65rem;
        margin-bottom: 3px;
        line-height: 1.1;
    }

    .product-description {
        font-size: 0.55rem;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .buy-btn {
        padding: 6px;
        font-size: 0.55rem;
    }

    .featured-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        margin: 30px 0 15px;
    }

    .section-title::before {
        height: 48px;
        width: 6px;
    }

    .hero-banner {
        height: 150px;
    }
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfdfd;
}

.product-carousel img {
    width: 100%;
    border-radius: 12px;
    display: none;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.product-carousel img.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: var(--primary-rose);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.carousel-dot.active {
    background: var(--primary-rose);
    border-color: var(--white);
    transform: scale(1.2);
}\ n / *   R e o r d e r   I t e m s   * / \ n . r e o r d e r - i t e m   { \ n         d i s p l a y :   f l e x ; \ n         a l i g n - i t e m s :   c e n t e r ; \ n         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; \ n         p a d d i n g :   1 0 p x   1 5 p x ; \ n         b a c k g r o u n d :   v a r ( - - w h i t e ) ; \ n         b o r d e r :   1 p x   s o l i d   v a r ( - - s o f t - p i n k ) ; \ n         b o r d e r - r a d i u s :   1 0 p x ; \ n } \ n . r e o r d e r - i t e m - i n f o   { \ n         d i s p l a y :   f l e x ; \ n         a l i g n - i t e m s :   c e n t e r ; \ n         g a p :   1 5 p x ; \ n         f l e x :   1 ; \ n } \ n . r e o r d e r - i t e m - i m g   { \ n         w i d t h :   4 0 p x ; \ n         h e i g h t :   4 0 p x ; \ n         o b j e c t - f i t :   c o v e r ; \ n         b o r d e r - r a d i u s :   8 p x ; \ n } \ n . r e o r d e r - a c t i o n s   { \ n         d i s p l a y :   f l e x ; \ n         g a p :   8 p x ; \ n } \ n . r e o r d e r - b t n   { \ n         b a c k g r o u n d :   v a r ( - - s o f t - p i n k ) ; \ n         c o l o r :   v a r ( - - d e e p - l a v e n d e r ) ; \ n         b o r d e r :   n o n e ; \ n         b o r d e r - r a d i u s :   5 p x ; \ n         w i d t h :   3 2 p x ; \ n         h e i g h t :   3 2 p x ; \ n         f o n t - s i z e :   1 . 2 r e m ; \ n         c u r s o r :   p o i n t e r ; \ n         d i s p l a y :   f l e x ; \ n         a l i g n - i t e m s :   c e n t e r ; \ n         j u s t i f y - c o n t e n t :   c e n t e r ; \ n         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; \ n } \ n . r e o r d e r - b t n : h o v e r   { \ n         b a c k g r o u n d :   v a r ( - - d e e p - l a v e n d e r ) ; \ n         c o l o r :   v a r ( - - w h i t e ) ; \ n } \ n . r e o r d e r - b t n : d i s a b l e d   { \ n         o p a c i t y :   0 . 5 ; \ n         c u r s o r :   n o t - a l l o w e d ; \ n }  
 