/**
 * Enhanced Styles
 * Dark mode, animations, components, and mobile navigation
 */

/* ========================================
   DARK MODE VARIABLES
   ======================================== */
:root {
    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --bg: #0f0f1a;
    --card-bg: #1a1a2e;
    --text: #f5f5f5;
    --muted: #a0aec0;
    --border: #2d3748;
    --soft-gold: rgba(212, 175, 55, 0.15);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 32px rgba(212, 175, 55, 0.2);
}

[data-theme="dark"] .header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .footer {
    background: #0a0a14;
}

[data-theme="dark"] .product-card__image,
[data-theme="dark"] .product-image,
[data-theme="dark"] .main-image {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), var(--card-bg));
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
#toast-container {
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    max-width: 350px;
}

.toast--visible {
    transform: translateX(0);
    opacity: 1;
}

.toast--success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.toast--error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.toast--info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.toast--warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.toast__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast__message {
    flex: 1;
}

.toast__close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s;
}

.toast__close:hover {
    opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.animate-ready {
    opacity: 0;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.bounce {
    animation: bounce 0.3s ease;
}

/* Staggered animations for grid items */
.products-grid .animate-in:nth-child(1) { animation-delay: 0.05s; }
.products-grid .animate-in:nth-child(2) { animation-delay: 0.1s; }
.products-grid .animate-in:nth-child(3) { animation-delay: 0.15s; }
.products-grid .animate-in:nth-child(4) { animation-delay: 0.2s; }
.products-grid .animate-in:nth-child(5) { animation-delay: 0.25s; }
.products-grid .animate-in:nth-child(6) { animation-delay: 0.3s; }
.products-grid .animate-in:nth-child(7) { animation-delay: 0.35s; }
.products-grid .animate-in:nth-child(8) { animation-delay: 0.4s; }

/* ========================================
   ENHANCED PRODUCT CARD
   ======================================== */
.product-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card__image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--soft-gold), var(--bg));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.02);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card__emoji {
    font-size: 4rem;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__emoji {
    transform: scale(1.1) rotate(5deg);
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-card__quick-view {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.product-card:hover .product-card__quick-view {
    opacity: 1;
    transform: scale(1);
}

.product-card__quick-view:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Product Card Actions Container */
.product-card__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

/* Wishlist Button on Product Card */
.product-card__wishlist {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    padding: 0;
}

.product-card__wishlist:hover {
    background: #fee2e2;
    border-color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.product-card__wishlist.active {
    background: #fee2e2;
    border-color: #ef4444;
}

.product-card__wishlist.active:hover {
    background: #fecaca;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.product-card__info {
    padding: 1.25rem;
    text-align: center;
}

.product-card__title {
    text-decoration: none;
    color: inherit;
}

.product-card__title h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    line-height: 1.3;
}

.product-card__title:hover h4 {
    color: var(--gold);
}

.product-card__description {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-card__current-price {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
}

.product-card__original-price {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: line-through;
}

.product-card__add-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--gold), #c9a430);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.product-card__add-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.product-card__add-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-card__add-cart.loading {
    background: var(--muted);
}

.product-card__add-cart.added {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Size variations */
.product-card--small .product-card__image { height: 140px; }
.product-card--small .product-card__emoji { font-size: 3rem; }
.product-card--small .product-card__info { padding: 1rem; }

.product-card--large .product-card__image { height: 220px; }
.product-card--large .product-card__emoji { font-size: 5rem; }

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton-card {
    pointer-events: none;
}

.skeleton-shimmer {
    background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-card__image {
    height: 180px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.skeleton-card__info {
    padding: 1.25rem;
}

.skeleton-card__title {
    height: 20px;
    width: 80%;
    margin: 0 auto 0.75rem;
}

.skeleton-card__price {
    height: 24px;
    width: 50%;
    margin: 0 auto 0.75rem;
}

.skeleton-card__button {
    height: 40px;
    width: 100%;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

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

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-drawer__header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-drawer__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.3s;
    padding: 0.25rem;
}

.cart-drawer__close:hover {
    color: var(--gold);
}

.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-drawer__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--muted);
}

.cart-drawer__empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-drawer__item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    position: relative;
    align-items: flex-start;
}

.cart-drawer__item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-gold), var(--bg));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cart-drawer__item-info {
    flex: 1;
    min-width: 0;
}

.cart-drawer__item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-drawer__item-price {
    color: var(--gold);
    font-weight: 700;
}

.cart-drawer__item-qty {
    color: var(--muted);
    font-size: 0.85rem;
}

.cart-drawer__item-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.3s;
    padding: 0.25rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: flex-start;
}

.cart-drawer__item-remove:hover {
    color: var(--error);
    background: rgba(220, 38, 38, 0.1);
}

.cart-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cart-drawer__total-amount {
    color: var(--gold);
}

.cart-drawer__checkout {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), #c9a430);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.cart-drawer__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cart-drawer__continue {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-drawer__continue:hover {
    color: var(--gold);
}

/* ========================================
   WISHLIST DRAWER
   ======================================== */
.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.wishlist-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wishlist-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 420px;
    height: 100vh !important;
    max-height: 100vh !important;
    background: var(--card-bg);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.wishlist-drawer.open {
    transform: translateX(0);
}

.wishlist-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.wishlist-drawer__header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wishlist-drawer__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.3s;
    padding: 0.25rem;
}

.wishlist-drawer__close:hover {
    color: var(--gold);
}

.wishlist-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.wishlist-drawer__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--muted);
}

.wishlist-drawer__empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.wishlist-drawer__item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    position: relative;
}

.wishlist-drawer__item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fee2e2, var(--bg));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.wishlist-drawer__item-info {
    flex: 1;
    min-width: 0;
}

.wishlist-drawer__item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wishlist-drawer__item-price {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wishlist-drawer__item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.wishlist-drawer__btn-cart {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--gold), #c9a430);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-drawer__btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.wishlist-drawer__btn-view {
    padding: 0.5rem 0.75rem;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.wishlist-drawer__btn-view:hover {
    background: var(--border);
}

.wishlist-drawer__remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    color: #ef4444;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-drawer__remove:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.wishlist-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.wishlist-drawer__view-all {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fee2e2, #fce7f3);
    color: #be185d;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.wishlist-drawer__view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.2);
}

/* Mobile adjustments for wishlist drawer */
@media (max-width: 768px) {
    .wishlist-drawer {
        max-width: 100% !important;
        width: 100% !important;
        z-index: 10000 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        height: 100vh !important;
    }
    
    .wishlist-overlay {
        z-index: 9999 !important;
    }
}

/* ========================================
   QUICK VIEW MODAL
   ======================================== */
.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.quick-view-modal.open {
    opacity: 1;
    visibility: visible;
}

.quick-view__container {
    background: var(--card-bg);
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quick-view-modal.open .quick-view__container {
    transform: scale(1);
}

.quick-view__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.quick-view__close:hover {
    background: var(--gold);
    color: white;
}

.quick-view__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.quick-view__image {
    background: linear-gradient(135deg, var(--soft-gold), var(--bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    padding: 2rem;
}

.quick-view__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.quick-view__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.quick-view__price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quick-view__price .current-price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.quick-view__price .original-price {
    color: var(--muted);
    text-decoration: line-through;
}

.quick-view__description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.quick-view__actions {
    display: flex;
    gap: 1rem;
}

.quick-view__loading,
.quick-view__error {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--muted);
    min-height: 300px;
}

@media (max-width: 768px) {
    .quick-view__content {
        grid-template-columns: 1fr;
    }
    
    .quick-view__image {
        height: 200px;
        font-size: 5rem;
    }
}

/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav__item.active,
.mobile-nav__item:hover {
    color: var(--gold);
}

.mobile-nav__icon {
    font-size: 1.4rem;
}

.mobile-nav__label {
    font-weight: 500;
}

.mobile-nav__badge {
    position: absolute;
    top: 0;
    right: 0.5rem;
    background: var(--gold);
    color: white;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
    
    /* Add padding to body to account for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide WhatsApp float on mobile (we have it in nav) */
    .whatsapp-float {
        bottom: 80px;
    }
    
    /* Adjust toast position for mobile nav */
    #toast-container {
        bottom: 80px;
    }
}

/* ========================================
   THEME TOGGLE
   ======================================== */
.theme-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--soft-gold);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better focus styles */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: white;
}
