/* LUXURY JEWELRY STORE - PREMIUM DESIGN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-dark: #996515;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --cream: #F8F6F0;
    --silver: #C0C0C0;
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #FFD700, #D4AF37, #996515);
    --gradient-black: linear-gradient(135deg, #0A0A0A, #1A1A1A, #2A2A2A);
    
    /* Night theme variables */
    --night-bg: #0A0A0A;
    --night-surface: #1A1A1A;
    --night-card: #2A2A2A;
    --night-text: #E0E0E0;
    --night-text-secondary: #B0B0B0;
    --night-border: #333333;
    --night-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    --night-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Night theme styles */
body.night-mode {
    background: var(--night-bg);
    color: var(--night-text);
}

body.night-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid var(--night-border);
}

body.night-mode .logo-main {
    color: var(--night-text);
}

body.night-mode .nav-links a {
    color: #FFFFFF;
}

body.night-mode .nav-links a::after {
    background: var(--gradient-gold);
}

body.night-mode .nav-toggle span {
    background: var(--night-text);
}

body.night-mode .we-sell-section {
    background: var(--night-surface);
}

body.night-mode .we-sell-header h1 {
    color: var(--night-text);
}

body.night-mode .category-title {
    color: var(--night-text);
}

body.night-mode .section-intro h3 {
    color: var(--night-text);
}

body.night-mode .section-intro p {
    color: var(--night-text-secondary);
}

body.night-mode .cta-card {
    background: var(--night-card);
    border-color: var(--night-border);
    box-shadow: var(--night-shadow);
}

body.night-mode .cta-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--night-shadow), var(--night-glow);
}

body.night-mode .cta-card h4 {
    color: var(--night-text);
}

body.night-mode .cta-card p {
    color: var(--night-text-secondary);
}

body.night-mode .about-section {
    background: var(--night-surface);
}

body.night-mode .about-text h2 {
    color: var(--night-text);
}

body.night-mode .about-intro {
    color: var(--night-text-secondary);
}

body.night-mode .feature-text h4 {
    color: var(--night-text);
}

body.night-mode .feature-text p {
    color: var(--night-text-secondary);
}

body.night-mode .contact-section {
    background: var(--night-surface);
}

body.night-mode .contact-header h2 {
    color: var(--night-text);
}

body.night-mode .contact-header p {
    color: var(--night-text-secondary);
}

body.night-mode .location-card {
    background: var(--night-card);
    border-color: var(--night-border);
    box-shadow: var(--night-shadow);
}

body.night-mode .location-card:hover {
    box-shadow: var(--night-shadow), var(--night-glow);
}

body.night-mode .location-header h3 {
    color: var(--night-text);
}

body.night-mode .store-hours p,
body.night-mode .store-contact p {
    color: var(--night-text-secondary);
}

body.night-mode .phone-number,
body.night-mode .email-link {
    color: var(--night-text);
}

body.night-mode .email-link:hover {
    color: var(--gold-primary);
}

body.night-mode .email-display {
    color: var(--night-text-secondary);
}

body.night-mode .shared-contact-card {
    background: var(--gold-primary);
}

body.night-mode .shared-contact-card h3 {
    color: var(--black);
}

body.night-mode .shared-contact-card p {
    color: var(--black);
}

body.night-mode .email-contact {
    background: var(--white);
    color: var(--black);
}

body.night-mode .popup-content {
    background: var(--night-card);
    box-shadow: var(--night-shadow);
}

body.night-mode .popup-header h2 {
    color: var(--night-text);
}

body.night-mode .popup-header p {
    color: var(--night-text-secondary);
}

body.night-mode .popup-item {
    background: var(--night-surface);
    border-left-color: var(--gold-primary);
}

body.night-mode .popup-item h3 {
    color: var(--night-text);
}

body.night-mode .popup-item p {
    color: var(--night-text-secondary);
}

body.night-mode .popup-cta {
    background: var(--gold-primary);
    color: var(--black);
}

body.night-mode .popup-cta h3 {
    color: var(--black);
}

body.night-mode .popup-cta .phone {
    color: var(--black);
}

/* Theme toggle button styles */
.theme-toggle {
    margin: 0 1rem;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    padding: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.toggle-icon {
    font-size: 0.8rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: absolute;
}

.day-icon {
    opacity: 1;
    transform: translateX(0);
}

.night-icon {
    opacity: 0;
    transform: translateX(10px);
}

body.night-mode .day-icon {
    opacity: 0;
    transform: translateX(-10px);
}

body.night-mode .night-icon {
    opacity: 1;
    transform: translateX(0);
}

.theme-toggle-btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

body.night-mode .theme-toggle-btn::before {
    transform: translateX(16px);
}

/* Responsive theme toggle */
@media (max-width: 768px) {
    .theme-toggle {
        margin: 0 0.5rem;
    }
    
    .theme-toggle-btn {
        width: 36px;
        height: 22px;
    }
    
    .theme-toggle-btn::before {
        width: 16px;
        height: 16px;
    }
    
    body.night-mode .theme-toggle-btn::before {
        transform: translateX(14px);
    }
    
    .toggle-icon {
        font-size: 0.7rem;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Removed loading screen */

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Navbar scrolled states */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.night-mode .navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* Prevent click interactions */
}

/* Mobile video optimizations */
@media (max-width: 768px) {
    .hero-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
    }
    
    /* Ensure video stays behind content on mobile */
    .hero-video-bg {
        z-index: 0;
        pointer-events: none;
    }
    
    .hero-content {
        z-index: 3;
        position: relative;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(212, 175, 55, 0.1) 30%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 700px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 3rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out both;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--gold-secondary);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 1.3s both;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gold-primary);
    margin: 0 auto 10px;
}

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

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





.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.service-features span {
    color: var(--gold-dark);
    font-weight: 500;
}

/* WE SELL SECTION */
.we-sell-section {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.we-sell-header {
    margin-bottom: 3rem;
}

.we-sell-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
}

.sell-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.category-container {
    text-align: center;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sell-category {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sell-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.category-container:nth-child(1) .sell-category {
    background: url('jew.png');
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.category-container:nth-child(1) .sell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-container:nth-child(2) .sell-category {
    background: url('eng.png');
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.category-container:nth-child(2) .sell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-container:nth-child(3) .sell-category {
    background: url('coins.png');
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.category-container:nth-child(3) .sell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-container:nth-child(4) .sell-category {
    background: url('gold222.jpg');
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.category-container:nth-child(4) .sell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-container:nth-child(5) .sell-category {
    background: url('gem.jpg');
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.category-container:nth-child(5) .sell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* WE BUY SECTION STYLES */
.buy-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.buy-category {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.buy-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

/* WE BUY category backgrounds */
.buy-diamonds {
    background: url('download.jpg');
    background-size: cover;
    background-position: center;
}

.buy-gold {
    background: url('ccc.jpg');
    background-size: cover;
    background-position: center;
}

.buy-watches {
    background: url('watch.jpg');
    background-size: cover;
    background-position: center;
}

.buy-goldbars {
    background: url('bars.jpg');
    background-size: cover;
    background-position: center;
}

.buy-gemstones {
    background: url('gem22.jpg');
    background-size: cover;
    background-position: center;
}

/* Category content styles removed - titles now above images */

.something-for-everyone {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.2rem;
}

.section-intro p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold-primary);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.cta-card p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-size: 0.85rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 200px;
    display: inline-block;
    text-align: center;
}

.cta-btn.primary {
    background: var(--gradient-gold);
    color: var(--black);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.cta-btn.secondary:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-2px);
}

.phone-cta {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.phone {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.8rem;
}

/* POPUP STYLES */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 20px;
    max-width: 95%;
    max-height: 90%;
    width: 600px;
    padding: 2rem;
    box-shadow: var(--shadow-luxury);
    overflow-y: auto;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-popup:hover {
    color: var(--gold-primary);
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.popup-header p {
    font-size: 1.2rem;
    color: #666;
}

.popup-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.popup-item {
    text-align: left;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--gold-primary);
}

.popup-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.popup-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.popup-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.popup-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gold-primary);
    border-radius: 10px;
    color: var(--black);
}

.popup-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.popup-cta .phone {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 700;
}

/* TRUST INDICATORS */
.trust-indicators {
    padding: 2rem 5%;
    background: var(--gold-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    color: var(--black);
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold-primary);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-avatar[data-avatar="1"] {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.author-avatar[data-avatar="1"]::after {
    content: 'SM';
    position: absolute;
    color: white;
    font-weight: 700;
}

.author-avatar[data-avatar="2"] {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.author-avatar[data-avatar="2"]::after {
    content: 'JR';
    position: absolute;
    color: white;
    font-weight: 700;
}

.author-avatar[data-avatar="3"] {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

.author-avatar[data-avatar="3"]::after {
    content: 'MT';
    position: absolute;
    color: white;
    font-weight: 700;
}

.author-avatar[data-avatar="4"] {
    background: linear-gradient(135deg, #5f27cd, #341f97);
}

.author-avatar[data-avatar="4"]::after {
    content: 'DC';
    position: absolute;
    color: white;
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author-location {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Night mode testimonials */
body.night-mode .testimonials-section {
    background: var(--night-surface);
}

body.night-mode .testimonials-header h2 {
    color: var(--night-text);
}

body.night-mode .testimonials-header p {
    color: var(--night-text-secondary);
}

body.night-mode .testimonial-card {
    background: var(--night-card);
    border-color: var(--night-border);
    box-shadow: var(--night-shadow);
}

body.night-mode .testimonial-card:hover {
    box-shadow: var(--night-shadow), var(--night-glow);
    border-color: var(--gold-primary);
}

body.night-mode .testimonial-content p {
    color: var(--night-text-secondary);
}

body.night-mode .author-name {
    color: var(--night-text);
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 4rem 5%;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.feature-text p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.about-image {
    height: 350px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: url('store.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

/* CONTACT SECTION */
.contact-section {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: var(--cream);
    border-radius: 15px;
    padding: 1.8rem;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-primary);
}

.location-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--black);
    margin: 0;
}

.location-badge {
    background: var(--gold-primary);
    color: var(--black);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.store-hours h4 {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.store-hours p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
}

.store-contact h4 {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.store-contact p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 0.3rem;
}

.phone-number, .email-link {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.email-display {
    font-size: 0.85rem;
    color: #666;
    margin-top: -0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    word-break: break-all;
}

/* Shared Contact Section */
.shared-contact {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.shared-contact-card {
    background: var(--gold-primary);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 95%;
    box-shadow: var(--shadow-luxury);
}

.shared-contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.shared-contact-card p {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-methods {
    display: flex;
    justify-content: center;
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 0 auto;
    word-break: break-all;
}

.email-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-weight: 500;
    font-size: 0.85rem;
}

/* FOOTER */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .showcase-item.featured { grid-column: span 1; }
    .about-content { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .inventory-showcase { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .buy-categories { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .location-card {
        padding: 2rem;
    }
    .location-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .location-header h3 {
        font-size: 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-links a {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-card {
        padding: 2rem 1.5rem;
    }
    .cta-btn {
        min-width: 180px;
        font-size: 0.9rem;
    }
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.scroll-icon {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover .scroll-icon {
    transform: translateY(-2px);
}

/* Night mode styles for scroll to top */
body.night-mode .scroll-to-top {
    background: var(--gradient-gold);
    box-shadow: var(--night-shadow), var(--night-glow);
}

body.night-mode .scroll-to-top:hover {
    box-shadow: var(--night-shadow), 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Mobile responsive scroll to top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-icon {
        font-size: 1.3rem;
    }
}

/* ===============================
   CHAT SUPPORT WIDGET STYLES
   =============================== */

.chat-widget {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    width: auto;
}

.chat-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.chat-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.chat-toggle.active {
    background: linear-gradient(135deg, #ff4757, #ff3838);
}

.chat-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-chat, .icon-close {
    position: absolute;
    font-size: 1.8rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.icon-close {
    opacity: 0;
    transform: rotate(180deg);
}

.chat-toggle.active .icon-chat {
    opacity: 0;
    transform: rotate(-180deg);
}

.chat-toggle.active .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.7;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.chat-toggle.active .chat-pulse {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chat-container {
    position: fixed;
    bottom: 80px;
    left: 15px;
    width: 320px;
    height: 450px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: calc(100vw - 30px);
}

.chat-container.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: var(--gradient-gold);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
    min-height: 60px;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-details {
    color: var(--black);
}

.chat-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-minimize {
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-minimize:hover {
    background: rgba(0, 0, 0, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--cream);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    animation: messageSlideIn 0.3s ease;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: var(--gold-primary);
    color: var(--black);
}

.user-message .message-avatar {
    background: var(--black);
    color: var(--white);
}

.message-content {
    background: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.user-message .message-content {
    background: var(--gold-primary);
    color: var(--black);
}

.message-content p {
    margin: 0;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.bot-message .message-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--white) transparent transparent;
}

.user-message .message-content::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent var(--gold-primary);
}

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

.chat-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-action {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-action:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-1px);
}

.chat-input-container {
    display: flex;
    padding: 0.8rem;
    background: var(--white);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    gap: 0.6rem;
    align-items: center;
    min-height: 60px;
}

#chatInput {
    flex: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    min-height: 40px;
    max-height: 80px;
    line-height: 1.4;
}

#chatInput:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.chat-send {
    background: var(--gold-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.send-icon {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: bold;
}

/* Night mode styles for chat */
body.night-mode .chat-container {
    background: var(--night-card);
    border-color: var(--night-border);
    box-shadow: var(--night-shadow);
}

body.night-mode .chat-messages {
    background: var(--night-surface);
}

body.night-mode .message-content {
    background: var(--night-card);
    color: var(--night-text);
    border: 1px solid var(--night-border);
}

body.night-mode .bot-message .message-content::before {
    border-color: transparent var(--night-card) transparent transparent;
}

body.night-mode .user-message .message-content {
    background: var(--gold-primary);
    color: var(--black);
}

body.night-mode .chat-quick-actions {
    background: var(--night-card);
    border-color: var(--night-border);
}

body.night-mode .quick-action {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

body.night-mode .quick-action:hover {
    background: var(--gold-primary);
    color: var(--black);
}

body.night-mode .chat-input-container {
    background: var(--night-card);
    border-color: var(--night-border);
}

body.night-mode #chatInput {
    background: var(--night-surface);
    border-color: var(--night-border);
    color: var(--night-text);
}

body.night-mode #chatInput:focus {
    border-color: var(--gold-primary);
}

body.night-mode #chatInput::placeholder {
    color: var(--night-text-secondary);
}

body.night-mode .chat-toggle {
    box-shadow: var(--night-shadow), var(--night-glow);
}

body.night-mode .chat-toggle:hover {
    box-shadow: var(--night-shadow), 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

body.night-mode .typing-indicator {
    background: var(--night-card);
    color: var(--night-text);
}

.typing-dots {
    display: flex;
    gap: 0.2rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .chat-widget {
        left: 15px;
        bottom: 15px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
    }
    
    .icon-chat, .icon-close {
        font-size: 1.4rem;
    }
    
    .chat-container {
    width: 280px;
    height: 320px;
    left: 0;
    bottom: 65px;
}
    
    .chat-header {
        padding: 0.7rem 1rem;
    }
    
    .chat-name {
        font-size: 0.85rem;
    }
    
    .chat-status {
        font-size: 0.7rem;
    }
    
    .chat-messages {
        padding: 0.7rem;
    }
    
    .quick-action {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .chat-input-container {
        padding: 0.7rem;
    }
    
    #chatInput {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .chat-send {
        width: 32px;
        height: 32px;
    }
    
    .send-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shared-contact-card {
        padding: 1.2rem 0.8rem;
    }
    
    .email-contact {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        max-width: 95%;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.75rem;
    }
    .chat-container {
        width: calc(100vw - 20px);
        max-width: 280px;
        height: 400px;
        left: 10px;
        bottom: 60px;
    }
    
    .chat-quick-actions {
        padding: 0.5rem;
        gap: 0.3rem;
    }
    
    .quick-action {
        font-size: 0.75rem;
        padding: 0.4rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    .chat-header {
        padding: 0.6rem;
        min-height: 50px;
    }
    
    .chat-messages {
        padding: 0.6rem;
    }
    
    .chat-input-container {
        padding: 0.6rem;
        min-height: 50px;
    }

    .chat-widget {
        left: 10px;
        bottom: 10px;
    }
    
    .chat-toggle {
        width: 45px;
        height: 45px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .chat-container {
        width: calc(100vw - 20px);
        max-width: 260px;
        height: 380px;
        left: 10px;
        bottom: 55px;
    }
    
    .chat-widget {
        left: 8px;
        bottom: 8px;
    }

    .chat-toggle {
        width: 40px;
        height: 40px;
    }

    .icon-chat, .icon-close {
        font-size: 1rem;
    }
} 