/* Dubai Perfumes Importados™ - Complete CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.dubai-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #daa520, #ffd700, #ffffff, #daa520);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite, logoEntrance 1.5s ease-out;
    text-shadow: 0 0 40px rgba(218, 165, 32, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    line-height: 1.1;
}

.tagline {
    font-size: 0.9rem;
    color: #daa520;
    text-align: center;
    margin-top: 0.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f5f5f5, #daa520, #ffd700, #f5f5f5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 5s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(218, 165, 32, 0.7);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #daa520;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #daa520;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #daa520;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: #daa520;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #daa520;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.burj-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    animation: burjFadeIn 3s ease-in-out 0.5s forwards;
}

.burj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(218,165,32,0.05) 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    animation: overlayPulse 4s ease-in-out 2s infinite;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Golden Particles */
.golden-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #daa520;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }

/* Floating Ornaments */
.floating-ornament {
    position: absolute;
    color: #daa520;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.ornament-1 {
    top: 20%;
    left: 15%;
    animation-delay: 3s;
}

.ornament-2 {
    top: 60%;
    right: 30%;
    animation-delay: 5s;
}

.ornament-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 7s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #daa520, #ffd700);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.btn-buy {
    background: linear-gradient(45deg, #daa520, #ffd700);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

/* Products Collection */
.collection {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(218, 165, 32, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-in-out forwards;
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
    border-color: #daa520;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #daa520;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-description {
    color: #cccccc;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
    flex: 1;
}

.product-notes {
    margin-bottom: 1.5rem;
}

.note {
    display: inline-block;
    background: rgba(218, 165, 32, 0.1);
    color: #daa520;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #daa520;
    text-align: right;
}

/* Trust Seals */
.trust-seals {
    padding: 4rem 0;
    background: rgba(10, 10, 10, 0.8);
}

.seals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-seal {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

.trust-seal:hover {
    border-color: #daa520;
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.1);
}

.seal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #daa520;
}

.seal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #daa520;
    margin-bottom: 0.5rem;
}

.seal-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

.testimonial:hover {
    border-color: #daa520;
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.1);
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #daa520;
    box-shadow: 0 4px 8px rgba(218, 165, 32, 0.3);
    margin: 0 auto;
    display: block;
}

.testimonial-text {
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-name {
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.9);
}

.contact-info {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Cinzel', serif;
    color: #daa520;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #daa520;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    color: #666;
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #daa520, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    border: 2px solid rgba(218, 165, 32, 0.4);
}

.floating-social:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.6);
    border-color: #ffd700;
    filter: brightness(1.2);
}

.whatsapp {
    bottom: 30px;
    left: 30px;
}

.instagram {
    bottom: 30px;
    right: 30px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #000;
}

/* Animations */
@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(0.95);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

@keyframes burjFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(2px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.02);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0px);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(50px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dubai-logo {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .floating-social {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp {
        bottom: 20px;
        left: 20px;
    }
    
    .instagram {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .dubai-logo {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .testimonial,
    .trust-seal {
        padding: 1.5rem;
    }
}