/* Keep previous Badge and Review styles... */

.ox-top-badge {
    display: inline-block;
    background: rgba(46, 179, 152, 0.05);
    /* Very light brand color */
    border: 1.5px solid #2eb398;
    /* Zenvotic Teal */
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.ox-trust-container {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Delivery Line */
.ox-delivery-line {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.ox-dot {
    height: 8px;
    width: 8px;
    background-color: #2eb398;
    /* Your Brand Color */
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* Mini Checkmarks */
.ox-mini-features {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

/* The Yellow Guarantee Box */
.ox-guarantee-box {
    background: #fffbef;
    /* Light Warm Yellow */
    border: 1px dashed #eab308;
    /* Darker Yellow Dash */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.ox-guarantee-icon img {
    width: 50px;
    height: auto;
}

.ox-guarantee-content strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.ox-guarantee-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #444;
}

/* Payment Icons */
.ox-payment-icons {
    text-align: center;
    margin-top: 10px;
}

.ox-payment-icons img {
    max-width: 250px;
    height: auto;
}

.ox-stock-notice {
    display: flex;
    align-items: center;
    color: #e11d48;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
    background: #fff1f2;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
	width:fit-content;
}

.ox-pulse {
    width: 8px;
    height: 8px;
    background: #e11d48;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(225, 29, 72, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

/* Existing styles... */
/* --- FULL WIDTH TICKER BREAKOUT --- */
.ox-ticker-container.full-width-ticker {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(45deg, #2eb297, #006450) !important;
    /* Your Brand Teal */
    padding: 15px 0;
    overflow: hidden;
    z-index: 9;
}

.ox-ticker-track {
    display: flex;
    width: max-content;
    animation: ox-scroll-animation 30s linear infinite;
}

.ox-ticker-item {
    display: flex;
    align-items: center;
    padding: 0 60px;
    white-space: nowrap;
}

.ox-ticker-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Forces icons to white for contrast */
}

.ox-ticker-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Footer Safety Wrapper */
.ox-footer-ticker-spacer {
    margin-top: 40px;
    clear: both;
    display: block;
    width: 100%;
}

@keyframes ox-scroll-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Pause on hover */
.ox-ticker-container:hover .ox-ticker-track {
    animation-play-state: paused;
}

/* --- PROFESSIONAL REVIEW SLIDER --- */
/* --- OXIRA PREMIUM REVIEW SLIDER --- */
.ox-reviews-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.ox-header-stars {
    background: linear-gradient(45deg, #2eb297, #006450);
    /* Oxira green */
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ox-reviews-header h2 {
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 40px;
}

.ox-green-italic {
    color: #2eb297;
    font-style: italic;
    font-weight: 400;
}

.ox-slider-outer-wrap {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px;
}

.ox-reviews-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ox-reviews-slider-container::-webkit-scrollbar {
    display: none;
}

.ox-reviews-track {
    display: flex;
    gap: 25px;
}

.ox-review-card {
    flex: 0 0 calc(50% - 13px);
    /* 2 Slides on Desktop */
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.ox-review-main-img {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.ox-review-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ox-stars-row {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.ox-author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ox-v-badge {
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.ox-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* LAST PURCHASE BOX */
.ox-purchase-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ox-p-thumb {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.ox-p-info span {
    display: block;
}

.ox-p-name {
   display: block; 
    font-size: 13px; 
    font-weight: 700; 
    color: #000;
}

.ox-p-date {
    display: block; 
    font-size: 11px; 
    color: #888; 
    margin-top: 2px;
}

/* Navigation Buttons */
.ox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.ox-nav-btn:hover {
    background: #333;
}

.ox-prev {
    left: 5px;
}

.ox-next {
    right: 5px;
}

/* Mobile Optimization: 1 Slide */
@media (max-width: 768px) {
    .ox-slider-outer-wrap {
        padding: 0 15px;
    }

    .ox-review-card {
        flex: 0 0 92%;
    }

    .ox-nav-btn {
        display: none;
    }

    /* Better UX for mobile is swiping */
    .ox-review-main-img {
        height: 320px;
    }
}

/* --- COMPARISON SECTION --- */
.ox-comparison-section {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.ox-comp-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ox-comp-left,
.ox-comp-right {
    flex: 1;
}

.ox-comp-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #2eb297, #006450);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	  font-family: 'outfit';
	font-style:italic;
    text-align: left;
}

.ox-comp-feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(45deg, #2eb297, #006450);
    border: 1px solid #d4f2dd;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.ox-feature-img-box {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.ox-feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ox-feature-text h4 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 5px;
    color: #fff;
}

.ox-feature-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.ox-comp-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ox-comp-grid {
        flex-direction: column;
    }

    .ox-comp-right {
        order: -1;
        margin-bottom: 30px;
    }

    .ox-comp-title {
        text-align: center;
    }
}
