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

/* Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

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

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
}

/* Top Bar */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    opacity: 0.9;
}

.contact-info a:hover {
    opacity: 1;
}

.whatsapp-btn {
    background: #25d366;
    color: white !important;
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ac1db8;
    font-weight: 700;
    gap: 12px;
    position: relative;
}

.brand::after {
    content: 'PREMIUM';
    position: absolute;
    top: -8px;
    right: -20px;
    background: #D4AF37;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.brand img {
    height: 45px;
}

.brand span {
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.search-box input {
    border: none;
    padding: 8px 15px;
    background: transparent;
    outline: none;
    width: 200px;
}

.search-box button {
    background: #ac1db8;
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
}

.cta-btn {
    background: #ac1db8;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #8a1693;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ac1db8;
}

/* Hamburger Menu Animation */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ac1db8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Navigation */
.main-nav {
    background: linear-gradient(135deg, #ac1db8 0%, #d946ef 100%);
    box-shadow: 0 2px 10px rgba(172, 29, 184, 0.2);
}

.main-nav .container {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 18px 0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #f0f0f0;
    transform: translateY(-1px);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: width 0.3s ease;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1001;
    width: 95vw;
    max-width: 1100px;
    max-height: 70vh;
    overflow-y: auto;
    border-top: 3px solid #ac1db8;
}

.nav-dropdown:hover .mega-menu {
    display: block;
}

.mega-container {
    padding: 20px;
}

.mega-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.mega-header h3 {
    color: #ac1db8;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.view-all-btn {
    background: #ac1db8;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.mega-column h4 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.mega-column h4 a {
    color: #ac1db8;
    text-decoration: none;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin-bottom: 3px;
}

.mega-column li a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 2px 6px;
    display: block;
    border-radius: 3px;
    transition: all 0.2s;
}

.mega-column li a:hover {
    color: #ac1db8;
    background: #f8f9fa;
}

.more-link {
    color: #ac1db8 !important;
    font-weight: 500;
    font-size: 0.75rem !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 6px 15px;
    }
    
    .contact-info a {
        margin: 0 8px;
        font-size: 0.8rem;
    }
    
    .search-box {
        width: 150px;
    }
    
    .search-box input {
        width: 120px;
        font-size: 0.85rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.95);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: block;
        animation: slideInRight 0.3s ease;
    }
    
    @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    
    .main-nav .container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 60px 0 20px;
        max-width: 100%;
    }
    
    .nav-link {
        color: white;
        padding: 18px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
        justify-content: space-between;
    }
    
    .nav-link:hover {
        background: rgba(172, 29, 184, 0.2);
        transform: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .mega-menu {
        position: static;
        display: none;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        max-width: none;
        border-top: none;
        margin: 0;
        width: auto;
        max-height: none;
        overflow-y: visible;
        transform: none;
        top: auto;
        left: auto;
    }
    
    .nav-dropdown.active .mega-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; max-height: 0; }
        to { opacity: 1; max-height: 1000px; }
    }
    
    .mega-container {
        padding: 15px 25px;
    }
    
    .mega-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .mega-header h3 {
        color: white;
        font-size: 1.1rem;
    }
    
    .view-all-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mega-column h4 a {
        color: #d946ef;
        font-size: 0.95rem;
    }
    
    .mega-column li a {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .mega-column li a:hover {
        color: white;
        background: rgba(172, 29, 184, 0.3);
    }
    
    /* Close button for mobile menu */
    .main-nav::before {
        content: '×';
        position: fixed;
        top: 15px;
        right: 25px;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10000;
    }
}

/* Premium Footer */
.main-footer {
    background: #1A001F;
    color: #FFFFFF;
    margin-top: 60px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand img {
    height: 40px;
    filter: brightness(1.2);
}

.footer-brand h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-col p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-stats span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-col li a:hover {
    color: #D4AF37;
    padding-left: 8px;
}

.footer-col li a:hover::before {
    content: '▶';
    position: absolute;
    left: -15px;
    color: #D4AF37;
    font-size: 0.7rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item .icon {
    font-size: 1.1rem;
    color: #D4AF37;
}

.contact-item a,
.contact-item span {
    color: #ac1db8;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: #D4AF37;
}

.social-links {
    margin-top: 20px;
}

.whatsapp {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #1A001F;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.powered-by {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.powered-by a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: #F4D03F;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.powered-by strong {
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header .container {
        padding: 12px 15px;
    }
    
    .brand span {
        display: none;
    }
    
    .brand img {
        height: 35px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .search-box {
        display: none;
    }
    
    .cta-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .mega-menu {
        width: auto;
        max-height: none;
        overflow-y: visible;
        transform: none;
        top: auto;
        left: auto;
    }
    
    .main-footer {
        margin-top: 40px;
    }
}



/* Search Results Styles */
.search-results {
    padding: 40px 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.no-results h3 {
    color: #ac1db8;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results p {
    color: #6c757d;
    font-size: 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.result-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(172, 29, 184, 0.2);
    text-decoration: none;
    color: inherit;
}

.result-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.result-card .card-content {
    padding: 20px;
}

.result-card h3 {
    color: #ac1db8;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.result-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.result-type {
    background: #ac1db8;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-to-categories {
    text-align: center;
    margin-top: 30px;
}

.categories-content {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .result-card .card-content {
        padding: 15px;
    }
    
    .result-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results {
        padding: 20px 0;
    }
    
    .no-results {
        padding: 40px 15px;
    }
}