.hero-section {
    display: none !important;
}



.ct-container-full {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.sexxyshop-products-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.sexxyshop-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .sexxyshop-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .sexxyshop-products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.sexxyshop-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sexxyshop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ==== BADGES ==== */
.sexxyshop-badges-container {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.sexxyshop-badge-oferta {
    background: #E91E63;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.sexxyshop-badge-discount {
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

/* ==== ICONO WISHLIST ==== */
.sexxyshop-wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sexxyshop-wishlist-icon:hover {
    background: #E91E63;
    color: white;
}

.sexxyshop-wishlist-icon svg {
    width: 18px;
    height: 18px;
}

/* ==== CONTENIDO ==== */
.sexxyshop-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.sexxyshop-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
}

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

.sexxyshop-product-card:hover .sexxyshop-product-image img {
    transform: scale(1.05);
}

.sexxyshop-product-info {
    padding: 16px;
}

.sexxyshop-product-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: #333;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sexxyshop-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sexxyshop-price-sale {
    font-size: 20px;
    font-weight: 700;
    color: #E91E63;
}

.sexxyshop-price-regular {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.sexxyshop-price-current {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

/* ==== BOTÓN ==== */
.sexxyshop-product-actions {
    padding: 0 16px 16px;
}

.sexxyshop-add-to-cart {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #E91E63 !important;
    color: white !important;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sexxyshop-add-to-cart:hover {
    background: #C2185B !important;
    transform: translateY(-2px);
}

.sexxyshop-add-to-cart svg {
    flex-shrink: 0;
}

/* ==== RESPONSIVE: TABLETS Y MÓVILES ==== */
@media (max-width: 640px) {
    .sexxyshop-products-wrapper {
        padding: 15px;
    }

    .sexxyshop-products-grid {
        gap: 15px !important;
    }

    .sexxyshop-product-title {
        font-size: 14px;
        min-height: 38px;
    }

    .sexxyshop-price-sale,
    .sexxyshop-price-current {
        font-size: 18px;
    }

    .sexxyshop-add-to-cart {
        font-size: 13px;
        padding: 10px 12px;
    }

    .sexxyshop-badge-oferta,
    .sexxyshop-badge-discount {
        font-size: 10px;
        padding: 5px 9px;
        border-radius: 5px;
    }

    .sexxyshop-wishlist-icon {
        width: 32px;
        height: 32px;
    }

    .sexxyshop-wishlist-icon svg {
        width: 17px;
        height: 17px;
    }
}

/* ==== RESPONSIVE EXTRA PEQUEÑO (≤400px) ==== */
@media (max-width: 400px) {
    .sexxyshop-products-wrapper {
        padding: 10px;
    }

    .sexxyshop-products-grid {
        gap: 10px !important;
    }

    .sexxyshop-product-title {
        font-size: 13px;
        min-height: 34px;
    }

    .sexxyshop-price-sale,
    .sexxyshop-price-current {
        font-size: 17px;
    }

    .sexxyshop-add-to-cart {
        font-size: 12px;
        padding: 8px 10px;
    }

    .sexxyshop-badge-oferta,
    .sexxyshop-badge-discount {
        font-size: 9px;
        padding: 4px 8px;
        border-radius: 4px;
    }

    .sexxyshop-wishlist-icon {
        width: 30px;
        height: 30px;
    }

    .sexxyshop-wishlist-icon svg {
        width: 16px;
        height: 16px;
    }
}




/* FiboSearch Mobile-Only Styles */
.fibosearch-mobile-only {
    display: none; /* Hidden by default on desktop */
    padding: 16px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .fibosearch-mobile-only {
        display: block; /* Shown on mobile */
    }
}


/* Hero Section Styles */
.hero-section-custom {
    background: linear-gradient(135deg, #f5f0ff 0%, #ffe5f5 100%);
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.delivery-badge {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.delivery-badge svg {
    width: 20px;
    height: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
}

.subtitle strong {
    color: #e91e63;
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    text-decoration: none; /* Add this to remove underline from anchor */
}

.cta-button svg {
    width: 22px;
    height: 22px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.promo-box {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    padding: 40px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo-title svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.promo-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.promo-countdown {
    display: flex ;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.countdown::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.countdown-item {
    background: white;
    color: #e91e63;
    padding: 18px 20px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 5px;
}

.promo-subscribe-button {
    background: white;
    color: #e91e63;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-subscribe-button svg {
    width: 20px;
    height: 20px;
}

.promo-subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    max-width: 250px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-icon.pink {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #de4ca1 0%, #df0384 100%);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bg-decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: #e91e63;
    opacity: 0.1;
}

.bg-decoration-2 {
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: #9c27b0;
    opacity: 0.1;
}

.bg-decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: #de4ca1;
    opacity: 0.05;
}

.promo-hero-content {
	max-width: 1400px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section-custom {
        padding: 60px 15px;
    }

    h1 {
        font-size: 2.3rem;
        margin-bottom: 20px;
    }

    .promo-title {
        font-size: 1.2rem;
        gap: 6px;
    }

    .promo-title svg {
        width: 20px;
        height: 20px;
    }

    .countdown {
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 12px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Product Section Styles */
.product-section {
    padding: 48px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-section-header {
  margin-bottom: 3rem;
}

.product-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-section-icon {
  flex-shrink: 0;
}

.product-section-title.red-pink-gradient,
.product-section-title.purple-pink-gradient,
.product-section-title.red-purple-gradient {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.red-pink-gradient {
  background: linear-gradient(to right, #dc2626, #ec4899);
}

.purple-pink-gradient {
  background: linear-gradient(to right, #9333ea, #ec4899);
}

.red-purple-gradient {
  background: linear-gradient(to right, #dc2626, #9333ea);
}


.product-section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-section-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.product-grid-container {
    padding-top: 30px;
}

/* Trust Section Styles */
.trust-section {
    padding: 64px 16px;
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.icon-heart {
    color: #dc2626;
    flex-shrink: 0;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.15); }
    40% { transform: scale(1); }
}

.gradient-text {
    background: linear-gradient(to right, #dc2626, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 672px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px 32px;
    max-width: 672px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

.stars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #fbbf24;
    width: 24px;
    height: 24px;
    animation: starPop 0.6s ease-out;
    animation-fill-mode: both;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #e5e7eb;
    position: absolute;
    left: -20px;
    top: -20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.dot.active {
    background: #dc2626;
    width: 32px;
    border-radius: 6px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.nav-button {
    background: white;
    border: 2px solid #e5e7eb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.nav-button:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    transform: scale(1.1);
}

.nav-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .testimonial-text::before {
        font-size: 3rem;
        left: 10px;
        top: -15px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 48px 16px;
    }

    .nav-buttons {
        gap: 12px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 64px 20px;
    background: #f3f4f6;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
}

.faq-title-text {
  background: linear-gradient(90deg, #e3342f, #6b21a8);
  -webkit-background-clip: text;
  color: transparent;
  margin-left: 0.5rem;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.faq-item-title {
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.faq-item-icon {
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.faq-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
}

.faq-item-icon.red { color: #e3342f; }
.faq-item-icon.purple { color: #6b21a8; }
.faq-item-icon.pink { color: #db2777; }

.faq-item p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
    /* Hero general: que no se desborde */
    .hero-section-custom {
        padding: 40px 10px;
        overflow-x: hidden;
    }

    /* Contenedor interno */
    .promo-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Título principal */
    h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Botón principal CTA */
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
        gap: 6px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }

    /* Promo Box */
    .promo-box {
        padding: 25px;
        max-width: 90%;
        margin-bottom: 40px;
    }

    .promo-title {
        font-size: 1.1rem;
        gap: 6px;
    }

    .promo-title svg {
        width: 18px;
        height: 18px;
    }

    .promo-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Countdown */
    .promo-countdown {
        gap: 6px;
        overflow-x: auto;
        padding: 0 5px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 6px 8px;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    /* Botón de suscripción */
    .promo-subscribe-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .promo-subscribe-button svg {
        width: 16px;
        height: 16px;
    }

    /* Features: verticales y adaptadas */
    .promo-features {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 5px;
    }

    .feature {
        max-width: 100%;
        flex: 1 1 100%;
    }

    /* Delivery Badge */
    .delivery-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .delivery-badge svg {
        width: 16px;
        height: 16px;
    }
}


