/**
 * Elementor Widgets Custom Styles
 *
 * @package Augro_Fresh
 */

/* ==========================================================================
   Parallax Section Widget
   ========================================================================== */

.augrofresh-parallax-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* iOS fix - parallax no funciona bien en iOS */
@supports (-webkit-touch-callout: none) {
    .augrofresh-parallax-section {
        background-attachment: scroll;
    }
}

.augrofresh-parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Centrar contenido del parallax */
.augrofresh-parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.augrofresh-parallax-box {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--augrofresh-radius-xl, 16px);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.augrofresh-parallax-box h2,
.augrofresh-parallax-box h3 {
    color: var(--augrofresh-white, #ffffff);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.augrofresh-parallax-box p {
    color: var(--augrofresh-white, #ffffff);
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.augrofresh-parallax-box .augrofresh-btn {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Video Carousel Widget
   ========================================================================== */

.augrofresh-video-carousel {
    position: relative;
    padding: 0 60px;
}

.augrofresh-video-carousel-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.augrofresh-video-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Tarjetas de video */
.augrofresh-video-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .augrofresh-video-item {
        flex: 0 0 380px;
    }
}

/* Miniatura del video */
.augrofresh-video-thumbnail {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.augrofresh-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.augrofresh-video-item:hover .augrofresh-video-thumbnail img {
    transform: scale(1.05);
}

/* Overlay negro - cubre toda el área */
.augrofresh-video-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background-color 0.3s ease;
}

.augrofresh-video-item:hover .augrofresh-video-play {
    background: rgba(0, 0, 0, 0.5);
}

/* Botón de play centrado */
.augrofresh-video-play-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.augrofresh-video-item:hover .augrofresh-video-play-icon {
    transform: scale(1.1);
    background: #e5c349;
}

.augrofresh-video-play-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 4px; /* Ajuste visual para centrar el triángulo */
}

/* Título del video */
.augrofresh-video-title {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* ==========================================================================
   Video Carousel - Flechas de Navegación
   ========================================================================== */

.augrofresh-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.augrofresh-carousel-arrow:hover {
    background: #D4AF37;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.augrofresh-carousel-arrow:active {
    transform: translateY(-70%) scale(0.95);
}

.augrofresh-carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.augrofresh-carousel-prev {
    left: 0;
}

.augrofresh-carousel-next {
    right: 0;
}

/* Ocultar flechas cuando no hay suficiente contenido */
.augrofresh-carousel-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive - Ocultar flechas en móvil */
@media (max-width: 767px) {
    .augrofresh-video-carousel {
        padding: 0 1rem;
    }
    
    .augrofresh-carousel-arrow {
        display: none;
    }
    
    .augrofresh-video-item {
        flex: 0 0 280px;
    }
}

/* ==========================================================================
   Feature Card Widget
   ========================================================================== */

.augrofresh-elementor-feature-card {
    background: var(--augrofresh-white, #ffffff);
    padding: 2rem;
    border-radius: var(--augrofresh-radius-xl, 16px);
    box-shadow: var(--augrofresh-shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--augrofresh-gray-200, #e5e7eb);
    height: 100%;
}

.augrofresh-elementor-feature-card:hover {
    box-shadow: var(--augrofresh-shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.augrofresh-elementor-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--augrofresh-gold-primary, #D4AF37), var(--augrofresh-gold-light, #e5c349));
    border-radius: var(--augrofresh-radius-lg, 12px);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.augrofresh-elementor-feature-card:hover .augrofresh-elementor-feature-icon {
    transform: scale(1.1);
}

.augrofresh-elementor-feature-icon i,
.augrofresh-elementor-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--augrofresh-white, #ffffff);
}

.augrofresh-elementor-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--augrofresh-black-primary, #1a1a1a);
}

.augrofresh-elementor-feature-description {
    font-size: 0.9375rem;
    color: var(--augrofresh-gray-600, #525252);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   Gallery Filter Widget
   ========================================================================== */

.augrofresh-gallery {
    /* Container */
}

.augrofresh-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.augrofresh-gallery-filter {
    padding: 0.75rem 1.5rem;
    background: var(--augrofresh-gray-100, #f3f4f6);
    border: none;
    border-radius: var(--augrofresh-radius-lg, 12px);
    font-family: var(--augrofresh-font-family, 'Montserrat', sans-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--augrofresh-gray-800, #1f2937);
    cursor: pointer;
    transition: all 0.2s ease;
}

.augrofresh-gallery-filter:hover,
.augrofresh-gallery-filter.active {
    background: var(--augrofresh-gold-primary, #D4AF37);
    color: var(--augrofresh-white, #ffffff);
    box-shadow: var(--augrofresh-shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.augrofresh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .augrofresh-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.augrofresh-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--augrofresh-radius-lg, 12px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--augrofresh-shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.augrofresh-gallery-item:hover {
    box-shadow: var(--augrofresh-shadow-2xl, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

.augrofresh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.augrofresh-gallery-item:hover img {
    transform: scale(1.1);
}

.augrofresh-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.augrofresh-gallery-item:hover .augrofresh-gallery-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.augrofresh-gallery-zoom {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--augrofresh-white, #ffffff);
    border-radius: var(--augrofresh-radius-full, 9999px);
    color: var(--augrofresh-black-primary, #1a1a1a);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.augrofresh-gallery-item:hover .augrofresh-gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Lightbox */
.augrofresh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.augrofresh-lightbox.active {
    display: flex;
}

.augrofresh-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--augrofresh-radius-full, 9999px);
    color: var(--augrofresh-white, #ffffff);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.augrofresh-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.augrofresh-lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--augrofresh-radius-lg, 12px);
}

.augrofresh-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--augrofresh-radius-full, 9999px);
    color: var(--augrofresh-white, #ffffff);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.augrofresh-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.augrofresh-lightbox-prev {
    left: 1rem;
}

.augrofresh-lightbox-next {
    right: 1rem;
}

.augrofresh-lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--augrofresh-radius-full, 9999px);
    color: var(--augrofresh-white, #ffffff);
    font-size: 0.875rem;
}

/* ==========================================================================
   Stats Counter Widget
   ========================================================================== */

.augrofresh-stats-counter {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--augrofresh-gray-50, #f9fafb), var(--augrofresh-white, #ffffff));
    border-radius: var(--augrofresh-radius-xl, 16px);
    box-shadow: var(--augrofresh-shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.augrofresh-stats-counter:hover {
    box-shadow: var(--augrofresh-shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
}

.augrofresh-stats-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--augrofresh-gold-primary, #D4AF37), var(--augrofresh-gold-light, #e5c349));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.augrofresh-stats-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--augrofresh-black-primary, #1a1a1a);
    margin-bottom: 0.25rem;
}

.augrofresh-stats-sublabel {
    font-size: 0.9375rem;
    color: var(--augrofresh-gray-600, #525252);
}

/* ==========================================================================
   Section Title Widget
   ========================================================================== */

.augrofresh-elementor-section-title {
    margin-bottom: 3rem;
}

.augrofresh-elementor-section-title.centered {
    text-align: center;
}

.augrofresh-elementor-section-title h2 {
    font-size: 2.25rem;
    color: var(--augrofresh-black-primary, #1a1a1a);
    margin-bottom: 1rem;
}

.augrofresh-elementor-title-line {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--augrofresh-gold-primary, #D4AF37), var(--augrofresh-gold-light, #e5c349));
    margin-bottom: 1rem;
}

.augrofresh-elementor-section-title.centered .augrofresh-elementor-title-line {
    margin-left: auto;
    margin-right: auto;
}

.augrofresh-elementor-subtitle {
    font-size: 1.125rem;
    color: var(--augrofresh-gray-600, #525252);
    max-width: 600px;
}

.augrofresh-elementor-section-title.centered .augrofresh-elementor-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Contact Info Widget
   ========================================================================== */

.augrofresh-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--augrofresh-gray-50, #f9fafb);
    border-radius: var(--augrofresh-radius-lg, 12px);
    transition: background-color 0.2s ease;
}

.augrofresh-contact-info-item:hover {
    background: var(--augrofresh-gray-100, #f3f4f6);
}

.augrofresh-contact-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--augrofresh-gold-primary, #D4AF37);
    border-radius: var(--augrofresh-radius-lg, 12px);
    color: var(--augrofresh-white, #ffffff);
}

.augrofresh-contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.augrofresh-contact-info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--augrofresh-black-primary, #1a1a1a);
}

.augrofresh-contact-info-content p,
.augrofresh-contact-info-content a {
    font-size: 0.9375rem;
    color: var(--augrofresh-gray-600, #525252);
    margin: 0;
}

.augrofresh-contact-info-content a {
    color: var(--augrofresh-gold-primary, #D4AF37);
    transition: color 0.2s ease;
}

.augrofresh-contact-info-content a:hover {
    color: var(--augrofresh-gold-dark, #b8972e);
}

/* ==========================================================================
   Certification Card Widget
   ========================================================================== */

.augrofresh-certification-card {
    background: linear-gradient(135deg, var(--augrofresh-gray-50, #f9fafb), var(--augrofresh-white, #ffffff));
    padding: 1.5rem;
    border-radius: var(--augrofresh-radius-lg, 12px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.augrofresh-certification-card:hover {
    border-color: var(--augrofresh-gold-primary, #D4AF37);
    box-shadow: var(--augrofresh-shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.augrofresh-certification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.augrofresh-certification-icon {
    color: var(--augrofresh-green-primary, #4a7c2c);
}

.augrofresh-certification-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.augrofresh-certification-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--augrofresh-black-primary, #1a1a1a);
    margin: 0;
}

.augrofresh-certification-description {
    font-size: 0.9375rem;
    color: var(--augrofresh-gray-600, #525252);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Utilidades de Imagen - Clases para Elementor
   ========================================================================== */

/* Imagen vertical estándar (4:5) */
.augrofresh-vertical-image .elementor-widget-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Imagen vertical más alta (2:3) */
.augrofresh-vertical-image-tall .elementor-widget-image img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Imagen vertical muy alta (3:4) */
.augrofresh-vertical-image-taller .elementor-widget-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Imagen horizontal (16:9) */
.augrofresh-horizontal-image .elementor-widget-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Imagen cuadrada (1:1) */
.augrofresh-square-image .elementor-widget-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Imagen con sombra */
.augrofresh-image-shadow .elementor-widget-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Imagen redondeada extra */
.augrofresh-image-rounded .elementor-widget-image img {
    border-radius: 24px;
}

/* ==========================================================================
   Hero Slider Widget
   ========================================================================== */

.augrofresh-hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

/* Slides Container */
.augrofresh-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.augrofresh-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.augrofresh-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Overlay */
.augrofresh-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Content Container */
.augrofresh-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Position Variants */
.augrofresh-hero-content-left {
    justify-content: flex-start;
}

.augrofresh-hero-content-center {
    justify-content: center;
    text-align: center;
}

.augrofresh-hero-content-right {
    justify-content: flex-end;
}

/* Content Box with Blur */
.augrofresh-hero-content-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    max-width: 550px;
    border-left: 4px solid #D4AF37;
    animation: slideInContent 0.8s ease-out 0.3s both;
}

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

.augrofresh-hero-slide:not(.active) .augrofresh-hero-content-box {
    animation: none;
    opacity: 0;
}

/* Badge */
.augrofresh-hero-badge {
    display: inline-block;
    background: #D4AF37;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

/* Title */
.augrofresh-hero-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .augrofresh-hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .augrofresh-hero-title {
        font-size: 3rem;
    }
}

/* Subtitle */
.augrofresh-hero-subtitle {
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .augrofresh-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Button */
.augrofresh-hero-button {
    display: inline-block;
    background: #D4AF37;
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.augrofresh-hero-button:hover {
    background: #e5c349;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Navigation Arrows */
.augrofresh-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.augrofresh-hero-arrow:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #1a1a1a;
}

.augrofresh-hero-arrow svg {
    width: 24px;
    height: 24px;
}

.augrofresh-hero-prev {
    left: 1.5rem;
}

.augrofresh-hero-next {
    right: 1.5rem;
}

@media (min-width: 1024px) {
    .augrofresh-hero-prev {
        left: 2.5rem;
    }

    .augrofresh-hero-next {
        right: 2.5rem;
    }
}

/* Hide arrows on mobile */
@media (max-width: 767px) {
    .augrofresh-hero-arrow {
        width: 44px;
        height: 44px;
    }
    
    .augrofresh-hero-prev {
        left: 0.75rem;
    }

    .augrofresh-hero-next {
        right: 0.75rem;
    }
}

/* Dots Navigation */
.augrofresh-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.augrofresh-hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.augrofresh-hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.augrofresh-hero-dot.active {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.2);
}

/* Progress bar variant for dots (optional) */
.augrofresh-hero-dots.progress-style .augrofresh-hero-dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
}

.augrofresh-hero-dots.progress-style .augrofresh-hero-dot.active {
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .augrofresh-hero-slider {
        height: 100vh;
        min-height: 600px;
    }

    .augrofresh-hero-content {
        padding: 1.5rem;
        align-items: flex-end;
        padding-bottom: 6rem;
    }

    .augrofresh-hero-content-box {
        padding: 1.5rem;
        max-width: 100%;
        border-left-width: 3px;
    }

    .augrofresh-hero-badge {
        font-size: 0.6875rem;
        padding: 0.5rem 1rem;
    }

    .augrofresh-hero-title {
        font-size: 1.75rem;
    }

    .augrofresh-hero-subtitle {
        font-size: 0.9375rem;
    }

    .augrofresh-hero-dots {
        bottom: 1.5rem;
    }
}

/* ==========================================================================
   Objective Card Widget (Zigzag Layout)
   ========================================================================== */

.augrofresh-objective-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.augrofresh-objective-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Layout variations */
.augrofresh-objective-image-right {
    grid-template-columns: 1fr 1fr;
}

.augrofresh-objective-image-right .augrofresh-objective-content {
    order: 1;
}

.augrofresh-objective-image-right .augrofresh-objective-image {
    order: 2;
}

.augrofresh-objective-image-left {
    grid-template-columns: 1fr 1fr;
}

.augrofresh-objective-image-left .augrofresh-objective-content {
    order: 2;
}

.augrofresh-objective-image-left .augrofresh-objective-image {
    order: 1;
}

/* Content Column */
.augrofresh-objective-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Header with number, icon and title */
.augrofresh-objective-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

/* Number */
.augrofresh-objective-number {
    font-size: 5rem;
    font-weight: 200;
    line-height: 1;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    pointer-events: none;
}

/* Icon */
.augrofresh-objective-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    color: #D4AF37;
    margin-left: 3rem;
    z-index: 1;
}

.augrofresh-objective-icon svg,
.augrofresh-objective-icon i-lucide {
    width: 24px;
    height: 24px;
}

/* Title */
.augrofresh-objective-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    padding-top: 0.5rem;
}

/* Description */
.augrofresh-objective-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    margin-left: 3rem;
}

/* Quote box */
.augrofresh-objective-quote {
    background: #f8f8f8;
    border-left: 4px solid #D4AF37;
    padding: 1rem 1.25rem;
    margin-left: 3rem;
    border-radius: 0 12px 12px 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
}

/* Image Column */
.augrofresh-objective-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.augrofresh-objective-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.augrofresh-objective-card:hover .augrofresh-objective-image img {
    transform: scale(1.03);
}

/* Watermark */
.augrofresh-objective-watermark {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.9;
}

/* Alignment variations */
.augrofresh-objective-align-center .augrofresh-objective-content {
    text-align: center;
}

.augrofresh-objective-align-center .augrofresh-objective-header {
    flex-direction: column;
    align-items: center;
}

.augrofresh-objective-align-center .augrofresh-objective-number {
    position: static;
    margin-bottom: -2rem;
}

.augrofresh-objective-align-center .augrofresh-objective-icon {
    margin-left: 0;
}

.augrofresh-objective-align-center .augrofresh-objective-description,
.augrofresh-objective-align-center .augrofresh-objective-quote {
    margin-left: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .augrofresh-objective-card {
        gap: 2rem;
        padding: 2rem;
    }

    .augrofresh-objective-number {
        font-size: 4rem;
    }

    .augrofresh-objective-title {
        font-size: 1.375rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .augrofresh-objective-card,
    .augrofresh-objective-image-left,
    .augrofresh-objective-image-right {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    /* On mobile, always show image first, then content */
    .augrofresh-objective-image-left .augrofresh-objective-content,
    .augrofresh-objective-image-right .augrofresh-objective-content {
        order: 2;
    }

    .augrofresh-objective-image-left .augrofresh-objective-image,
    .augrofresh-objective-image-right .augrofresh-objective-image {
        order: 1;
    }

    .augrofresh-objective-number {
        font-size: 3.5rem;
        top: -0.5rem;
        left: 0;
    }

    .augrofresh-objective-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-left: 2.5rem;
    }

    .augrofresh-objective-title {
        font-size: 1.25rem;
    }

    .augrofresh-objective-description,
    .augrofresh-objective-quote {
        margin-left: 0;
    }

    .augrofresh-objective-image img {
        aspect-ratio: 16 / 10;
    }
}

/* Animation for Objective Card */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.augrofresh-objective-card.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}
