/* ==========================================================================
   TOY BOX - MODERN INTERNAL PAGES STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. INTERNAL HERO & BREADCRUMB (.page-hero / .slider-area)
   -------------------------------------------------------------------------- */
body:has(.page-hero) {
    background-color: #0b0b14;
}

.slider-area.page-hero,
.page-hero {
    margin-top: 0 !important;
    padding-top: 110px !important;
    padding-bottom: 40px !important;
    background:
        radial-gradient(ellipse at 18% -10%, rgba(234, 0, 16, 0.34) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 0%, rgba(0, 163, 250, 0.2) 0%, transparent 45%),
        linear-gradient(180deg, #06060c 0%, #0b0b14 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .slider-area.page-hero,
    .page-hero {
        padding-top: 96px !important;
        padding-bottom: 28px !important;
    }
}

.page-hero__title {
    font-family: "Bowlby One", sans-serif !important;
    color: #fff !important;
}

.page-hero__cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35) !important;
    animation: page-hero-cta-pulse 2.8s ease-in-out infinite;
}

.page-hero__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    animation: none;
}

@keyframes page-hero-cta-pulse {
    0%, 100% {
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
    }
}

/* --------------------------------------------------------------------------
   2. PRODUCT CATALOG GRID & CARDS (.card-product, .machines-catalog__switch)
   -------------------------------------------------------------------------- */
.product-area {
    background-color: #0b0b14 !important;
}

.card-product {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.75) 100%) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 20px !important;
    padding: 26px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.6s ease;
}

.card-product:hover::before {
    left: 100%;
}

.card-product:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(234, 0, 16, 0.5) !important;
    box-shadow: 
        0 20px 45px -15px rgba(234, 0, 16, 0.35),
        0 0 30px rgba(0, 163, 250, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.02) !important;
}

.card-product img {
    border-radius: 14px;
    transition: transform 0.5s ease;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.card-product:hover img {
    transform: scale(1.06);
}

.card-product h3,
.card-product .d-flex h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 18px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    transition: color 0.3s ease !important;
}

.card-product:hover h3,
.card-product:hover .d-flex h3 {
    color: #fdd505 !important;
}

.card-product p span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 22px !important;
    background: rgba(234, 0, 16, 0.15) !important;
    border: 1px solid rgba(234, 0, 16, 0.35) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.card-product:hover p span {
    background: #ea0010 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(234, 0, 16, 0.5) !important;
    transform: scale(1.02) !important;
}

.card-product__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.card-product__more i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.card-product:hover .card-product__more,
.card-product__more:hover {
    color: #fdd505;
}

.card-product:hover .card-product__more i,
.card-product__more:hover i {
    transform: translateX(4px);
}

/* Disney / Licensed plush gallery */
.licensed-plush-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(18, 18, 30, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.licensed-plush-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 213, 5, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.licensed-plush-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 22px 18px 8px;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(234, 0, 16, 0.18) 0%, transparent 55%),
        #050508;
}

.licensed-plush-card__media img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
    transition: transform 0.4s ease;
}

.licensed-plush-card:hover .licensed-plush-card__media img {
    transform: scale(1.05);
}

.licensed-plush-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px 22px;
    text-align: center;
    flex: 1;
}

.licensed-plush-card__line {
    display: inline-block;
    align-self: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fdd505;
}

.licensed-plush-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.licensed-plush-card__meta {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.licensed-plush-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #7dffb0;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.licensed-plush-card__cta:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.licensed-plush-card__media--cover {
    padding: 0;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.licensed-plush-card__media--cover img {
    max-height: none;
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: none;
}

.licensed-plush-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(234, 0, 16, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.licensed-plush-card--soon {
    opacity: 0.96;
}

.licensed-plush-card__media--premios {
    min-height: 240px;
    background: #f5f5f7;
}

.licensed-plush-card__media--premios img {
    height: 240px;
    object-fit: cover;
    object-position: center top;
}

/* --------------------------------------------------------------------------
   Hub Licenciados (.licensed-card)
   -------------------------------------------------------------------------- */
.licensed-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(234, 0, 16, 0.14);
    border: 1px solid rgba(234, 0, 16, 0.35);
    color: #ff6b76;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
    margin: 0 auto;
}

.licensed-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(18, 18, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.licensed-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 213, 5, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.licensed-card__media {
    position: relative;
    min-height: 260px;
    padding: 28px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 85%, rgba(234, 0, 16, 0.2) 0%, transparent 58%),
        #050508;
}

.licensed-card--disney .licensed-card__media {
    background:
        radial-gradient(ellipse at 50% 85%, rgba(0, 163, 250, 0.22) 0%, transparent 58%),
        #050508;
}

.licensed-card--warner .licensed-card__media {
    background:
        radial-gradient(ellipse at 50% 85%, rgba(253, 213, 5, 0.16) 0%, transparent 58%),
        #050508;
}

.licensed-card--premios .licensed-card__media {
    background:
        radial-gradient(ellipse at 50% 85%, rgba(234, 0, 16, 0.22) 0%, transparent 58%),
        #050508;
}

.licensed-card__media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.licensed-card__media img {
    max-height: 230px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.55));
    transition: transform 0.4s ease;
}

.licensed-card:hover .licensed-card__media img {
    transform: scale(1.05);
}

.licensed-card__brand-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.licensed-card__brand-badge.disney-badge {
    background: rgba(0, 120, 200, 0.75);
}

.licensed-card__brand-badge.warner-badge {
    background: rgba(180, 20, 30, 0.82);
}

.licensed-card__brand-badge.premios-badge {
    background: rgba(234, 0, 16, 0.82);
}

.licensed-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 22px 24px;
    flex: 1;
}

.licensed-card--link {
    text-decoration: none;
    color: inherit;
}

.licensed-card--link .licensed-card__body {
    padding: 16px 22px 22px;
    text-align: center;
}

.licensed-card--link .licensed-card__title {
    margin: 0;
    color: #fff;
}

.licensed-card--link:hover .licensed-card__title {
    color: #fdd505;
}

.licensed-card__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.licensed-card__title a {
    color: #fff;
    text-decoration: none;
}

.licensed-card__title a:hover {
    color: #fdd505;
}

.licensed-card__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.55;
}

.licensed-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.licensed-card__tags li {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 600;
}

.licensed-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

/* Category Filter Switch */
.machines-catalog__switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.machines-catalog__switch .btn-main {
    padding: 10px 26px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   3. INTERNAL SINGLE PRODUCT PAGE (.int-page-1, .prodintSwiper, .boxExpand)
   -------------------------------------------------------------------------- */
.int-page-1 {
    background-color: #0b0b14 !important;
    color: #d6d6d6;
}

.int-page-1 h2 {
    font-family: "Bowlby One", sans-serif !important;
    color: #ffffff !important;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.int-page-1 p {
    color: #c0c0d5 !important;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Swiper Gallery Container */
.prodintSwiper {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: rgba(18, 18, 30, 0.6);
}

.prodintSwiper .swiper-slide img {
    border-radius: 18px;
    max-height: 480px;
    object-fit: cover;
}

.prodintSwiper .swiper-button-next,
.prodintSwiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(18, 18, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fdd505;
    transition: all 0.3s ease;
}

.prodintSwiper .swiper-button-next:after,
.prodintSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.prodintSwiper .swiper-button-next:hover,
.prodintSwiper .swiper-button-prev:hover {
    background: #ea0010;
    color: #ffffff;
    border-color: #ea0010;
    box-shadow: 0 0 15px rgba(234, 0, 16, 0.5);
}

.prodintSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.prodintSwiper .swiper-pagination-bullet-active {
    background: #fdd505;
    width: 24px;
    border-radius: 10px;
}

/* Expandable Content Box */
.boxExpand {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    margin-top: 35px;
    position: relative;
}

.boxExpand h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.boxExpand ul {
    margin: 20px 0;
    padding: 0;
}

.boxExpand ul li {
    list-style: none;
    color: #d0d0e5;
    font-size: 1rem;
    padding: 12px 18px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.boxExpand ul li:hover {
    background: rgba(234, 0, 16, 0.09);
    border-color: rgba(234, 0, 16, 0.3);
    transform: translateX(5px);
}

.boxExpand ul li i {
    color: #fdd505;
    font-size: 1.1rem;
}

.btn-expand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-expand:hover {
    background: #ea0010;
    border-color: #ea0010;
    box-shadow: 0 4px 18px rgba(234, 0, 16, 0.45);
}

/* --------------------------------------------------------------------------
   4. ABOUT PAGE (.about-area, .experience, .service-wrapper)
   -------------------------------------------------------------------------- */
.about-area {
    background-color: #0b0b14 !important;
}

.image-about {
    position: relative;
}

.image-about img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ea0010, #a0000b);
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(234, 0, 16, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.experience .left-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Bowlby One", sans-serif;
    display: flex;
    align-items: center;
    line-height: 1;
}

.experience .right-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Mission, Vision, Values Cards */
.card.service-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 18, 30, 0.75) 100%) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 20px !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.card.service-wrapper h3{

    color: #e7e7e7 !important;
}
.card.service-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 250, 0.4) !important;
    box-shadow: 0 20px 40px -10px rgba(0, 163, 250, 0.25);
}

.card.service-wrapper .icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 0, 16, 0.15);
    border: 1px solid rgba(234, 0, 16, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fdd505;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card.service-wrapper:hover .icon {
    background: #ea0010;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(234, 0, 16, 0.5);
}

.card.service-wrapper h3.title {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 700;
}

.card.service-wrapper p {
    color: #b0b0c8 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card.service-wrapper .big-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    opacity: 0.04;
    color: #ffffff;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.card.service-wrapper:hover .big-icon {
    opacity: 0.08;
}

.stats-section {
    background-color: #0d0d1a !important;
    padding: 3rem 0;
}

.stats-section .card.service-wrapper {
    padding: 32px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Bowlby One", sans-serif;
    color: #fdd505 !important;
    line-height: 1;
}

.stats-section .card.service-wrapper p {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    color: #b0b0c8 !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   5. FAQ ACCORDION STYLING OVERRIDES (.accordion, .accordion-item)
   -------------------------------------------------------------------------- */
.accordion {
    background: transparent !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item,
div.accordion-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 18, 30, 0.75) 100%) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(234, 0, 16, 0.35) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
}

.accordion button,
.accordion-item button,
.accordion button[id^="accordion-button"] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    padding: 22px 28px !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion button:hover {
    color: #fdd505 !important;
    background: rgba(234, 0, 16, 0.08) !important;
}

.accordion button[aria-expanded='true'] {
    color: #fdd505 !important;
    background: rgba(234, 0, 16, 0.12) !important;
    border-left: 4px solid #ea0010 !important;
}

.accordion button .accordion-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: inherit !important;
}

.accordion button .icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.accordion button .icon::before,
.accordion button .icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.accordion button .icon::before {
    width: 12px;
    height: 2px;
}

.accordion button .icon::after {
    width: 2px;
    height: 12px;
}

.accordion button[aria-expanded='true'] .icon {
    background: #ea0010;
    transform: rotate(45deg);
}

.accordion button[aria-expanded='true'] .icon::before,
.accordion button[aria-expanded='true'] .icon::after {
    background-color: #ffffff;
}

.accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 1000px;
    padding: 20px 28px 26px !important;
}

.accordion-content p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #d0d0e8 !important;
    margin: 0;
}

/* --------------------------------------------------------------------------
   6. CONTACT PAGE OVERRIDES (.contact-section, .info-container, .contact-info)
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: #0b0b14 !important;
    padding: 70px 0;
}

.contact-section h2 {
    font-family: "Bowlby One", sans-serif !important;
    color: #ffffff !important;
    font-size: 2.2rem;
}

.info-container,
.contact-section .info-container {
    background: linear-gradient(160deg, rgba(22, 22, 38, 0.95) 0%, rgba(12, 12, 22, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: 36px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    position: relative;
    z-index: 1;
}

.info-container::after,
.contact-section .info-container::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.contact-info,
.contact-section .info-container .contact-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.contact-info:last-child,
.contact-section .info-container .contact-info:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none !important;
}

.contact-info .icon,
.contact-section .info-container .contact-info .icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(234, 0, 16, 0.22), rgba(0, 163, 250, 0.15)) !important;
    border: 1px solid rgba(234, 0, 16, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fdd505 !important;
    font-size: 1.3rem !important;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 0 !important;
}

.contact-info:hover .icon,
.contact-section .info-container .contact-info:hover .icon {
    background: #ea0010 !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(234, 0, 16, 0.5);
}

.contact-info .media-body h3,
.contact-section .info-container .contact-info h3 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 4px;
}

.contact-info .media-body h3 a,
.contact-section .info-container .contact-info h3 a {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.contact-info .media-body h3 a:hover,
.contact-section .info-container .contact-info h3 a:hover {
    color: #fdd505 !important;
}

.contact-info .media-body p,
.contact-section .info-container .contact-info p {
    color: #a0a0c5 !important;
    font-size: 0.9rem !important;
    margin: 0;
}

.contact-map {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    filter: grayscale(0.15) contrast(1.05);
}

.contact-map iframe {
    display: block;
}

/* --------------------------------------------------------------------------
   7. FORM CONTROLS & SIDEBAR (.form-contact, .sticky-div)
   -------------------------------------------------------------------------- */
.form-contact .form-control {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.form-contact .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.form-contact .form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #ea0010 !important;
    box-shadow: 0 0 0 4px rgba(234, 0, 16, 0.25) !important;
    outline: none !important;
}

.sticky-div {
    background: linear-gradient(160deg, rgba(22, 22, 38, 0.92) 0%, rgba(12, 12, 22, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
}

.h3-form {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.h3-form i {
    color: #fdd505;
}

/* --------------------------------------------------------------------------
   8. SITEMAP PAGE & TYPOGRAPHY (.map-site, .int-typography)
   -------------------------------------------------------------------------- */
.map-site {
    background-color: #0b0b14 !important;
}

.map-site ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-site ul li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.map-site ul li:hover {
    background: rgba(234, 0, 16, 0.09);
    border-color: rgba(234, 0, 16, 0.35);
    transform: translateX(6px);
}

.map-site ul li i {
    color: #00a3fa;
    font-size: 0.9rem;
}

.map-site ul li a {
    color: #e0e0f0 !important;
    font-weight: 600;
    text-transform: capitalize;
}

.map-site ul li a:hover {
    color: #fdd505 !important;
}

.map-site__intro {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.map-site__intro h1,
.map-site__intro h2 {
    font-family: "Bowlby One", sans-serif !important;
    color: #ffffff !important;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 10px;
}

.map-site__intro p {
    color: #a0a0c5 !important;
    font-size: 1rem;
    margin: 0;
}

.map-site__panel {
    height: 100%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.75) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 32px;
}

.map-site__panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px !important;
}

.map-site__panel-title i {
    color: #fdd505;
}

@media (max-width: 767px) {
    .map-site__panel {
        padding: 24px;
        margin-bottom: 20px;
    }
}

.int-typography h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 5px;
    background: linear-gradient(180deg, #ea0010, #fdd505);
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   9. BENTO / BLOCKED PRODUCT SINGLE LAYOUT (.bento-product-section)
   -------------------------------------------------------------------------- */
.bento-product-section {
    background-color: #070710 !important;
    padding: 60px 0;
}

.bento-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.85) 100%) !important;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(234, 0, 16, 0.4) !important;
    box-shadow: 0 20px 45px rgba(234, 0, 16, 0.25), 0 0 25px rgba(0, 163, 250, 0.12) !important;
}

.bento-header-card {
    padding: 24px 32px !important;
    background: linear-gradient(135deg, rgba(234, 0, 16, 0.15) 0%, rgba(18, 18, 30, 0.9) 60%, rgba(0, 163, 250, 0.1) 100%) !important;
}

.bento-product-title {
    font-family: "Bowlby One", sans-serif !important;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem) !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(234, 0, 16, 0.4);
    letter-spacing: -0.01em;
}

.bento-tag-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge-red {
    background: rgba(234, 0, 16, 0.2) !important;
    border: 1px solid rgba(234, 0, 16, 0.45) !important;
    color: #ffffff !important;
}

.badge-gold {
    background: rgba(253, 213, 5, 0.15) !important;
    border: 1px solid rgba(253, 213, 5, 0.45) !important;
    color: #fdd505 !important;
}

.badge-blue {
    background: rgba(0, 163, 250, 0.15) !important;
    border: 1px solid rgba(0, 163, 250, 0.45) !important;
    color: #00a3fa !important;
}

.bento-card-label {
    color: #fdd505 !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

.bento-card-title,
.bento-section-heading,
.bento-section-subheading {
    font-family: "Bowlby One", sans-serif !important;
    background: linear-gradient(120deg, #ea0010, #ff89c6, #fdd505, #00a3fa, #ff89c6, #ea0010) !important;
    background-size: 200% auto !important;
    background-position: 0% 50% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: text-gradient-disney-flow 5s linear infinite !important;
    font-weight: 700 !important;
}

.bento-card-title i,
.bento-section-heading i,
.bento-section-subheading i {
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

.bento-card-title {
    font-size: 1.5rem !important;
}

.bento-section-heading {
    font-size: 1.4rem !important;
}

.bento-section-subheading {
    font-size: 1.25rem !important;
}

.bento-desc-text {
    color: #e2e8f0 !important; /* High contrast silver-white */
    font-size: 1.02rem !important;
    line-height: 1.7 !important;
}

.bento-mini-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 14px;
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 600;
}

.bento-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media(max-width: 768px) {
    .bento-spec-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.bento-spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(234, 0, 16, 0.15);
    border: 1px solid rgba(234, 0, 16, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea0010;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bento-spec-icon.icon-gold {
    background: rgba(253, 213, 5, 0.15);
    border-color: rgba(253, 213, 5, 0.3);
    color: #fdd505;
}

.bento-spec-icon.icon-blue {
    background: rgba(0, 163, 250, 0.15);
    border-color: rgba(0, 163, 250, 0.3);
    color: #00a3fa;
}

.bento-spec-icon.icon-red {
    background: rgba(234, 0, 16, 0.15);
    border-color: rgba(234, 0, 16, 0.3);
    color: #ea0010;
}

.bento-spec-info {
    display: flex;
    flex-direction: column;
}

.bento-spec-title {
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.bento-spec-val {
    color: #ffffff !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
}

.bento-feature-title {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.bento-feature-desc {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0;
}

.bento-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.icon-box-red {
    background: linear-gradient(135deg, rgba(234,0,16,0.25), rgba(234,0,16,0.1)) !important;
    border: 1px solid rgba(234,0,16,0.4) !important;
    color: #ea0010 !important;
}

.icon-box-gold {
    background: linear-gradient(135deg, rgba(253,213,5,0.25), rgba(253,213,5,0.1)) !important;
    border: 1px solid rgba(253,213,5,0.4) !important;
    color: #fdd505 !important;
}

.icon-box-blue {
    background: linear-gradient(135deg, rgba(0,163,250,0.25), rgba(0,163,250,0.1)) !important;
    border: 1px solid rgba(0,163,250,0.4) !important;
    color: #00a3fa !important;
}

.bento-checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-check-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.bento-check-item:hover {
    background: rgba(234, 0, 16, 0.08);
    border-color: rgba(234, 0, 16, 0.3);
    transform: translateX(6px);
}

.bento-check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(253, 213, 5, 0.15);
    border: 1px solid rgba(253, 213, 5, 0.4);
    color: #fdd505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bento-check-content {
    color: #e2e8f0 !important;
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
}

.bento-check-content strong {
    color: #ffffff !important;
}

.border-top-glass {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-content-block .seo-article {
    padding: 32px 36px !important;
}

.seo-content-block .seo-article__intro {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
}

.seo-content-block .seo-article__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .seo-content-block .seo-article {
        padding: 24px 20px !important;
    }
}

.bento-sidebar-subtitle {
    color: #94a3b8 !important;
    font-size: 0.88rem !important;
}

/* --------------------------------------------------------------------------
   10. LEGAL / LONG-FORM PROSE PAGES (.legal-page)
   -------------------------------------------------------------------------- */
.legal-page {
    background-color: #0b0b14 !important;
}

.legal-page__card {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.75) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 44px;
}

.legal-page__updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fdd505 !important;
    background: rgba(253, 213, 5, 0.1);
    border: 1px solid rgba(253, 213, 5, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1.75rem !important;
}

.legal-page__card > p {
    color: #c0c0d5 !important;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.legal-page__card h2 {
    position: relative;
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 18px;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
}

.legal-page__card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, #ea0010, #fdd505);
    border-radius: 4px;
}

.legal-page__card h2:first-of-type {
    margin-top: 0.5rem;
}

.legal-page__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding: 18px 22px;
    background: rgba(234, 0, 16, 0.08);
    border: 1px solid rgba(234, 0, 16, 0.25);
    border-radius: 16px;
    color: #e2e8f0 !important;
    font-size: 0.95rem;
}

.legal-page__contact i {
    color: #fdd505;
    font-size: 1.1rem;
}

.legal-page__contact a {
    color: #fdd505 !important;
    font-weight: 700;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   11. OBRIGADO / CONFIRMATION PAGE (.confirm-page)
   -------------------------------------------------------------------------- */
.confirm-page {
    background-color: #0b0b14 !important;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.confirm-page__card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.75) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 56px 40px;
}

.confirm-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 186, 89, 0.25), rgba(34, 186, 89, 0.08));
    border: 1px solid rgba(34, 186, 89, 0.45);
    color: #22ba59;
    font-size: 2.1rem;
}

.confirm-page__card h2 {
    font-family: "Bowlby One", sans-serif !important;
    color: #ffffff !important;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 14px;
}

.confirm-page__card p {
    color: #c0c0d5 !important;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.confirm-page__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .legal-page__card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .confirm-page__card {
        padding: 40px 24px;
    }
}

/* --------------------------------------------------------------------------
   8. MODERN BLOG MAGAZINE PORTAL LAYOUT (.blog-v2-*)
   -------------------------------------------------------------------------- */
.blog-wp-page {
    background-color: #0b0b14 !important;
}

.blog-page {
    background:
        radial-gradient(ellipse at 15% 10%, rgba(234, 0, 16, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 60%, rgba(0, 163, 250, 0.12) 0%, transparent 50%),
        #0b0b14 !important;
}

/* Category Filter Switcher */
.blog-v2-filter-bar {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 12px 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 18, 30, 0.7) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.blog-v2-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-v2-filter-btn:hover {
    background: rgba(254, 213, 5, 0.15);
    border-color: rgba(254, 213, 5, 0.4);
    color: #fdd505;
    transform: translateY(-2px);
}

.blog-v2-filter-btn.is-active {
    background: linear-gradient(135deg, #ea0010 0%, #b3000c 100%);
    border-color: #ea0010;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(234, 0, 16, 0.45);
}

/* Magazine Hero Featured Banner Card */
.blog-v2-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #06060c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.blog-v2-hero-card:hover {
    border-color: rgba(234, 0, 16, 0.5);
    box-shadow: 
        0 25px 50px -15px rgba(234, 0, 16, 0.4),
        0 0 30px rgba(0, 163, 250, 0.2);
    transform: translateY(-4px);
}

.blog-v2-hero-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.blog-v2-hero-card:hover .blog-v2-hero-card__bg {
    transform: scale(1.05);
}

.blog-v2-hero-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 6, 12, 0.2) 0%, rgba(6, 6, 12, 0.75) 50%, rgba(11, 11, 20, 0.98) 100%);
    z-index: 2;
}

.blog-v2-hero-card__content {
    position: relative;
    z-index: 3;
    padding: 36px;
    width: 100%;
}

.blog-v2-hero-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ea0010 0%, #b3000c 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(234, 0, 16, 0.4);
    margin-bottom: 16px;
}

.blog-v2-hero-card__title {
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.3;
    margin-bottom: 14px;
}

.blog-v2-hero-card__title a {
    font-family: "Bowlby One", sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-v2-hero-card:hover .blog-v2-hero-card__title a {
    color: #fdd505;
}

.blog-v2-hero-card__excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.blog-v2-hero-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-v2-hero-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Standard Blog Cards V2 */
.blog-v2-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.8) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-v2-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 0, 16, 0.5);
    box-shadow: 
        0 20px 45px -15px rgba(234, 0, 16, 0.35),
        0 0 25px rgba(0, 163, 250, 0.15);
}

.blog-v2-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #06060c;
}

.blog-v2-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-v2-card:hover .blog-v2-card__img {
    transform: scale(1.07);
}

.blog-v2-card__date-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(11, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fdd505;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.blog-v2-card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-v2-card__category-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(234, 0, 16, 0.15);
    border: 1px solid rgba(234, 0, 16, 0.35);
    border-radius: 50px;
    color: #ea0010;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-bottom: 12px;
}

.blog-v2-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-v2-card__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-v2-card:hover .blog-v2-card__title a {
    color: #fdd505;
}

/* Single Post Magazine Styling */
.blog-v2-single-cover {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 28px;
}

.blog-v2-single-cover img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-v2-single-title {
    font-family: "Bowlby One", sans-serif !important;
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
}

.blog-v2-single-lead {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

.blog-v2-single-content {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.85) 100%) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 24px !important;
    padding: 36px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 30px;
}

.blog-v2-single-content h2 {
    font-family: "Bowlby One", sans-serif !important;
    font-size: clamp(1.3rem, 2.2vw, 1.6rem) !important;
    line-height: 1.35 !important;
    color: #ffffff !important;
    margin: 2.2rem 0 1rem !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.blog-v2-single-content h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem) !important;
    font-weight: 700 !important;
    color: #fdd505 !important;
    margin: 1.8rem 0 0.8rem !important;
}

.blog-v2-single-content h4 {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #00a3fa !important;
    margin: 1.4rem 0 0.6rem !important;
}

.blog-v2-single-content p,
.blog-v2-single-content li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
}

.blog-v2-single-content a {
    color: #00a3fa !important;
    text-decoration: underline;
    transition: color 0.25s ease;
}

.blog-v2-single-content a:hover {
    color: #fdd505 !important;
}

.blog-v2-card__excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-v2-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: auto;
}

.blog-v2-card__reading-time {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-v2-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-v2-card:hover .blog-v2-card__link,
.blog-v2-card__link:hover {
    color: #fdd505;
}

.blog-v2-card:hover .blog-v2-card__link i,
.blog-v2-card__link:hover i {
    transform: translateX(4px);
}

/* Sidebar V2 Widgets */
.blog-v2-widget {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.85) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.blog-v2-widget__title {
    font-family: "Bowlby One", sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Numbered Popular Posts */
.blog-v2-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-v2-popular-item a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-v2-popular-item a:hover {
    background: rgba(254, 213, 5, 0.08);
    border-color: rgba(254, 213, 5, 0.3);
    transform: translateX(4px);
}

.blog-v2-popular-num {
    font-family: "Bowlby One", sans-serif;
    font-size: 1.2rem;
    color: rgba(234, 0, 16, 0.8);
    line-height: 1;
    min-width: 24px;
    transition: color 0.3s ease;
}

.blog-v2-popular-item a:hover .blog-v2-popular-num {
    color: #fdd505;
}

.blog-v2-popular-text {
    display: flex;
    flex-direction: column;
}

.blog-v2-popular-title {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-v2-popular-item a:hover .blog-v2-popular-title {
    color: #fdd505;
}

.blog-v2-popular-date {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* Sidebar CTA Widget */
.blog-v2-widget--cta {
    background: linear-gradient(145deg, rgba(234, 0, 16, 0.22) 0%, rgba(18, 18, 30, 0.9) 100%);
    border-color: rgba(234, 0, 16, 0.4);
    text-align: center;
}

.blog-v2-widget--cta .blog-v2-widget__title {
    color: #fdd505;
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-v2-widget--cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Pagination Glassmorphism V2 */
.blog-v2-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding: 10px 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 18, 30, 0.75) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.blog-v2-pagination__btn,
.blog-v2-pagination__num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.blog-v2-pagination__num.is-active {
    background: linear-gradient(135deg, #ea0010 0%, #b3000c 100%) !important;
    border-color: #ea0010 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(234, 0, 16, 0.45) !important;
}

.blog-v2-pagination__num:not(.is-active):hover,
.blog-v2-pagination__btn:not(.is-disabled):hover {
    background: rgba(254, 213, 5, 0.15) !important;
    border-color: rgba(254, 213, 5, 0.4) !important;
    color: #fdd505 !important;
    transform: translateY(-2px) !important;
}

.blog-v2-pagination__btn.is-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.blog-v2-pagination__dots {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 700 !important;
    padding: 0 4px !important;
}

/* --------------------------------------------------------------------------
   Modern Glassmorphic Accordion System (.blog-wp-accordion)
   -------------------------------------------------------------------------- */
.blog-wp-accordion {
    margin-bottom: 24px !important;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 18, 30, 0.85) 100%) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.blog-wp-accordion:hover {
    border-color: rgba(234, 0, 16, 0.4) !important;
    box-shadow: 0 12px 35px rgba(234, 0, 16, 0.25) !important;
}

.blog-wp-accordion__trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    position: relative !important;
    padding: 18px 24px !important;
    border: none !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: "Bowlby One", sans-serif !important;
    font-size: 1.05rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.blog-wp-accordion__trigger:hover {
    color: #fdd505 !important;
    background: rgba(254, 213, 5, 0.04) !important;
}

.blog-wp-accordion__title {
    color: inherit !important;
}

.blog-wp-accordion__icon {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.blog-wp-accordion__icon::before {
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    color: #fdd505 !important;
    transition: transform 0.3s ease !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
}

.blog-wp-accordion__icon::after {
    display: none !important;
}

.blog-wp-accordion__trigger[aria-expanded="true"] .blog-wp-accordion__icon {
    background: rgba(234, 0, 16, 0.2) !important;
    border-color: rgba(234, 0, 16, 0.5) !important;
}

.blog-wp-accordion__trigger[aria-expanded="true"] .blog-wp-accordion__icon::before {
    transform: rotate(180deg) !important;
    color: #ffffff !important;
}

.blog-wp-accordion__panel {
    padding: 20px 24px 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.blog-wp-accordion__panel[hidden] {
    display: none !important;
}

/* Accordion Summary List */
.blog-wp-accordion__list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.blog-wp-accordion__list li {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    padding-left: 28px !important;
    position: relative !important;
}

.blog-wp-accordion__list li::before {
    content: "\f058" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    color: #ea0010 !important;
    font-size: 0.95rem !important;
}

/* Accordion Table of Contents (TOC) Links */
.blog-wp-accordion__toc {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.blog-wp-accordion__toc-item--h2 {
    margin-bottom: 8px !important;
}

.blog-wp-accordion__toc-link {
    display: inline-flex !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: 0.96rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
}

.blog-wp-accordion__toc-link:hover {
    color: #fdd505 !important;
    background: rgba(254, 213, 5, 0.08) !important;
    transform: translateX(4px) !important;
}

.blog-wp-accordion__toc-sub {
    margin: 8px 0 8px 16px !important;
    padding-left: 16px !important;
    border-left: 2px solid rgba(234, 0, 16, 0.4) !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.blog-wp-accordion__toc-item--h3 .blog-wp-accordion__toc-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.blog-wp-accordion__toc-item--h3 .blog-wp-accordion__toc-link:hover {
    color: #fdd505 !important;
}

/* Accordion Tags */
.blog-wp-accordion__tags {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}



