/* Additional custom styles */

/* Smooth section transitions */
section {
    position: relative;
}

/* Gold shimmer effect for special text */
.gold-text {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 35%, #f59e0b 65%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

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

/* Selection color */
::selection {
    background: rgba(13, 148, 136, 0.3);
    color: #f1f5f9;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Print styles */
@media print {
    nav, .mobile-menu, #backToTop, .animate-fade-in-up, .animate-float {
        display: none !important;
    }
    body { background: white; color: black; }
}

/* Extra large screens */
@media (min-width: 1920px) {
    .max-w-7xl { max-width: 80rem; }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .luxury-card {
        border-color: rgba(13, 148, 136, 0.6);
    }
    .gold-text {
        background: none;
        -webkit-text-fill-color: #fbbf24;
    }
}

/* Touch device adjustments */
@media (hover: none) and (pointer: coarse) {
    .luxury-card:hover {
        transform: none;
        border-color: rgba(13, 148, 136, 0.15);
    }
    .product-img-wrapper:hover img {
        transform: none;
    }
}
