/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #fcfcfc;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b3946a;
    --dark-charcoal: #2c2c2c;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cart-count {
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -12px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #000;
    display: flex;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide video.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.carousel-slide div.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Parallax zoom effect for active images */
@keyframes parallaxZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.carousel-slide[data-type="image"].active div.carousel-bg {
    animation: parallaxZoom 10s linear forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.recommendation-text {
    color: var(--accent-gold);
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-slide.active .recommendation-text {
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(2px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Catalog Area */
.catalog-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-secondary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-charcoal);
    color: var(--white);
    border-color: var(--dark-charcoal);
}

/* Dropdown Filters */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 0;
    margin-top: 0; /* Removed gap so menu doesn't disappear */
    border: 1px solid var(--border-color);
}

.filter-dropdown:hover > .dropdown-content {
    display: block;
}

/* Add an invisible bridge to make hovering easier just in case */
.filter-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.dropdown-content .filter-btn {
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-primary) !important; /* Force dark text instead of white */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content .filter-btn:hover {
    background: var(--border-color) !important; /* Visible hover background */
    color: var(--dark-charcoal) !important;
    border: none;
}

.dropdown-content .filter-dropdown {
    width: 100%;
    display: block;
}

.dropdown-content .dropdown-content {
    top: 0;
    left: 100%;
    transform: translateX(0);
    margin-top: -8px;
    margin-left: 0;
}

.arrow {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-img-wrapper {
    width: 100%;
    padding-top: 125%;
    /* 4:5 Aspect Ratio */
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
    border-radius: 4px;
}

.product-img-wrapper img.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
}

.product-img-wrapper img.card-image.active {
    opacity: 1;
    z-index: 2;
}

/* Card navigation */
.card-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-charcoal);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper:hover .card-nav {
    opacity: 1;
}

.card-nav.prev {
    left: 10px;
}

.card-nav.next {
    right: 10px;
}

.card-nav:hover {
    background: var(--white);
    color: var(--accent-gold);
}

.card-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.card-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.card-dots .dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Gallery Modal */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gallery-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.product-info {
    padding: 0.8rem 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-model {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-top: auto;
    margin-bottom: 0.8rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--dark-charcoal);
    border: 1px solid var(--dark-charcoal);
    border-radius: 4px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--dark-charcoal);
    color: var(--white);
}

/* Cart Modal / Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 1001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.cart-overlay.active .cart-sidebar {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 0.8rem;
    cursor: pointer;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #1ebd5a;
}

/* Footer Section */
.site-footer {
    background-color: #060A17;
    border-top: none;
    padding: 4rem 5% 1.5rem;
    margin-top: 4rem;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-links,
.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a,
.footer-social a {
    color: #a0a5b1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #717784;
    font-size: 0.85rem;
}

/* Related Products Grid - Smaller */
.related-section .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 240px));
}

.related-section .product-title {
    font-size: 1.1rem;
}

.related-section .product-price {
    font-size: 1.1rem;
}

.related-section .add-to-cart {
    padding: 0.6rem;
    font-size: 0.85rem;
}

/* Artists Carousel */
.artists-section {
    padding: 4rem 2rem;
    background-color: var(--white);
    overflow: hidden;
}

.artists-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.artists-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
}

.artists-carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.artists-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollArtists 25s linear infinite;
}

.artists-track:hover {
    animation-play-state: paused;
}

.artist-card {
    width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.artist-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.artist-card:hover .artist-img {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.artist-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: capitalize;
}

@keyframes scrollArtists {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

@media (max-width: 768px) {
    .artist-img {
        width: 140px;
        height: 140px;
    }

    .artist-card {
        width: 200px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.reviews-section .section-header {
    margin-bottom: 3rem;
}

.reviews-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.reviews-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-track {
    position: relative;
    min-height: 250px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 1;
}

.review-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.review-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.review-content .stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.r-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.r-dot.active, .r-dot:hover {
    background: var(--accent-gold);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .review-content {
        padding: 2rem 1rem;
    }
    .review-text {
        font-size: 1rem;
    }
    .reviews-track {
        min-height: 300px;
    }
}

/* CEP Modal */
.cep-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100%; height: 100dvh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.cep-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cep-modal {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cep-modal-overlay.active .cep-modal {
    transform: translateY(0);
}

.cep-modal-header {
    background: var(--bg-color);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cep {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.cep-modal-body {
    padding: 1.5rem;
}

.btn-calculate {
    background: var(--dark-charcoal);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-calculate:hover {
    background: #111;
}

.cep-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.btn-confirm-order {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-confirm-order:hover {
    background: #1ebd5a;
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: var(--dark-charcoal);
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Menu de Categorias - Verde Italia (Destaque) */
.filters-section {
    background-color: #009246; /* Verde bandeira / Italia */
    background-image: linear-gradient(135deg, #009246 0%, #005a2b 100%);
    padding: 3.5rem 5%;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2), 0 10px 25px rgba(0, 146, 70, 0.15);
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.filters-section .filters {
    margin-bottom: 0;
}

.filters-section .filter-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.filters-section .filter-btn:hover,
.filters-section .filter-btn.active {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.6);
    transform: translateY(-3px);
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 5%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.insta-post {
    display: block;
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.insta-post:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.insta-post::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 6px;
}

.insta-post:hover::before {
    opacity: 1;
}

.insta-post::after {
    content: "❤️";
    font-size: 2.5rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-post:hover::after {
    opacity: 1;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.5);
}

.btn-insta-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Instagram Header Recreations */
.insta-profile-header {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    gap: 3rem;
    padding: 0 1rem;
    color: var(--text-primary);
}

.insta-avatar-container {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 4px;
}

.insta-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
}

.insta-profile-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.insta-profile-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.insta-username {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.insta-follow-btn {
    background: #0095f6;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.insta-follow-btn:hover {
    background: #1877f2;
}

.insta-stats {
    display: flex;
    gap: 2.5rem;
    font-size: 1.05rem;
}

.insta-stats strong {
    font-weight: 600;
}

.insta-bio {
    font-size: 1rem;
}

.insta-fullname {
    font-weight: 600;
}

@media (max-width: 768px) {
    .insta-profile-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .insta-avatar-container {
        width: 120px;
        height: 120px;
    }
    
    .insta-profile-info {
        align-items: center;
    }
    
    .insta-profile-title-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .insta-stats {
        justify-content: center;
        gap: 1.5rem;
        font-size: 0.95rem;
    }
}