/* Padariazarah Premium E-commerce Styles */
/* Theme: Red Maroon with Snow White Background */

:root {
    --primary-color: #8B0000;
    --primary-dark: #6B0000;
    --primary-light: #A52A2A;
    --secondary-color: #DC143C;
    --text-dark: #2C1810;
    --text-light: #5C4033;
    --bg-white: #FFFAFA;
    --bg-texture: #F5F5F5;
    --border-color: #E8D5D5;
    --shadow-light: rgba(139, 0, 0, 0.1);
    --shadow-medium: rgba(139, 0, 0, 0.2);
    --shadow-heavy: rgba(139, 0, 0, 0.3);
    --success-color: #28A745;
    --error-color: #DC3545;
    --warning-color: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Primary Navbar */
.navbar-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.navbar-primary .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 8px var(--shadow-medium);
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px var(--shadow-heavy);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Auth Page Logo */
.auth-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    padding: 5px;
    background: white;
    box-shadow: 0 8px 24px var(--shadow-medium);
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.auth-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 800;
}

.auth-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--success-color);
    font-size: 1rem;
    font-weight: 500;
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.search-bar:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 6px 20px var(--shadow-medium);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.nav-item i {
    font-size: 1.2rem;
}

.language-selector {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.language-selector:hover {
    box-shadow: 0 4px 12px var(--shadow-medium);
    transform: translateY(-2px);
}

/* Secondary Navbar */
.navbar-secondary {
    background: white;
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px var(--shadow-light);
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.navbar-secondary::-webkit-scrollbar {
    height: 4px;
}

.navbar-secondary::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px var(--shadow-medium);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Iconic Bar */
.iconic-bar {
    margin: 3rem 0;
    padding: 2rem 0;
}

.iconic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.iconic-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.iconic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-medium);
    border-color: var(--primary-color);
}

.iconic-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.iconic-item:hover .iconic-icon {
    transform: scale(1.2) rotate(5deg);
}

.iconic-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.iconic-desc {
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 12px var(--shadow-medium);
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Auth Pages (Login/Signup) */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(1000px 400px at 10% 10%, rgba(139,0,0,0.06), transparent 60%),
        radial-gradient(800px 300px at 90% 90%, rgba(220,20,60,0.06), transparent 60%),
        linear-gradient(135deg, var(--bg-white) 0%, var(--bg-texture) 100%);
}
.auth-card {
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 3px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 1100px;
    margin: 0 1rem;
}
.auth-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}
.auth-split {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
}
.auth-info {
    padding: 2rem 2.5rem;
    text-align: left;
    border-right: 3px solid var(--border-color);
}
.auth-info h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.auth-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    margin: 0.6rem 0 1rem 0;
}
.auth-form {
    padding: 2rem 2.5rem;
}
.auth-form form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.auth-long {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.9;
}
.auth-points {
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
}
.auth-point {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-dark);
}
.auth-point i {
    color: var(--primary-color);
    margin-top: 2px;
}
.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.signup-page .auth-container {
    align-items: flex-start;
}
.signup-page .auth-box {
    position: sticky;
    top: 100px;
    z-index: 10;
    max-width: 420px;
    padding: 2rem;
}
.signup-page .auth-header { margin-bottom: 1rem; }
.signup-page .auth-header h1 { font-size: 2rem; }
.signup-page .auth-logo { width: 90px; height: 90px; }
.signup-page .form-group { margin-bottom: 0.8rem; }
.signup-page .form-control { padding: 0.8rem; }
.signup-page .btn { padding: 0.8rem 1.2rem; font-size: 1rem; }
.signup-page .auth-footer { margin-top: 1rem; }

.login-page .auth-container {
    background:
        radial-gradient(1000px 400px at 10% 10%, rgba(13,148,136,0.06), transparent 60%),
        radial-gradient(800px 300px at 90% 90%, rgba(6,182,212,0.06), transparent 60%),
        linear-gradient(135deg, var(--bg-white) 0%, var(--bg-texture) 100%);
}
.login-page .auth-header h1,
.login-page .auth-info h1 {
    color: #0d9488;
}
.login-page .auth-logo {
    border-color: #0d9488;
}
.login-page .btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
}

.auth-box {
    position: relative;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 520px;
    width: 100%;
    border: 3px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.auth-box::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 180deg at 50% 50%, rgba(139,0,0,0.15), rgba(220,20,60,0.15), rgba(139,0,0,0.15));
    filter: blur(60px);
    z-index: 0;
    transform: rotate(15deg);
}
.auth-box > * {
    position: relative;
    z-index: 1;
}
.auth-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px var(--shadow-light);
    transform: translateY(-1px);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 8px;
}

.password-toggle:hover {
    color: var(--primary-color);
    background: rgba(139,0,0,0.08);
}

.username-status {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
}

.username-status.available {
    color: var(--success-color);
    background: rgba(40, 167, 69, 0.1);
}

.username-status.taken {
    color: var(--error-color);
    background: rgba(220, 53, 69, 0.1);
}

.username-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.suggestion-tag {
    padding: 0.4rem 0.8rem;
    background: var(--bg-texture);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 100%;
    box-shadow: 0 8px 18px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px var(--shadow-heavy);
}
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.25), rgba(255,255,255,0));
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-primary:hover::after {
    left: 120%;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 1000;
}

.back-button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.login-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background: #c58b2b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 139, 43, 0.3);
}

.login-btn.btn-icon {
    padding: 8px 12px;
}

.login-btn.btn-logout {
    background: #dc3545;
}

.login-btn.btn-logout:hover {
    background: #c82333;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    font-weight: 700;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: #c58b2b;
    margin: 10px auto;
}

/* Alert/Modal */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.alert-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 12px 40px var(--shadow-heavy);
    border: 3px solid var(--primary-color);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.alert-overlay.active .alert-box {
    transform: scale(1);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.alert-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.alert-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.alert-body {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-split {
        grid-template-columns: 1fr;
    }
    .auth-divider, .auth-long { display: none; }
    .auth-info { border-right: none; border-bottom: 3px solid var(--border-color); }
    .auth-card { border-radius: 20px; margin: 0 0.75rem; }
    .auth-info, .auth-form { padding: 1.25rem 1.5rem; }
    .auth-logo { width: 80px; height: 80px; }
    .auth-info h1 { font-size: 1.8rem; }
    .form-title { font-size: 1.2rem; }
    .form-control { padding: 0.85rem; font-size: 0.95rem; }
    .btn { padding: 0.9rem 1.2rem; font-size: 1rem; }
    .navbar-primary .container {
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        max-width: 100%;
        order: 3;
        width: 100%;
    }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-item {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .hero-section {
        height: 300px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .iconic-grid {
        grid-template-columns: 1fr;
    }

    .auth-box {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-card { margin: 0 0.5rem; }
    .auth-info, .auth-form { padding: 1rem; }
    .auth-logo { width: 70px; height: 70px; }
    .auth-info h1 { font-size: 1.6rem; }
    .form-control { padding: 0.75rem; font-size: 0.92rem; }
    .btn { padding: 0.8rem 1rem; font-size: 0.95rem; }
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-item span {
        display: none;
    }

    .auth-header h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Floating Location Pin */
.location-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: linear-gradient(135deg, #800000, #a00000); /* Maroon Red */
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: -10%;
}

.location-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.6);
}
