/* ===================================
   Global Styles & Variables
   =================================== */

:root {
    /* Colors */
    --primary-color: #C68B59;
    --secondary-color: #8B5E3C;
    --accent-color: #D4A574;
    --bg-cream: #FAF8F5;
    --text-dark: #2C2420;
    --text-medium: #5A4A40;
    --white: #FFFFFF;
    --light-beige: #F5EFE7;
    --gold: #D4A373;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-text {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 139, 89, 0.3);
}

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

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

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

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffebdf;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.btn-cta-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-cta-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 10px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

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

.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ===================================
   Sections
   =================================== */

.section {
    padding: var(--section-padding);
}

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

/* ===================================
   Masajes Section
   =================================== */

.masajes {
    background-color: var(--white);
}

.masajes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.masaje-card {
    background-color: var(--bg-cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.masaje-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.masaje-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.badge-popular {
    background-color: var(--gold);
}

.badge-relaxing {
    background-color: #7FA998;
}

.badge-couple {
    background-color: #D4A574;
}

.masaje-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.masaje-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.masaje-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.masaje-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: auto;
}

.price-divider {
    color: var(--accent-color);
}

.masajes-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-beige);
    border-radius: 15px;
}

.info-item {
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.info-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===================================
   Galería Section
   =================================== */

.galeria {
    background-color: var(--bg-cream);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.15);
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition);
}

.galeria-item:hover .galeria-caption {
    transform: translateY(0);
}

/* ===================================
   Beneficios Section
   =================================== */

.beneficios {
    background-color: var(--light-beige);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.beneficio-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.beneficio-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.beneficio-text {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===================================
   Opiniones Section
   =================================== */

.opiniones {
    background-color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonial-container {
    position: relative;
    min-height: 250px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.stars {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* ===================================
   Sobre Mí Section
   =================================== */

.sobre-mi {
    background-color: var(--bg-cream);
}

.sobre-mi-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.sobre-mi-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sobre-mi-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.badges {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--light-beige);
    border-radius: 10px;
}

.badge-item {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cta-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    text-align: center;
}

.cta-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-cream);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-beige);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question i {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer li {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--primary-color);
    border-radius: 15px;
}

.faq-cta p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ===================================
   Contacto Section
   =================================== */

.contacto {
    background-color: var(--secondary-color);
    color: var(--white);
}

.contacto .section-title,
.contacto .section-subtitle,
.contacto .section-text {
    color: var(--white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contacto-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contacto-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contacto-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contacto-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contacto-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contacto-text a {
    color: var(--accent-color);
    font-weight: 600;
}

.contacto-text a:hover {
    text-decoration: underline;
}

.contacto-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.contacto-cta {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.cta-text-large {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===================================
   Lightbox for Gallery
   =================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* ===================================
   Optional WhatsApp Float Button
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    /* Navigation */
    .logo img {
        height: 80px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-cream);
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero */
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Masajes */
    .masajes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .masajes-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    /* Galería */
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    /* Beneficios */
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 40px 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    /* Sobre Mí */
    .sobre-mi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contacto */
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text-large {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle-main {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .masaje-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-divider {
        display: none;
    }
}