:root {
    --primary-bg: #0F0F10;
    --secondary-bg: #1A1A1A;
    --accent: #E8B4A0;
    --text: #F5F5F5;
    --highlight: #D4AF37;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    height: 80px;
    transition: all 0.4s ease;
    background: transparent;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(15, 15, 16, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.18));
}

@media (max-width: 991.98px) {
    .navbar {
        height: 72px;
    }
    .logo-img {
        height: 54px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        height: 64px;
    }
    .logo-img {
        height: 46px;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 46px;
    }
}

.navbar-toggler {
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 400;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent) !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-section {
    min-height: 100vh;
    background: var(--primary-bg);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--accent);
}

.btn-hero-secondary:hover {
    background: var(--accent);
    color: var(--primary-bg);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(232, 180, 160, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

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

.collection-section,
.bestsellers-section,
.product-section,
.features-section,
.gallery-section {
    padding: 100px 0;
}

.carousel-inner {
    padding: 10px 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--highlight);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.7);
}

.category-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-image i {
    font-size: 5rem;
    color: var(--accent);
    transition: transform 0.4s ease;
}

.category-card:hover .category-image i {
    transform: scale(1.2);
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.product-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-image-container {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-product {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    color: var(--primary-bg);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 160, 0.3);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-bg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-card p {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 180, 160, 0.15);
    border-color: rgba(232, 180, 160, 0.3);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 25px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stars i {
    color: var(--highlight);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-bg);
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

#testimonialCarousel {
    margin-top: 40px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--highlight);
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: invert(1);
}

.customer-love-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.review-screenshot-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.review-screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 180, 160, 0.15);
    border-color: rgba(232, 180, 160, 0.3);
}

.screenshot-placeholder {
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: var(--secondary-bg);
}

.screenshot-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.5;
}

.screenshot-placeholder p {
    color: rgba(245, 245, 245, 0.5);
    text-align: center;
    margin: 0;
}

.review-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-screenshot-card:hover .review-screenshot-img {
    transform: scale(1.05);
}

#reviewScreenshotCarousel {
    margin-top: 40px;
}

#reviewScreenshotCarousel .carousel-control-prev,
#reviewScreenshotCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#reviewScreenshotCarousel .carousel-control-prev:hover,
#reviewScreenshotCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--highlight);
}

#reviewScreenshotCarousel .carousel-control-prev-icon,
#reviewScreenshotCarousel .carousel-control-next-icon {
    filter: invert(1);
}

.lightbox-content {
    background: rgba(15, 15, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.lightbox-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.footer {
    background: var(--secondary-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.18));
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .footer-logo {
        height: 54px;
    }
}

@media (max-width: 767.98px) {
    .footer-logo {
        height: 46px;
    }
}

@media (max-width: 575.98px) {
    .footer-logo {
        height: 46px;
    }
}

.footer-description {
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links i {
    color: var(--accent);
}

.btn-whatsapp-footer {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(245, 245, 245, 0.5);
}

.modal-content {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.modal-title {
    color: var(--text);
    font-weight: 600;
    font-size: 1.4rem;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    color: var(--text);
    padding: 25px;
}

.product-info-box {
    background: rgba(232, 180, 160, 0.05);
    border: 1px solid rgba(232, 180, 160, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.product-info-box h6,
.modal-body h6 {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.form-label {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(232, 180, 160, 0.25);
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(245, 245, 245, 0.4);
}

.form-select {
    color: var(--text);
}

.form-select option {
    background: var(--secondary-bg);
    color: var(--text);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
}

.modal-footer .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--primary-bg);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
