/* Estilos Generales y Variables */
:root {
    --color-dark: #1a202c;
    --color-gold: #d4af37;
    --color-light: #f7fafc;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light);
    color: #4a5568;
}
h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}
.bg-groupcol-dark { background-color: var(--color-dark); }
.bg-groupcol-gold { background-color: var(--color-gold); }
.text-groupcol-gold { color: var(--color-gold); }
.border-groupcol-gold { border-color: var(--color-gold); }
html {
    scroll-behavior: smooth;
}
.lang-btn.active {
    color: var(--color-gold);
    font-weight: 700;
}

/* Estilos de la página de Inicio (Hero) */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 32, 44, 0.7);
    z-index: -50;
}

/* Estilos de la página de Productos */
.product-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Estilos para el modo RTL (Right-to-Left) */
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
    text-align: right;
}
html[dir="rtl"] [class*="space-x-"] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
}
html[dir="rtl"] .ml-4 { margin-left: 0; margin-right: 1rem; }
html[dir="rtl"] .mr-3 { margin-right: 0; margin-left: 0.75rem; }
html[dir="rtl"] .border-l { border-left-width: 0px; border-right-width: 1px; }
html[dir="rtl"] footer .flex.items-center {
    flex-direction: row-reverse;
}

/* Estilos de los íconos flotantes */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.floating-icon {
    background-color: white;
    padding: 2px;
    border-radius: 50%;
    border: 4px solid rgb(192, 164, 5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.floating-icon:hover {
    transform: scale(1.1);
}
.icon-image {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}