/* ==========================================================================
   DESIGN SYSTEM - CHAMBER & CO. BARBERSHOP
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    /* Color Palette */
    --color-bg-main: #0a0a0b;
    --color-bg-card: #121215;
    --color-bg-card-hover: #17171c;
    --color-bg-glass: rgba(10, 10, 11, 0.85);
    
    --color-primary: #c5a880; /* Champagne Gold */
    --color-primary-light: #e2cfae;
    --color-primary-dark: #9e825c;
    
    --color-text-header: #f5f5f7;
    --color-text-body: #a2a2ab;
    --color-text-muted: #62626b;
    --color-text-light: #ffffff;
    
    --color-border: rgba(197, 168, 128, 0.15);
    --color-border-hover: rgba(197, 168, 128, 0.4);
    --color-border-solid: #c5a880;
    
    /* Typography */
    --font-header: 'Cinzel', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --blur-glass: blur(16px);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    color: var(--color-text-header);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-primary); }

.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 1.5rem auto 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-header);
    border-color: rgba(197, 168, 128, 0.4);
}

.btn-outline:hover {
    color: #000;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: var(--color-bg-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled .navbar {
    padding: 0.8rem 0;
}

.logo a {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-header);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-header);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-header);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 10, 11, 0.7), rgba(10, 10, 11, 0.95)), url('assets/hero_bg.png') no-repeat center center / cover;
    overflow: hidden;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 10;
}

.hero p.subtitle {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: var(--color-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s ease both;
}

.hero h1 span {
    display: block;
    font-weight: 700;
}

.hero p.tagline {
    font-size: 1.15rem;
    color: var(--color-text-body);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s 0.4s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 1s 0.6s ease both;
}



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

/* ==========================================================================
   PHILOSOPHY & FEATURES
   ========================================================================== */

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.philosophy-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.philosophy-text p {
    color: var(--color-text-body);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.philosophy-image {
    position: relative;
    border: 1px solid var(--color-border);
    padding: 1rem;
}

.philosophy-image img {
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.philosophy-image:hover img {
    filter: grayscale(0%);
}

.philosophy-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid var(--color-primary-dark);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background-color: var(--color-bg-card-hover);
    box-shadow: var(--shadow-premium);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--color-primary);
    color: #000;
}

.feature-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES & PRICING
   ========================================================================== */

.services {
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.services-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.tab-btn {
    font-family: var(--font-header);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-header);
}

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.services-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.services-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 4rem;
}

.pricing-item {
    margin-bottom: 1rem;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-header);
}

.pricing-line {
    flex-grow: 1;
    border-bottom: 1px dashed var(--color-border);
    margin: 0 1rem;
}

.pricing-price {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-style: italic;
    line-height: 1.4;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */

.booking-wrapper {
    /*display: grid;
    grid-template-columns: 1fr 1.2fr; 
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-premium);*/
    overflow: hidden;
}

.booking-info-pane {
    background: linear-gradient(rgba(10, 10, 11, 0.85), rgba(10, 10, 11, 0.95)), url('assets/hero_bg.png') no-repeat center center / cover;
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--color-border);
}

.booking-info-pane h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.booking-info-pane p {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 2rem;
}

.booking-contact-list {
    list-style: none;
}

.booking-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-contact-list svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.booking-form-pane {
    padding: 4.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-header);
}

.form-input {
    background-color: var(--color-bg-main);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border-radius: 0;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a880'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

/* Success Message styling */
.booking-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--color-border-solid);
    background-color: rgba(197, 168, 128, 0.05);
    color: var(--color-primary);
    text-align: center;
    font-family: var(--font-header);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    animation: fadeIn 0.4s ease forwards;
}

/* ==========================================================================
   TRENDING LOOKBOOK (GALLERY)
   ========================================================================== */

.gallery {
    background-color: var(--color-bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.3) 70%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-tag {
    font-family: var(--font-header);
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.gallery-title {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-tag,
.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.reviews-carousel {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-slide {
    text-align: center;
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.review-slide.active {
    display: block;
}

.review-stars {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
}

.review-text {
    font-family: var(--font-header);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-header);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.review-author {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
}

.review-author::before {
    content: '— ';
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-text-muted);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-column h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-primary);
}

.footer-about p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-body);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #000;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.4rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

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

.footer-map-placeholder {
    width: 100%;
    height: 180px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(rgba(197, 168, 128, 0.4) 1px, transparent 1px);
    background-size: 16px 16px;
}

.map-card-info {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.map-card-info p {
    font-family: var(--font-header);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-info-pane {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 3rem;
    }
    .booking-form-pane {
        padding: 3rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-bg-card);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-cta {
        display: none;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p.tagline {
        font-size: 1rem;
    }
    @media (max-width: 576px) {
        .hero-actions {
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }
        .hero-actions .btn {
            width: 100%;
        }
    }
    

    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    /* Booking form */
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Floating Buy Plugin Button */
.floating-plugin-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}
@keyframes bwnPulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(87, 0, 180, 0.4);
    }
    70% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(87, 0, 180, 0);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(87, 0, 180, 0);
    }
}
.floating-plugin-cta a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #5700B4 0%, #7A33D4 100%);
    color: #ffffff !important;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    animation: bwnPulse 2.5s infinite;
}
.floating-plugin-cta a:hover {
    background: linear-gradient(135deg, #7A33D4 0%, #5700B4 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 0, 180, 0.4);
}
.floating-plugin-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.nav-link.buy-plugin-link {
    background-color: var(--color-primary);
    color: #000 !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 700;
    border-radius: 0;
    border: 1px solid var(--color-primary);
    transition: var(--transition-smooth);
}
.nav-link.buy-plugin-link::after {
    display: none !important;
}
.nav-link.buy-plugin-link:hover {
    background-color: transparent !important;
    color: var(--color-primary) !important;
}

@media (max-width: 576px) {
    .floating-plugin-cta {
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .floating-plugin-cta a {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
}

/* Mobile only utility */
.mobile-only {
    display: none !important;
}
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}
