:root {
    --primary:#2E8B57;
    --primary-dark:#236b45;
    --secondary:#fbbf24;
    --text-dark:#1e293b;
    --text-light:#64748b;
    --border:#e5e7eb;
    --white:#fff;
    --shadow:0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg:0 10px 30px rgba(0,0,0,0.15);
    --radius:8px;
    --transition:all 0.3s ease}

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

body {
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    color:var(--text-dark);
    background:var(--white);
    overflow-x:hidden}

.container {
    max-width:1200px;
    margin:0 auto;
    padding:0 20px}

.header {
    background:var(--white);
    box-shadow:var(--shadow);
    position:sticky;
    top:0;
    z-index:1000}

.header-content {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
    gap:1rem}

.logo a {
    font-size:1.5rem;
    font-weight:700;
    color:var(--primary);
    text-decoration:none}

.logo a:hover {
    color:var(--primary-dark)}

.search-bar {
    flex:1;
    max-width:400px;
    margin:0 1rem}

.search-bar form {
    display:flex;
    gap:0.5rem}

.search-bar input {
    flex:1;
    padding:10px 15px;
    border:2px solid var(--border);
    border-radius:25px;
    font-size:14px}

.search-bar input:focus {
    outline:none;
    border-color:var(--primary)}

.search-bar button {
    background:var(--primary);
    color:var(--white);
    border:none;
    padding:10px 20px;
    border-radius:25px;
    cursor:pointer;
    font-weight:500}

.header-actions {
    display:flex;
    align-items:center;
    gap:0.5rem}

.mobile-menu-toggle {
    display:none;
    background:var(--primary);
    border:2px solid var(--primary);
    width:44px;
    height:44px;
    border-radius:var(--radius);
    cursor:pointer;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--white)}

.btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 20px;
    border:none;
    border-radius:25px;
    text-decoration:none;
    font-weight:500;
    cursor:pointer;
    min-height:44px}

.btn-categories {
    background:var(--primary);
    color:var(--white)}

.btn-reviews {
    background:var(--secondary);
    color:var(--text-dark)}

.btn-write-review {
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:var(--white)}

.mobile-menu {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:var(--white);
    transform:translateX(-100%);
    transition:transform 0.3s;
    z-index:2000}

.mobile-menu.active {
    transform:translateX(0)}

.mobile-search {
    padding:20px;
    border-bottom:1px solid var(--border)}

.mobile-search form {
    display:flex;
    gap:0.5rem}

.mobile-search input {
    flex:1;
    padding:12px 15px;
    border:2px solid var(--border);
    border-radius:25px;
    font-size:16px}

.mobile-search button {
    background:var(--primary);
    color:var(--white);
    border:none;
    padding:12px;
    border-radius:50%;
    cursor:pointer}

.mobile-nav {
    padding:20px 0}

.mobile-nav a {
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 20px;
    text-decoration:none;
    color:var(--text-dark);
    font-weight:500;
    border-bottom:1px solid var(--border)}

.mobile-nav a:hover {
    background:rgba(46,139,87,0.05);
    color:var(--primary)}

.mobile-footer-info {
    padding:20px;
    text-align:center;
    background:#f8fafc;
    border-top:1px solid var(--border)}

.mobile-footer-info p {
    margin:5px 0;
    color:var(--text-light);
    font-size:14px}

.card {
    background:var(--white);
    border-radius:15px;
    padding:20px;
    box-shadow:var(--shadow);
    margin-bottom:20px}

.card:hover {
    transform:translateY(-4px)}

.companies-grid {
    display:grid;
    gap:20px;
    padding:20px 0}

.company-card {
    background:var(--white);
    border-radius:15px;
    padding:20px;
    box-shadow:var(--shadow);
    cursor:pointer}

.company-card:hover {
    transform:translateY(-4px)}

.company-card h3 {
    font-size:1.2rem;
    margin-bottom:10px;
    color:var(--text-dark)}

.company-card p {
    color:var(--text-light);
    margin-bottom:15px}

.rating {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:var(--text-light)}

.stars {
    color:var(--secondary)}

.hero {
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:var(--white);
    padding:60px 0;
    text-align:center}

.hero h1 {
    font-size:2rem;
    margin-bottom:15px;
    font-weight:700}

.hero p {
    font-size:1.1rem;
    margin-bottom:30px;
    opacity:0.9}

.hero-search form {
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:400px;
    margin:0 auto}

.hero-search input {
    padding:15px 20px;
    border:none;
    border-radius:25px;
    font-size:16px}

.hero-search button {
    background:var(--secondary);
    color:var(--text-dark);
    border:none;
    padding:15px 30px;
    border-radius:25px;
    font-weight:600;
    cursor:pointer}

.section {
    padding:60px 0}

.section h2 {
    font-size:1.8rem;
    margin-bottom:30px;
    text-align:center;
    color:var(--text-dark)}

.footer {
    background:var(--text-dark);
    color:var(--white);
    padding:40px 0 20px}

.footer-content {
    display:grid;
    gap:30px;
    margin-bottom:30px}

.footer-column h3 {
    margin-bottom:15px;
    font-size:1.2rem}

.footer-column a {
    color:var(--white);
    text-decoration:none;
    opacity:0.8}

.footer-column a:hover {
    opacity:1}

.footer-bottom {
    text-align:center;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    opacity:0.8}

.form-group {
    margin-bottom:20px}

.form-group label {
    display:block;
    margin-bottom:8px;
    font-weight:500;
    color:var(--text-dark)}

.form-group input,.form-group textarea {
    width:100%;
    padding:12px 15px;
    border:2px solid var(--border);
    border-radius:10px;
    font-size:16px}

.form-group input:focus,.form-group textarea:focus {
    outline:none;
    border-color:var(--primary)}

.star-rating {
    display:flex;
    gap:5px;
    font-size:24px}

.star-rating input[type='radio'] {
    display:none}

.star-rating .star {
    color:#ddd;
    cursor:pointer}

.star-rating .star:hover,.star-rating .star:hover~.star {
    color:var(--secondary)}

.star-rating input[type='radio']:checked~.star {
    color:var(--secondary)}

.error-message {
    background:#f8d7da;
    color:#721c24;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px}

.success-message {
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px}

.write-review-section {
    padding:80px 0;
    background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%)}

.review-form-container {
    max-width:800px;
    margin:0 auto;
    background:var(--white);
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow-lg)}

.review-form-container h1 {
    text-align:center;
    color:var(--text-dark);
    margin-bottom:10px;
    font-size:2.5em}

.review-form-container h2 {
    text-align:center;
    color:var(--primary);
    margin-bottom:30px;
    font-size:1.5em;
    font-weight:600}

.form-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px}

.pros-cons-section {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:25px}

.btn-submit {
    background:var(--primary);
    color:var(--white);
    padding:15px 40px;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    display:block;
    margin:30px auto 0}

.btn-submit:hover {
    background:var(--primary-dark)}

.form-footer {
    text-align:center;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid var(--border)}

.form-footer small {
    color:var(--text-light);
    line-height:1.5}

.form-footer a {
    color:var(--primary);
    text-decoration:none;
    font-weight:600}

.form-footer a:hover {
    text-decoration:underline}

@media (max-width:767px) {
    .search-bar {
    display:none}

.header-actions .btn-categories,.header-actions .btn-reviews,.header-actions .btn-write-review {
    display:none!important}

.mobile-menu-toggle {
    display:flex!important}

.companies-grid {
    grid-template-columns:1fr}

.hero h1 {
    font-size:1.8rem}

.hero-search form {
    max-width:300px}

.review-form-container {
    padding:20px;
    margin:20px}

.form-row,.pros-cons-section {
    grid-template-columns:1fr;
    gap:15px}

.star-rating .star {
    font-size:25px}

.section h2 {
    font-size:1.5rem}

}

@media (min-width:768px) {
    .mobile-menu-toggle {
    display:none!important}

.companies-grid {
    grid-template-columns:repeat(2,1fr)}

.hero h1 {
    font-size:2.5rem}

.hero-search form {
    flex-direction:row;
    max-width:500px}

.footer-content {
    grid-template-columns:repeat(3,1fr)}

}

@media (min-width:1024px) {
    .companies-grid {
    grid-template-columns:repeat(3,1fr)}

.hero h1 {
    font-size:3rem}

.hero-search form {
    max-width:600px}

}



/* Breadcrumbs */
.breadcrumb-nav {
    background: #f8fafc;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #9ca3af;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #10b981;
}

.breadcrumb-item.active {
    color: #374151;
    font-weight: 500;
}

/* New Header Design (Imported from Header inline) */
/* CSS Reset for Mobile Menu - Prevent Loading Issues */
    .mobile-menu,
    .mobile-menu-close,
    .mobile-search,
    .mobile-nav {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Professional Header Design - Enhanced */
    .header-new {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-bottom: 2px solid #e2e8f0;
        padding: 20px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(20px);
        border-bottom: 3px solid #10b981;
    }

    .header-content-new {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        flex-wrap: nowrap;
        min-height: 60px;
    }

    .logo-new {
        flex-shrink: 0;
        min-width: fit-content;
    }

    .logo-new a {
        font-size: 28px;
        font-weight: 900;
        color: #10b981;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: -1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap;
    }

    .logo-new a:hover {
        transform: scale(1.08);
        text-decoration: none;
        filter: brightness(1.1);
    }

    .search-bar-new {
        flex: 1;
        max-width: 500px;
        min-width: 300px;
        position: relative;
    }

    .search-bar-new form {
        display: flex;
        align-items: center;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        border: 3px solid #e2e8f0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .search-bar-new form:focus-within {
        border-color: #10b981;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px) scale(1.02);
    }

    .search-bar-new input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 16px;
        font-size: 14px;
        outline: none;
        color: #1f2937;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .search-bar-new input::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }

    .search-bar-new button {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border: none;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        border-radius: 0 13px 13px 0;
    }

    .search-bar-new button:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        transform: translateX(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    }

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

    .search-bar-new button:hover::before {
        left: 100%;
    }

    .header-actions-new {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        min-width: fit-content;
    }

    .btn-categories-new {
        background: #ffffff;
        color: #10b981;
        border: 2px solid #10b981;
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.3px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        white-space: nowrap;
    }

    .btn-categories-new:hover {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        text-decoration: none;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        border-color: transparent;
    }

    .btn-reviews-new {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.3px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
        text-transform: uppercase;
        white-space: nowrap;
    }

    .btn-reviews-new:hover {
        background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
        color: white;
        text-decoration: none;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    }

    .btn-write-review-new {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.3px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
        text-transform: uppercase;
        white-space: nowrap;
    }

    .btn-write-review-new:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: white;
        text-decoration: none;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    }

    /* Shimmer effect for buttons */
    .btn-categories-new::before,
    .btn-reviews-new::before,
    .btn-write-review-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn-categories-new:hover::before,
    .btn-reviews-new:hover::before,
    .btn-write-review-new:hover::before {
        left: 100%;
    }

    .mobile-menu-toggle {
        display: none;
        background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        border: 2px solid #d1d5db;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        cursor: pointer;
        font-size: 22px;
        color: #374151;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle:hover {
        background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
        transform: scale(1.1) rotate(90deg);
    }

    /* Header visibility fix */
    .header-new {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .header-content-new {
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 16px;
        }
        
        .search-bar-new {
            display: none;
        }
        
        .header-actions-new {
            gap: 12px;
        }
        
        .btn-categories-new,
        .btn-reviews-new,
        .btn-write-review-new {
            display: none;
        }
        
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    /* Mobile Menu Styles - Fixed for Clean Loading */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        visibility: hidden;
    }

    .mobile-menu.active {
        left: 0;
        visibility: visible;
    }

    /* Mobile Menu Close Button - Enhanced */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
        z-index: 10001;
        font-family: Arial, sans-serif;
        line-height: 1;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .mobile-menu-close:hover {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    }

    .mobile-menu-close:active {
        transform: scale(0.95) rotate(90deg);
        box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    }

    .mobile-menu .container {
        padding: 100px 20px 20px;
        max-width: 100%;
    }

    .mobile-search {
        display: flex;
        margin-bottom: 30px;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        border: 3px solid #e2e8f0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .mobile-search:focus-within {
        border-color: #10b981;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px) scale(1.02);
    }

    .mobile-search input {
        flex: 1;
        padding: 18px 24px;
        border: none;
        background: transparent;
        font-size: 16px;
        outline: none;
        color: #1f2937;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .mobile-search input::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }

    .mobile-search button {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border: none;
        padding: 18px 28px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        border-radius: 0 13px 13px 0;
    }

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

    .mobile-search button:hover::before {
        left: 100%;
    }

    .mobile-search button:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        transform: translateX(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 30px;
    }

    .mobile-nav a {
        display: block;
        padding: 18px 24px;
        background: #f8fafc;
        color: #1f2937;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .mobile-nav a:hover {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        transform: translateX(4px);
        border-color: #10b981;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        text-decoration: none;
    }

    .mobile-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
        pointer-events: none;
    }

    .mobile-nav a:hover::before {
        left: 100%;
    }

    .mobile-footer-info {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #e2e8f0;
        margin-top: auto;
    }

    .mobile-footer-info p {
        color: #64748b;
        font-size: 14px;
        margin: 4px 0;
        font-family: 'Poppins', sans-serif;
    }

    .admin-link {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        color: white;
    }

    .admin-link:hover {
        background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
        border-color: #8b5cf6;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }

    @media (max-width: 480px) {
        .header-content-new {
            padding: 0 12px;
        }
        
        .logo-new a {
            font-size: 24px;
        }
        
        .header-actions-new {
            flex: 1;
            justify-content: flex-end;
        }
        
        .search-bar-new {
            display: none;
        }
        
        .btn-categories-new,
        .btn-reviews-new,
        .btn-write-review-new {
            display: none;
        }
    }
