/* ==========================================
   KHISAR'S BOUTIQUE - MAIN STYLES
   ========================================== */

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C0A030;
    --light-gold: #F4E4BC;
    --dark-bg: #9C6DA5;
    --darker-bg: #16213e;
    --accent-bg: #0f3460;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --font-brand: 'Alex Brush', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--accent-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.deer-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    animation: logoZoom 10s ease-out forwards;
}

.deer-logo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px var(--shadow-gold));
}

.deer-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px var(--shadow-gold));
}

@keyframes logoZoom {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.splash-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 1s both;
}

.splash-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 1.3s both;
}

.splash-brand {
    font-family: var(--font-brand);
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 0 0 30px var(--shadow-gold);
    animation: fadeInUp 1s ease 1.6s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Butterfly */
.butterfly-container {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.butterfly-container.flying {
    opacity: 1;
    animation: butterflyFlight 1s ease-in-out forwards;
}

.butterfly {
    position: relative;
    width: 60px;
    height: 40px;
}

.wing {
    position: absolute;
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold), var(--secondary-gold));
    border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
    opacity: 0.9;
}

.wing-left {
    left: 0;
    transform-origin: right center;
    animation: flapLeft 0.15s ease-in-out infinite alternate;
}

.wing-right {
    right: 0;
    transform-origin: left center;
    animation: flapRight 0.15s ease-in-out infinite alternate;
}

.butterfly .body {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 25px;
    background: linear-gradient(var(--secondary-gold), var(--primary-gold));
    border-radius: 3px;
}

@keyframes flapLeft {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(-70deg);
    }
}

@keyframes flapRight {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(70deg);
    }
}

@keyframes butterflyFlight {
    0% {
        left: -100px;
        top: 30%;
        transform: rotate(-10deg) scale(0.8);
    }

    25% {
        top: 40%;
        transform: rotate(5deg) scale(1);
    }

    50% {
        top: 25%;
        transform: rotate(-5deg) scale(1.1);
    }

    75% {
        top: 35%;
        transform: rotate(10deg) scale(1);
    }

    100% {
        left: calc(100% + 100px);
        top: 20%;
        transform: rotate(-5deg) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.glass-nav {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 0.95);
}

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

.nav-brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: var(--primary-gold);
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.4s ease;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card-3d {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.glass-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 30px 60px rgba(212, 175, 55, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-3d {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(244, 228, 188, 0.08) 0%, transparent 50%);
}

.floating-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(212, 175, 55, 0.3));
    border-radius: 50% 0 50% 0;
    opacity: 0.6;
    animation: floatPetal 15s infinite ease-in-out;
}

.petal-1 {
    left: 10%;
    animation-delay: 0s;
}

.petal-2 {
    left: 20%;
    animation-delay: 2s;
}

.petal-3 {
    left: 30%;
    animation-delay: 4s;
}

.petal-4 {
    left: 40%;
    animation-delay: 1s;
}

.petal-5 {
    left: 50%;
    animation-delay: 3s;
}

.petal-6 {
    left: 60%;
    animation-delay: 5s;
}

.petal-7 {
    left: 70%;
    animation-delay: 2s;
}

.petal-8 {
    left: 80%;
    animation-delay: 4s;
}

.petal-9 {
    left: 90%;
    animation-delay: 0s;
}

.petal-10 {
    left: 15%;
    animation-delay: 3s;
}

@keyframes floatPetal {
    0% {
        top: -10%;
        transform: rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        top: 110%;
        transform: rotate(360deg) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
    max-width: 800px;
}

.glass-hero {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.brand-name {
    display: block;
    font-family: var(--font-brand);
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 0 0 40px var(--shadow-gold);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.deco-line:last-child {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.deco-diamond {
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    transform: rotate(45deg);
}

/* Motive Section */
.motive-section {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.motive-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.motive-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
}

.motive-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.motive-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.signature-line {
    width: 50px;
    height: 1px;
    background: var(--primary-gold);
}

.signature-name {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    color: var(--primary-gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    overflow: hidden;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 3/4;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-quick-view {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-quick-view:hover {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.product-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-tag {
    padding: 4px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-fabric {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-fabric i {
    color: var(--primary-gold);
}

.detail-fabric {
    margin-bottom: 25px;
}

.detail-fabric h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-fabric p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.detail-fabric i {
    color: var(--primary-gold);
}

.btn-order {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
}

/* New Arrivals Section */
.new-arrivals-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.3));
    padding: 80px 0;
}

.section-header.light .section-tag,
.section-header.light .section-title {
    color: var(--white);
}

.title-decoration.light .deco-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
}

.title-decoration.light .deco-line:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.title-decoration.light .deco-diamond {
    background: rgba(255, 255, 255, 0.5);
}

.arrivals-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.arrival-card {
    overflow: hidden;
    border-radius: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.arrival-image {
    height: 280px;
    max-height: 280px;
    overflow: hidden;
}

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

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

.arrival-info {
    padding: 20px;
    text-align: center;
}

.arrival-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.arrival-info .price {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.no-items,
.no-products {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: block;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.proprietor-section {
    padding: 40px;
    text-align: center;
}

.proprietor-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.image-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.proprietor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proprietor-placeholder {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
}

.image-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.proprietor-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 5px;
}

.proprietor-designation {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-gold);
    background: var(--glass-bg);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.proprietor-position {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-details {
    padding: 40px;
}

.about-details h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.about-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.feature span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    padding: 40px;
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    margin-top: 100px;
    padding: 60px 0 0;
}

.glass-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: var(--primary-gold);
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 15px;
    list-style: none;
}

.footer-contact i {
    color: var(--primary-gold);
    width: 20px;
}

.map-link {
    color: var(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--darker-bg);
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
}

.glass-popup {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.popup-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.popup-phone {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 15px 50px 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    position: relative;
}

.flash-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.flash-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

.flash-info {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #93c5fd;
}

.flash-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Collections Page */
.collections-page {
    padding-top: 80px;
}

.page-header {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.breadcrumb .separator,
.breadcrumb .current {
    color: var(--text-muted);
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 40px;
}

.product-count {
    color: var(--text-muted);
}

.filter-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--text-light);
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s ease;
}

.page-link:hover,
.page-link.current {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.no-products-full {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
}

.no-products-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.no-products-full h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 15px;
}

.no-products-full p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}