/**
 * Avokado Express Delivery Styles
 */

/* Buy Now Button Wrapper */
.avokado-buy-now-wrapper {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.avokado-buy-now-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.avokado-buy-now-button:hover,
.avokado-buy-now-button:focus {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
}

.avokado-buy-now-button:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.avokado-buy-now-subtitle {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Mixed Cart Notice */
.woocommerce-notices-wrapper .woocommerce-message.avokado-mixed-cart-notice,
.woocommerce-notices-wrapper .woocommerce-info.avokado-mixed-cart-notice,
.woocommerce-notice.avokado-mixed-cart-notice {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.woocommerce-notice.avokado-mixed-cart-notice::before {
    color: #ffc107;
}

/* Countdown Blocks */
.avokado-tasting-box-countdown,
.avokado-express-countdown {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.avokado-tasting-box-countdown .countdown-label,
.avokado-express-countdown .countdown-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.avokado-tasting-box-countdown .countdown-date,
.avokado-express-countdown .countdown-date {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.avokado-tasting-box-countdown .countdown-timer,
.avokado-express-countdown .countdown-timer {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.avokado-tasting-box-countdown .countdown-timer span,
.avokado-express-countdown .countdown-timer span {
    display: inline-block;
}

.avokado-tasting-box-countdown .countdown-days,
.avokado-tasting-box-countdown .countdown-hours,
.avokado-tasting-box-countdown .countdown-minutes,
.avokado-express-countdown .countdown-days,
.avokado-express-countdown .countdown-hours,
.avokado-express-countdown .countdown-minutes {
    font-size: 28px;
    font-weight: 700;
    margin-right: 5px;
}

/* Standard Delivery Countdown (separate styling to differentiate) */
.avokado-standard-countdown {
    background: linear-gradient(135deg, #007bff 0%, #17a2b8 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0 0 0;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.avokado-standard-countdown .countdown-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.avokado-standard-countdown .countdown-date {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.avokado-standard-countdown .countdown-timer {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.avokado-standard-countdown .countdown-days,
.avokado-standard-countdown .countdown-hours,
.avokado-standard-countdown .countdown-minutes {
    font-size: 28px;
    font-weight: 700;
    margin-right: 5px;
}

/* Express Product Badge */
.avokado-express-badge {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* Cart/Checkout Mixed Notice */
.avokado-mixed-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.avokado-mixed-notice::before {
    content: "⚠️";
    font-size: 20px;
}

.avokado-mixed-notice p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .avokado-buy-now-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .avokado-tasting-box-countdown,
    .avokado-express-countdown,
    .avokado-standard-countdown {
        padding: 20px;
    }

    .avokado-tasting-box-countdown .countdown-date,
    .avokado-express-countdown .countdown-date,
    .avokado-standard-countdown .countdown-date {
        font-size: 18px;
    }

    .avokado-tasting-box-countdown .countdown-timer,
    .avokado-express-countdown .countdown-timer,
    .avokado-standard-countdown .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .avokado-tasting-box-countdown .countdown-days,
    .avokado-tasting-box-countdown .countdown-hours,
    .avokado-tasting-box-countdown .countdown-minutes,
    .avokado-express-countdown .countdown-days,
    .avokado-express-countdown .countdown-hours,
    .avokado-express-countdown .countdown-minutes,
    .avokado-standard-countdown .countdown-days,
    .avokado-standard-countdown .countdown-hours,
    .avokado-standard-countdown .countdown-minutes {
        font-size: 24px;
    }
}

/* Loading state for Buy Now button */
.avokado-buy-now-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.avokado-buy-now-button.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: avokado-spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes avokado-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Express delivery notice in checkout */
.avokado-express-checkout-notice {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.avokado-express-checkout-notice p {
    margin: 0;
    color: #155724;
    font-weight: 500;
}

/* Sunday delivery highlight in date selector */
.okoskabet-delivery-date option.sunday-delivery {
    background-color: #d4edda;
    color: #155724;
    font-weight: 500;
}

/* ==========================================
   Front Page Hero Section - New Layout
   ========================================== */

/* Constrain hero inner container to match content sections below (1320px) */
.wp-block-cover.alignfull.front_video .wp-block-cover__inner-container {
    max-width: 1320px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Top row - product + info side by side */
.front-hero-top-row {
    align-items: flex-start !important;
    gap: 80px;
    margin-bottom: 20px !important;
}

.front-hero-top-row > .wp-block-column {
    display: flex;
    flex-direction: column;
}

/* Left column - tasting box */
.front-hero-product-column {
    justify-content: flex-start;
    align-items: center;
}

.front-hero-product-column .tasting-box,
.front-hero-product-column .wc-block-featured-product {
    width: 100%;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

.front-hero-product-column .wc-block-featured-product__wrapper {
    padding: 20px 15px !important;
    min-height: auto !important;
}

.front-hero-product-column .wc-block-featured-product .wc-block-featured-product__title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
}

.front-hero-product-column .wc-block-featured-product .wc-block-featured-product__description {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}

.front-hero-product-column .wc-block-featured-product .wc-block-featured-product__price {
    font-size: 22px !important;
    margin-bottom: 12px !important;
}

.front-hero-product-column .wc-block-featured-product .wp-block-button__link {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* Right column - info box */
.front-hero-info-column {
    justify-content: center;
}

.front-hero-info-box {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.front-hero-tagline {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #334010 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.3 !important;
}

.front-hero-description {
    font-size: 15px;
    color: #444;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.front-hero-free-delivery {
    font-size: 16px !important;
    color: #333 !important;
    margin: 0 0 18px 0 !important;
}

.front-hero-free-delivery strong {
    color: #28a745;
}

.front-hero-cta .wp-block-button__link {
    padding: 12px 28px !important;
}

/* Full-width countdown container with delivery date */
.front-countdown-full {
    margin-top: 15px;
    margin-bottom: 0 !important;
    width: 100%;
}

.front-countdown-full #countdown {
    width: 100%;
    display: block;
    padding: 18px 20px;
}

.front-countdown-full .countdown-delivery-date {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.front-countdown-full .countdown-delivery-date strong {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

.front-countdown-full #countdown h4 {
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.front-countdown-full #countdown-numbers {
    min-width: auto;
}

/* Delivery row - full width below */
.front-delivery-row {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
}

.front-delivery-columns {
    gap: 20px !important;
    margin: 0 !important;
}

.front-delivery-col {
    padding: 12px 15px;
    border-radius: 6px;
}

.front-delivery-col.front-delivery-standard {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-left: 3px solid #007bff;
}

.front-delivery-col.front-delivery-express {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 3px solid #28a745;
}

.front-delivery-col .front-delivery-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 0 6px 0 !important;
}

.front-delivery-col.front-delivery-standard .front-delivery-title {
    color: #0056b3 !important;
}

.front-delivery-col.front-delivery-express .front-delivery-title {
    color: #1e7e34 !important;
}

.front-delivery-col .front-delivery-date {
    font-size: 14px;
    margin: 0;
    color: #333;
}

.front-delivery-col .front-delivery-date strong {
    color: #000;
    font-weight: 600;
}

.front-delivery-col .front-delivery-note {
    font-size: 12px;
    color: #555;
    margin: 6px 0 0 0;
    font-style: italic;
}

/* Countdown inline style */
.front-delivery-col #countdown-container {
    margin-top: 8px;
    padding: 0;
    background: none;
}

.front-delivery-col #countdown {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.front-delivery-col #countdown .countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #0056b3;
    margin-right: 4px;
}

.front-delivery-col #countdown-numbers {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
}

.front-delivery-col #countdown-numbers > div {
    display: inline-flex;
    align-items: baseline;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
}

.front-delivery-col #countdown-numbers #days,
.front-delivery-col #countdown-numbers #hours,
.front-delivery-col #countdown-numbers #minutes,
.front-delivery-col #countdown-numbers #seconds {
    font-size: 18px;
    font-weight: 700;
    color: #0056b3 !important;
    line-height: 1;
    margin-right: 1px;
}

.front-delivery-col #countdown-numbers #days::after {
    content: "d";
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-right: 8px;
}

.front-delivery-col #countdown-numbers #hours::after {
    content: "t";
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-right: 8px;
}

.front-delivery-col #countdown-numbers #minutes::after {
    content: "m";
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-right: 8px;
}

.front-delivery-col #countdown-numbers #seconds::after {
    content: "s";
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

/* ==========================================
   Mobile Responsive Styles
   ========================================== */

@media (max-width: 1024px) {
    .wp-block-cover.alignfull.front_video .wp-block-cover__inner-container {
        padding-left: 0;
        padding-right: 0;
    }

    .front-hero-top-row {
        flex-direction: column !important;
        gap: 15px;
    }

    .front-hero-top-row .wp-block-column {
        flex-basis: 100% !important;
        width: 100% !important;
    }

    .front-hero-product-column {
        order: 1;
        align-items: stretch;
    }

    .front-hero-product-column .tasting-box,
    .front-hero-product-column .wc-block-featured-product {
        max-width: 100%;
    }

    .front-hero-info-column {
        order: 2;
    }

    .front-hero-info-box {
        padding: 20px;
        text-align: center;
    }

    .front-standard-countdown-wrapper {
        margin-top: 12px;
    }

    .front-hero-tagline {
        text-align: center !important;
    }

    .front-hero-info-box .wp-block-buttons {
        justify-content: center !important;
    }

    .front-delivery-columns {
        flex-direction: row !important;
    }
}

@media (max-width: 768px) {
    .front-hero-top-row {
        padding: 0 10px;
        gap: 12px;
        margin-bottom: 15px !important;
    }

    .front-hero-product-column .tasting-box,
    .front-hero-product-column .wc-block-featured-product {
        max-width: 100%;
    }

    .front-hero-info-box {
        padding: 18px;
    }

    .front-hero-tagline {
        font-size: 18px !important;
    }

    .front-hero-description {
        font-size: 14px;
    }

    .front-hero-free-delivery {
        font-size: 14px !important;
        text-align: center !important;
    }

    .front-delivery-row {
        padding: 12px 15px;
        margin-top: 12px;
    }

    .front-delivery-columns {
        gap: 12px !important;
    }

    .front-delivery-col {
        padding: 10px 12px;
    }

    .front-delivery-col .front-delivery-title {
        font-size: 13px !important;
    }

    .front-delivery-col .front-delivery-date {
        font-size: 13px;
    }

    .front-delivery-col #countdown-numbers #days,
    .front-delivery-col #countdown-numbers #hours,
    .front-delivery-col #countdown-numbers #minutes,
    .front-delivery-col #countdown-numbers #seconds {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .front-delivery-columns {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .front-delivery-col {
        flex-basis: 100% !important;
    }
}

@media (max-width: 480px) {
    .front-hero-top-row {
        padding: 0 8px;
        gap: 10px;
    }

    .front-hero-product-column .tasting-box,
    .front-hero-product-column .wc-block-featured-product {
        max-width: 100%;
    }

    .front-hero-product-column .wc-block-featured-product__wrapper {
        padding: 15px 12px !important;
    }

    .front-hero-product-column .wc-block-featured-product .wc-block-featured-product__title {
        font-size: 18px !important;
    }

    .front-hero-info-box {
        padding: 15px;
    }

    .front-hero-tagline {
        font-size: 16px !important;
    }

    .front-hero-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .front-hero-free-delivery {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .front-delivery-row {
        padding: 10px 12px;
    }

    .front-delivery-col {
        padding: 8px 10px;
    }

    .front-delivery-col .front-delivery-title {
        font-size: 12px !important;
    }

    .front-delivery-col .front-delivery-date {
        font-size: 12px;
    }

    .front-delivery-col .front-delivery-note {
        font-size: 11px;
    }

    .front-delivery-col #countdown-numbers #days,
    .front-delivery-col #countdown-numbers #hours,
    .front-delivery-col #countdown-numbers #minutes,
    .front-delivery-col #countdown-numbers #seconds {
        font-size: 14px;
    }
}

/* ==========================================
   Custom Tasting Box Styles
   ========================================== */

.tasting-box-custom {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tasting-box-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Express badge */
.tasting-box-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Image container */
.tasting-box-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 1 / 1;
}

.tasting-box-image a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tasting-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.tasting-box-custom:hover .tasting-box-image img {
    transform: scale(1.03);
}

/* Content area */
.tasting-box-content {
    padding: 20px 22px 22px;
}

/* Title */
.tasting-box-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.tasting-box-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tasting-box-title a:hover {
    color: #28a745;
}

/* Description */
.tasting-box-description {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 0 15px 0;
}

/* Includes list - overlaid on image */
.tasting-box-includes {
    list-style: none;
    padding: 14px 16px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 75%, transparent 100%);
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.tasting-box-includes li {
    position: relative;
    padding: 4px 10px 4px 24px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.tasting-box-includes li::before {
    content: "✓";
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: #8bca5c;
    font-weight: 700;
    font-size: 11px;
}

/* Price + Quantity Row */
.tasting-box-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

/* Price */
.tasting-box-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #334010 !important;
    margin-bottom: 0;
}

.tasting-box-price .amount,
.tasting-box-price span.amount,
.tasting-box-price .woocommerce-Price-amount.amount,
.tasting-box-price bdi {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #334010 !important;
}

.tasting-box-price del,
.tasting-box-price del .amount,
.tasting-box-price del span.amount,
.tasting-box-price del bdi {
    color: #999 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-right: 8px;
}

.tasting-box-price ins,
.tasting-box-price ins .amount,
.tasting-box-price ins span.amount,
.tasting-box-price ins bdi {
    text-decoration: none !important;
    color: #334010 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

.tasting-box-shipping {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666 !important;
}

/* Buttons */
.tasting-box-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tasting-box-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.tasting-box-btn-primary {
    background: #f1f3f5;
    color: #2c3e50;
    border: 1px solid #dee2e6;
}

.tasting-box-btn-primary:hover {
    background: #e9ecef;
    color: #2c3e50;
    border-color: #ced4da;
}

.tasting-box-btn-express {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.25);
}

.tasting-box-btn-express:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea885 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
    transform: translateY(-1px);
}

/* Tasting Box Quantity Selector */
.tasting-box-quantity {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tasting-box-quantity-selector {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    line-height: 1;
    height: 36px;
}

.tasting-box-qty-btn {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    line-height: 1;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    border-radius: 0 !important;
    vertical-align: middle;
}

.tasting-box-qty-btn:hover {
    background: #e9ecef;
}

.tasting-box-qty-btn:active {
    background: #dee2e6;
}

.tasting-box-qty-input,
input[type="number"].tasting-box-qty-input {
    width: 44px !important;
    height: 36px !important;
    border: none !important;
    border-left: 1px solid #dee2e6 !important;
    border-right: 1px solid #dee2e6 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    background: #fff !important;
    -moz-appearance: textfield !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    line-height: 36px !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    vertical-align: middle;
    outline: none !important;
    box-shadow: none !important;
}

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

/* ==========================================
   Tasting Box Responsive Styles
   ========================================== */

@media (max-width: 1024px) {
    .tasting-box-custom {
        max-width: 100%;
    }

    .tasting-box-price-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .tasting-box-custom {
        max-width: 100%;
    }

    .tasting-box-image {
        aspect-ratio: 1 / 1;
    }

    .tasting-box-content {
        padding: 18px 20px 20px;
    }

    .tasting-box-title {
        font-size: 18px;
    }

    .tasting-box-description {
        font-size: 13px;
    }

    .tasting-box-price {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .tasting-box-btn {
        padding: 11px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tasting-box-custom {
        max-width: 100%;
    }

    .tasting-box-image {
        aspect-ratio: 1 / 1;
    }

    .tasting-box-badge {
        font-size: 10px;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }

    .tasting-box-content {
        padding: 15px 16px 18px;
    }

    .tasting-box-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .tasting-box-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .tasting-box-price {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .tasting-box-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .tasting-box-btn {
        min-width: 100%;
        padding: 10px 14px;
    }
}

/* ==========================================
   Tasting Box Delivery Info
   ========================================== */

.tasting-box-delivery {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 3px solid #28a745;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #2e7d32;
}

.tasting-box-delivery-icon {
    margin-right: 6px;
}

.tasting-box-delivery strong {
    color: #1b5e20;
}

@media (max-width: 480px) {
    .tasting-box-delivery {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
}

/* ==========================================
   Inline Standard Countdown (no container)
   ========================================== */

.avokado-standard-countdown-inline {
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 123, 255, 0.15);
}

.countdown-inline-label {
    font-size: 13px;
    font-weight: 600;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.countdown-inline-date {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.countdown-inline-timer {
    font-size: 14px;
    color: #555;
}

.countdown-inline-timer .countdown-days,
.countdown-inline-timer .countdown-hours,
.countdown-inline-timer .countdown-minutes {
    font-size: 18px;
    font-weight: 700;
    color: #0056b3;
}

@media (max-width: 768px) {
    .avokado-standard-countdown-inline {
        padding: 12px 0;
        margin-top: 12px;
    }

    .countdown-inline-label {
        font-size: 12px;
    }

    .countdown-inline-date {
        font-size: 16px;
    }

    .countdown-inline-timer {
        font-size: 13px;
    }

    .countdown-inline-timer .countdown-days,
    .countdown-inline-timer .countdown-hours,
    .countdown-inline-timer .countdown-minutes {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .countdown-inline-label {
        font-size: 11px;
    }

    .countdown-inline-date {
        font-size: 15px;
    }

    .countdown-inline-timer {
        font-size: 12px;
    }

    .countdown-inline-timer .countdown-days,
    .countdown-inline-timer .countdown-hours,
    .countdown-inline-timer .countdown-minutes {
        font-size: 15px;
    }
}
