* {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: #1f2937;
    text-decoration: none;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #60a5fa;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background-color: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-btn {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.category-btn:hover {
    background-color: #1d4ed8;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4b5563;
    font-weight: 600;
}

.achievement-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.achievement-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.achievement-badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.review-card {
    background-color: #4b5563;
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.review-stars {
    color: #fbbf24;
}

.review-text {
    color: #d1d5db;
    font-style: italic;
}

.brand-slider {
    position: relative;
    overflow: hidden;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover img {
    opacity: 1;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    color: #1f2937;
    border: none;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}

.newsletter-btn {
    background: linear-gradient(to right, #2563eb, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #7c3aed);
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.blog-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.blog-thumb {
    width: 5rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-content {
    flex: 1;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2563eb;
}

.about-stat {
    text-align: center;
}

.story-image-container {
    position: relative;
}

.story-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
}

.story-badge {
    text-align: center;
}

.story-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    border: none;
    cursor: pointer;
}

.story-btn:hover {
    transform: scale(1.05);
}

.value-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.team-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.team-social-link:hover {
    background-color: #2563eb;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.achievement-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.achievement-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.achievement-icon {
    margin-bottom: 1rem;
}

.product-stat {
    text-align: center;
}

.filter-sidebar {
    position: sticky;
    top: 1rem;
}

.filter-group {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: #2563eb;
}

.sort-select {
    outline: none;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.sort-select:focus {
    box-shadow: 0 0 0 2px #2563eb;
}

.product-card-featured {
    background-color: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-featured:hover {
    transform: scale(1.05);
}

.product-image-featured {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.product-overlay-featured {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-featured:hover .product-overlay-featured {
    opacity: 1;
}

.product-btn-featured {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-btn-featured:hover {
    background-color: #1d4ed8;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

.product-info-featured {
    padding: 1.5rem;
    color: white;
}

.product-rating {
    display: flex;
    align-items: center;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card-detailed {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.category-card-detailed:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.category-header {
    position: relative;
}

.category-icon-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-content {
    padding: 2rem;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn-detailed {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #8b5cf6);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.category-btn-detailed:hover {
    background: linear-gradient(to right, #1d4ed8, #7c3aed);
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    z-index: 10;
}

.offer-content {
    padding: 1.5rem;
    color: white;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-timer {
    color: #fcd34d;
    font-weight: 600;
}

.offer-btn {
    display: block;
    text-align: center;
    width: 100%;
    background-color: white;
    color: #8b5cf6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.offer-btn:hover {
    background-color: #f3f4f6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

.form-input::placeholder {
    color: #d1d5db;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #2563eb;
    border-color: transparent;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #8b5cf6);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    border: none;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #7c3aed);
    transform: scale(1.05);
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.social-link-large {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-large:hover {
    background-color: #2563eb;
}

.company-info-section {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.partnership-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.quality-badge {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.map-container {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

iframe {
    border: 0;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.map-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.thanks-icon {
    text-align: center;
}

.thanks-details {
    border: 1px solid #e5e7eb;
}

.thanks-step {
    text-align: center;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.thanks-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.thanks-btn:hover {
    transform: scale(1.05);
}

.thanks-contact {
    border: 1px solid #e5e7eb;
}

.contact-emergency {
    text-align: center;
    padding: 1rem;
}

.policy-container {
    margin: 0 auto;
    padding: 2rem 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.policy-section h4 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.policy-section p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #4b5563;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-highlight {
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.policy-table th,
.policy-table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.policy-table th {
    background-color: #f9fafb;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .category-card {
        margin-bottom: 1.5rem;
    }

    .review-card {
        padding: 1rem;
    }

    .team-card {
        margin-bottom: 1.5rem;
    }

    .product-card-featured {
        margin-bottom: 1.5rem;
    }

    .offer-card {
        margin-bottom: 1.5rem;
    }

    .policy-container {
        max-width: 100%;
        padding: 1rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #2563eb, #7c3aed);
}

.loading {
    overflow: hidden;
}

.loading::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    z-index: 10000;
}

.cookie-list {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}