* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd600;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd600;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ffbb00;
}

.header-content {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 3rem;
    font-weight: bold;
    color: #ffd600;
}

.logo i {
    width: 32px;
    height: 32px;
    color: #ffd600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #ffd600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #000000;
    border-left: 1px solid #ffbb00;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu i {
    width: 24px;
    height: 24px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.mobile-menu nav a {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu nav a:hover {
    background-color: #ffbb00;
    color: #ffd600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn i {
    width: 16px;
    height: 16px;
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1.125rem;
}

.btn-lg i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: #25D366 ;
    color: #000000;
}

.btn-primary:hover {
    background-color: #ffd600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #ffbb00;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: #ffd600;
    border: 2px solid #ffd600;
}

.btn-outline:hover {
    background-color: #ffd600;
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #25D366 ;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.btn-full {
    width: 100%;
}

.hero {
    padding-top: 8rem;
    padding-bottom:4rem;
    align-items: stretch;
    overflow: hidden;
    display: flex;
    justify-content: center;
    opacity: 90;
    background: linear-gradient(to bottom, #353535, #000000);
    backface-visibility: 20;
}

.hero-bg {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
}

.hero-bg::before {
    content: '';
    position: relative;
    inset: 0;
    background: linear-gradient(to bottom right, #ffd00000, #000000, #ffbb00);
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 107, 53, 0.2);
    color: #ffd600;
    border: 1px solid #ffbb00;
    border-radius: 9999px;
    font-size: 0.675rem;
    margin-bottom: 1rem;
    line-height: 1;

}

.badge i {
    width: 12px;
    height: 12px;
}

.star-filled {
    fill: #ffd600;
    color: #ffd600;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.75;
}


.features {
    padding: 4rem 0;
    background-color: #18181b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: #000000;
    border: 1px solid #ffbb00;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ffbb00;
    box-shadow: 0 20px 40px #ffbb00;
}

.feature-card i {
    width: 48px;
    height: 48px;
    color: #ffd600;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.divider {
    width: 5rem;
    height: 0.25rem;
    background-color: #ffd600;
    margin: 0 auto 2rem;
}

.section-description {
    color: #9ca3af;
    font-size: 1.125rem;
}

.about {
    padding: 5rem 0;
    background-color: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto 3rem;
}

.about-card {
    background-color: #18181b;
    border: 1px solid #755600;
    border-radius: 0.5rem;
    padding: 2rem;
}

.about-card:hover {
    border-color: #ffbb00;
    box-shadow: 0 20px 40px #ffbb00;
    transition: all 0.3s ease;
}

.about-card h3 {
    color: #ffd600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-card p {
    color: #d1d5db;
    line-height: 1.75;
    text-align: center;
}

.hours-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #18181b;
    border: 1px solid #755600;
    border-radius: 0.5rem;
    padding: 1.5rem;
}
    .hours-card:hover {
    border-color: #ffbb00;
    box-shadow: 0 20px 40px #ffbb00;
    transition: all 0.3s ease;
}


.hours-card i {
    width: 32px;
    height: 32px;
    color: #ffd600;
}

.hours-main {
    color: #bdbdbd;

}

.hours-secondary {
    color: #bdbdbd;

}

.products {
    position: flex;
    padding: 5rem 0;
    background-color: #18181b;
}

.products-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: auto;
    position: flex;
    z-index: 10;
}

.product-card {
    background-color: #000000;
    border: 1px solid #6e5100;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #ffbb00;
    box-shadow: 0 20px 40px #ffbb00;
}

.product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.5), transparent);
}

.product-title {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    display: flex;
    align-items: center;
  
}

.product-title i {
    width: 24px;
    height: 24px;
    color: #ffd600;
}

.product-title h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.product-description {
    padding: 1rem;
}

.product-description p {
    color: #9ca3af;
}

.reviews {
    padding: 5rem 0;
    background-color: #000000;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rating-display i {
    width: 24px;
    height: 24px;
}

.rating-number {
    font-size: 1.875rem;
    font-weight: bold;
}

.rating-count {
    color: #9ca3af;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.review-card {
    background-color: #18181b;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stars i {
    width: 16px;
    height: 16px;
}

.review-text {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact {
    padding: 5rem 0;
    background-color: #18181b;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-form-card {
    background-color: #000000;
    border: 1px solid #ffbb00;
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #18181b;
    border: 1px solid #ffbb00;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd600;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: #000000;
    border: 1px solid #ffbb00;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 0.75rem;
}

.info-item i {
    width: 20px;
    height: 20px;
    color: #ffd600;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-text {
    color: #9ca3af;
}

.map-card {
    background-color: #000000;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

.footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.footer-logo i {
    width: 24px;
    height: 24px;
    color: #ffd600;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #18181b;
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 2000;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-color: #10b981;
    color: #10b981;
}

.toast.error {
    border-color: #ef4444;
    color: #ef4444;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .features-grid,
    .about-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}