:root {
    --woolentor-white:#ffffff;
    --woolentor-primary-color: #2563eb;
    --woolentor-primary-hover: #1d4ed8;
    --woolentor-success-color: #10b981;
    --woolentor-warning-color: #f59e0b;
    --woolentor-danger-color: #ef4444;
    --woolentor-gray-50: #f9fafb;
    --woolentor-gray-100: #f3f4f6;
    --woolentor-gray-200: #e5e7eb;
    --woolentor-gray-300: #d1d5db;
    --woolentor-gray-400: #9ca3af;
    --woolentor-gray-500: #6b7280;
    --woolentor-gray-600: #4b5563;
    --woolentor-gray-700: #374151;
    --woolentor-gray-800: #1f2937;
    --woolentor-gray-900: #111827;
    --woolentor-border-radius: 12px;
    --woolentor-border-radius-sm: 8px;
    --woolentor-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --woolentor-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --woolentor-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --woolentor-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --woolentor-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --woolentor-transition-fast: all 0.15s ease;
}
.wp-embed-responsive .wp-block {
    outline: 0;
}
.woolentor-product-grid a{
    text-decoration: none !important;
}

/* Main Grid Container */
.woolentor-product-grid-modern {
    display: grid;
    gap: 25px;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    transition: all 0.3s ease;
}

/* Layout Mode Specific Containers */
.woolentor-product-grid-modern.woolentor-layout-grid {
    display: grid;
    grid-auto-rows: 1fr;
}

.woolentor-product-grid-modern.woolentor-layout-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Column Classes - Only for Grid Layout */
.woolentor-columns-1 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: 1fr;
}
.woolentor-columns-2 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: repeat(2, 1fr);
}
.woolentor-columns-3 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: repeat(3, 1fr);
}
.woolentor-columns-4 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: repeat(4, 1fr);
}
.woolentor-columns-5 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: repeat(5, 1fr);
}
.woolentor-columns-6 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
    grid-template-columns: repeat(6, 1fr);
}

/* Filter area */
.woolentor-product-filters {
    background: var(--woolentor-white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--woolentor-shadow-sm);
}
.woolentor-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.woolentor-view-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.woolentor-view-controls .woolentor-filter-sort .woocommerce-ordering{
    margin: 0;
}
.woolentor-view-controls .woolentor-filter-sort .woocommerce-ordering select.orderby{
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
}
.woolentor-layout-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 8px;
    background: #e5e7eb;
}
.woolentor-layout-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4b5563;
    padding: 0;
}
.woolentor-layout-btn:focus{
    background: transparent;
    color: #4b5563;
}
.woolentor-layout-btn.woolentor-active, .woolentor-layout-btn:hover {
    background: #2563eb;
    color: var(--woolentor-white);
}
.woolentor-layout-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Product Cards Base */
.woolentor-product-card {
    background: #ffffff;
    border-radius: var(--woolentor-border-radius);
    position: relative;
    transition: var(--woolentor-transition);
    border: 1px solid var(--woolentor-gray-200);
}

/* Product Item Container */
.woolentor-product-item {
    transition: all 0.3s ease;
}

/* Layout View Content Visibility Control */
.woolentor-grid-card .woolentor-list-view-content {
    display: none !important;
}

.woolentor-list-card .woolentor-grid-view-content {
    display: none !important;
}

.woolentor-grid-card .woolentor-grid-view-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.woolentor-list-card .woolentor-list-view-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

/* Grid Card Layout */
.woolentor-grid-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
}

/* List Card Layout */
.woolentor-list-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 200px;
    padding: 20px;
    box-shadow: var(--woolentor-shadow-sm);
}

/* Card Hover Effects */
.woolentor-card-hover-lift .woolentor-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.woolentor-card-hover-scale .woolentor-product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.woolentor-card-hover-shadow .woolentor-product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image Hover Effects */
.woolentor-image-hover-zoom .woolentor-product-image img:hover,
.woolentor-image-hover-zoom .woolentor-product-image .woolentor-product-img:hover {
    transform: scale(1.1);
}

.woolentor-image-hover-fade .woolentor-product-image:hover img,
.woolentor-image-hover-fade .woolentor-product-image:hover .woolentor-product-img {
    opacity: 0.8;
}

.woolentor-image-hover-grayscale .woolentor-product-image img,
.woolentor-image-hover-grayscale .woolentor-product-image .woolentor-product-img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.woolentor-image-hover-grayscale .woolentor-product-image:hover img,
.woolentor-image-hover-grayscale .woolentor-product-image:hover .woolentor-product-img {
    filter: grayscale(0%);
}

/* Product Image Container */
.woolentor-product-image {
    position: relative;
    overflow: hidden;
}
.woolentor-product-secondary-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    width: 100%;
}
.woolentor-product-secondary-img a{
    width: 100%;
}
.woolentor-product-card:hover .woolentor-product-secondary-img {
    opacity: 1;
    visibility: visible;
    transform: scale(1.09);
}

/* Grid Image */
.woolentor-grid-card .woolentor-product-image {
    flex-shrink: 0;
    background: #f5f5f5;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}

.woolentor-grid-card .woolentor-product-image img,
.woolentor-grid-card .woolentor-product-image .woolentor-product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* List Image */
.woolentor-list-card .woolentor-product-image {
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: var(--woolentor-border-radius-sm);
    overflow: hidden;
    box-shadow: var(--woolentor-shadow-sm);
    width: 30%;
}

.woolentor-list-card .woolentor-product-image img,
.woolentor-list-card .woolentor-product-image .woolentor-product-img {
    width: 100%;
    object-fit: cover;
    transition: var(--woolentor-transition);
}

/* Badge System */
.woolentor-badges {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    left: 15px;
    top: 15px;
}

/* Badge Positions */
.woolentor-badge-pos-top-left .woolentor-badges {
    top: 12px;
    left: 12px;
}

.woolentor-badge-pos-top-right .woolentor-badges {
    top: 12px;
    right: 12px;
    left: auto;
}

.woolentor-badge-pos-top-center .woolentor-badges {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Badge Styles */
.woolentor-badge {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    color: #ffffff;
    display: inline-block;
    line-height: 1;
}

/* Badge Style Variants */
.woolentor-sale-badge {
    background: #e74c3c;
}

.woolentor-new-badge {
    background: #10b981;
}

.woolentor-trending-badge {
    background: #f59e0b;
}

.woolentor-badge-style-solid .woolentor-sale-badge {
    background: #e74c3c;
}

.woolentor-badge-style-solid .woolentor-new-badge {
    background: #10b981;
}

.woolentor-badge-style-solid .woolentor-trending-badge {
    background: #f59e0b;
}

.woolentor-badge-style-gradient .woolentor-sale-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 4px 8px rgba(238, 90, 36, 0.3);
}

.woolentor-badge-style-gradient .woolentor-new-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.woolentor-badge-style-gradient .woolentor-trending-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.woolentor-badge-style-outline .woolentor-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid;
    backdrop-filter: blur(8px);
}

.woolentor-badge-style-outline .woolentor-sale-badge {
    border-color: var(--woolentor-danger-color);
    color: var(--woolentor-danger-color);
}

.woolentor-badge-style-outline .woolentor-new-badge {
    border-color: var(--woolentor-success-color);
    color: var(--woolentor-success-color);
}

.woolentor-badge-style-outline .woolentor-trending-badge {
    border-color: var(--woolentor-warning-color);
    color: var(--woolentor-warning-color);
}

/* Quick Actions */
.woolentor-quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
    z-index: 15;
}

.woolentor-grid-card:hover .woolentor-quick-actions,
.woolentor-product-image:hover .woolentor-quick-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.woolentor-quick-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
}
.woolentor-quick-action a{
    color: #333;
    text-decoration: none;
}
.woolentor-quick-action svg{
    margin: 0;
}

.woolentor-quick-action:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.woolentor-quick-action svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #333;
    display: block;
}

/* Wishlist button integration styles */
.woolentor-quick-actions .woolentor-wishlist-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woolentor-quick-actions .woolentor-wishlist-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Style the wishlist elements from the function */
.woolentor-quick-actions .woolentor-wishlist-btn .wishlist,
.woolentor-quick-actions .woolentor-wishlist-btn .yith-wcwl-add-to-wishlist,
.woolentor-quick-actions .woolentor-wishlist-btn .tinvwl_add_to_wishlist_button {
    display: contents;
}

.woolentor-quick-actions .woolentor-wishlist-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

/* Hide tooltips in quick actions */
.woolentor-quick-actions .woolentor-wishlist-btn .ht-product-action-tooltip,
.woolentor-quick-actions .woolentor-wishlist-btn .wishsuite-tooltip,
.woolentor-quick-actions .woolentor-wishlist-btn span:not(svg *) {
    display: none !important;
}

/* Ensure SVG icons are properly sized */
.woolentor-quick-actions .woolentor-wishlist-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    color: currentColor;
    overflow: visible;
}

/* Hide loading spinners */
.woolentor-quick-actions .woolentor-wishlist-btn .ajax-loading,
.woolentor-quick-actions .woolentor-wishlist-btn .fa-spinner {
    display: none !important;
}

/* Quick view button styles */
.woolentor-style-modern .woolentor-quickview-btn,
.woolentor-style-modern .woolentorquickview{
    color: #333;
}
.woolentor-style-modern .woolentor-quickview-btn svg,
.woolentor-style-modern .woolentorquickview svg {
    width: 18px;
    height: 18px;
    display: block !important;
    color: currentColor !important;
    stroke: currentColor !important;
    fill: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
}

.woolentor-style-modern .woolentor-quickview-btn svg path,
.woolentor-style-modern .woolentor-quickview-btn svg circle,
.woolentor-style-modern .woolentorquickview svg path,
.woolentor-style-modern .woolentorquickview svg circle {
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure quick action buttons have proper text color */
.woolentor-quick-action.woolentorquickview {
    color: #333;
}

/* Product Content */
.woolentor-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Grid Content */
.woolentor-grid-card .woolentor-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1;
    width: 100%;
}

/* List Content */
.woolentor-list-card .woolentor-product-content {
    padding: 0;
}

.woolentor-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.woolentor-content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    width: 100%;
}

/* Product Title */
.woolentor-product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    color: var(--woolentor-gray-900);
}

/* Product Categories */
.woolentor-product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 4px;
}

.woolentor-product-category {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.woolentor-product-category:not(:first-child):before {
    content: '•';
    margin: 0 6px;
    color: #ddd;
}

.woolentor-product-category:hover {
    color: var(--woolentor-primary-color);
    text-decoration: none;
}

.woolentor-grid-card .woolentor-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.woolentor-grid-card .woolentor-product-categories {
    margin: 0 0 10px;
}

.woolentor-product-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--woolentor-transition-fast);
}

.woolentor-product-title a:hover {
    color: var(--woolentor-primary-color);
}

/* Product Description */
.woolentor-product-description {
    margin: 0;
}

.woolentor-product-description p {
    color: var(--woolentor-gray-600);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Product Features */
.woolentor-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
}

.woolentor-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--woolentor-gray-600);
    padding: 4px 8px;
    background: var(--woolentor-gray-50);
    border-radius: 16px;
}

.woolentor-feature svg {
    color: var(--woolentor-success-color);
    flex-shrink: 0;
}

/* Product Rating */
.woolentor-layout-grid .woolentor-product-rating{
    margin-bottom: 12px;
}
.woolentor-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.woolentor-product-stars {
    display: flex;
    gap: 2px;
}
.woolentor-product-stars .star{
    width: 14px;
    height: 14px;
    color: #fbbf24;
}
.woolentor-product-stars .star.empty {
    color: #e5e7eb;
}
.woolentor-product-stars .empty-half{
    transform: scale(0.80);
}

.woolentor-product-grid-modern .woolentor-review-count,
.woolentor-grid-card .woolentor-review-count {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    display: inline-block !important;
    line-height: 1;
    position: relative;
}
.woolentor-product-rating .rating-info .review-count{
    margin-left: 0;
}

/* Product Price */
.woolentor-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--woolentor-primary-color);
    margin: 8px 0;
}

.woolentor-grid-card .woolentor-product-price {
    font-size: 20px;
    align-items: center;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1f2937;
    gap: 8px;
}

.woolentor-grid-card .woolentor-product-price del {
    font-size: 16px;
    color: #9ca3af;
    font-weight: 400;
    margin: 0;
}

.woolentor-grid-card .woolentor-product-price ins {
    text-decoration: none;
    color: #1f2937;
}

.woolentor-discount-percentage {
    background: #fee2e2;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}


.woolentor-product-price del {
    color: var(--woolentor-gray-400);
    font-weight: 400;
    margin-right: 8px;
    font-size: 0.9em;
}

.woolentor-product-price ins {
    text-decoration: none;
}

/* Price and Stock Container */
.woolentor-price-stock {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 40%;
}
.woolentor-price-stock .woolentor-product-price{
    margin: 0;
}

/* Stock Status */
.woolentor-stock-status {
    font-size: 13px;
    font-weight: 500;
}

.woolentor-in-stock {
    color: var(--woolentor-success-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.woolentor-out-of-stock {
    color: var(--woolentor-danger-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.woolentor-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    animation: pulse 2s infinite;
}

.woolentor-out-of-stock .woolentor-stock-dot {
    animation: none;
    opacity: 0.6;
}

.woolentor-low-stock {
    color: var(--woolentor-warning-color);
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Quantity Selector */
.woolentor-quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--woolentor-gray-300);
    border-radius: var(--woolentor-border-radius-sm);
    overflow: hidden;
    width: fit-content;
}

.woolentor-qty-btn {
    background: var(--woolentor-gray-50);
    border: none;
    width: 32px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--woolentor-transition-fast);
    color: var(--woolentor-gray-600);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
}

.woolentor-qty-btn:hover {
    background: var(--woolentor-gray-200);
    color: var(--woolentor-gray-800);
}

.woolentor-qty-input {
    border: none;
    width: 50px !important;
    height: 32px !important;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    outline: none;
    line-height: 1;
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
}

.woolentor-qty-input::-webkit-outer-spin-button,
.woolentor-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woolentor-qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Product Actions */
.woolentor-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woolentor-grid-card .woolentor-product-actions {
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
}

/* Add to Cart Button */
.woolentor-list-card .woolentor-product-actions .woolentor-cart-btn, .woolentor-cart-btn, .woolentor-product-actions .button, .woolentor-product-actions .add_to_cart_button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--woolentor-border-radius-sm);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 5px;
}

.woolentor-product-actions .add_to_cart_button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-1px) !important;
}

.woolentor-grid-card .woolentor-cart-btn,
.woolentor-grid-card .woolentor-product-actions .button,
.woolentor-grid-card .woolentor-product-actions .add_to_cart_button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: all 0.2s ease;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.woolentor-cart-btn svg {
    width: 16px;
    height: 16px;
}
.woolentor-product-actions a.added_to_cart {
    display: none;
}

.woolentor-grid-card .woolentor-cart-btn:hover,
.woolentor-grid-card .woolentor-product-actions .button:hover,
.woolentor-grid-card .woolentor-product-actions .add_to_cart_button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
}

.woolentor-cart-btn:hover,
.woolentor-product-actions .button:hover,
.woolentor-product-actions .add_to_cart_button:hover {
    background: var(--woolentor-primary-hover);
    border-color: var(--woolentor-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--woolentor-shadow-md);
}

/* Add to cart Button Loader */
a.woolentor-cart-btn.button.add_to_cart_button.ajax_add_to_cart.added:after { 
    font-family: 'WooCommerce'; content: '\e017'; margin-left: .53em; vertical-align: bottom; 
} 
a.woolentor-cart-btn.button.add_to_cart_button.ajax_add_to_cart.loading { 
    opacity: .25; 
} 
a.woolentor-cart-btn.button.add_to_cart_button.ajax_add_to_cart.loading:after { 
    display: inline-block; 
    content: ""; 
    position: relative; 
    top: 0; 
    right: -.5em; 
    left: auto; 
    width: .8em; 
    height: .8em; 
    background-color: var(--woolentor-white,var(--woolentor-gray-100)); 
    border-radius: 100%; 
    animation: WoolentorDotPulse .65s 0s infinite cubic-bezier(.21,.53,.56,.8); 
} 
@keyframes WoolentorDotPulse { 
    0% { 
        transform: scale(.1); opacity: 0; 
    } 
    50% { 
        opacity: 1; 
    } 
    100% { 
        transform: scale(1.2); opacity: 0; 
    } 
} 

/* Wishlist Button */
.woolentor-wishlist-btn {
    background: #ffffff;
    color: var(--woolentor-gray-600);
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--woolentor-border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--woolentor-transition);
    flex-shrink: 0;
}

.woolentor-wishlist-btn:hover {
    color: var(--woolentor-danger-color);
    border-color: var(--woolentor-danger-color);
    background: rgba(239, 68, 68, 0.1);
}

.woolentor-wishlist-btn.added {
    color: var(--woolentor-danger-color);
    border-color: var(--woolentor-danger-color);
    background: rgba(239, 68, 68, 0.1);
}

.woolentor-wishlist-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Out of Stock State */
.woolentor-out-of-stock {
    opacity: 0.7;
    position: relative;
}

.woolentor-out-of-stock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.woolentor-out-of-stock .woolentor-cart-btn,
.woolentor-out-of-stock .add_to_cart_button {
    background: var(--woolentor-gray-400);
    border-color: var(--woolentor-gray-400);
    cursor: not-allowed;
    pointer-events: none;
}

.woolentor-out-of-stock .woolentor-cart-btn:hover,
.woolentor-out-of-stock .add_to_cart_button:hover {
    transform: none;
    box-shadow: none;
}

/* No Products States */
.woolentor-product-grid .woolentor-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 15px 20px;
    color: var(--woolentor-gray-400);
    font-size: 16px;
    font-style: italic;
}
.woolentor-product-grid .woolentor-no-products p{
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .woolentor-product-grid-modern {
        gap: 20px;
    }

    .woolentor-grid-card .woolentor-product-content {
        padding: 16px;
    }

    .woolentor-product-title {
        font-size: 16px;
    }

    .woolentor-grid-card .woolentor-product-title {
        font-size: 14px;
    }

    .woolentor-grid-card .woolentor-product-categories {
        margin: 3px 0 6px;
    }

    .woolentor-product-category {
        font-size: 11px;
        padding: 1px 6px;
    }

    .woolentor-product-price {
        font-size: 18px;
    }

    .woolentor-grid-card .woolentor-product-price {
        font-size: 16px;
    }

    /* List to Column on Mobile */
    .woolentor-list-card {
        flex-direction: column;
        min-height: auto;
        padding: 16px;
    }

    .woolentor-list-card .woolentor-product-image {
        margin-right: 0;
        margin-bottom: 16px;
        align-self: center;
        width: 100%;
    }

    .woolentor-content-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .woolentor-price-stock {
        order: 2;
    }

    .woolentor-product-actions {
        order: 1;
    }
}

@media (max-width: 480px) {
    .woolentor-product-grid-modern.woolentor-layout-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .woolentor-grid-card .woolentor-product-content {
        padding: 14px;
    }

    .woolentor-product-title {
        font-size: 15px;
    }

    .woolentor-grid-card .woolentor-product-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .woolentor-product-price {
        font-size: 16px;
    }

    .woolentor-grid-card .woolentor-product-price {
        font-size: 15px;
    }

    .woolentor-product-actions {
        gap: 8px;
        margin-top: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .woolentor-filter-row{
        flex-direction: column;
        gap: 10px;
    }

    .woolentor-cart-btn,
    .woolentor-product-actions .button,
    .woolentor-product-actions .add_to_cart_button {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
    }

    .woolentor-wishlist-btn {
        width: 40px;
        height: 40px;
    }

    .woolentor-list-card .woolentor-product-image img {
        width: 160px;
        height: 100px;
    }

    .woolentor-quick-actions {
        right: 8px;
    }

    .woolentor-quick-action {
        width: 36px;
        height: 36px;
    }
}

/* Accessibility */
.woolentor-product-card:focus-within {
    outline: 2px solid var(--woolentor-primary-color);
    outline-offset: 2px;
}

.woolentor-product-title a:focus,
.woolentor-cart-btn:focus,
.woolentor-wishlist-btn:focus,
.woolentor-quick-action:focus {
    outline: 2px solid var(--woolentor-primary-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.woolentor-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .woolentor-product-card {
        border: 2px solid;
    }

    .woolentor-badge {
        border: 2px solid;
    }

    .woolentor-cart-btn,
    .woolentor-wishlist-btn {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .woolentor-stock-dot {
        animation: none;
    }
}

/* Pagination Styles */
.woolentor-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woolentor-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.woolentor-pagination ul li {
    margin: 0;
    padding: 0;
}

.woolentor-pagination ul li a,
.woolentor-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.woolentor-pagination ul li a:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

.woolentor-pagination ul li span.current,
.woolentor-pagination ul li a.current {
    background: var(--woolentor-primary-color, #3858f6);
    border-color: var(--woolentor-primary-color, #3858f6);
    color: #ffffff;
}

.woolentor-pagination ul li.prev a,
.woolentor-pagination ul li.next a {
    font-weight: 400;
}

.woolentor-pagination ul li span.dots {
    border: none;
    background: transparent;
    pointer-events: none;
}

/* AJAX Load More Button */
.woolentor-ajax-load-more {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.woolentor-load-more-btn {
    background: var(--woolentor-primary-color, #3858f6);
    color: #ffffff;
    border: 1px solid var(--woolentor-primary-color);
    padding: 12px 32px;
    border-radius: var(--woolentor-border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--woolentor-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woolentor-load-more-btn:hover:not(:disabled) {
    background: var(--woolentor-primary-hover);
    border-color: var(--woolentor-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--woolentor-shadow-lg);
}

.woolentor-load-more-btn:disabled {
    background: var(--woolentor-gray-400);
    border-color: var(--woolentor-gray-400);
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.woolentor-ajax-loader {
    margin: 0;
    display: none;
    padding: 0;
    background-color: transparent !important;
}

.woolentor-ajax-loader .spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--woolentor-gray-300);
    border-left-color: var(--woolentor-primary-color);
    border-radius: 50%;
    animation: woolentorspin 1s linear infinite;
}

@keyframes woolentorspin {
    to { transform: rotate(360deg); }
}

/* Infinite Scroll Loader */
.woolentor-infinite-scroll {
    text-align: center;
}

/* Print Styles */
@media print {
    .woolentor-product-grid-modern.woolentor-layout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .woolentor-product-grid-modern.woolentor-layout-list{
        gap: 15px;
    }

    .woolentor-product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        background: #fff;
    }

    .woolentor-grid-card {
        height: auto;
    }

    .woolentor-product-actions,
    .woolentor-quick-actions,
    .woolentor-badges {
        display: none;
    }

    .woolentor-product-price {
        color: #000 !important;
    }
}

/* Normal  :1366px. */
@media (min-width: 1200px) and (max-width: 1400px) {

}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {

}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    /* Column Classes - Only for Grid Layout */
    .woolentor-columns-tablet-1 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: 1fr;
    }
    .woolentor-columns-tablet-2 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(2, 1fr);
    }
    .woolentor-columns-tablet-3 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(3, 1fr);
    }
    .woolentor-columns-tablet-4 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(4, 1fr);
    }
    .woolentor-columns-tablet-5 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(5, 1fr);
    }
    .woolentor-columns-tablet-6 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(6, 1fr);
    }
}

/* small mobile :320px. */
@media (max-width: 767px) {
    .woolentor-list-card .woolentor-list-view-content{
        flex-direction: column;
    }
    /* Column Classes - Only for Grid Layout */
    .woolentor-columns-mobile-1 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: 1fr;
    }
    .woolentor-columns-mobile-2 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(2, 1fr);
    }
    .woolentor-columns-mobile-3 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(3, 1fr);
    }
    .woolentor-columns-mobile-4 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(4, 1fr);
    }
    .woolentor-columns-mobile-5 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(5, 1fr);
    }
    .woolentor-columns-mobile-6 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"]{
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {

}/* Grid Container */
.woolentor-product-grid-luxury {
    display: grid;
    gap: 80px;
    width: 100%;
}

/* Product Card */
.woolentor-luxury-card {
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    border-radius: 0;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.woolentor-luxury-card:hover {
    transform: translateY(-5px);
}

/* Product Image Container */
.woolentor-luxury-card .woolentor-product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7f7f6;
    margin-bottom: 32px;
}

/* Aspect Ratio Support */
.woolentor-ratio-1-1 .woolentor-luxury-card .woolentor-product-image {
    padding-top: 100%; /* 1:1 aspect ratio */
}

.woolentor-ratio-3-4 .woolentor-luxury-card .woolentor-product-image {
    padding-top: 133.33%; /* 3:4 aspect ratio */
}

.woolentor-ratio-4-5 .woolentor-luxury-card .woolentor-product-image {
    padding-top: 125%; /* 4:5 aspect ratio - Editorial */
}

.woolentor-ratio-9-16 .woolentor-luxury-card .woolentor-product-image {
    padding-top: 177.78%; /* 9:16 aspect ratio */
}

.woolentor-luxury-card .woolentor-product-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.woolentor-luxury-card .woolentor-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.woolentor-luxury-card:hover .woolentor-product-image img {
    transform: scale(1.08);
}

/* Badges */
.woolentor-luxury-card .woolentor-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    align-items: flex-start;
}

.woolentor-luxury-card .woolentor-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 232, 225, 0.95);
    color: #6b6b6b;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Sale Indicator (Circle) */
.woolentor-luxury-card .woolentor-sale-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* New Badge Indicator */
.woolentor-luxury-card .woolentor-new-badge-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    color: #2c2c2c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    z-index: 10;
    line-height: 1;
}

/* Quick Actions */
.woolentor-luxury-card .woolentor-quick-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    flex-direction: row;
    top: auto;
    transform: translateX(0) translateY(10px);
}

.woolentor-luxury-card:hover .woolentor-quick-actions {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.woolentor-luxury-card .woolentor-quick-action {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.woolentor-luxury-card .woolentor-quick-action:hover {
    background: #2c2c2c;
    color: #fff;
}
.woolentor-luxury-card .woolentor-quick-action:hover a{
    color: #fff;
}

.woolentor-luxury-card .woolentor-quick-action svg {
    width: 18px;
    height: 18px;
    stroke: #2c2c2c;
}

.woolentor-luxury-card .woolentor-quick-action:hover svg {
    stroke: white;
}
.woolentor-luxury-card .woolentor-quickview-btn svg, .woolentor-luxury-card .woolentorquickview svg {
    width: 18px;
    height: 18px;
    display: block !important;
    color: currentColor !important;
    stroke: currentColor !important;
    fill: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
}

.woolentor-quick-actions .woolentor-wishlist-btn:hover a {
    color: #fff;
}
.woolentor-luxury-card .htcompare-btn{
    justify-content: center;
    align-items: center;
}

/* Wishlist Button Specific */
.woolentor-luxury-card .woolentor-wishlist-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Product Content */
.woolentor-luxury-card .woolentor-product-content {
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Category Badge in Content */
.woolentor-luxury-card .woolentor-product-category-badge {
    display: inline-block;
    padding: 5px 14px;
    background: #f0ebe5;
    color: #7a7a7a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 400;
}

/* Product Title */
.woolentor-luxury-card .woolentor-product-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.woolentor-luxury-card .woolentor-product-title a {
    color: inherit;
    text-decoration: none;
}

.woolentor-luxury-card:hover .woolentor-product-title {
    color: #4a4a4a;
}

/* Product Subtitle */
.woolentor-luxury-card .woolentor-product-subtitle {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Rating */
.woolentor-luxury-card .woolentor-product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.woolentor-luxury-card .woolentor-product-stars {
    display: flex;
    gap: 3px;
}

.woolentor-luxury-card .woolentor-product-stars .star {
    width: 12px;
    height: 12px;
    color: #d4a574;
}

.woolentor-luxury-card .woolentor-product-stars .star.empty {
    color: #e8e8e8;
}

.woolentor-luxury-card .woolentor-rating-text {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.3px;
}

/* Price */
.woolentor-luxury-card .woolentor-product-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.woolentor-luxury-card .woolentor-product-price del {
    font-size: 15px;
    color: #b8b8b8;
    font-weight: 300;
}

.woolentor-luxury-card .woolentor-product-price ins {
    text-decoration: none;
    color: #e74c3c;
}

/* Add to Cart Button - Ghost Style */
.woolentor-luxury-card .woolentor-product-actions {
    gap: 0;
}

.woolentor-luxury-card a.woolentor-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    text-decoration: none;
}

.woolentor-luxury-card .woolentor-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.woolentor-luxury-card .woolentor-cart-btn:hover::before {
    left: 0;
}

.woolentor-luxury-card .woolentor-cart-btn:hover {
    color: white;
    border-color: #2c2c2c;
    background: transparent;
    box-shadow: none;
}
.woolentor-luxury-card .woolentor-product-actions .add_to_cart_button:hover {
    background: transparent !important;
    transform: translateY(0) !important;
    color: #fff;
}

.woolentor-luxury-card .woolentor-cart-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.woolentor-luxury-card .woolentor-cart-btn:hover .woolentor-cart-arrow {
    transform: translateX(3px);
}

/* View Details Link */
.woolentor-luxury-card .woolentor-view-details {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.woolentor-luxury-card .woolentor-view-details:hover {
    color: #2c2c2c;
}

/* Loading Animation */
@keyframes fadeInLuxury {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woolentor-luxury-card {
    animation: fadeInLuxury 0.8s ease-out backwards;
}

.woolentor-product-item:nth-child(1) .woolentor-luxury-card { animation-delay: 0.1s; }
.woolentor-product-item:nth-child(2) .woolentor-luxury-card { animation-delay: 0.2s; }
.woolentor-product-item:nth-child(3) .woolentor-luxury-card { animation-delay: 0.3s; }
.woolentor-product-item:nth-child(4) .woolentor-luxury-card { animation-delay: 0.4s; }
.woolentor-product-item:nth-child(5) .woolentor-luxury-card { animation-delay: 0.5s; }
.woolentor-product-item:nth-child(6) .woolentor-luxury-card { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .woolentor-product-grid-luxury {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .woolentor-product-grid-luxury {
        gap: 60px;
    }

    .woolentor-luxury-card .woolentor-product-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .woolentor-product-grid-luxury {
        gap: 60px;
    }

    .woolentor-luxury-card .woolentor-product-title {
        font-size: 20px;
    }

    .woolentor-luxury-card .woolentor-product-image {
        margin-bottom: 24px;
    }

    .woolentor-luxury-card .woolentor-product-content {
        padding: 0 10px;
    }
}

/* Out of Stock State */
.woolentor-luxury-card.woolentor-out-of-stock {
    opacity: 0.6;
}

.woolentor-luxury-card.woolentor-out-of-stock .woolentor-product-image::after {
    content: 'Out of Stock';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #2c2c2c;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    z-index: 5;
}

/* Card Hover Effects */
.woolentor-card-hover-lift .woolentor-luxury-card:hover {
    transform: translateY(-5px);
}

.woolentor-card-hover-none .woolentor-luxury-card:hover {
    transform: none;
}

/* Image Hover Effects */
.woolentor-image-hover-zoom .woolentor-luxury-card:hover .woolentor-product-image img {
    transform: scale(1.08);
}

.woolentor-image-hover-none .woolentor-luxury-card:hover .woolentor-product-image img {
    transform: none;
}

/* Badge Position Variations */
.woolentor-badge-pos-top-left .woolentor-luxury-card .woolentor-badges {
    top: 20px;
    left: 20px;
    right: auto;
}
.woolentor-badge-pos-top-right .woolentor-luxury-card .woolentor-badges {
    left: auto;
    right: 20px;
    align-items: flex-end;
}
.woolentor-badge-pos-top-center .woolentor-luxury-card .woolentor-badges {
    left: 50%;
    transform: translateX(-50%);
}

.woolentor-badge-pos-top-left .woolentor-luxury-card .woolentor-sale-indicator,
.woolentor-badge-pos-top-left .woolentor-luxury-card .woolentor-new-badge-indicator {
    top: 20px;
    right: 20px;
    left: auto;
}.twae-wrapper{--tw-line-width:4px;--tw-line-bg:#d6d6d6;--tw-line-filling-color:rgba(0, 0, 0, 0.5);--tw-line-bd-width:0;--tw-line-bd-style:solid;--tw-ybx-size:80px;--tw-ybx-text-size:18px;--tw-ybx-text-weight:bold;--tw-ybx-text-color:#ffffff;--tw-ybx-bg:#54595f;--tw-ybx-bd-width:var(--tw-line-bd-width-inpx, var(--tw-line-width));--tw-ybx-bd-style:var(--tw-line-bd-style);--tw-ybx-bd-color:var(--tw-line-bd-color, var(--tw-line-bg));--tw-ibx-size:48px;--tw-ibx-text-size:24px;--tw-ibx-bg:var(--e-global-color-primary, #222);--tw-ibx-radius:50;--tw-ibx-bd-width:var(--tw-line-bd-width-inpx, var(--tw-line-width));--tw-ibx-bd-style:var(--tw-line-bd-style);--tw-ibx-bd-color:var(--tw-line-bd-color, var(--tw-line-bg));--tw-lbl-gap:5px;--tw-lbl-position:column nowrap;--tw-lbl-justify:flex-end;--tw-lbl-big-size:24px;--tw-lbl-small-size:16px;--tw-lbl-big-weight:bold;--tw-lbl-small-weight:normal;--tw-lbl-big-color:var(--e-global-color-primary, #222);--tw-lbl-small-color:var(--e-global-color-text, #444);--tw-arw-bg:var(--tw-cbx-title-bg, var(--tw-cbx-bg));--tw-arw-bg2:var(--tw-cbx-title-bg, var(--tw-cbx-bg2));--tw-arw-bg3:var(--tw-cbx-title-bg, var(--tw-cbx-bg3));--tw-arw-bg4:var(--tw-cbx-title-bg, var(--tw-cbx-bg4));--tw-arw-bd-color:var(--tw-cbx-bd-color);--tw-arw-line-background:var(--tw-cbx-title-bg, var(--tw-line-bg));--tw-arw-line-border-color:var(--tw-line-bd-color);--tw-cbx-bg:#ffffff;--tw-cbx-bd-style:solid;--tw-cbx-bd-color:var(--tw-ibx-bg);--tw-cbx-radius:6px 6px 6px 6px;--tw-cbx-radius-left:6px 6px 6px 6px;--tw-cbx-padding:0.75em 0.75em calc(0.75em - 10px) 0.75em;--tw-cbx-bottom-margin:100px;--tw-cbx-shadow:0px 2px 8px -2px rgba(0, 0, 0, 0.3);--tw-cbx-shadow-left:0px 2px 8px -2px rgba(0, 0, 0, 0.3);--tw-cbx-space:20;--tw-cbx-bg-hover:var(--tw-cbx-bg);--tw-cbx-radius-hover:var(--tw-cbx-radius);--tw-cbx-radius-left-hover:var(--tw-cbx-radius-left);--tw-cbx-shadow-hover:var(--tw-cbx-shadow);--tw-cbx-shadow-left-hover:var(--tw-cbx-shadow-left);--tw-cbx-title-color:var(--e-global-color-primary, #222);--tw-cbx-title-font-size:24px;--tw-cbx-title-font-weight:bold;--tw-cbx-title-line-height:1.25em;--tw-cbx-title-padding:0px 0px 0px 0px;--tw-cbx-title-margin:0px 0px 10px 0px;--tw-cbx-des-color:var(--e-global-color-text, #444);--tw-cbx-des-padding:0px 0px 0px 0px;--tw-cbx-des-margin:0px 0px 10px 0px;--tw-cbx-img-width:100%;--tw-cbx-img-height:auto;--tw-cbx-img-padding:0px 0px 0px 0px;--tw-cbx-img-margin:0px 0px 10px 0px;--tw-cbx-img-margin-left:0px;--tw-cbx-img-margin-right:0px;--tw-cbx-img-border-width:1px;--tw-cbx-img-border-style:none;--tw-cbx-img-border-color:var(--e-global-color-text, #444);--tw-cbx-img-radius:0px;--tw-cbx-img-shadow:0px;--tw-cbx-btn-margin:10px 0px 0px 0px;--tw-cbx-btn-margin-left:0px;--tw-cbx-btn-margin-right:0px;--tw-cbx-btn-padding:10px 14px 10px 14px;--tw-cbx-btn-width:auto;--tw-cbx-btn-height:auto;--tw-cbx-btn-bgcolor:#00000015;--lbl-bk-color:rgb(156, 147, 147);--lbl-bd-width:2px;--lbl-bd-color:black;--lbl-bd-style:solid;--lbl-bd-radius:6px;--lbl-arw-bg:var(--lbl-bk-color);--lbl-bottom-spacing:0.75em}.twae-wrapper,.twae-wrapper *,.twae-wrapper :after,.twae-wrapper :before,.twae-wrapper:after,.twae-wrapper:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.twae-wrapper{width:100%;display:block;position:relative}.twae-wrapper .twae-year{display:flex;align-items:center;padding:0;background:0 0!important}.twae-wrapper .twae-year-text{display:flex;align-items:center;justify-content:center;text-align:center;line-height:1em;overflow:hidden;width:var(--tw-ybx-size);height:calc(var(--tw-ybx-size) * ((60 + var(--tw-ibx-radius)/ 1.25)/ 100));font-size:var(--tw-ybx-text-size);font-weight:var(--tw-ybx-text-weight);color:var(--tw-ybx-text-color);background-color:var(--tw-ybx-bg);border-width:var(--tw-ybx-bd-width);border-style:var(--tw-ybx-bd-style);border-color:var(--tw-ybx-bd-color);border-radius:calc(var(--tw-ibx-radius) * 1%);-webkit-border-radius:calc(var(--tw-ibx-radius) * 1%);-moz-border-radius:calc(var(--tw-ibx-radius) * 1%);-ms-border-radius:calc(var(--tw-ibx-radius) * 1%);-o-border-radius:calc(var(--tw-ibx-radius) * 1%);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.twae-wrapper .twae-year-text:after,.twae-wrapper .twae-year-text:before{content:"";position:absolute;background:var(--tw-line-bg);opacity:var(--tw-line-bd-width)}.twae-wrapper .twae-labels{display:flex;flex-flow:var(--tw-lbl-position);gap:var(--tw-lbl-gap);position:absolute;width:100%;padding:0;margin:0}.twae-wrapper.twae-label-content-inside .twae-labels,.twae-wrapper.twae-label-content-top .twae-labels{position:initial}.twae-wrapper.twae-label-content-top .twae-labels.twae-label-bg{margin-top:calc((0px - (var(--tw-lbl-big-size) + var(--lbl-bottom-spacing) + 32px))/ 2)}.twae-wrapper.twae-label-content-top .twae-labels .twae-inner-label{padding:8px 20px}.twae-wrapper.twae-label-content-top .twae-labels{margin-top:calc((0px - (var(--tw-lbl-big-size) + var(--lbl-bottom-spacing) + 16px))/ 2)}.twae-wrapper .twae-label-big{line-height:1em;font-size:var(--tw-lbl-big-size);font-weight:var(--tw-lbl-big-weight);color:var(--tw-lbl-big-color);white-space:nowrap;max-width:100%}.twae-wrapper .twae-timeline:not(.twae-compact) .twae-label-big{white-space:pre-wrap}.twae-wrapper .twae-label-small{line-height:1.5em;font-size:var(--tw-lbl-small-size);font-weight:var(--tw-lbl-small-weight);color:var(--tw-lbl-small-color);white-space:nowrap;max-width:100%}.twae-wrapper .twae-timeline:not(.twae-compact) .twae-label-small{white-space:pre-wrap}.twae-wrapper .twae-label-bg .twae-inner-label{position:relative;background-color:var(--lbl-bk-color);padding:8px;border-radius:var(--lbl-bd-radius);display:flex;flex-direction:column;gap:var(--tw-lbl-gap)}.twae-wrapper :not(.twae-content)>.twae-label-bg.twae-lbl-arrow .twae-inner-label:before{content:"";position:absolute;width:calc(var(--tw-ibx-size)/ 3.5);height:calc(var(--tw-ibx-size)/ 3.5);border-style:var(--lbl-bd-style);border-color:var(--lbl-bd-color);z-index:2}.twae-wrapper .twae-story:not(.twae-content)>.twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{content:"";position:absolute;background:var(--tw-arw-line-background);border-style:var(--tw-line-bd-style);border-color:var(--tw-line-bd-color)}.twae-wrapper .twae-icon{position:absolute;width:var(--tw-ibx-size);height:var(--tw-ibx-size);display:flex;justify-content:center;align-items:center;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;padding:0;margin:0;border-width:var(--tw-ibx-bd-width);border-style:var(--tw-ibx-bd-style);border-color:var(--tw-ibx-bd-color);background-color:var(--tw-ibx-bg);color:var(--tw-ibx-color,var(--tw-cbx-bg));border-radius:calc(var(--tw-ibx-radius) * 1%);-webkit-border-radius:calc(var(--tw-ibx-radius) * 1%);-moz-border-radius:calc(var(--tw-ibx-radius) * 1%);-ms-border-radius:calc(var(--tw-ibx-radius) * 1%);-o-border-radius:calc(var(--tw-ibx-radius) * 1%);overflow:hidden}.twae-wrapper .twae-icon img{border-radius:calc(var(--tw-ibx-radius) * 1%);height:-webkit-fill-available;width:-webkit-fill-available}.twae-icon svg{width:var(--tw-ibx-text-size);height:var(--tw-ibx-text-size);fill:var(--tw-ibx-color,var(--tw-cbx-bg))}.twae-wrapper .twae-icon .twae_icon_text,.twae-wrapper .twae-icon i{color:var(--tw-ibx-color,var(--tw-cbx-bg));font-size:var(--tw-ibx-text-size);line-height:1em}.twae-wrapper.twae-bg-multicolor .twae-story[data-multicolor="2"] .twae-icon :where(i,.twae_icon_text,svg){color:var(--tw-ibx-color,var(--tw-arw-bg2,var(--tw-arw-bg)));fill:var(--tw-ibx-color,var(--tw-arw-bg2,var(--tw-arw-bg)))}.twae-wrapper.twae-bg-multicolor .twae-story[data-multicolor="3"] .twae-icon :where(i,.twae_icon_text,svg){color:var(--tw-ibx-color,var(--tw-arw-bg3,var(--tw-arw-bg)));fill:var(--tw-ibx-color,var(--tw-arw-bg3,var(--tw-arw-bg)))}.twae-wrapper.twae-bg-multicolor .twae-story[data-multicolor="4"] .twae-icon :where(i,.twae_icon_text,svg){color:var(--tw-ibx-color,var(--tw-arw-bg4,var(--tw-arw-bg)));fill:var(--tw-ibx-color,var(--tw-arw-bg4,var(--tw-arw-bg)))}.twae-wrapper .twae-icon img{height:-webkit-fill-available;width:-webkit-fill-available;border-radius:calc(var(--tw-ibx-radius) * 1%)}.twae-wrapper .twae-icondot{position:absolute;width:calc(var(--tw-ibx-size)/ 2);height:calc(var(--tw-ibx-size)/ 2);background-color:var(--tw-ibx-bg);border-width:var(--tw-ibx-bd-width);border-style:var(--tw-ibx-bd-style);border-color:var(--tw-ibx-bd-color);border-radius:calc(var(--tw-ibx-radius) * 1%);-webkit-border-radius:calc(var(--tw-ibx-radius) * 1%);-moz-border-radius:calc(var(--tw-ibx-radius) * 1%);-ms-border-radius:calc(var(--tw-ibx-radius) * 1%);-o-border-radius:calc(var(--tw-ibx-radius) * 1%);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.twae-wrapper .twae-icon:after,.twae-wrapper .twae-icon:before,.twae-wrapper .twae-icondot:after,.twae-wrapper .twae-icondot:before{content:"";position:absolute;background:var(--tw-line-bg);opacity:var(--tw-line-bd-width);margin:0}.twae-wrapper .twae-arrow{position:absolute;width:calc(var(--tw-ibx-size)/ 3.5);height:calc(var(--tw-ibx-size)/ 3.5);transform:rotate(45deg);border-style:var(--tw-cbx-bd-style);border-color:var(--tw-arw-bd-color);z-index:2}.twae-wrapper .twae-arrow-line{position:absolute;background:var(--tw-arw-line-background);border-style:var(--tw-line-bd-style);border-color:var(--tw-arw-line-border-color);z-index:2}.twae-wrapper .twae-arrow-line:after,.twae-wrapper .twae-arrow-line:before{content:"";position:absolute;background:var(--tw-arw-line-background);border-style:var(--tw-line-bd-style);border-color:var(--tw-arw-line-border-color);opacity:var(--tw-line-bd-width)}.twae-wrapper .twae-story{margin-bottom:var(--tw-cbx-bottom-margin)}.twae-wrapper .twae-content{display:flex;flex-flow:column;overflow:hidden;position:relative;margin:0;padding:var(--tw-cbx-padding);background:var(--tw-cbx-bg);border-width:var(--tw-cbx-bd-top-width) var(--tw-cbx-bd-right-width) var(--tw-cbx-bd-bottom-width) var(--tw-cbx-bd-left-width);border-color:var(--tw-cbx-bd-color);border-style:var(--tw-cbx-bd-style);box-shadow:var(--tw-cbx-shadow);border-radius:var(--tw-cbx-radius);-webkit-border-radius:var(--tw-cbx-radius);-moz-border-radius:var(--tw-cbx-radius);-ms-border-radius:var(--tw-cbx-radius);-o-border-radius:var(--tw-cbx-radius)}.twae-wrapper.twae-label-content-top .twae-content{overflow:visible}.twae-wrapper .twae-title{background:var(--tw-cbx-title-bg);color:var(--tw-cbx-title-color);margin:var(--tw-cbx-title-margin);padding:var(--tw-cbx-title-padding);font-size:var(--tw-cbx-title-font-size);font-weight:var(--tw-cbx-title-font-weight);line-height:var(--tw-cbx-title-line-height);order:1;display:flex;align-items:center;justify-content:var(--tw-cbx-text-align);text-align:var(--tw-cbx-text-align)}.twae-wrapper .twae-title a,.twae-wrapper .twae-title a:hover{text-decoration:none!important;color:var(--tw-cbx-title-color)}.twae-wrapper .twae-media{display:flex;align-items:center;justify-content:var(--tw-cbx-img-align,var(--tw-cbx-text-align));padding:0;margin:0;width:100%;overflow:hidden;order:var(--tw-cbx-img-order)}.twae-wrapper .twae-media iframe,.twae-wrapper .twae-media img{width:calc(var(--tw-cbx-img-width) - (var(--tw-cbx-img-margin-left) + var(--tw-cbx-img-margin-right)));max-width:100%;height:var(--tw-cbx-img-height);object-fit:cover;object-position:center;padding:var(--tw-cbx-img-padding)!important;margin:var(--tw-cbx-img-margin)!important;border-width:var(--tw-cbx-img-border-width);border-color:var(--tw-cbx-img-border-color);border-style:var(--tw-cbx-img-border-style);box-shadow:var(--tw-cbx-img-shadow);border-radius:var(--tw-cbx-img-radius);-webkit-border-radius:var(--tw-cbx-img-radius);-moz-border-radius:var(--tw-cbx-img-radius);-ms-border-radius:var(--tw-cbx-img-radius);-o-border-radius:var(--tw-cbx-img-radius)}.twae-wrapper .twae-media a{width:calc(var(--tw-cbx-img-width) - (var(--tw-cbx-img-margin-left) + var(--tw-cbx-img-margin-right)));text-align:center}.twae-wrapper .twae-media a img{width:100%}.twae-wrapper .twae-media.medium img,.twae-wrapper .twae-media.thumbnail img{width:auto}.twae-wrapper .twae-media iframe{min-height:200px}.twae-wrapper .twae-media .swiper-slide{text-align:center}.twae-wrapper .twae-media .twae-slideshow .swiper-wrapper{overflow:visible}.twae-wrapper .twae-media.twae-img-effect img{transition:transform .8s,-webkit-transform .8s}.twae-slideshow.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.twae-wrapper .twae-media.twae-img-effect img:hover{transform:scale(1.1)}.twae-wrapper .twae-description{width:100%;display:inline-block;margin:var(--tw-cbx-des-margin);padding:var(--tw-cbx-des-padding);color:var(--tw-cbx-des-color);background:var(--tw-cbx-des-background);text-align:var(--tw-cbx-text-align);order:3}.twae-wrapper .twae-description p{margin:0 0 10px 0;padding:0}.twae-wrapper .twae-description ol,.twae-wrapper .twae-description p,.twae-wrapper .twae-description span,.twae-wrapper .twae-description ul{color:var(--tw-cbx-des-color)}.twae-wrapper .twae-button{display:flex;justify-content:var(--tw-cbx-btn-align,var(--tw-cbx-text-align))}.twae-wrapper .twae-button a.elementor-button{width:var(--tw-cbx-btn-width);height:var(--tw-cbx-btn-height);margin:var(--tw-cbx-btn-margin);padding:var(--tw-cbx-btn-padding);color:var(--tw-cbx-btn-color,var(--tw-cbx-des-color,#444));background-color:var(--tw-cbx-btn-bgcolor);text-decoration:none!important;align-items:center;justify-content:center;display:flex}.twae-wrapper .twae-button a.elementor-button:hover{opacity:.8;color:var(--tw-cbx-btn-color,var(--tw-cbx-des-color,#444));height:var(--tw-cbx-btn-height);margin:var(--tw-cbx-btn-margin);padding:var(--tw-cbx-btn-padding)}.twae-wrapper .twae-button button.elementor-button{color:var(--tw-cbx-btn-color,var(--tw-cbx-des-color,#444));background-color:var(--tw-cbx-btn-bgcolor)}.twae-wrapper:not(.twae-horizontal-timeline) .twae-button button.elementor-button .lm_active_state svg{fill:var(--tw-cbx-btn-color,var(--tw-cbx-des-color,#444));width:15px;height:15px}.twae-wrapper .twae-story:hover .twae-content{box-shadow:var(--tw-cbx-shadow-hover);border-radius:var(--tw-cbx-radius-hover);-webkit-border-radius:var(--tw-cbx-radius-hover);-moz-border-radius:var(--tw-cbx-radius-hover);-ms-border-radius:var(--tw-cbx-radius-hover);-o-border-radius:var(--tw-cbx-radius-hover)}.twae-wrapper.twae-bg-hover .twae-story:hover .twae-content{background:linear-gradient(to right,var(--tw-cbx-bg-hover),var(--tw-cbx-bg-hover))!important}.twae-wrapper .twae-icon-left-open,.twae-wrapper .twae-icon-right-open{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer}.twae-wrapper .twae-icon-right-open{right:10px}.twae-wrapper .twae-icon-left-open{left:10px}.twae-popup{--tw-cbx-title-color:var(--e-global-color-primary, #222);--tw-cbx-title-font-size:24px;--tw-cbx-title-font-weight:bold;--tw-cbx-title-line-height:1.25em;--tw-cbx-title-padding:0px 0px 0px 0px;--tw-cbx-title-margin:0px 0px 5px 0px;--tw-cbx-des-color:var(--e-global-color-text, #444);--tw-cbx-des-padding:0px 0px 0px 0px;--tw-cbx-des-margin:0px 0px 10px 0px;--tw-cbx-bg:#ffffff;--tw-cbx-cont-padding:0px 0px 0px 0px;opacity:1;width:100%;position:fixed;left:0;top:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.twae-popup-bg{position:absolute;left:0;top:0;height:100%;width:100%;background:#000;opacity:.8;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.twae-popup .twae-popup-content{z-index:99999;position:relative;border:1px solid #888;-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);width:500px;border-radius:10px;height:auto;overflow:hidden;overflow-y:auto;padding:0;margin:10px;max-height:calc(100% - 20px);background-color:#fff;background-image:linear-gradient(to right,var(--tw-cbx-bg),var(--tw-cbx-bg));padding:var(--tw-cbx-cont-padding)}.twae-popup .twae-popup-content::-webkit-scrollbar{width:8px;border-radius:10px}.twae-popup .twae-popup-content::-webkit-scrollbar-track{background:#999;border-radius:10px}.twae-popup .twae-popup-content::-webkit-scrollbar-thumb{background:#f1f1f1;border-radius:10px}.twae-popup .twae-popup-content::-webkit-scrollbar-thumb:hover{background:#666}.twae-popup .story_content{padding:10px}.twae-popup .twae-popup-labels{position:relative;height:auto;text-align:left;padding:10px 10px 0 10px}.twae-popup .twae-popup-labels span{text-transform:capitalize;font-size:16px}.twae-popup span.twae-label{font-size:25px;font-weight:700}.twae-popup span.twae-sublabel{margin-left:5px}.twae-popup .twae-popup-labels span.twae-title{font-size:20px;display:block;font-weight:700}.twae-popup .twae-slideshow{position:relative;width:100%!important}.twae-popup .twae-img img{width:100%;padding-bottom:5px}.twae-popup .twae-img.medium img,.twae-popup .twae-img.thumbnail img,img.attachment-medium.size-medium.wp-post-image,img.attachment-thumbnail.size-thumbnail.wp-post-image{width:auto;padding-bottom:10px}.twae-popup img.attachment-medium.size-medium.wp-post-image,.twae-popup img.attachment-thumbnail.size-thumbnail.wp-post-image{float:left}.twae-popup .twae-img.medium,.twae-popup .twae-img.thumbnail{width:auto;padding-right:10px;margin:0;float:left;padding:0 5px;height:auto;display:flex}.twae-popup .twae-img-desc{padding:10px;text-align:left;display:inline-block;width:100%;max-height:70vh;overflow-y:auto}.twae-popup .twae-description{display:block;width:auto}.twae-popup-footer{height:35px;position:relative}.twae-popup span.twae_close_button{float:right;border:1px solid #b1b1b1;border-radius:50%;width:30px;height:30px;cursor:pointer;position:absolute;bottom:5px;line-height:28px;background:#e8e8e8;text-align:center;right:10px}.twae-popup span.twae_close_button:hover{opacity:.7}@media (max-width:767px){.twae-popup .twae-popup-content{width:80%}.twae-popup .twae-img-desc{max-height:400px;overflow:auto}}@media (min-width:768px){.twae-popup .twae-img-desc{max-height:70vh;overflow-y:auto}}.elementor-widget.elementor-widget-timeline-widget-addon .twae-wrapper .twae-description,.elementor-widget.elementor-widget-twae-post-timeline-widget .twae-wrapper .twae-description{color:var(--tw-cbx-des-color)}.elementor-widget.elementor-widget-timeline-widget-addon .twae-wrapper .twae-icon,.elementor-widget.elementor-widget-twae-post-timeline-widget .twae-wrapper .twae-icon{background-color:var(--tw-ibx-bg)}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text{position:relative;overflow:visible}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::before{content:"";position:absolute;height:var(--tw-line-width);width:calc(var(--tw-ibx-size) + var(--tw-line-bd-width) * 1px);background-color:var(--tw-line-bg);opacity:1}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::after{width:var(--tw-ybx-bd-width);height:var(--tw-line-width)}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::after,.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::before{top:calc(50% - var(--tw-line-width)/ 2)!important;border-width:calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px) 0;border-style:var(--tw-line-bd-style);border-color:var(--tw-line-bd-color)}@media screen and (min-width:768px){.twae-vertical-right.twae-wrapper .twae-year{padding-left:0!important}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text{left:calc(33.33% - var(--tw-ibx-size) - var(--tw-ybx-size) - var(--tw-line-width)/ 2)}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::before{right:auto;left:calc(100% + var(--tw-ybx-bd-width))!important}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::after{right:auto;left:100%}}@media screen and (max-width:767px){.twae-vertical-right.twae-wrapper .twae-year .twae-year-text{margin-left:0!important;left:calc(var(--tw-ibx-size) * 1.5);right:auto}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::before{left:auto;right:calc(100% + var(--tw-ybx-bd-width))!important}.twae-vertical-right.twae-wrapper .twae-year-label.twae-year-text::after{left:auto;right:100%}.twae-wrapper.twae-vertical-left .twae-title{justify-content:start!important}}.twae-horizontal-timeline{--tw-ibx-position:50;--tw-cbx-text-align:center;--tw-cbx-bd-top-width:3px;--tw-cbx-bd-right-width:0px;--tw-cbx-bd-bottom-width:0px;--tw-cbx-bd-left-width:0px;--tw-line-filling-color:rgba(0, 0, 0, 0.5);--tw-cbx-img-order:0;--nav-icon-height:24px;--nav-icon-width:24px;--nav-icon-color:var(--tw-line-bg, #222);--nav-icon-radius:0;overflow:visible}.twae-horizontal-timeline.twae-wrapper.style-2{--tw-cbx-img-order:2;--tw-ibx-radius:0;--tw-ibx-bd-width:calc(var(--tw-line-bd-width, var(--tw-line-width)) * 1px);--tw-cbx-radius:0px 0px 0px 0px;--tw-cbx-padding:0px;--tw-cbx-bd-top-width:0px;--tw-cbx-title-color:#fff;--tw-cbx-title-bg:var(--tw-ibx-bg);--tw-cbx-title-padding:8px 12px 8px 12px;--tw-cbx-title-margin:0px 0px 0px 0px;--tw-cbx-des-padding:0px 10px 0px 10px}.twae-horizontal-timeline.twae-wrapper.style-3{--tw-cbx-radius:0px 0px 0px 0px;--tw-cbx-padding:0px;--tw-cbx-bd-top-width:0px;--tw-cbx-bg:#fff;--tw-cbx-shadow:0px}.twae-horizontal-timeline.twae-wrapper.style-4{--tw-cbx-radius:0px 0px 0px 0px;--tw-cbx-bd-top-width:0px;--tw-cbx-bg:#fff;--tw-cbx-shadow:0px}.twae-horizontal-highlighted-timeline{--tw-highlighted-color:''}.twae-horizontal-timeline.twae-wrapper.style-4 .twae-content{background:0 0!important}.twae-horizontal-timeline.twae-wrapper{width:calc(100% - var(--nav-icon-width) * 2);margin:0 var(--nav-icon-width)}.twae-wrapper-inside{overflow:hidden}.twae-wrapper.twae-horizontal-timeline.twae-bg-multicolor .twae-story:nth-child(4n-2) .twae-content{background:var(--tw-cbx-bg2,var(--tw-cbx-bg))}.twae-wrapper.twae-horizontal-timeline.twae-bg-multicolor .twae-story:nth-child(4n-1) .twae-content{background:var(--tw-cbx-bg3,var(--tw-cbx-bg))}.twae-wrapper.twae-horizontal-timeline.twae-bg-multicolor .twae-story:nth-child(4n) .twae-content{background:var(--tw-cbx-bg4,var(--tw-cbx-bg))}.twae-horizontal-timeline.twae-wrapper .twae-slider-container{width:calc(100% - var(--tw-cbx-space));margin:0 calc(var(--tw-cbx-space) * .5px);display:block;position:relative;padding-bottom:1rem;padding-top:0}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-slider-container{padding-top:1rem;padding-bottom:0}.twae-horizontal-timeline.twae-wrapper .twae-slider-container.swiper-container{overflow:hidden}.twae-horizontal-timeline .twae-slideshow.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}.twae-horizontal-timeline .twae-media :where(.twae-slideshow,.swiper-wrapper){width:100%}.twae-horizontal-timeline .twae-slider-wrapper.default-height .twae-media .twae-slideshow :where(.swiper-slidea,.swiper-slideimg){height:100%!important}.twae-horizontal-timeline .twae-slider-wrapper.default-height .twae-media .twae-slideshow .swiper-slide img{aspect-ratio:4/3;object-fit:cover;object-position:center}.swiper-container-autoheight .swiper-slide,.twae-horizontal-timeline .twae-slideshow.swiper-container-autoheight{height:auto}.twae-horizontal-timeline.twae-wrapper .twae-button-next,.twae-horizontal-timeline.twae-wrapper .twae-button-prev{position:absolute;top:calc(calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--nav-icon-height) * .5 + var(--lbl-bd-width)*2));background:var(--nav-icon-background);color:var(--nav-icon-color);width:var(--nav-icon-width);height:var(--nav-icon-height);font-size:calc(var(--nav-icon-height) - 4px);line-height:1em;display:flex;justify-content:center;align-items:center;z-index:9;cursor:pointer}.twae-horizontal-timeline.twae-wrapper :where(.twae-button-prev,.twae-button-next) svg{fill:var(--nav-icon-color);width:calc(var(--nav-icon-height) - 4px);height:calc(var(--nav-icon-height) - 4px)}.twae-horizontal-timeline.twae-wrapper .twae-button-next.swiper-button-disabled,.twae-horizontal-timeline.twae-wrapper .twae-button-prev.swiper-button-disabled{opacity:.5;cursor:not-allowed!important}.twae-horizontal-timeline.twae-wrapper.label_content_top .twae-button-next,.twae-horizontal-timeline.twae-wrapper.label_content_top .twae-button-prev{top:calc(calc(0px + var(--tw-ibx-size) - var(--nav-icon-height) * .5))}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.label_content_top .twae-button-next,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.label_content_top .twae-button-prev{bottom:calc(calc(0px + var(--tw-ibx-size) - var(--nav-icon-height) * .5))}.twae-horizontal-timeline.twae-wrapper .twae-button-next{right:calc(0px - var(--nav-icon-width))}.twae-horizontal-timeline.twae-wrapper .twae-button-prev{left:calc(0px - var(--nav-icon-width))}.twae-button-next i.fas.fa-long-arrow-alt-right{display:block!important}.twae-horizontal-timeline .twae-wrapper .twae-story-line{position:absolute;top:calc(0px - var(--tw-ibx-size) - var(--tw-line-width)/ 2);left:calc(0px - var(--tw-cbx-space) * .5px);display:block;width:calc(100% + var(--tw-cbx-space) * 1px);height:var(--tw-line-width);background-color:var(--tw-line-bg);border-width:calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px) 0;border-style:var(--tw-line-bd-style);border-color:var(--tw-line-bd-color)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-story-line,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story-line{top:auto;bottom:calc(0px - var(--tw-ibx-size) - var(--tw-line-width)/ 2)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1):after,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1):before{content:"";position:absolute;width:var(--tw-line-width);height:calc(100% - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px - var(--tw-line-width)));bottom:calc(0px - var(--tw-ibx-size) - var(--tw-line-width)/ 2);background-color:var(--tw-line-bg);border-width:0 calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px);border-style:var(--tw-line-bd-style);border-color:var(--tw-line-bd-color)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1):before{left:calc(0px - var(--tw-cbx-space) * .5px - var(--tw-line-width)/ 2)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1):after{right:calc(0px - var(--tw-cbx-space) * .5px - var(--tw-line-width)/ 2)}.twae-horizontal-timeline.twae-wrapper .twae-h-line{position:absolute;top:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5);left:0;display:block;width:100%;height:var(--tw-line-width);background-color:var(--tw-line-bg);border-width:calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px) 0;border-style:var(--tw-line-bd-style);border-color:var(--tw-line-bd-color)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story-line{top:auto;bottom:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5)}.twae-line-fill.swiper-pagination-progressbar{position:absolute;top:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5 + var(--lbl-bd-width)*2);left:0;width:100%;height:var(--tw-line-width);background:0 0}.twae-line-fill.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--tw-line-filling-color)}.twae-line-filler .twae-story-line{display:none}.twae-horizontal-timeline.twae-wrapper .twae-year{position:absolute;top:calc(var(--tw-ibx-size)/ 2 - var(--tw-ibx-size) * 2 - (var(--tw-ybx-size) * ((60 + var(--tw-ibx-radius)/ 1.25)/ 100) - var(--tw-ibx-size))/ 2);left:10px;margin:0;justify-content:flex-start;width:auto}.twae-horizontal-timeline.twae-wrapper .twae-year .twae-year-text{transition:all .2s ease-out}.twae-horizontal-timeline.twae-wrapper .twae-year.twae-in-view-port .twae-year-text{border-color:var(--tw-line-filling-color)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-year,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-year{top:auto;bottom:calc(var(--tw-ibx-size)/ 2 - var(--tw-ibx-size) * 2 - (var(--tw-ybx-size) * ((60 + var(--tw-ibx-radius)/ 1.25)/ 100) - var(--tw-ibx-size))/ 2)}.twae-horizontal-timeline.twae-wrapper .twae-year-text:after,.twae-horizontal-timeline.twae-wrapper .twae-year-text:before{width:calc(var(--tw-ybx-bd-width) + var(--tw-line-width) * .1);height:calc(var(--tw-line-width) - var(--tw-line-bd-width) * 2px);top:calc(50% - (var(--tw-line-width) - var(--tw-line-bd-width) * 2px)/ 2)}.twae-horizontal-timeline.twae-wrapper .twae-year-text:before{left:0}.twae-horizontal-timeline.twae-wrapper .twae-year-text:after{right:0}.twae-horizontal-timeline.twae-wrapper .twae-labels{justify-content:var(--tw-lbl-justify);top:calc(0px - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2) - var(--tw-ibx-size) * 2);left:calc(var(--tw-ibx-position) * 1% - var(--tw-ibx-size) * var(--tw-ibx-position)/ 100 + var(--tw-ibx-size)/ 2);height:calc(var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2);text-align:center;width:auto}.twae-horizontal-timeline:not(.twae-label-content-inside) .swiper-slide .twae-labels{transform:translateX(-50%)}.twae-wrapper.twae-label-content-inside .twae-labels,.twae-wrapper.twae-label-content-top .twae-labels{text-align:var(--tw-cbx-text-align)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-labels,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-labels{top:auto;bottom:calc(0px - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2) - var(--tw-ibx-size) * 2)}.twae-horizontal-timeline .twae-label-bg.twae-labels{align-items:center;height:calc(var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 22px + var(--lbl-bd-width)*2)!important;bottom:auto;top:calc(0px - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2) - var(--tw-ibx-size) * 2 - 16px - var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline .twae-label-bg .twae-label-small{line-height:1em}.twae-horizontal-timeline.label_content_top .twae-label-bg.twae-labels{height:auto!important}.twae-horizontal-timeline.label_content_top .twae-label-bg.twae-labels:has(.twae-label-small){height:calc(var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 16px + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-label-content-inside .twae-label-bg.twae-labels{align-items:initial}.twae-horizontal-timeline.twae-horizontal-bottom.twae-wrapper .twae-labels.twae-label-bg{top:auto!important;bottom:calc(0px - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2) - var(--tw-ibx-size) * 2 - var(--lbl-bd-width)*2)!important;margin-bottom:.75em}.twae-horizontal-timeline.twae-horizontal-bottom.twae-wrapper:not(.twae-post-timeline) .twae-labels.twae-label-bg{bottom:calc(0px - (var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap)) - var(--tw-ibx-size) * 2 - var(--lbl-bd-width)*2 - 15px)!important;margin-bottom:0}.twae-label-bg .twae-inner-label{border:var(--lbl-bd-width) var(--lbl-bd-style) var(--lbl-bd-color)}.twae-horizontal-timeline .twae-label-bg.twae-lbl-arrow .twae-inner-label:before{background:linear-gradient(to bottom left,var(--lbl-arw-bg) 52%,transparent 48%);left:calc(50% - (var(--tw-ibx-size)/ 3.5)/ 2);border-width:var(--lbl-bd-width) var(--lbl-bd-width) 0 0}.twae-horizontal-timeline .twae-label-bg.twae-lbl-arrow .twae-inner-label::before{bottom:calc(0px - (var(--tw-ibx-size)/ 3.5)/ 2 - var(--lbl-bd-width)/ 2);rotate:136deg}.twae-horizontal-timeline.twae-horizontal-bottom .twae-label-bg.twae-lbl-arrow .twae-inner-label::before{top:calc(0px - (var(--tw-ibx-size)/ 3.5)/ 2 - var(--lbl-bd-width));transform:rotate(179deg)}.twae-horizontal-timeline .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{width:var(--tw-line-width);height:calc(var(--tw-ibx-size) * .5 + var(--lbl-bd-width) + var(--tw-ibx-bd-width));left:calc(50% - var(--tw-line-width)/ 2);border-width:0 calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px);bottom:calc(0px - var(--tw-ibx-size)/ 2 - var(--lbl-bd-width) - var(--tw-ibx-bd-width))}.twae-horizontal-bottom .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{border-width:0 calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px)}.twae-horizontal-timeline.twae-horizontal-bottom .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{top:calc(0px - var(--tw-ibx-size)/ 2 - var(--lbl-bd-width) - var(--tw-ibx-bd-width))}.twae-horizontal-timeline .twae-story-no-dot .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{height:calc(var(--tw-ibx-size) + var(--lbl-bd-width));bottom:calc(0px - var(--tw-ibx-size) - var(--lbl-bd-width))}.twae-horizontal-timeline.twae-horizontal-bottom .twae-story-no-dot .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{top:calc(0px - var(--tw-ibx-size) - var(--lbl-bd-width));bottom:auto}.twae-horizontal-timeline .twae-story-no-icon .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{height:calc(var(--tw-ibx-size) * .75 + var(--lbl-bd-width) + var(--tw-ibx-bd-width));bottom:calc(0px - var(--tw-ibx-size)*.75 - var(--lbl-bd-width) - var(--tw-ibx-bd-width))}.twae-horizontal-timeline.twae-horizontal-bottom .twae-story-no-icon .twae-label-bg.twae-lbl-arrow-line .twae-inner-label::after{top:calc(0px - var(--tw-ibx-size)*.75 - var(--lbl-bd-width) - var(--tw-ibx-bd-width))}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-wrapper:not(.twae-horizontal-bottom) .twae-slider-container.swiper-container .twae-slider-wrapper{margin-bottom:var(--tw-cbx-bottom-margin)}.twae-horizontal-timeline.twae-wrapper:not(.twae-horizontal-bottom) .twae-story{margin-bottom:0}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1),.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story{margin-bottom:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-wrapper:not(.twae-horizontal-bottom):not(.label_content_top) .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-wrapper.label_content_top:not(.twae-horizontal-bottom) .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2)!important}.twae-horizontal-timeline.twae-wrapper.label_content_top.twae-horizontal-bottom .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2)!important}.twae-horizontal-timeline.twae-wrapper.label_content_top.twae-horizontal-bottom .twae-story{margin-bottom:calc(var(--tw-ibx-size) * 2)!important}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-h-line,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-line-fill.swiper-pagination-progressbar{bottom:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5 + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-wrapper:not(.twae-horizontal-bottom) .twae-line-fill.swiper-pagination-progressbar,.twae-horizontal-timeline.twae-wrapper:not(.twae-horizontal-bottom):not(.label_content_top) .twae-h-line{top:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5 + var(--lbl-bd-width)*2)!important}.twae-horizontal-timeline.twae-wrapper.label_content_top:not(.twae-horizontal-bottom) .twae-h-line,.twae-horizontal-timeline.twae-wrapper.label_content_top:not(.twae-horizontal-bottom) .twae-line-fill.swiper-pagination-progressbar{top:calc(0px + var(--tw-ibx-size) - var(--tw-line-width) * .5)!important}.twae-horizontal-timeline.twae-wrapper.label_content_top.twae-horizontal-bottom .twae-h-line,.twae-horizontal-timeline.twae-wrapper.label_content_top.twae-horizontal-bottom .twae-line-fill.swiper-pagination-progressbar{bottom:calc(0px + var(--tw-ibx-size) - var(--tw-line-width) * .5)!important}.twae-horizontal-timeline.twae-wrapper .twae-icon{transition:all .2s ease-out;left:calc(var(--tw-ibx-position) * 1% - var(--tw-ibx-size) * var(--tw-ibx-position)/ 100);top:calc(var(--tw-ibx-size)/ 2 - var(--tw-ibx-size) * 2)}.twae-horizontal-timeline.twae-wrapper .swiper-slide.twae-in-view-port :where(.twae-icon,.twae-icondot){border-color:var(--tw-line-filling-color)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-icon,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-icon{top:auto;bottom:calc(var(--tw-ibx-size)/ 2 - var(--tw-ibx-size) * 2)}.twae-horizontal-timeline.twae-wrapper .twae-icondot{top:calc(var(--tw-ibx-size) * .75 - var(--tw-ibx-size) * 2);left:calc(var(--tw-ibx-position) * 1% - var(--tw-ibx-size) * var(--tw-ibx-position)/ 100 + var(--tw-ibx-size)/ 4)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-icondot,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-icondot{top:auto;bottom:calc(var(--tw-ibx-size) * .75 - var(--tw-ibx-size) * 2)}.twae-horizontal-timeline.twae-wrapper .twae-icon:after,.twae-horizontal-timeline.twae-wrapper .twae-icon:before,.twae-horizontal-timeline.twae-wrapper .twae-icondot:after,.twae-horizontal-timeline.twae-wrapper .twae-icondot:before{width:calc(var(--tw-ibx-bd-width) + var(--tw-line-width) * .1);height:calc(var(--tw-line-width) - var(--tw-line-bd-width) * 2px);top:calc(50% - (var(--tw-line-width) - var(--tw-line-bd-width) * 2px)/ 2)}.twae-horizontal-timeline.twae-wrapper .twae-icon:before,.twae-horizontal-timeline.twae-wrapper .twae-icondot:before{left:calc(0px - var(--tw-ibx-bd-width))}.twae-horizontal-timeline.twae-wrapper .twae-icon:after,.twae-horizontal-timeline.twae-wrapper .twae-icondot:after{right:calc(0px - var(--tw-ibx-bd-width))}.twae-horizontal-timeline.twae-wrapper .twae-arrow{background:linear-gradient(to bottom right,var(--tw-arw-bg,var(--tw-cbx-title-bg)) 52%,transparent 48%);top:calc(var(--tw-ibx-size)/ 7 - var(--tw-ibx-size)/ 3.5 + var(--tw-cbx-bd-top-width)/ 3);left:calc(var(--tw-ibx-position) * 1% - var(--tw-ibx-size) * var(--tw-ibx-position)/ 100 + var(--tw-ibx-size)/ 2 - var(--tw-ibx-size)/ 7);border-width:var(--tw-cbx-bd-top-width) 0 0 var(--tw-cbx-bd-top-width)}.twae-horizontal-timeline.twae-wrapper.twae-bg-gradient.twae-bg-hover .twae-story:hover .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-bg-hover .twae-story:hover .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-bg-multicolor.twae-bg-hover .twae-story:hover .twae-arrow{background:linear-gradient(to bottom right,var(--tw-cbx-title-bg,var(--tw-cbx-bg-hover)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.twae-bg-gradient.twae-bg-hover .twae-story:hover .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.twae-bg-hover .twae-story:hover .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.twae-bg-multicolor.twae-bg-hover .twae-story:hover .twae-arrow{background:linear-gradient(to top left,var(--tw-cbx-title-bg,var(--tw-cbx-bg-hover)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n-2) .twae-arrow{background:linear-gradient(to bottom right,var(--tw-arw-bg2,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n-1) .twae-arrow{background:linear-gradient(to bottom right,var(--tw-arw-bg3,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n) .twae-arrow{background:linear-gradient(to bottom right,var(--tw-arw-bg4,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-horizontal-bottom.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n-2) .twae-arrow{background:linear-gradient(to top left,var(--tw-arw-bg2,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-horizontal-bottom.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n-1) .twae-arrow{background:linear-gradient(to top left,var(--tw-arw-bg3,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-horizontal-bottom.twae-wrapper.twae-bg-multicolor .twae-story:nth-child(4n) .twae-arrow{background:linear-gradient(to top left,var(--tw-arw-bg4,var(--tw-arw-bg)) 52%,transparent 48%)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-arrow{background:linear-gradient(to top left,var(--tw-arw-bg) 52%,transparent 48%);top:auto;bottom:calc(var(--tw-ibx-size)/ 7 - var(--tw-ibx-size)/ 3.5 + var(--tw-cbx-bd-top-width)/ 3);border-width:0 var(--tw-cbx-bd-bottom-width) var(--tw-cbx-bd-bottom-width) 0}.twae-horizontal-timeline.twae-wrapper .twae-arrow-line{top:calc(0px - var(--tw-ibx-size) * .5);left:calc(var(--tw-ibx-position) * 1% - var(--tw-ibx-size) * var(--tw-ibx-position)/ 100 + var(--tw-ibx-size)/ 2 - var(--tw-line-width)/ 2);height:calc(var(--tw-ibx-size) * .5);width:var(--tw-line-width);border-width:0 calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1) .twae-arrow-line,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-arrow-line{top:auto;bottom:calc(0px - var(--tw-ibx-size) * .5)}.twae-horizontal-timeline.twae-wrapper .twae-story-no-icon .twae-arrow-line{height:calc(var(--tw-ibx-size) * .75);top:calc(0px - var(--tw-ibx-size) * .75)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1).twae-story-no-icon .twae-arrow-line,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story-no-icon .twae-arrow-line{top:auto;bottom:calc(0px - var(--tw-ibx-size) * .75)}.twae-horizontal-timeline.twae-wrapper .twae-story-no-dot .twae-arrow-line{height:calc(var(--tw-ibx-size) - var(--tw-line-width) * .5);top:calc(0px - var(--tw-ibx-size) + var(--tw-line-width) * .5)}.twae-horizontal-timeline.twae-wrapper .twae-arrow-line:after,.twae-horizontal-timeline.twae-wrapper .twae-arrow-line:before{width:var(--tw-line-width);left:calc(0px - calc(var(--tw-line-bd-width) * 1px));border-width:0 calc(var(--tw-line-bd-width) * 1px) 0 calc(var(--tw-line-bd-width) * 1px)}.twae-horizontal-timeline.twae-wrapper .twae-arrow-line:before{height:calc(var(--tw-ibx-bd-width));top:calc(0px - var(--tw-ibx-bd-width))}.twae-horizontal-timeline.twae-wrapper .twae-arrow-line:after{height:calc(var(--tw-cbx-bd-top-width));bottom:calc(0px - var(--tw-cbx-bd-top-width))}.twae-horizontal-timeline.twae-wrapper .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-slider-container.swiper-container .twae-slider-wrapper{margin-top:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1),.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story{margin-top:0;margin-bottom:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px)}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-story{align-self:flex-end}.twae-horizontal-bottom.twae-wrapper .equal-height-slides .twae-story{align-self:stretch}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(2n+1){align-self:flex-start}.twae-horizontal-timeline.twae-wrapper .equal-height-slides .twae-story{height:auto!important}.twae-horizontal-timeline.twae-wrapper .twae-story.swiper-slide{overflow:visible}.twae-horizontal-timeline.twae-wrapper .twae-content{height:100%}.twae-horizontal-timeline.twae-wrapper.twae-bg-gradient .twae-story .twae-content{background-image:linear-gradient(to bottom,var(--tw-cbx-bg),var(--tw-cbx-bg-gradient))}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both.twae-bg-gradient .twae-story:nth-child(2n+1) .twae-content,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom.twae-bg-gradient .twae-story .twae-content{background-image:linear-gradient(to top,var(--tw-cbx-bg),var(--tw-cbx-bg-gradient))}.twae-horizontal-timeline.twae-horizontal-bottom{--tw-cbx-bd-top-width:0px;--tw-cbx-bd-bottom-width:3px}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-h-line,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-line-fill.swiper-pagination-progressbar{bottom:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--tw-line-width) * .5);top:auto}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-button-next,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-button-prev{bottom:calc(0px + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--tw-ibx-size) - var(--nav-icon-height) * .5 + var(--lbl-bd-width)*2);top:auto}.twae-horizontal-bottom .twae-content{border-width:var(--tw-cbx-bd-top-width) var(--tw-cbx-bd-right-width) var(--tw-cbx-bd-bottom-width) var(--tw-cbx-bd-left-width)}.twae-horizontal-bottom.twae-label-content-inside .twae-content{flex-direction:column-reverse}.twae-horizontal-timeline.twae-wrapper.twae-horizontal-both .twae-story:nth-child(odd) .twae-arrow,.twae-horizontal-timeline.twae-wrapper.twae-horizontal-bottom .twae-arrow{bottom:calc(var(--tw-ibx-size)/ 7 - var(--tw-ibx-size)/ 3.5 + var(--tw-cbx-bd-bottom-width)/ 3)}.twae-wrapper.twae-horizontal-bottom .twae-story-no-dot .twae-arrow-line{top:auto;bottom:calc(0px - var(--tw-ibx-size) + var(--tw-line-width) * .5)}.twae-wrapper .year-swiper-container{position:absolute;width:100%;overflow:hidden;z-index:99}.twae-horizontal-highlighted-timeline.twae-wrapper .year-swiper-container .swiper-slide{margin-bottom:10px;margin-top:calc(var(--tw-ibx-size) * 2 + var(--tw-lbl-big-size) + var(--tw-lbl-small-size) + var(--tw-lbl-gap) * 2 + 20px + var(--lbl-bd-width)*2)!important;overflow:visible;opacity:1;transition:opacity .6s ease-in-out}@media (min-width:768px){.twae-horizontal-highlighted-timeline.twae-wrapper .thumb .twae-content{display:block}.twae-horizontal-highlighted-timeline.twae-wrapper .thumb .twae-media{margin-right:10px;float:left;width:calc(var(--tw-cbx-img-width));max-width:calc(50% - 10px)}.twae-horizontal-highlighted-timeline.twae-wrapper :not(.twae-popup-bg) .thumb .twae-media iframe,.twae-horizontal-highlighted-timeline.twae-wrapper :not(.twae-popup-bg) .thumb .twae-media img{float:left;width:calc(100% - (var(--tw-cbx-img-margin-left) + var(--tw-cbx-img-margin-right)));object-fit:cover;object-position:center}.twae-horizontal-highlighted-timeline.twae-wrapper:not([data-enable-popup=yes]) .thumb .twae-content:not(.twae-hg-image-not) .twae-title{display:inline-block;min-width:50%;width:calc(100% - var(--tw-cbx-img-width) - 10px)}.twae-horizontal-highlighted-timeline.twae-wrapper .thumb .twae-content:not(.twae-hg-image-not) .twae-description{display:inline-block;min-width:50%;width:calc(100% - var(--tw-cbx-img-width) - 10px)}}@media (max-width:767px){.twae-horizontal-highlighted-timeline.twae-wrapper .year-swiper-container .swiper-slide:where(.swiper-slide-next,.swiper-slide-prev){opacity:0}}.twae-horizontal-highlighted-timeline.twae-wrapper .swiper-slide-active .twae-label-big{transition:all .2s ease-in;color:var(--tw-highlighted-color)}.twae-horizontal-highlighted-timeline.twae-wrapper .swiper-slide-active .twae-icon,.twae-horizontal-highlighted-timeline.twae-wrapper .swiper-slide-active .twae-icondot{transition:all .2s ease-in;background:var(--tw-highlighted-color)!important}.twae-horizontal-navigationBar .twae-year-nav{border:1px solid;border-color:var(--tw-ybx-text-color);padding:4px;text-align:center;color:var(--tw-ybx-text-color)}.twae-horizontal-navigationBar.twae-horizontal-navigation-center .twae-year-nav:first-child{margin-left:auto!important}.twae-horizontal-navigationBar.twae-horizontal-navigation-center .twae-year-nav:last-child{margin-right:auto!important}.twae-horizontal-navigationBar.twae-horizontal-navigation-right .twae-year-nav:first-child{margin-left:auto!important}.twae-horizontal-navigationBar .twae-year-nav.active{border:2px solid;border-color:var(--tw-ibx-color);font-weight:700;color:var(--tw-ibx-color)}.twae-horizontal-navigationBar{overflow:hidden;position:relative;width:calc(100% - 40px);margin:0 20px;padding:2px 5px;display:flex}.twae-hor-nav-wrapper :where(.swiper-button-prev,.swiper-button-next){display:none}.twae-hor-nav-wrapper{position:relative;width:calc(100% - 32px);margin:0 16px 20px 16px}.twae-hor-nav-wrapper .twae-horizontal-navigationBar .swiper-wrapper,.twae-horizontal-timeline.twae-wrapper .twae-slider-container.swiper-container .swiper-wrapper,.twae-horizontal-timeline.twae-wrapper .year-swiper-container .swiper-wrapper{overflow:visible!important}.twae-hor-nav-wrapper .swiper-button-next,.twae-hor-nav-wrapper .swiper-button-prev{position:absolute;transform:translateY(-50%);margin-top:0;width:auto;height:auto;font-size:16px}.twae-hor-nav-wrapper :where(.swiper-button-next,.swiper-button-prev)::after{content:''}.twae-hor-nav-wrapper .swiper-button-next,.twae-hor-nav-wrapper .swiper-container-rtl .swiper-button-prev{right:-16px}.twae-hor-nav-wrapper .swiper-button-prev,.twae-hor-nav-wrapper .swiper-container-rtl .swiper-button-next{left:-16px}.twae-hor-nav-wrapper .swiper-button-next,.twae-hor-nav-wrapper .swiper-button-prev{background-image:none!important}.twae-hor-nav-wrapper .twae-nav-next i,.twae-hor-nav-wrapper .twae-nav-prev i{color:var(--tw-ybx-text-color);display:block}@media screen and (max-width:1024px){.twae-horizontal-navigation-center .twae-horizontal-navigation-items,.twae-horizontal-navigation-right .twae-horizontal-navigation-items{justify-content:left!important}}@font-face {
  font-family: 'fontello';
  src: url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.eot?42994344);
  src: url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.eot?42994344#iefix) format('embedded-opentype'),
       url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.woff2?42994344) format('woff2'),
       url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.woff?42994344) format('woff'),
       url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.ttf?42994344) format('truetype'),
       url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.svg?42994344#fontello) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url(//theparishtrust.org.uk/wp-content/plugins/timeline-widget-addon-for-elementor-pro/assets/font/fontello.svg?42994344#fontello) format('svg');
  }
}
*/
 
 [class^="twae-icon-"]:before, [class*=" twae-icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.twae-icon-left-open-big:before { content: '\e800'; } /* '' */
.twae-icon-left-open:before { content: '\e801'; } /* '' */
.twae-icon-left-circled:before { content: '\e802'; } /* '' */
.twae-icon-right-open:before { content: '\e803'; } /* '' */
.twae-icon-right-big:before { content: '\e804'; } /* '' */
.twae-icon-right-circled:before { content: '\e805'; } /* '' */
.twae-icon-right-open-big:before { content: '\e806'; } /* '' */
.twae-icon-left-open-1:before { content: '\f007'; } /* '' */