/* SHEIN STYLE STORE - Trendy Gen-Z Fashion Boutique Design */

:root {
    /* Soft Pastel Palette */
    --ivory: #faf8f6;
    --cream: #f5f2ed;
    --beige: #e8e2d9;
    --blush: #ffd4d4;
    --pink: #ffb3c1;
    --lavender: #dac5f7;
    --rose-gold: #e8b4a8;
    --soft-peach: #ffd7ba;
    --mint: #c8e6d5;
    --charcoal: #3d3935;
    --warm-gray: #6b6560;
    --white: #ffffff;
    
    /* Typography - Friendly & Modern */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Effects */
    --shadow-soft: rgba(255, 180, 193, 0.15);
    --shadow-md: rgba(255, 180, 193, 0.25);
    --shadow-lg: rgba(255, 180, 193, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 212, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(218, 197, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 230, 213, 0.08) 0%, transparent 70%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 180, 193, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 16px var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-en {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.logo-hi {
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--pink);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm-gray);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--lavender));
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-menu a:hover {
    color: var(--charcoal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(70px + var(--space-lg)) var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    animation: fadeSlide 0.8s ease-out 0.2s both;
}

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

.badge {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--charcoal), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeSlide 0.8s ease-out 0.3s both;
}

.title-hindi {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: var(--pink);
    margin-top: 10px;
    font-weight: 600;
    animation: fadeSlide 0.8s ease-out 0.4s both;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
    font-weight: 500;
    animation: fadeSlide 0.8s ease-out 0.5s both;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border-radius: 20px;
    width: fit-content;
    box-shadow: 0 4px 16px var(--shadow-soft);
    margin-bottom: var(--space-md);
    animation: fadeSlide 0.8s ease-out 0.6s both;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars span {
    color: #fbbf24;
    font-size: 1.4rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-text strong {
    font-size: 1.05rem;
    color: var(--charcoal);
}

.rating-text span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: fadeSlide 0.8s ease-out 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: var(--font-display);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    box-shadow: 0 6px 20px var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--pink);
    border-color: var(--pink);
}

.btn-secondary:hover {
    background: var(--pink);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-highlights {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeSlide 0.8s ease-out 0.8s both;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight svg {
    color: var(--pink);
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

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

.visual-circle {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.circle-decoration {
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.visual-circle svg {
    color: white;
    opacity: 0.6;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.sparkle {
    font-size: 2rem;
    margin-top: var(--space-xs);
}

/* About Section */
.about {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.lead {
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-content p {
    margin-bottom: var(--space-sm);
    color: var(--warm-gray);
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.value-card {
    background: linear-gradient(135deg, var(--cream), var(--beige));
    padding: var(--space-sm);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px var(--shadow-md);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.85rem;
    margin: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-card {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--beige);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--shadow-md);
}

.stat-card.featured {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    border-color: transparent;
}

.stat-card.featured .stat-number,
.stat-card.featured .stat-label {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink);
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 600;
}

/* Collections Section */
.collections {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.collection-card {
    background: white;
    padding: var(--space-md);
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px var(--shadow-lg);
    border-color: var(--pink);
}

.collection-card.featured {
    background: linear-gradient(135deg, var(--blush), var(--soft-peach));
}

.trending-badge {
    position: absolute;
    top: -12px;
    right: var(--space-md);
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
}

.card-visual {
    position: relative;
    margin-bottom: var(--space-sm);
}

.visual-bg {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-visual svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.collection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.collection-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.rating-display {
    margin-top: var(--space-sm);
}

.stars-lg {
    color: #fbbf24;
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.rating-display p {
    font-size: 1.1rem;
    color: var(--warm-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: linear-gradient(135deg, var(--cream), var(--beige));
    padding: var(--space-md);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-md);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 2px solid rgba(255, 180, 193, 0.3);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* Visit Section */
.visit {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    background: white;
    padding: var(--space-md);
    border-radius: 25px;
    display: flex;
    gap: var(--space-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--pink);
    box-shadow: 0 6px 20px var(--shadow-soft);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.plus-code {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-family: monospace;
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 8px;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.phone-link:hover {
    color: var(--lavender);
}

.phone-note,
.hours-note {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 6px;
}

.hours-simple {
    margin: 10px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--cream);
    border-radius: 15px;
    font-size: 0.95rem;
}

.hours-row span:first-child {
    font-weight: 700;
    color: var(--charcoal);
}

.hours-row span:last-child {
    color: var(--warm-gray);
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenities-list li {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Maps Section */
.maps-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.map-container {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid var(--beige);
}

.map-container h4 {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view-360 {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-360:hover {
    background: rgba(255, 255, 255, 0.3);
}

.map-frame {
    width: 100%;
    height: 350px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal), #2d2a27);
    color: var(--beige);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.footer-hindi {
    color: var(--pink);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-brand p {
    color: var(--beige);
    margin-bottom: var(--space-sm);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-rating .stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.footer-values {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.value-badge {
    background: rgba(255, 180, 193, 0.2);
    color: var(--pink);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: var(--pink);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--beige);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 6px;
}

.footer-contact p,
.footer-hours p {
    color: var(--beige);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--pink);
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.footer-contact a:hover {
    color: white;
}

.quick-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-top: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 180, 193, 0.2);
    padding-top: var(--space-md);
    text-align: center;
}

.demo-notice {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 8px;
    font-style: italic;
}

.footer-bottom p {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 246, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 20px var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--beige);
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .nav-cta {
        margin-top: var(--space-sm);
        text-align: center;
    }
    
    .hero-actions,
    .hero-highlights {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .collections-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
}
