/*
Theme Name: ЦветочНикки
Theme URI: https://tsvetochnikki.ru
Author: ИП Васьковушка
Author URI: https://tsvetochnikki.ru
Description: Кастомная тема для цветочного бутика ЦветочНикки. Тёплый крафтовый дизайн.
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tsvetochnikki
*/

/* ==========================================================================
   CSS Variables - Brand Colors
   ========================================================================== */

:root {
    /* Основные цвета - стиль butonoff (чистый белый) */
    --color-dark-coffee: #302821;
    --color-flower-white: #FFF9ED;
    --color-grape-plum: #722F37;
    --color-palm-leaf: #9D976C;

    /* Акцентные цвета */
    --color-light-blue: #AAC6DA;
    --color-royal-gold: #FFD670;
    --color-chocolate: #CF6732;
    --color-powder-blush: #E5A9A9;

    /* Дополнительные цвета (butonoff стиль) */
    --color-border-light: #E8E8E8;
    --color-bg-light: #F7F7F7;
    --color-text-muted: #666666;

    /* Типографика */
    --font-logo: 'Comfortaa', sans-serif;
    --font-heading: 'Comfortaa', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius (более мягкие как у butonoff) */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows (минималистичные) */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Global Styles
   ========================================================================== */

body {
    background-color: var(--color-flower-white) !important;
    color: var(--color-dark-coffee);
    font-family: var(--font-body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-coffee);
    font-weight: 600;
}

a {
    color: var(--color-grape-plum);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark-coffee);
}

/* ==========================================================================
   Header - стиль butonoff (информативная шапка)
   ========================================================================== */

/* Верхняя информационная строка */
.top-info-bar {
    background-color: var(--color-flower-white);
    border-bottom: 1px solid var(--color-border-light);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-info-bar__delivery {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info-bar__delivery-time {
    font-weight: 600;
    color: var(--color-grape-plum);
}

.top-info-bar__ratings {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-info-bar__rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-info-bar__rating-value {
    font-weight: 600;
    color: var(--color-dark-coffee);
}

.top-info-bar__phone {
    font-weight: 600;
    color: var(--color-dark-coffee);
}

/* Основная шапка */
.site-header,
.ast-primary-header {
    background-color: var(--color-flower-white) !important;
    border-bottom: 1px solid var(--color-border-light);
}

.site-header.ast-sticky-active {
    box-shadow: var(--shadow-soft);
}

.site-logo img,
.custom-logo {
    max-height: 50px;
    width: auto;
}

/* Navigation - стиль butonoff (простое меню с разделителями) */
.main-navigation a,
.ast-header-menu a {
    font-family: var(--font-body);
    color: var(--color-dark-coffee) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0;
    transition: color 0.2s ease;
    padding: 8px 16px !important;
    border-right: 1px solid var(--color-border-light);
}

.main-navigation li:last-child a,
.ast-header-menu li:last-child a {
    border-right: none;
}

.main-navigation a:hover,
.ast-header-menu a:hover {
    color: var(--color-grape-plum) !important;
}

/* Cart Icon */
.ast-header-woo-cart .ast-cart-menu-wrap .count,
.ast-site-header-cart .ast-cart-menu-wrap .count {
    background-color: var(--color-grape-plum) !important;
    color: var(--color-flower-white) !important;
    font-size: 0.75rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/* Primary Button (Купить) */
.wp-block-button__link,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.ast-button,
button,
input[type="button"],
input[type="submit"] {
    background-color: var(--color-grape-plum) !important;
    color: var(--color-flower-white) !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    padding: 14px 32px !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.wp-block-button__link:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.ast-button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: var(--color-dark-coffee) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover) !important;
}

/* Secondary Button */
.button.secondary,
.woocommerce a.button.secondary {
    background-color: var(--color-palm-leaf) !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    padding: var(--spacing-xl) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    color: var(--color-dark-coffee);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-coffee);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   Category Cards
   ========================================================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-xl) 0;
}

.category-card {
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-card h3 {
    color: var(--color-dark-coffee);
    margin: 0;
    font-size: 1.2rem;
}

/* Category Colors */
.category-card--bouquets {
    background-color: var(--color-light-blue);
}

.category-card--mono {
    background-color: var(--color-powder-blush);
}

.category-card--dried {
    background-color: var(--color-royal-gold);
}

.category-card--plants {
    background-color: var(--color-palm-leaf);
    color: #fff;
}

/* ==========================================================================
   WooCommerce - Product Grid (стиль butonoff)
   ========================================================================== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.woocommerce ul.products li.product {
    background: var(--color-flower-white) !important;
    border: 1px solid var(--color-border-light) !important;
    border-radius: var(--radius-md) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s ease;
    display: flex !important;
    flex-direction: column !important;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-hover);
}

/* Grow content to push button down */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Product Image */
.woocommerce ul.products li.product a img {
    border-radius: 0;
    transition: transform 0.3s ease;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.02);
}

/* Product Info Container */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body) !important;
    color: var(--color-dark-coffee) !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    padding: 12px 16px 8px !important;
    margin: 0;
    line-height: 1.4;
}

/* Product Price */
.woocommerce ul.products li.product .price {
    color: var(--color-dark-coffee) !important;
    font-size: 1.1rem !important;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 0 16px 12px;
    display: block;
}

.woocommerce ul.products li.product .price del {
    color: var(--color-text-muted) !important;
    font-size: 0.9rem !important;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    color: var(--color-grape-plum) !important;
    text-decoration: none;
}

/* Sale Badge - стиль butonoff */
.woocommerce span.onsale {
    background-color: var(--color-grape-plum) !important;
    color: var(--color-flower-white) !important;
    border-radius: 4px !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.2 !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
}

/* Бейдж баллов лояльности (как у butonoff) */
.product-badge--points {
    background-color: var(--color-royal-gold);
    color: var(--color-dark-coffee);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* Wishlist button (сердечко) */
.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.woocommerce ul.products li.product:hover .product-wishlist {
    opacity: 1;
}

/* Add to Cart Button - всегда видимая */
.woocommerce ul.products li.product .button {
    display: block !important;
    margin: 0 16px 16px !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.85rem !important;
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================================================
   WooCommerce - Single Product
   ========================================================================== */

.woocommerce div.product div.images img {
    border-radius: var(--radius-md);
}

.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    color: var(--color-dark-coffee);
    font-size: 2rem;
}

.woocommerce div.product p.price {
    color: var(--color-grape-plum) !important;
    font-size: 1.75rem !important;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--color-dark-coffee);
    opacity: 0.85;
    line-height: 1.8;
}

/* Quantity Input */
.woocommerce .quantity .qty {
    border: 2px solid var(--color-palm-leaf) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px !important;
}

/* ==========================================================================
   WooCommerce - Cart
   ========================================================================== */

.woocommerce-cart table.cart {
    border: none !important;
}

.woocommerce-cart table.cart td {
    border-color: var(--color-palm-leaf) !important;
    border-width: 1px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: rgba(255, 249, 237, 0.5);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

/* Cross-sells */
.woocommerce-cart .cross-sells h2 {
    font-family: var(--font-heading);
    color: var(--color-dark-coffee);
}

/* ==========================================================================
   WooCommerce - Checkout
   ========================================================================== */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 2px solid rgba(157, 151, 108, 0.3) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-palm-leaf) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(157, 151, 108, 0.1) !important;
}

.woocommerce form .form-row label {
    font-family: var(--font-body);
    color: var(--color-dark-coffee);
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer,
footer.site-footer {
    background-color: var(--color-dark-coffee) !important;
    color: var(--color-flower-white) !important;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

/* Hide Astra default footer bar */
.site-below-footer-wrap,
.ast-footer-copyright,
.ast-builder-footer-grid-columns,
.ast-footer-overlay,
.ast-small-footer,
.site-footer-overlay {
    display: none !important;
}

.site-footer a {
    color: var(--color-flower-white) !important;
    opacity: 0.85;
}

.site-footer a:hover {
    opacity: 1;
    color: var(--color-royal-gold) !important;
}

.site-footer h3,
.site-footer h4,
.site-footer .widget-title {
    color: var(--color-flower-white) !important;
    font-family: var(--font-heading);
}

.footer-logo {
    max-width: 120px;
    margin-bottom: var(--spacing-md);
}

/* Footer Pattern Overlay */
.footer-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    opacity: 0.1;
    pointer-events: none;
}

/* ==========================================================================
   Sidebar & Filters
   ========================================================================== */

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: rgba(157, 151, 108, 0.2) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--color-palm-leaf) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: var(--color-palm-leaf) !important;
    border: none !important;
}

/* Custom Checkboxes */
input[type="checkbox"] {
    accent-color: var(--color-palm-leaf);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* Test Comment */

/* Logo styling */
.site-title,
.site-title a,
.ast-site-title,
.ast-site-identity .site-title {
    display: none !important;
}

/* Make logo larger and more prominent */
.site-logo img,
.custom-logo,
.ast-has-custom-logo .custom-logo,
.ast-site-identity .custom-logo {
    max-height: 60px !important;
    width: auto !important;
}

/* Logo container */
.site-branding,
.ast-site-identity {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Mobile Fixes - ЦветочНикки
   ========================================================================== */

@media (max-width: 768px) {

    /* Top info bar - больше отступов по краям */
    .top-info-bar {
        padding: 10px 15px !important;
    }

    .top-info-bar .container {
        padding: 0 10px !important;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-info-bar__center,
    .top-info-bar__phone,
    .top-info-bar__delivery {
        font-size: 0.8rem;
    }

    /* Hamburger menu - более читаемый цвет */
    .ast-mobile-menu-trigger-fill,
    .ast-button-wrap .menu-toggle,
    .ast-mobile-menu-buttons .menu-toggle {
        background: #fff !important;
        border: 2px solid var(--color-grape-plum) !important;
        border-radius: 8px !important;
    }

    .ast-mobile-menu-trigger-fill .ast-mobile-svg,
    .menu-toggle .ast-mobile-svg {
        fill: var(--color-grape-plum) !important;
    }

    /* Hero slider buttons - сделать видимыми и не обрезанными */
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 20px !important;
        align-items: stretch !important;
    }

    .hero-buttons .button,
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
    }

    /* Slider dots - сделать видимыми */
    .slider-dots {
        bottom: 15px !important;
    }

    .slider-dot {
        width: 10px !important;
        height: 10px !important;
    }

    /* Hide slider arrows on mobile - they overlap text */
    .hero-slider .slider-arrow,
    .hero-slider .slick-arrow,
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next,
    .slider-prev,
    .slider-next,
    .hero-section .slider-nav,
    [class*="slider-arrow"],
    [class*="slick-prev"],
    [class*="slick-next"] {
        display: none !important;
    }

    /* "Новинка" и другие бейджи - контрастный цвет */
    .onsale,
    .ast-shop-product-out-of-stock,
    .badge,
    .product-badge,
    span[class*="badge"],
    .woocommerce span.onsale {
        background: var(--color-grape-plum) !important;
        color: #fff !important;
        font-size: 0.75rem !important;
        padding: 6px 14px !important;
        border-radius: 4px !important;
        font-weight: 600 !important;
    }

    /* Category labels - больше отступов */
    .product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        padding: 0 10px !important;
        font-size: 0.9rem !important;
    }

    /* Product cards - отступы от краёв */
    .woocommerce ul.products {
        padding: 0 15px !important;
    }

    /* Star ratings - сделать видимыми */
    .star-rating,
    .woocommerce .star-rating {
        color: #FFD700 !important;
        font-size: 0.9rem !important;
    }

    .star-rating span::before,
    .woocommerce .star-rating span::before {
        color: #FFD700 !important;
    }

    /* Product category label on card */
    .astra-shop-summary-wrap .ast-woo-product-category,
    .product .posted_in,
    .product-category-label {
        color: var(--color-grape-plum) !important;
        font-weight: 600 !important;
        padding: 0 10px !important;
        font-size: 0.8rem !important;
    }

    /* Hero section padding */
    .hero-section,
    .hero-slide-content {
        padding: 30px 20px !important;
    }

    /* Sections padding */
    section,
    .home-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Category cards grid */
    .category-card {
        margin: 0 5px !important;
    }
}

@media (max-width: 480px) {

    /* Ещё меньшие экраны */
    .top-info-bar__center {
        font-size: 0.75rem;
    }

    .hero-slide-text h1 {
        font-size: 1.5rem !important;
    }

    .hero-slide-text p {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
    }

    /* Product title wrap */
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
}

/* ==========================================================================
   Additional Global Fixes
   ========================================================================== */

/* Hide star ratings on product cards */
.woocommerce ul.products li.product .star-rating,
.products .star-rating,
.product-card .star-rating,
.astra-shop-summary-wrap .star-rating {
    display: none !important;
}

/* Product badges positioning - inside image thumbnail */
/* Новинка badge - top left */
.ast-shop-product-out-of-stock,
.woocommerce .ast-shop-product-out-of-stock,
.astra-shop-thumbnail-wrap .ast-shop-product-out-of-stock {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    margin: 0 !important;
    z-index: 10 !important;
    background: var(--color-grape-plum) !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

/* Скидка badge - top right */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale,
.onsale,
.ast-onsale-card {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    margin: 0 !important;
    z-index: 10 !important;
    background: #e74c3c !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

/* Thumbnail wrapper must be relative for absolute positioning */
.astra-shop-thumbnail-wrap,
.woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
    position: relative !important;
    overflow: visible !important;
}

/* Product card container */
.woocommerce ul.products li.product {
    position: relative !important;
    overflow: visible !important;
}

/* Badge wrapper if exists */
.product-badges,
.woocommerce ul.products li.product .product-badges {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

/* Category filters - horizontal scroll indicator */
.category-filter-bar {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-filter-bar::-webkit-scrollbar {
    display: none;
}

.category-filter-bar::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to left, var(--color-flower-white) 50%, transparent);
    padding: 10px 15px 10px 30px;
    font-size: 1.2rem;
    color: var(--color-grape-plum);
    pointer-events: none;
}

/* Cart page fixes */
.woocommerce-cart .quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
}

.woocommerce-cart .quantity .qty {
    width: 50px !important;
    text-align: center !important;
    border: 1px solid var(--color-border-light) !important;
    border-radius: 0 !important;
    padding: 10px !important;
}

.woocommerce-cart .quantity .minus,
.woocommerce-cart .quantity .plus {
    background: var(--color-grape-plum) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 15px !important;
    cursor: pointer;
}

.woocommerce-cart .quantity .minus {
    border-radius: 8px 0 0 8px !important;
}

.woocommerce-cart .quantity .plus {
    border-radius: 0 8px 8px 0 !important;
}

.woocommerce-cart a.remove,
.woocommerce a.remove {
    color: var(--color-grape-plum) !important;
    font-size: 0.9rem !important;
    text-decoration: underline !important;
    background: transparent !important;
}

/* Cart totals and checkout button */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button,
.checkout-button {
    background: var(--color-grape-plum) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: block !important;
}

/* Mobile specific cart fixes */
@media (max-width: 768px) {

    /* Contacts page mobile */
    .contacts-grid,
    .contact-info-grid {
        display: block !important;
        padding: 15px !important;
    }

    .contact-card,
    .contact-section {
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 20px 15px !important;
    }

    /* About page mobile */
    .about-section,
    .about-content {
        padding: 20px 15px !important;
    }

    .about-grid {
        display: block !important;
    }

    .about-card {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    /* Category filters mobile - scroll hint */
    .shop-category-filter,
    .category-pills {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px !important;
        gap: 8px !important;
        margin: 0 -15px !important;
        padding-left: 15px !important;
        padding-right: 40px !important;
    }

    .shop-category-filter::after,
    .category-pills::after {
        content: '→';
        position: sticky;
        right: 0;
        background: linear-gradient(to left, var(--color-flower-white) 60%, transparent);
        padding: 8px 10px 8px 25px;
        font-size: 1rem;
        color: var(--color-grape-plum);
        display: flex;
        align-items: center;
        animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    .category-pill,
    .shop-category-filter a {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* Cart mobile fixes */
    .woocommerce-cart-form {
        padding: 10px !important;
    }

    .woocommerce-cart .shop_table td {
        padding: 10px 5px !important;
    }

    .woocommerce table.cart .product-thumbnail {
        width: 60px !important;
    }

    .woocommerce table.cart img {
        width: 50px !important;
        height: auto !important;
    }

    /* Contact info cards on mobile */
    .wp-block-columns {
        flex-direction: column !important;
    }

    .wp-block-column {
        width: 100% !important;
        flex-basis: 100% !important;
        margin-bottom: 20px !important;
    }
}