* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #171717;
    background: white;
}

.font-serif {
    font-family: Georgia, 'Times New Roman', serif;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.875rem;
    font-family: Georgia, serif;
    color: white;
    letter-spacing: -0.025em;
}

.nav-links {
    display: none;
    gap: 2.5rem;
    color: white;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    padding-top: 80px; 
    box-sizing: border-box; 
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
}

.hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, black, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem; 
    max-width: 48rem;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-badge p {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.hero-title-sub {
    display: block;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 28rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: white;
    color: black;
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(255,255,255,0.2);
}

.btn-secondary {
    position: relative;
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(-25%);
    }
    50% {
        transform: translateX(-50%) translateY(0);
    }
}

.section {
    padding: 6rem 1.5rem;
}

.section-gradient {
    background: linear-gradient(to bottom, white, #fafafa, white);
}

.section-black {
    background: black;
    color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d4d4d4;
}

.section-badge p {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #737373;
}

.section-title {
    font-size: 3.75rem;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.section-description {
    color: #737373;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
    border: 1px solid #d4d4d4;
    color: #404040;
}

.category-btn:hover {
    border-color: black;
}

.category-btn.active {
    background: black;
    color: white;
    border-color: black;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-grid {
        left: 50%;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-height: 800px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }

    .hero-content {
        margin-top: 4rem; 
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    cursor: pointer;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #fafafa;
    aspect-ratio: 3/4;
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    transform: translateY(1rem);
    transition: transform 0.3s;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.action-btn {
    flex: 1;
    background: white;
    color: black;
    padding: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: #fafafa;
}

.action-btn-icon {
    background: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.action-btn-icon:hover {
    background: #fafafa;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-category {
    font-size: 0.75rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 1.25rem;
    font-family: Georgia, serif;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
}

.product-color {
    font-size: 0.875rem;
    color: #737373;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
}

.feature-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #fafafa, #e5e5e5);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(to bottom right, black, #404040);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-family: Georgia, serif;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #737373;
    line-height: 1.75;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lookbook-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.lookbook-item.large {
    grid-row: span 2;
}

.lookbook-item.medium {
    aspect-ratio: 4/3;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, transparent, transparent);
    opacity: 0.6;
}

.lookbook-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
}

.lookbook-category {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.lookbook-title {
    font-size: 1.875rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.lookbook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    padding-bottom: 0.25rem;
    transition: gap 0.3s;
    text-decoration: none;
    color: white;
}

.lookbook-link:hover {
    gap: 0.75rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: #fafafa;
    transition: background 0.3s;
}

.process-step:hover .process-icon-wrapper {
    background: black;
}

.process-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    transition: color 0.3s;
}

.process-step:hover .process-icon-wrapper svg {
    color: white;
}

.process-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-family: Georgia, serif;
}

.process-title {
    font-size: 1.25rem;
    font-family: Georgia, serif;
    margin-bottom: 0.75rem;
}

.process-description {
    color: #737373;
    line-height: 1.75;
}

.process-cta {
    margin-top: 5rem;
    text-align: center;
    background: #fafafa;
    padding: 3rem 1.5rem;
}

.process-cta h3 {
    font-size: 1.5rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.process-cta p {
    color: #737373;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner {
    position: relative;
    padding: 8rem 1.5rem;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.cta-banner-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-banner-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.cta-banner-badge p {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.cta-banner-title {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-banner-title {
        font-size: 3.75rem;
    }
}

.cta-banner-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-stat-number {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #f5f5f5;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.testimonial-quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-rating svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: black;
}

.testimonial-text {
    color: #404040;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
}

.testimonial-name {
    font-family: Georgia, serif;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-event {
    font-size: 0.875rem;
    color: #737373;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.newsletter {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom right, black, #262626, black);
    color: white;
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    filter: blur(80px);
}

.newsletter-decoration:first-child {
    top: 0;
    right: 0;
}

.newsletter-decoration:last-child {
    bottom: 0;
    left: 0;
}

.newsletter-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.newsletter-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 3rem;
    }
}

.newsletter-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: white;
    color: black;
    border: none;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit:hover {
    background: #fafafa;
}

.newsletter-disclaimer {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

footer {
    background: black;
    color: white;
    padding: 5rem 1.5rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand h3 {
    font-size: 1.875rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: white;
    color: black;
}

.footer-section h4 {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-bottom a:hover {
    color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid black;
    padding: 1.25rem 2.5rem;
    background: transparent;
    transition: all 0.3s;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-outline:hover {
    background: black;
    color: white;
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: black;
}

.hidden {
    display: none;
}

svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
    fill: none;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 900px) {
    .location-wrapper {
        grid-template-columns: 2fr 3fr;
        min-height: 500px;
    }
}

.location-card-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.location-name {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #171717;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.location-icon {
    width: 3rem;
    height: 3rem;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-text strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #171717;
}

.location-text p {
    color: #737373;
    line-height: 1.6;
}

.location-card-map {
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 100%;
}

.location-card-map iframe {
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.location-card-map:hover iframe {
    filter: grayscale(0%);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: #ffffff; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1100px;
    height: 90vh; 
    max-height: 800px; 
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    display: flex; 
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-content {
        flex-direction: row; 
    }
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 100;
    color: #333;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
    transform: scale(1.1);
}

.modal-body {
    display: contents; 
}

.modal-gallery {
    background: #f8f8f8; 
    width: 100%;
    height: 50%; 
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-gallery {
        width: 55%; 
        height: 100%; 
    }
}

.main-media-container {
    flex: 1; 
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 90px;
}

.main-media-container img, 
.main-media-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    mix-blend-mode: multiply; 
    animation: fadeInMedia 0.5s ease forwards;
}

.modal-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    z-index: 20;
}

.thumbnail {
    width: 55px;
    height: 70px;
    background: white;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    transform: translateY(-4px);
    border-color: #000;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    color: #333;
    width: 100%;
    height: 50%;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .modal-info {
        width: 45%;
        height: 100%;
        padding: 3.5rem;
    }
}

.modal-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

#modalTitle {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #000;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.price-container {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 1rem;
    border: 1px solid #eee;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.price-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.5rem;
    color: #444;
    font-family: Georgia, serif;
}

.price-value.highlight {
    color: #000;
    font-weight: bold;
    font-size: 1.75rem; 
}

.price-min {
    font-size: 0.7rem;
    color: #e53935;
    font-style: italic;
}

.price-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
    margin: 0 1.5rem;
}

.modal-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.btn-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem;
    text-decoration: none;
    background: #000;
    color: white;
    border: none;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-modal-whatsapp:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.modal-note {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin-top: 1rem;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card.fade-in {
    animation: fadeInCard 0.6s ease forwards;
}

.cart-float {
    position: fixed;
    top: auto;
    bottom: 6.5rem;
    right: 2rem;      
    background-color: white;
    color: black;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.2s;
}

.cart-float:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e53935;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; 
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2999;
    display: none;
    -webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
}

.cart-overlay.open {
    display: block;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.cart-header h3 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 1rem;
}

.cart-item img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-remove {
    color: #e53935;
    font-size: 0.75rem;
    cursor: pointer;
    margin-top: 0.5rem;
    display: inline-block;
    text-decoration: underline;
}

.cart-footer {
    padding: 2rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cart-note {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
}

.empty-msg {
    text-align: center;
    color: #999;
    margin-top: 2rem;
}

.modal-sizes-box {
    margin-bottom: 2rem;
    padding: 0.8rem;
    background: #fff;
    border: 1px dashed #ccc;
    display: inline-block;
}

.size-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.size-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #171717;
}

.modal-colors-box {
    margin-bottom: 1.5rem;
}

.color-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.selected {
    border: 2px solid white;
    box-shadow: 0 0 0 2px #000; 
    transform: scale(1.1);
}

.color-name-display {
    font-size: 0.85rem;
    color: #555;
    margin-left: 10px;
    font-style: italic;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-logo {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    animation: introFadeUp 0.9s ease forwards 0.3s;
}

.intro-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0;
    animation: introFadeUp 0.9s ease forwards 0.6s;
}

.intro-line {
    width: 0px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    animation: introLine 1s ease forwards 0.9s;
    margin: 0.5rem 0;
}

.intro-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: white;
    width: 0%;
    animation: introProgress 2s ease forwards 0.2s;
}

@keyframes introFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introLine {
    to { width: 120px; }
}

@keyframes introProgress {
    to { width: 100%; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem; 
    max-width: 48rem;
    margin-top: 2rem;
}

.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-description,
.hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content.animate-in .hero-badge,
.hero-content.animate-in .hero-title,
.hero-content.animate-in .hero-description,
.hero-content.animate-in .hero-buttons {
    animation: heroItemIn 0.7s ease forwards;
}

.hero-content.animate-in .hero-badge        { animation-delay: 0.1s; }
.hero-content.animate-in .hero-title        { animation-delay: 0.3s; }
.hero-content.animate-in .hero-description  { animation-delay: 0.5s; }
.hero-content.animate-in .hero-buttons      { animation-delay: 0.7s; }

@keyframes heroItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
    display: none;
}

.icon-btn:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .icon-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem 1.5rem 2rem;
        gap: 1.5rem;
        z-index: 100;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (min-width: 768px) {
    .icon-btn {
        display: none;
    }

    .nav-links {
        display: flex;
    }
}

.location-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    stroke: currentColor;
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    flex-shrink: 0;
    stroke: currentColor;
    margin-top: 0.125rem;
}

.social-link svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}