:root {
            --ocean-blue: #E8F4F8;
            --coral-pink: #FFB5BA;
            --shell-white: #FFF8F5;
            --pearl-gray: #F5F2F0;
            --sand-beige: #F7F1E8;
            --ocean-teal: #B8E6E6;
            --sunset-coral: #FF9B9B;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--shell-white) 0%, var(--ocean-blue) 50%, var(--sand-beige) 100%);
            min-height: 100vh;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
        }

        .ocean-gradient {
            background: linear-gradient(135deg, var(--coral-pink) 0%, var(--ocean-teal) 50%, var(--shell-white) 100%);
        }

        .shell-pattern {
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 181, 186, 0.3) 10%, transparent 11%),
                radial-gradient(circle at 70% 60%, rgba(184, 230, 230, 0.3) 8%, transparent 9%),
                radial-gradient(circle at 40% 80%, rgba(255, 155, 155, 0.2) 12%, transparent 13%);
        }

        .pearl-shadow {
            box-shadow: 0 8px 32px rgba(255, 181, 186, 0.3), 0 4px 16px rgba(184, 230, 230, 0.2);
        }

        .shell-border {
            border: 2px solid rgba(255, 181, 186, 0.4);
            border-radius: 20px;
        }

        .wave-divider {
            background: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23FFB5BA' stroke-width='2' stroke-dasharray='6%2c14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
        }

        .product-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 248, 245, 0.8);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 181, 186, 0.4);
        }

        .cart-slide-in {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }

        .cart-slide-in.active {
            transform: translateX(0);
        }

        .modal-backdrop {
            backdrop-filter: blur(8px);
            background: rgba(255, 248, 245, 0.9);
        }

        .seashell-icon::before {
            content: "🐚";
            font-size: 1.2em;
            margin-right: 0.5rem;
        }

        .pearl-icon::before {
            content: "⚪";
            font-size: 0.8em;
            opacity: 0.7;
        }

        .starfish-icon::before {
            content: "⭐";
            font-size: 1em;
        }

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

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        .text-gradient {
            background: linear-gradient(135deg, #FF9B9B, #FFB5BA, #B8E6E6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-ocean {
            background: linear-gradient(135deg, var(--coral-pink), var(--sunset-coral));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 155, 155, 0.4);
        }

        .btn-ocean:hover {
            background: linear-gradient(135deg, var(--sunset-coral), var(--coral-pink));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 155, 155, 0.6);
        }

        .quantity-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--coral-pink);
            color: white;
            border: none;
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .quantity-btn:hover {
            background: var(--sunset-coral);
            transform: scale(1.1);
        }

        /* Trust Elements Styles */
        .trust-badge {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .trust-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: rgba(236, 72, 153, 0.3);
        }

        .security-badge {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 1px solid #bbf7d0;
        }

        .payment-method-badge {
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .payment-method-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .social-proof-counter {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1rem;
        }

        .trust-banner {
            background: linear-gradient(90deg, #059669 0%, #2563eb 100%);
            animation: trust-banner-slide 20s linear infinite;
        }

        @keyframes trust-banner-slide {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .guarantee-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            position: relative;
            overflow: hidden;
        }

        .guarantee-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Enhanced Creator Section Styles */
        .creator-section {
            background: linear-gradient(135deg, 
                rgba(255, 248, 245, 0.9) 0%, 
                rgba(255, 181, 186, 0.1) 25%, 
                rgba(184, 230, 230, 0.1) 50%, 
                rgba(255, 155, 155, 0.1) 75%, 
                rgba(255, 248, 245, 0.9) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 181, 186, 0.3);
            position: relative;
            overflow: hidden;
        }

        .creator-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.2), 
                transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .creator-photo-container {
            transition: all 0.3s ease;
        }

        .creator-photo-container:hover {
            transform: scale(1.05);
        }

        .creator-photo {
            transition: all 0.3s ease;
            filter: brightness(1.1) contrast(1.1);
        }

        .creator-photo:hover {
            filter: brightness(1.2) contrast(1.2) saturate(1.1);
        }

        .sparkle-badge {
            animation: sparkle 2s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        .creator-title {
            animation: fadeInUp 1s ease-out;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .story-paragraph {
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out;
        }

        .story-paragraph:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 181, 186, 0.3);
            background: rgba(255, 255, 255, 0.8);
        }

        .story-paragraph:nth-child(1) { animation-delay: 0.2s; }
        .story-paragraph:nth-child(2) { animation-delay: 0.4s; }
        .story-paragraph:nth-child(3) { animation-delay: 0.6s; }

        .creator-badge {
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .creator-badge:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 181, 186, 0.4);
        }

        .instagram-btn {
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .instagram-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
            transition: left 0.5s ease;
        }

        .instagram-btn:hover::before {
            left: 100%;
        }

        .instagram-btn:hover {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            box-shadow: 0 20px 40px rgba(131, 58, 180, 0.4);
        }

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

        /* Responsive adjustments for creator section */
        @media (max-width: 1024px) {
            .creator-section {
                padding: 2rem;
            }
            
            .creator-photo-container img {
                width: 16rem;
                height: 16rem;
            }
        }

        @media (max-width: 768px) {
            .creator-section {
                padding: 1.5rem;
            }
            
            .creator-photo-container img {
                width: 12rem;
                height: 12rem;
            }
            
            .story-paragraph {
                padding: 1rem;
                font-size: 1rem;
            }
            
            .creator-title {
                font-size: 2rem;
            }
        }

        /* Social Media Buttons */
        .social-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .social-btn i {
            margin-right: 8px;
            font-size: 18px;
        }

        .instagram-btn {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .instagram-btn:hover {
            background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a91a7a 100%);
            color: white;
        }

        .facebook-btn {
            background: linear-gradient(45deg, #1877f2, #42a5f5);
            color: white;
        }

        .facebook-btn:hover {
            background: linear-gradient(45deg, #166fe5, #1976d2);
            color: white;
        }

        .whatsapp-btn {
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
        }

        .whatsapp-btn:hover {
            background: linear-gradient(45deg, #20b954, #0f7a6b);
            color: white;
        }

        .telegram-btn {
            background: linear-gradient(45deg, #0088cc, #229ed9);
            color: white;
        }

        .telegram-btn:hover {
            background: linear-gradient(45deg, #0077b3, #1976d2);
            color: white;
        }

        /* Share Buttons */
        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .share-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Instagram Post Cards */
        .instagram-post {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #e1e8ed;
        }

        .instagram-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .instagram-post img {
            transition: transform 0.3s ease;
            object-fit: cover;
        }

        .instagram-post:hover img {
            transform: scale(1.05);
        }

        .instagram-post .absolute {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-post:hover .absolute {
            opacity: 1;
        }

        /* Instagram-like profile styling */
        .instagram-post .w-8.h-8 {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Instagram-like interaction buttons */
        .instagram-post .fas.fa-heart {
            transition: all 0.2s ease;
        }

        .instagram-post .fas.fa-heart:hover {
            transform: scale(1.2);
            color: #e91e63 !important;
        }

        .instagram-post .fas.fa-comment {
            transition: all 0.2s ease;
        }

        .instagram-post .fas.fa-comment:hover {
            transform: scale(1.1);
            color: #2196f3 !important;
        }

        .instagram-post .post-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .instagram-post .post-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(240, 148, 51, 0.1), rgba(188, 24, 136, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-post:hover .post-overlay {
            opacity: 1;
        }

        /* Highlight Circles */
        .highlight-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 24px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-circle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-radius: 50%;
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

        .highlight-circle:hover {
            transform: scale(1.1);
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .review-stars {
            color: #fbbf24;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card {
            transition: all 0.3s ease;
            position: relative;
        }

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

        .testimonial-card::after {
            content: '"';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 4rem;
            color: rgba(236, 72, 153, 0.1);
            font-family: serif;
        }

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

        @keyframes bounce-slow {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(100%);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .animate-bounce-slow {
            animation: bounce-slow 2s infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

/* =============================================
   Video/Reels Player Optimizations
   - Minimal chrome for reels
   - Smooth fade for controls, keep visual clean
   - Ensure video fills card nicely
============================================= */
.instagram-reel {
  position: relative;
}
.instagram-reel .plyr--video,
.instagram-reel .plyr__video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.instagram-reel video,
.instagram-reel .plyr__poster,
.instagram-reel .plyr__video-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Subtle controls visibility for reels */
.instagram-reel .plyr__controls {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}
.instagram-reel:hover .plyr__controls,
.instagram-reel .plyr--playing .plyr__controls,
.instagram-reel .plyr--paused .plyr__controls:focus-within {
  opacity: 1;
}
/* Avoid outline clutter on controls */
.plyr__controls button:focus { outline: none; box-shadow: 0 0 0 2px rgba(236,72,153,.2); }

/* Prevent layout shift: container preserves aspect ratio */
.instagram-reel .relative { contain: paint layout; }

/* Prefer reduced motion for users asking for it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Empty Cart Modal Styles */
.empty-cart-modal {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.empty-cart-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: shimmer 2s infinite;
}

.empty-cart-decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.empty-cart-decoration:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.empty-cart-decoration:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.empty-cart-decoration:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

/* Order Success Modal Styles */
.order-success-modal {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 253, 244, 0.98) 30%,
        rgba(236, 254, 255, 0.98) 70%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(34, 197, 94, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: successSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.order-success-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(34, 197, 94, 0.1), 
        transparent);
    animation: successShimmer 2.5s infinite;
}

.success-gradient {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    box-shadow: 
        0 10px 25px -5px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: successPulse 2s ease-in-out infinite;
}

.success-decoration {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.7;
    animation: successFloat 4s ease-in-out infinite;
    pointer-events: none;
}

.success-decoration:nth-child(1) {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.success-decoration:nth-child(2) {
    top: 15%;
    right: 12%;
    animation-delay: 1s;
}

.success-decoration:nth-child(3) {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.success-decoration:nth-child(4) {
    bottom: 8%;
    right: 8%;
    animation-delay: 3s;
}

.order-success-details {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-3deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes successSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.6);
    }
}

@keyframes successFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(3deg) scale(1.1);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg) scale(0.95);
    }
}

/* ===== LOCATION PICKER MODAL STYLES ===== */
.location-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: locationModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.location-modal-header {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.location-modal-content {
    overflow: hidden;
}

/* Map Container Styles */
#locationMap {
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

#locationMap .leaflet-container {
    border-radius: 0;
    font-family: 'Inter', sans-serif;
}

#locationMap .leaflet-popup-content-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

#locationMap .leaflet-popup-content {
    margin: 12px 16px;
    font-size: 14px;
    color: #374151;
}

#locationMap .leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Custom Marker Styles */
.location-marker {
    background: linear-gradient(135deg, #ec4899 0%, #3b82f6 100%);
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: locationPulse 2s infinite;
}

.location-marker::before {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Address Form Styles */
.location-modal .space-y-4 input,
.location-modal .space-y-4 textarea {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.location-modal .space-y-4 input:focus,
.location-modal .space-y-4 textarea:focus {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px -8px rgba(236, 72, 153, 0.3);
}

/* Selected Location Display */
#selectedLocationDisplay {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    animation: locationSlideIn 0.3s ease-out;
}

/* Map Control Buttons */
#getCurrentLocation,
#searchLocation {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#getCurrentLocation:hover,
#searchLocation:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(236, 72, 153, 0.3);
}

/* Confirm Location Button States */
#confirmLocation:disabled {
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

#confirmLocation:not(:disabled) {
    animation: locationButtonReady 0.5s ease-out;
}

/* Location Modal Animations */
@keyframes locationModalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes locationSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes locationPulse {
    0% {
        box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3), 0 0 0 0 rgba(236, 72, 153, 0.7);
    }
    70% {
        box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3), 0 0 0 10px rgba(236, 72, 153, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3), 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

@keyframes locationButtonReady {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design for Location Modal */
@media (max-width: 1024px) {
    .location-modal {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .location-modal-content {
        flex-direction: column;
        height: auto;
        max-height: 80vh;
    }
    
    .location-modal-content > div:first-child {
        height: 300px;
        min-height: 300px;
    }
    
    .location-modal-content > div:last-child {
        max-height: 400px;
        overflow-y: auto;
    }
}

@media (max-width: 640px) {
    .location-modal {
        margin: 1rem;
        border-radius: 1.5rem;
    }
    
    .location-modal-header {
        padding: 1rem;
    }
    
    .location-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .location-modal-content > div:last-child {
        padding: 1rem;
    }
}
