/* 
   VR Hair - Estilo Principal
   Paleta: Preto e Dourado para transmitir luxo e elegÃ¢ncia
*/
i.fab.fa-instagram {
    margin-top: 10px;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
}
.register-content h4 {
    font-size: 1.2rem;
}
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-active .step-number {
    background-color: var(--primary-color);
}

.step-completed .step-number {
    background-color: var(--success-color);
}

.step-text {
    font-size: 14px;
    color: var(--light-text);
}

.step-active .step-text {
    color: var(--primary-color);
    font-weight: bold;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.checkout-form {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.checkout-summary {
    width: 380px;
    padding: 0 15px;
}

.form-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.frete-option {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.frete-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.frete-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(90, 49, 244, 0.05);
}

.frete-radio {
    margin-right: 15px;
}

.frete-details {
    flex: 1;
}

.frete-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.frete-prazo {
    font-size: 14px;
    color: var(--light-text);
}

.frete-price {
    font-weight: 700;
    color: var(--primary-color);
}

.frete-price.free {
    color: var(--success-color);
}

.btn {
    height: 45px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    padding: 0 25px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn:hover {
  

      background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4a29cc;
    border-color: #4a29cc;
}

.btn-outline-secondary {
    color: var(--light-text);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.summary-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.item-price {
    color: var(--light-text);
    font-size: 14px;
}

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.checkout-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--light-text);
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

.cupom-form {
    display: flex;
    margin-bottom: 15px;
}

.cupom-input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.cupom-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: white;
    color: var(--primary-color);
    border-color: var(--border-color);
    font-weight: 600;
}

.cupom-button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.brinde-item {
    background-color: rgba(40, 167, 69, 0.05);
    border: 1px solid var(--success-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.brinde-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
}

.brinde-details {
    flex: 1;
}

.brinde-title {
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.brinde-description {
    font-size: 14px;
    color: var(--text-color);
}

.brinde-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 14px;
}

.login-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.login-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.login-message {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(90, 49, 244, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .checkout-content {
        flex-direction: column;
    }
    
    .checkout-summary {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    
    .step-text {
        display: none;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37; /* Dourado */
    --accent-color: #BF953F; /* Dourado mais escuro */
    --light-color: #F8F8F8;
    --dark-color: #1A1A1A;
    --gray-color: #707070;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Estilos Gerais */
body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-family: inherit;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

section {
    padding: 5rem 0;
}

.btn {
    border-radius: 0;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}


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

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

/* CabeÃ§alho */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.btn-salao {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    border-radius: 0;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
}

.navbar-icons {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}
.card-header h2 button {
    color: #fff !important;
    text-decoration: none;
}

.icon-link {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Banner Principal */
.main-banner {
    color: #FFFFFF;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 395px;
    overflow: hidden;
}



/* Produtos em Destaque */
.featured-products {
    background-color: var(--light-color);
}

.product-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover,
.product-card:focus,
.product-card:active,
.product-card *:hover,
.product-card *:focus,
.product-card *:active {
    /* background: inherit !important; */
    color: inherit !important;
    box-shadow: none !important;
    border-color: inherit !important;
    text-decoration: none !important;
    filter: none !important;
    outline: none !important;
}

.product-image {
    height: 250px;
    overflow: hidden;
}

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

.product-card .product-image .img-fluid {
    max-height: 250px;
    object-fit: contain;
}

.blog-card .blog-image .img-fluid {
    max-height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Cursos de Treinamento */
.training-courses {
    background-color: #FFFFFF;
}

.course-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.course-info {
    padding: 1.5rem;
}

.course-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.course-details span {
    display: flex;
    align-items: center;
}

.course-details i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.course-urgency {
    background-color: #FFF3CD;
    color: #856404;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.course-urgency i {
    margin-right: 0.5rem;
}

/* Depoimentos */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Parceria com SalÃµes */
.salon-partnership {
    background-color: #FFFFFF;
}

.salon-partnership h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.salon-partnership p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* RodapÃ© */
footer {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-icons {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .main-banner {
        padding: 0;
        height: 400px;
    }
    
    .salon-partnership h2 {
        font-size: 2rem;
    }
    
    footer {
        text-align: center;
    }
    
    footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-icons {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Banner Slider Styles */
.main-banner {
    background: #f8f9fa;
    padding: 20px 0;
}

.banner-1111 {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 8px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.banner-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    z-index: 2 !important;
}

.banner-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
    opacity: 0;
}

.banner-slide.next {
    transform: translateX(100%);
    z-index: 1;
    opacity: 0;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.8s ease-in-out;
}

.banner-slide:hover img {
    transform: scale(1.05);
}

.banner-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.banner-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.banner-slider-prev {
    left: 10px;
}

.banner-slider-next {
    right: 10px;
}

.banner-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsividade do Slider */
@media (max-width: 768px) {
    .main-banner {
        height: 400px;
    }
    
    .banner-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .banner-slider-prev {
        left: 10px;
    }
    
    .banner-slider-next {
        right: 10px;
    }
    
    .banner-slider-indicators {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .main-banner {
        height: 300px;
    }
}

/*
--- SEARCH BAR ---
*/
.overlay-pesquisa {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .caixa-busca {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    text-align: center;
  }
  
  .input-busca {
    width: 100%;
    padding: 20px;
    font-size: 36px;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    text-align: center;
    outline: none;
  }
  
  .fechar-btn {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }

  .search-bar {
    position: relative;
  }
   
  .search-results-container {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1001;
    max-height: 500px;
    overflow-y: auto;
  }
   
  .search-results-header {
    padding: 12px 15px;
    font-weight: bold;
    color: #333;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
  }
   
  .search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
   
  .search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
  }
   
  .search-result-item:last-child {
    border-bottom: none;
  }
   
  .search-result-item:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
  }
   
  .search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
  }
   
  .search-result-name {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .search-bar .search-input {
      padding-left: 45px !important; /* Espaço para o ícone de microfone */
  }
  
  .mic-button {
      position: absolute;
      left: 5px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      font-size: 20px;
      color: #777;
      cursor: pointer;
      z-index: 10;
      transition: color 0.2s ease;
  }
  
  .mic-button:hover {
      color: var(--primary-color);
  }
  
  .mic-button.active {
      color: var(--accent-color);
      animation: pulse 1.5s infinite;
  }

/*
--- SIDE CART ---
*/
.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    /* Aumentado para garantir que fique acima de todos os elementos */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .side-cart.open {
    transform: translateX(0);
  }

  .side-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
  }

  .side-cart-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }

  .side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  .cart-items {
    margin-bottom: 20px;
  }

  .cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
  }

  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .cart-item-details {
    flex: 1;
  }

  .cart-item-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
  }

  .cart-item-price {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }

  .cart-item-size {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }

  .cart-item-quantity {
    display: flex;
    align-items: center;
  }

  .cart-item-quantity button {
    width: 25px;
    height: 25px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
  }

  .cart-item-quantity button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cart-item-quantity span {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
  }

  .remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
  }

  .remove-item:hover {
    color: #ff6b6b;
  }

  .cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }

  .cart-subtotal,
  .cart-shipping,
  .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .cart-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .side-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
    color: #999;
  }

  .side-cart-empty i {
    margin-bottom: 20px;
    color: #ddd;
  }

  .side-cart-empty p {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .empty-cart-message {
    font-size: 14px;
    color: #666;
  }

  .side-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
  }

  .btn-continue-shopping,
  .btn-checkout {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .btn-continue-shopping {
    background-color: #f5f5f5;
    color: #333;
  }

  .btn-continue-shopping:hover {
    background-color: #e5e5e5;
  }

  .btn-checkout {
    background-color: #ff6b6b;
    color: white;
  }

  .btn-checkout:hover {
    background-color: #ff5252;
  }

  .btn-checkout:disabled {
    background-color: #ffb8b8;
    cursor: not-allowed;
  }
a{
  color: var(--accent-color);
}
  /* Overlay do carrinho */
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    /* Aumentado para ficar logo abaixo do carrinho */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .cart-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  /* Contador do carrinho */
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ícone de sacola de compras */
  .shopping-bag-icon {
    position: relative;
    display: inline-block;
  }

  /* Impedir scroll quando o carrinho está aberto */
  body.cart-open {
    overflow: hidden;
  }

  /* Notificação de adição ao carrinho */
  .add-to-cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slide-in 0.3s ease;
  }

  .notification-content {
    display: flex;
    align-items: center;
  }

  .notification-content i {
    margin-right: 10px;
  }

  @keyframes slide-in {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .add-to-cart-notification.fade-out {
    animation: fade-out 0.5s ease forwards;
  }

  @keyframes fade-out {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  /* Responsividade para dispositivos móveis */
  @media (max-width: 576px) {
    .side-cart {
      width: 100%;
    }
  }

  /* Estilos adicionais para a seleção de tamanho */
  .btn-size {
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-size.active {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
  }

  .btn-size:hover {
    background-color: #e5e5e5;
  }

  .btn-size.active:hover {
    background-color: #ff5252;
  }

/*
--- USER ---
*/
  .user-logged-in {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 12px !important;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
  
  .user-logged-in i {
    margin-right: 5px;
  }
  
  .user-logged-in .dropdown-menu {
    min-width: 200px;
    padding: 10px;
  }
  
  .user-logged-in .dropdown-item {
    padding: 8px 15px;
  }
  
  /* Estilos para o menu do usuário */
  .user-menu .dropdown-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
  }
  
  .user-menu .dropdown-divider {
    margin: 8px 0;
  }
  .card-header {
  background-color: var(--primary-color) !important;
  color: #fff;
}
  .user-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff6b6b;
  }
  
  .user-menu .dropdown-item.active {
    background-color: #ff6b6b;
    color: white;
  }

/*
--- PRODUCT ---
*/
  .product-info h3 a {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary) !important;
  color: var(--secondary-color) !important;
  text-decoration: none;
}

.quantity-selector.refined {
display: inline-flex;
align-items: center;
border: 1px solid #ddd;
border-radius: 6px;
overflow: hidden;
background-color: #fff;
margin-bottom: 20px;
}

.quantity-selector .btn-quantity {
background: none;
border: none;
padding: 10px 12px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
color: #333;
}

.quantity-selector .btn-quantity:hover {
background-color: #f1f1f1;
}

.input-quantity {
width: 50px;
text-align: center;
border: none;
outline: none;
font-size: 16px;
padding: 10px;
background: transparent;
color: #333;
}
.styled-share {
display: flex;
align-items: center;
gap: 16px;
margin-top: 30px;
font-size: 20px;
color: var(--primary-color); /* marrom elegante */
}

.styled-share .share-label {
font-weight: 600;
margin-right: 10px;
color: var(--primary-color);
font-size: 20px;
}

.styled-share .share-icon {
font-size: 26px;
color: #6b4226;
transition: transform 0.2s ease, color 0.2s ease;
}

.styled-share .share-icon:hover {
transform: scale(1.2);
color: #8b5e3c;
}

/*
--- BLOG ---
*/
.recent-post-content h5 a {
  font-family: var(--font-secondary);
  color: var(--dark-color);
  margin-bottom: 40px !important;
  float: left;
  margin-top: 20px;
}

.search-widget-clean .search-form {
display: flex;
align-items: center;
border: 1px solid #ddd;
border-radius: 6px;
overflow: hidden;
background-color: #fff;
}

.search-widget-clean .search-input {
flex: 1;
border: none;
padding: 10px 15px;
font-size: 16px;
outline: none;
background: transparent;
}

.blog-title a {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  text-decoration: none
}

.search-widget-clean .search-btn {
background: none;
border: none;
padding: 10px 15px;
font-size: 18px;
cursor: pointer;
color: #6b4226; /* marrom elegante */
transition: color 0.2s ease;
}

.search-widget-clean .search-btn:hover {
color: #8b5e3c;
}

/*
--- NAVBAR ---
*/
#navbarNav {
  transition: all .3s ease-in-out !important;
  transition-delay: .2s !important;
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.1); }
    100% { transform: translateY(-50%) scale(1); }
}
