/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #25D366;
    --accent-color: #FFD700;  /* Gold */
    --gold-gradient: linear-gradient(45deg, #FFD700, #FDB931, #FFD700);
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(-45deg, #2c3e50, var(--accent-color), #8e44ad, var(--accent-color));
    background-size: 400% 400%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -56px;
    overflow: hidden;
    animation: gradientBG 15s ease infinite;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* White Dots */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.9), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.7), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 120px, rgba(255,255,255,0.6), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 100px 80px, rgba(255,255,255,0.5), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 110px 90px, rgba(255,255,255,0.4), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 170px 150px, rgba(255,255,255,0.3), rgba(0,0,0,0));
    background-repeat: repeat;
    animation: animatedBackground 20s linear infinite;
    opacity: 0.7;
    z-index: 1;
}

/* Floating Product Bubbles */
.product-bubble {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.35;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.product-bubble:nth-child(1) {
    width: 180px;
    height: 180px;
    background-image: url('../images/store/JEWELRY/1.jpeg');
    animation: float1 25s ease-in-out infinite;
    top: 15%;
    left: 8%;
}

.product-bubble:nth-child(2) {
    width: 140px;
    height: 140px;
    background-image: url('../images/store/PERFUMES/1.jpeg');
    animation: float2 28s ease-in-out infinite;
    top: 55%;
    right: 12%;
}

.product-bubble:nth-child(3) {
    width: 200px;
    height: 200px;
    background-image: url('../images/store/CLOTHING/1.jpeg');
    animation: float3 22s ease-in-out infinite;
    bottom: 18%;
    left: 15%;
}

.product-bubble:nth-child(4) {
    width: 160px;
    height: 160px;
    background-image: url('../images/store/SHOES/1.jpeg');
    animation: float4 26s ease-in-out infinite;
    top: 25%;
    right: 20%;
}

.product-bubble:nth-child(5) {
    width: 220px;
    height: 220px;
    background-image: url('../images/store/BAGS/1.jpeg');
    animation: float5 30s ease-in-out infinite;
    bottom: 30%;
    right: 28%;
}

.product-bubble:nth-child(6) {
    width: 150px;
    height: 150px;
    background-image: url('../images/store/WATCHES/1.jpeg');
    animation: float6 24s ease-in-out infinite;
    top: 40%;
    left: 25%;
}

@keyframes float1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -20px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-15px, 25px) rotate(-8deg) scale(1); }
    75% { transform: translate(-25px, -15px) rotate(3deg) scale(0.95); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-25px, 25px) rotate(-5deg) scale(1.08); }
    50% { transform: translate(20px, -20px) rotate(8deg) scale(1); }
    75% { transform: translate(15px, 15px) rotate(-3deg) scale(0.92); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes float3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(35px, 15px) rotate(8deg) scale(0.95); }
    50% { transform: translate(-25px, -25px) rotate(-5deg) scale(1.05); }
    75% { transform: translate(-15px, 20px) rotate(3deg) scale(1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes float4 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-20px, -30px) rotate(-8deg) scale(1.02); }
    50% { transform: translate(25px, 15px) rotate(5deg) scale(0.98); }
    75% { transform: translate(15px, -20px) rotate(-3deg) scale(1.02); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes float5 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(25px, -25px) rotate(5deg) scale(0.92); }
    50% { transform: translate(-30px, 20px) rotate(-8deg) scale(1.08); }
    75% { transform: translate(20px, 25px) rotate(3deg) scale(1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes float6 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-15px, 30px) rotate(-5deg) scale(1.05); }
    50% { transform: translate(25px, -15px) rotate(8deg) scale(0.95); }
    75% { transform: translate(-20px, -25px) rotate(-3deg) scale(1.05); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero h1 {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: var(--primary-color);
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 60%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent 60%);
    pointer-events: none;
}

.categories-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-section .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    color: white;
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.category-card:hover .category-description {
    opacity: 1;
    transform: translateY(0);
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.item-count {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.category-link {
    text-decoration: none;
    color: inherit;
}

.explore-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-gradient);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease 0.2s;
}

.category-card:hover .explore-btn {
    opacity: 1;
    transform: translateX(0);
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 350px;
    }

    .category-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 70%,
            transparent 100%);
    }

    .category-description,
    .explore-btn {
        opacity: 1;
        transform: none;
    }
}

/* Luxury Experience Section */
.luxury-experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, #fff 50%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.luxury-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-color);
}

.experience-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.experience-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-features li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.experience-features li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.experience-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.experience-cta:hover {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        padding: 2rem 1.5rem;
    }
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background-color: white;
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 5rem 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section Images Animation */
.about-image {
    position: relative;
    height: 600px;
    width: 100%;
    perspective: 1000px;
}

.image-container {
    position: absolute;
    width: 80%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

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

/* Gold border accent */
.image-container::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-container:hover::after {
    opacity: 1;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

/* Position and animate each image */
.image-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: rotateImage1 15s infinite ease-in-out;
}

.image-2 {
    top: 50px;
    left: 50px;
    z-index: 2;
    animation: rotateImage2 15s infinite ease-in-out;
}

.image-3 {
    top: 100px;
    left: 100px;
    z-index: 1;
    animation: rotateImage3 15s infinite ease-in-out;
}

/* Rotation Animations */
@keyframes rotateImage1 {
    0%, 100% {
        transform: translateZ(0) rotate(0deg) scale(1);
        top: 0;
        left: 0;
        z-index: 3;
    }
    33% {
        transform: translateZ(-50px) rotate(5deg) scale(0.95);
        top: 50px;
        left: 50px;
        z-index: 2;
    }
    66% {
        transform: translateZ(-100px) rotate(-5deg) scale(0.9);
        top: 100px;
        left: 100px;
        z-index: 1;
    }
}

@keyframes rotateImage2 {
    0%, 100% {
        transform: translateZ(-50px) rotate(5deg) scale(0.95);
        top: 50px;
        left: 50px;
        z-index: 2;
    }
    33% {
        transform: translateZ(-100px) rotate(-5deg) scale(0.9);
        top: 100px;
        left: 100px;
        z-index: 1;
    }
    66% {
        transform: translateZ(0) rotate(0deg) scale(1);
        top: 0;
        left: 0;
        z-index: 3;
    }
}

@keyframes rotateImage3 {
    0%, 100% {
        transform: translateZ(-100px) rotate(-5deg) scale(0.9);
        top: 100px;
        left: 100px;
        z-index: 1;
    }
    33% {
        transform: translateZ(0) rotate(0deg) scale(1);
        top: 0;
        left: 0;
        z-index: 3;
    }
    66% {
        transform: translateZ(-50px) rotate(5deg) scale(0.95);
        top: 50px;
        left: 50px;
        z-index: 2;
    }
}

/* Hover effects */
.about-image:hover .image-container {
    animation-play-state: paused;
}

.image-container:hover {
    transform: scale(1.05) translateZ(30px) !important;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* Gradient overlay */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.2), transparent);
    z-index: 1;
    transition: all 0.3s ease;
}

.image-container:hover::before {
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.3), rgba(184, 134, 11, 0.1));
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .about-image {
        height: auto;
        perspective: none;
    }

    .image-container {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
        animation: none !important;
    }

    .image-1, .image-2, .image-3 {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .about-image {
        display: none;
    }
    
    .about-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .about-section {
        padding: 4rem 0;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 3rem;
        transform: none;
    }
    
    .about-image:hover {
        transform: none;
    }
}

/* WhatsApp Integration */
.whatsapp-link {
    color: var(--secondary-color) !important;
    font-weight: bold !important;
}

.whatsapp-cta {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.whatsapp-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.05);
}

.whatsapp-button i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.footer h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .category-card img {
        height: 200px;
    }
    
    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

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

@keyframes animatedBackground {
    0% { background-position: 0px 0px; }
    25% { background-position: 50px 50px; }
    50% { background-position: 0px 100px; }
    75% { background-position: -50px 50px; }
    100% { background-position: 0px 0px; }
}
