/**
 * Mänguväljakud_eu_2025 Theme stylesheet
 *
 * @package Mänguväljakud_eu_2025
 * @since 1.0.0
 Template: astra

 */

/* Old slide navigation styles removed - keeping only the beautiful version below */


/* E-poodi Slide-out Navigation Panel - Beautiful Design */
.slide-nav-panel {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: #ffffff;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 9998; /* Lower than Astra's cart */
    overflow-y: auto;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.slide-nav-panel.active {
    left: 0;
}

/* Panel Overlay is now handled by JavaScript for better click detection */

/* Header Styling */
.slide-nav-header {
    background: linear-gradient(135deg, #f7c51e 0%, #e6b800 100%);
    color: #333;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slide-nav-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ca792, #16a085);
}

.slide-nav-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.slide-nav-header h3 i {
    margin-right: 10px;
    font-size: 22px;
    color: #333;
}

.slide-nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slide-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Content Area */
.slide-nav-content {
    padding: 0;
    background: #ffffff;
}

.slide-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Featured Items at Top */
.slide-nav-item.featured-item {
    border-bottom: 1px solid rgba(231, 184, 0, 0.2);
}
.widget p {
    margin: 0;
}   
.slide-nav-item.featured-item .slide-nav-link {
    color: #333;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
}

.slide-nav-item.featured-item .slide-nav-link:hover {
    background: linear-gradient(135deg, #e6b800 0%, #d4a800 100%);
    transform: translateX(5px);
}

.slide-nav-item.featured-item .slide-nav-icon {
    color: #333;
    font-size: 18px;
    width: 28px;
}

/* Category Headers */
.slide-nav-item.category-header {
    background: #f8f9fa;
    padding: 15px 20px 8px 20px;
    border-bottom: none;
    margin-top: 10px;
}

.slide-nav-item.category-header:first-of-type {
    margin-top: 0;
}

.slide-nav-item.category-header .slide-nav-text {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Regular Menu Items */
.slide-nav-item:not(.featured-item):not(.category-header) {
    border-bottom: 1px solid #f0f0f0;
}

.slide-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.slide-nav-link:hover {
    background: #f8f9fa;
    color: #1ca792;
    transform: translateX(8px);
    padding-left: 28px;
}

.slide-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1ca792;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.slide-nav-link:hover::before {
    transform: scaleY(1);
}

.slide-nav-icon {
    width: 24px;
    margin-right: 15px;
    text-align: center;
    font-size: 16px;
    color: #1ca792;
    transition: all 0.3s ease;
}

.slide-nav-link:hover .slide-nav-icon {
    color: #16a085;
    transform: scale(1.1);
}

.slide-nav-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Submenu Support - arrows handled by Walker HTML */
.slide-nav-panel .slide-nav-arrow {
    margin-left: auto;
    color: #999;
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.slide-nav-panel .slide-nav-item.has-children[aria-expanded="true"] .slide-nav-arrow {
    transform: rotate(90deg);
}

/* Hide any WordPress default arrows/indicators */
.slide-nav-panel .slide-nav-link::after,
.slide-nav-panel .slide-nav-link::before {
    display: none !important;
}

/* Ensure only our Walker-generated arrows show */
.slide-nav-panel .menu-item-has-children > a::after,
.slide-nav-panel .menu-item-has-children > a::before {
    display: none !important;
}

.slide-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.4s ease;
    border-left: 4px solid #1ca792;
}

.slide-submenu.active {
    max-height: 500px;
}

.slide-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slide-submenu li {
    border-bottom: 1px solid #e9ecef;
}

.slide-submenu li:last-child {
    border-bottom: none;
}

.slide-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
}

.slide-submenu a:hover {
    background: #e9ecef;
    color: #1ca792;
    padding-left: 48px;
}

.slide-submenu a::before {
    content: '▸';
    position: absolute;
    left: 25px;
    color: #1ca792;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.slide-submenu a:hover::before {
    opacity: 1;
}

/* Mobile-specific styles to avoid conflicts with Astra */
@media (max-width: 768px) {
    /* Ensure our slideout menu has higher specificity than Astra's mobile menu */
    #slideNavPanel {
        z-index: 9999;
    }
    /* Home USP section - REMOVED (Unused) */
    /* Hide our menu elements that might conflict with Astra's mobile menu */
    .slide-nav-trigger.mobile-only {
        display: none;
    }
}

/* Body Behavior */
body.nav-open {
    overflow: hidden;
}

/* Desktop push effect - REMOVED */
/* @media (min-width: 769px) {
    body.nav-open {
        margin-left: 350px;
        transition: margin-left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-nav-panel {
        width: 320px;
        left: -320px;
    }
    
    .slide-nav-header {
        padding: 20px 15px;
    }
    
    .slide-nav-header h3 {
        font-size: 18px;
    }
    
    .slide-nav-link {
        padding: 14px 15px;
    }
    
    .slide-nav-link:hover {
        transform: translateX(5px);
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .slide-nav-panel {
        width: 280px;
        left: -280px;
    }
}

/* E-poodi Slide Navigation Button */
.slide-nav-trigger {
    background: #f7c51e;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slide-nav-trigger:hover {
    background: #e6b800;
    color: #333;
    transform: translateY(-1px);
}

.slide-nav-trigger:active {
    transform: translateY(0);
    background: #d4a800;
}

.slide-nav-trigger i {
    font-size: 16px;
}

.slide-nav-trigger span {
    font-weight: 500;
}

/* Mobile specific styles for the E-poodi button */
@media (max-width: 768px) {
    .slide-nav-trigger {
        padding: 12px 16px;
        font-size: 16px;
        min-height: 44px; 
    }
    
    .slide-nav-trigger i {
        font-size: 18px;
    }
}

/* Astra Filter Sidebar - Required for filter functionality */
#astra-off-canvas-sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

#astra-off-canvas-sidebar-wrapper.active {
    visibility: visible;
    opacity: 1;
}

.astra-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.astra-off-canvas-sidebar {
    position: absolute;
    top: 0;
    left: -350px;
    width: 350px;
    max-width: 85%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    overflow-y: auto;
}

#astra-off-canvas-sidebar-wrapper.active .astra-off-canvas-sidebar {
    left: 0;
}

.astra-off-canvas-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.astra-off-canvas-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.astra-off-canvas-content {
    padding: 15px;
}

/* Hero Section Styles - Cleaned Up */
.hero-section {
    min-height: 80vh;
    height: 80vh;
    background: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Two Column Layout */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* Left Column - Text Content */
.hero-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2e3841;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title br {
    display: block;
}

/* Generic Section Title - Reusable for Categories and Popular Products */
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e3841;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background: #f7c51e;
    border-radius: 2px;
}

/* Categories Grid - Integrated under text column */
.categories-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

/* Keep the old class for backward compatibility */
.categories-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e3841;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background: #f7c51e;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.category-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

#block-22 p {
    margin: 0;
}
.page-id-7189 .site-content .ast-container {
    display: unset;
}

/* Fast shipping bubble - REMOVED (Unused) */

.category-icon {
    width: 48px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2e3841;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
}

/* Right Column - Image */
.hero-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    gap: 30px;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}
.ast-site-header-cart .ast-addon-cart-wrap i.astra-icon:after {
    color: #3a3a3a !important;
    background-color: #f7c51f;
    z-index: 99;
}
.tarnealt .fast-button {
    background-color: #fff8e0;
    color: #3a3a3a;
    position: relative;
    border-radius: 30px;
    line-height: 27px;
    display: inline-flex
;
    font-size: 12px;
    padding: 0 8px;
    font-weight: 500;
}
/* Hero Image Content */
.hero-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Orange CTA Button - Vaata tooteid */
.hero-cta-orange {
    background: #f8c51e;
    color: #2e3841;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: fit-content;
}

.hero-cta-orange:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 197, 30, 0.3);
    color: #2e3841;
}

/* Green CTA Button - Sooduskoodid */
.hero-cta-green {
    background: transparent;
    color: #1ca792;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid #1ca792;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: fit-content;
}

.hero-cta-green:hover {
    background: #1ca792;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 167, 146, 0.3);
}
@media (min-width: 1000px) {
    .hero-container {
        padding: 0 20px;
    }
   .dgwt-wcas-search-wrapp {
        max-width: 600px;
        max-width: 900px;
        min-width: 900px;
    }
}   
/* Hero Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content-wrapper {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .hero-buttons {
        gap: 14px;
    }
    
    .hero-cta-orange,
    .hero-cta-green {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-column {
        padding-right: 0;
        order: 1;
    }
    
    .hero-image-column {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-cta-orange,
    .hero-cta-green {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content-wrapper {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-orange,
    .hero-cta-green {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .categories-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .category-item {
        padding: 8px 6px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    
    .category-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .hero-cta-orange,
    .hero-cta-green {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .category-icon {
        width: 36px;
        height: 36px;
    }
    
    .category-name {
        font-size: 0.65rem;
    }
}

/* Footer Styles */
.modern-footer {
    background: #2e3841;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    padding: 80px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: flex-start;
}

.footer-section h4 {
    color: #f7c51e;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px 0;
    border-bottom: 2px solid #1ca792;
    padding-bottom: 12px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #f7c51e;
}

.footer-links .link-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Categories Section */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-list a:hover {
    color: #f7c51e;
}

.categories-list .category-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.view-all-categories {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

.view-all-categories a {
    color: #1ca792;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.view-all-categories a:hover {
    color: #f7c51e;
}

/* Special Offers Section */
.special-offers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.special-offers-list li {
    margin-bottom: 12px;
}

.special-offers-list a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-offers-list a:hover {
    color: #f7c51e;
}

.special-offers-list .offer-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}


/* Social Media */
.social-media {
    margin-top: 20px;
}

.social-media p {
    color: #b8c5d1;
    margin-bottom: 15px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #b8c5d1;
    font-size: 18px;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 20px;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links a.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-links a.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-links a.pinterest:hover {
    background: #bd081c;
    color: white;
}

/* Company Description */
.company-description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Payment Methods */
.payment-methods {
    margin: 25px 0;
}

.payment-methods p {
    color: #b8c5d1;
    margin-bottom: 15px;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-method-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-method-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payment-method-icon i {
    font-size: 16px;
}

.payment-method-icon.apple-pay i {
    color: #007aff;
}

.payment-method-icon.google-pay i {
    color: #4285f4;
}

.payment-method-icon.estonian-banks i {
    color: #1ca792;
}

.payment-method-icon.credit-card i {
    color: #4a5568;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a202c;
    padding: 20px 0;
    border-top: 1px solid #4a5568;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    color: #b8c5d1;
    font-size: 14px;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-right a:hover {
    color: #f7c51e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-main {
        padding: 60px 0 40px 0;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
}
@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
}

/* Product LAOS Marker */
.product-in-stock {
    background-color: #f7c51e;
    color: #333;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    text-align: center;
    min-width: 70px;
    line-height: 20px;
}

.product-in-stock .inside-text {
    display: block;
    text-align: center;
}

.woocommerce-js ul.products li.product .onsale {
    top:20px;
    right:20px;
}

.fast-shipping .fast-button {
    background-color: #fff8e0;
    color: #3a3a3a;
    position: relative;
    border-radius: 30px;
    line-height:27px;
   display:inline-flex;
    font-size: 12px;
    padding: 0 8px;
    font-weight: 500;
}

.tarnealt .fast-button {
    background-color: #f0f0f0;
}

.outofstock .fast-button {
    background-color: #ffdbdb;
}

/* Reordered Sale Price Styling */
.woocommerce .price ins {
    margin-right: 8px;
    font-weight: bold;
    text-decoration: none;
}

.woocommerce .price del {
    color: #999!important;
    font-size: 0.9em;
    text-decoration: line-through;
}

/* ===== GIFT CARDS (KINKEKAARDID) STYLING ===== */
.woocommerce_gc_giftcard_form .wc_gc_field {
    margin-bottom: 0.8em;
    max-width: 350px;
}

.woocommerce_gc_giftcard_form label {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: block;
}

.add_gift_card_form h4 {
    font-size: 18px !important;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.checkout_kinkekaart p.form-row.form-row-last {
    float: left;
}

.checkout_kinkekaart p.form-row.form-row-last,
.checkout_kinkekaart p.form-row.form-row-first, 
.checkout_kinkekaart .button {
    width: 100%;
}

.checkout_kinkekaart p.form-row.form-row-last,
.checkout_kinkekaart p.form-row.form-row-first {
    font-weight: 400 !important;
}

/* Alates Prefix for Variable Products */
.starting_price {
    display: inline-flex;
    font-size: 20px;
   
    font-weight: 700;
    justify-content: space-around;
}

.alates {
    padding-right: 5px;
    color: #666;
    vertical-align: bottom;
    display: inline-flex;
    line-height: 28px;
    align-items: flex-end;
    font-size: 16px;
    font-weight: 100;
}

.woocommerce-js ul.products li.product a img {
 
    max-height: 275px;
   
 
}

.ast-shop-product-out-of-stock {
    display: none !important;
}

/* Front Page Buttons - Match Hero Button Styles */
.view-all-btn {
    background: #f8c51e;
    color: #2e3841;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: fit-content;
}

.view-all-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 197, 30, 0.3);
    color: #2e3841;
}

/* Center the buttons in their containers */
.section-footer,
.column-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Combined Offers Section - REMOVED (Unused) */


.ast-site-header-cart .widget_shopping_cart, .woocommerce .ast-site-header-cart .widget_shopping_cart {
 
    width: 320px!important;
 border-radius:16px;
}

.woocommerce .quantity .minus {
   border:1px solid lightgray;
    border-radius: 99px;
    background: #e9ecef ;
    border:none;
}

.woocommerce .quantity .plus {
    border-radius: 99px;
    border:none;
    margin-right:0;
}

.woocommerce input[type=number].qty.ast-no-internal-border {
  
    background-color: #f8f9fa;
}

a:where(:not(.wp-element-button)) {
    text-decoration: unset;
}

.quantity.buttons_added {
    background: #f8f9fa;
    border-radius: 999px;
}

.woocommerce-js .quantity.buttons_added {
    display: inline-flex
;
    align-content: center;
    align-items: center;
}

.woocommerce-js .quantity .minus, .woocommerce-js .quantity .plus {
    width: 24px;
    height: 24px;
    
}

/* ===== Mini-cart: grid layout (Astra) ===== */
:root{
    /* Tweak these if needed */
    --mini-cart-thumb: 72px;
    --mini-cart-gap: 12px;
  }
  
  /* Make each LI a proper grid instead of padding hack */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li {
    padding: .75em 1em !important;                 /* overrides .5em 2em .5em 5em */
    display: grid;
    grid-template-columns: var(--mini-cart-thumb) 1fr auto; /* thumb | content | price */
    grid-auto-rows: auto;
    column-gap: var(--mini-cart-gap);
    row-gap: 8px;
    position: relative;                             /* for the remove button */
    align-items: start;
    background: white !important;
    border-radius: 12px !important;
    margin-bottom: 5px !important;
    padding: 10px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: none !important;
    position: relative !important;
  }
  
  /* Neutralize Woo's absolute image rule inside the mini-cart scope */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;                         /* fill thumb col */
    height: auto !important;
    margin: 0 !important;
    object-fit: cover;
    grid-column: 1;                                 /* thumb column */
    grid-row: 1 / span 2;                           /* span title row + bottom row */
    display: block;
  }
  
  /* Let the anchor's children (img + title) participate in the LI grid */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li > a:not(.remove) {
    display: contents;                              /* image -> col 1, name -> col 2 */
  }
  
  /* Product name on the first row, content column */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-product-name {
    grid-column: 2;                                 /* content column */
    grid-row: 1;
    align-self: start;
    padding-right: 10px;
  }
  
  /* Bottom row: quantity (left) + price (right) on the same line */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li .quantity.buttons_added {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: start;
}
.ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-mini-cart-price-wrap {
    grid-column: 3;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    white-space: nowrap;
}

  
  /* Keep the remove (×) at the top-right */
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li > a.remove {
    position: absolute;
    top: .5em;
    right:5px;
  }
  
  /* Optional: if any default "truncate" styles fight your layout, keep titles on one line */
  /* .ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-product-name { white-space: normal; } */
  .ast-product-image.ast-disable-image {
    display: grid
;
    grid-column: 2 / span 2;
    grid-row: 1;
    font-size:14px;
    font-weight:500;
}


dl.variation {
    grid-column: 1 / span 3;
    grid-row: 4;
    padding: 5px;
    border-radius: 12px;
    border: unset !important;
    background: #f7f7f7;
   
        display: flex ;
        flex-direction: row;
    
        flex-wrap: wrap;
}

dl.variation dd {
    padding: 0px !important;
    margin: 0px;
    font-size:10px;
}
dl.variation dt {
    font-size: 10px;
    font-weight: bold !important;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget {
    padding: 10px;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget {
    padding: 5px!important;
}

.ast-mini-cart-price-wrap span.woocommerce-Price-amount.amount {
    color: #1ca792;
    font-weight: 700;
}

/* Mini Cart Discount Pricing */
.ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-mini-cart-price-wrap .price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-mini-cart-price-wrap .price .woocommerce-Price-amount.amount {
    color: #1ca792;
    font-weight: 700;
    font-size: 14px;
}

.ast-site-header-cart .widget_shopping_cart .product_list_widget li .ast-mini-cart-price-wrap .price del .woocommerce-Price-amount.amount {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    text-decoration: line-through;
}

.woocommerce-mini-cart__total bdi {
    color: #1ca792;
    font-weight: 700;
}

.woocommerce-mini-cart__total strong {
    font-weight: 700 !important;
}

/* Mini Cart Variation Display - Show our custom variations */
dl.variation .variation-row {
    display: flex !important;
    align-items: center;
}

/* Mini Cart Variation Display */
 dl.variation {
    font-size: 11px;
    color: #666;
    grid-column: 1 / span 3 !important;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

 dl.variation .variation-row {
    display: flex;
    align-items: center;
}

 dl.variation dt {
    font-weight: 500;
    flex: 0 0 50%;
    margin: 0;
    padding-right: 5px;
}

 dl.variation dd {
    color: #1ca792;
    flex: 0 0 50%;
    margin: 0;
    padding-left: 5px;
}

 dl.variation dd p {
    margin: 0;
    display: inline;
}
.astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart-item .ast-mini-cart-price-wrap {
    max-width:100%;
}

.fast-shipping {
    margin-top: 5px;
}

/* Mini Cart Delivery Information Styles */
.mini_cart_item .ast-product-name {
    padding-right: 20px;
}
/* Ensure delivery info displays properly in mini cart grid layout */
.mini-after-name .fast-shipping,
 .mini-after-name .tarnealt {
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    font-size: 10px;
    padding: 0;
    text-align: center;
    width: 100%;
}

.mini-after-name .fast-shipping .fast-button {
    display: block;
    width: 100%;
    background-color: #fff8e0 !important;
    color: #3a3a3a !important;
    position: relative !important;
    border-radius: 30px !important;
    line-height: 27px !important;
    display: inline-flex !important;
    font-size: 12px !important;
    padding: 0 8px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    justify-content: center;
}

 .mini-after-name .tarnealt .fast-button {
    display: block;
    width: 100%;
    background-color: #f0f0f0 !important;
    color: #3a3a3a !important;
    position: relative !important;
    border-radius: 30px !important;
    line-height: 27px !important;
    display: inline-flex !important;
    font-size: 12px !important;
    padding: 0 8px !important;
    font-weight: 500 !important;
    margin: 0 !important;

    justify-content: center;
}


/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .ast-site-header-cart .widget_shopping_cart .product_list_widget li .mini-after-name .fast-shipping,
    .ast-site-header-cart .widget_shopping_cart .product_list_widget li .mini-after-name .tarnealt {
        font-size: 9px;
        padding: 2px 4px;
        max-width: 120px;
    }
    
    .slide-nav-trigger span { display: none; }
    .ast-site-header-cart .widget_shopping_cart .product_list_widget li .mini-after-name .fast-shipping .fast-button {
        font-size: 9px !important;
        padding: 2px 6px !important;
        background-color: #fff8e0 !important;
    }
    
    .ast-site-header-cart .widget_shopping_cart .product_list_widget li .mini-after-name .tarnealt .fast-button {
        font-size: 9px !important;
        padding: 2px 6px !important;
        background-color: #f0f0f0 !important;
    }
}


/* Mini cart delivery badge positioning */
.ast-site-header-cart .widget_shopping_cart .product_list_widget li .mini-after-name {
    grid-column: 1 / span 3 !important;
    grid-row: 4 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 8px !important;
    width: 100% !important;
    position: relative !important;
}

/* Ensure the mini cart list item maintains proper grid structure */
.ast-site-header-cart .widget_shopping_cart .product_list_widget li {
    display: grid !important;
    grid-template-rows: auto auto auto auto !important;
}

/* Product Card Info Bar - Clean Lower Bar Design */
.product-card-info-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    border-top: 1px solid #dee2e6 !important;
    border-radius: 0 0 12px 12px;
    min-height: 48px;
    position: relative;
    z-index: 10;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    border: 1px solid #dee2e6;
    border-radius: 30px;
    padding-bottom: 0px;
}
.product-card-delivery-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.product-card-shipping-icons {
    display: flex !important;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.shipping-icon-item {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shipping-icon-item:hover {
    background: rgba(28, 167, 146, 0.15);
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(28, 167, 146, 0.25);
}

.shipping-icon-item i {
    font-size: 14px;
    color: #1ca792;
    transition: color 0.3s ease;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif;
    font-weight: 900;
}

/* Fallback for FontAwesome 4 if needed */
.shipping-icon-item i.fa-truck:before {
    content: "\f0d1";
}

.shipping-icon-item i.fa-box:before {
    content: "\f466";
}

.shipping-icon-item i.fa-store:before {
    content: "\f54e";
}

.shipping-icon-item:hover i {
    color: #1ca792;
}

/* Tooltip styles for shipping icons */
.shipping-icon-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.shipping-icon-item::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 8px;
    margin-bottom: 4px;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.shipping-icon-item:hover::before,
.shipping-icon-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Click functionality for mobile */
.shipping-icon-item:active {
    transform: scale(0.95);
}

/* Ensure product cards have relative positioning for absolute positioning of icons */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
 
}

/* Ensure info bar is visible */
.woocommerce ul.products li.product .product-card-info-bar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Delivery info styling in info bar */
.product-card-info-bar .fast-shipping,
.product-card-info-bar .tarnealt {
    margin: 0;
}

.product-card-info-bar .fast-button {
    padding: 4px 20px;
    line-height: 32px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .product-card-info-bar {
        padding: 10px 12px;
        min-height: 44px;
    }
    
    .shipping-icon-item {
        width: 28px;
        height: 28px;
    }
    
    .shipping-icon-item i {
        font-size: 12px;
    }
    
    .shipping-icon-item::before {
        font-size: 11px;
        padding: 6px 10px;
        right: -5px;
    }
    
    .product-card-info-bar .fast-button {
    font-size: 12px;
        padding: 3px 6px;
    }
}
.search-results .ast-breadcrumbs-wrapper {
    display: none;
}
.woocommerce-js .quantity .minus, .woocommerce-js .quantity .plus {
    line-height: 26px!important ;
    align-items: flex-end;
}
.ast-archive-entry-banner[data-post-type="product"] {
    text-align: left;
    justify-content: center;
    min-height: unset;
}
.woocommerce .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {
    background-color: transparent;
    border: transparent;
    border: 1px solid #E8E8E8;
    border-radius: 0;
}


.mini-after-name .fast-shipping {
    max-width: unset !important;
    text-align: center;
}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    display: flex
;
    flex-direction: column;
  
    justify-content: space-between;
}

/* ==========================================================================
   WOOCOMMERCE CATEGORY ARCHIVE STYLES
   ========================================================================== */

/* Style default WooCommerce category elements with the same design as subcategory slider */
.woocommerce ul.products li.product-category.product {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: relative;
}

.woocommerce ul.products li.product-category.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product-category.product a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Category Image */
.woocommerce ul.products li.product-category.product img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product-category.product:hover img {
    transform: scale(1.08);
}

/* Category Content - Override Astra positioning */
.woocommerce-js ul.products li.product .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product-category.product .woocommerce-loop-category__title {
    position: static !important;
    background: white !important;
    padding: 20px 15px 15px 15px !important;
    text-align: center !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #2e3841 !important;
    line-height: 1.3 !important;
    left: auto !important;
    right: auto !important;
    transition: none !important;
}

/* Category Title Text */
.woocommerce-loop-category__title .category-name {
    font-size: 16px;
    font-weight: 700;
    color: #2e3841;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Product Count Badge - Override Astra positioning */
.woocommerce-js ul.products li.product .woocommerce-loop-category__title .count,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count,
.woocommerce ul.products li.product-category.product .woocommerce-loop-category__title .count {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #8a9ba8 !important;
    background: #f4f6f8 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    border: 1px solid #e9ecef !important;
}
.product span.count {
    display: none !important;
}

.ast-product-gallery-layout-first-image-large img {
    border-radius: 30px 30px 0 0;
}

.montonio-shipping-provider-logo {
  
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    max-height: 0px !important;
    max-width: 0px !important;
}

label.tarneklass[for="shipping_method_0_montonio_itella_parcel_machines14"] .montonio-shipping-label {
    display: flex
;
    flex-direction: row;
    max-width: 255px;
    width: 100%;
}

#shipping_method_0_montonio_itella_parcel_machines14 + .tarneklass {
    display: flex !important
;
 
}

.tarnealt {
    margin-top: 5px !important;
}
p.backorder_notification {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce .up-sells > h2 {
        font-size: 16px !important;
        padding-left: 0px!important;
         padding-right: 0px!important;
         
        text-align: center;
        padding-top: 20px;
    }
    .ast-breadcrumbs-wrapper {
        margin-left: 20px;
    }
    .woocommerce ul.products li.product-category.product img {
        height: 130px;
    }
    
    .woocommerce-js ul.products li.product .woocommerce-loop-category__title,
    .woocommerce-page ul.products li.product .woocommerce-loop-category__title,
    .woocommerce ul.products li.product-category.product .woocommerce-loop-category__title {
        padding: 15px 12px 45px 12px !important;
    }
    
    .woocommerce-loop-category__title .category-name {
        font-size: 14px;
    }
    
    .woocommerce-js ul.products li.product .woocommerce-loop-category__title .count,
    .woocommerce-page ul.products li.product .woocommerce-loop-category__title .count,
    .woocommerce ul.products li.product-category.product .woocommerce-loop-category__title .count {
        font-size: 11px !important;
        padding: 5px 10px !important;
        bottom: 12px !important;
    }
}

@media (max-width: 480px) {
   
    
    .woocommerce ul.products li.product-category.product img {
        height: 120px;
    }
    
    .woocommerce-js ul.products li.product .woocommerce-loop-category__title,
    .woocommerce-page ul.products li.product .woocommerce-loop-category__title,
    .woocommerce ul.products li.product-category.product .woocommerce-loop-category__title {
        padding: 5px !important;
    }
    
    .woocommerce-loop-category__title .category-name {
        font-size: 13px;
    }
    @media (max-width: 544px) {
        ul.products:has(> li.product-category) {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }
      }
      
    .woocommerce-js ul.products li.product .woocommerce-loop-category__title .count,
    .woocommerce-page ul.products li.product .woocommerce-loop-category__title .count,
    .woocommerce ul.products li.product-category.product .woocommerce-loop-category__title .count {
      display:none;
    }
}

div#content {
    margin-top: 20px;
}


/* 2 equal columns for the whole list */
dl.variation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;    /* space between the two columns */
    row-gap: .25rem;     /* space between dt and dd (and pairs) */
    margin: 5px 0;
  }
  
  /* tidy defaults */
  dl.variation dt,
  dl.variation dd { margin: 0; }
  dl.variation dt { font-weight: 600; }
  dl.variation dd p { margin: 0; }
  
  /* Place each pair (dt + dd) into the SAME column */
  dl.variation > dt:nth-of-type(4n + 1),
  dl.variation > dd:nth-of-type(4n + 2) {
    grid-column: 1;   /* 1st pair -> left column */
  }
  
  dl.variation > dt:nth-of-type(4n + 3),
  dl.variation > dd:nth-of-type(4n + 4) {
    grid-column: 2;   /* 2nd pair -> right column */
  }
  
  /* Optional: add extra space after each dd to visually group pairs */
  dl.variation > dd { margin-bottom: .5rem; }
  
  /* Mobile: stack to one column */
  @media (max-width: 600px) {
    dl.variation { grid-template-columns: 1fr; }
  }
  
  .ast-site-header-cart .widget_shopping_cart .product_list_widget li dl.variation {
    /* KEEP these for parent grid positioning */
    grid-column: 1 / span 3 !important;
    grid-row: 2;
    margin-top:10px!important;
    /* Create internal 2-column grid */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: min-content; /* Let rows size to content */
    column-gap: 2rem;
    row-gap: 0 !important;
    margin: 0;
    
    /* Keep other properties */
    font-size: 11px;
    color: #666;
}

/* Use grid-row to control positioning */
 dl.variation > dt:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

     dl.variation > dd:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

     dl.variation > dt:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}

     dl.variation > dd:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

     dl.variation > dt:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

     dl.variation > dd:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
}

     dl.variation > dt:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

     dl.variation > dd:nth-child(8) {
    grid-column: 2;
    grid-row: 4;
}

     dl.variation > dt:nth-child(9) {
    grid-column: 1;
    grid-row: 5;
}

     dl.variation > dd:nth-child(10) {
    grid-column: 1;
    grid-row: 6;
}

     dl.variation > dt:nth-child(11) {
    grid-column: 2;
    grid-row: 5;
}

     dl.variation > dd:nth-child(12) {
    grid-column: 2;
    grid-row: 6;
}

     dl.variation > dt:nth-child(13) {
    grid-column: 1;
    grid-row: 7;
}

     dl.variation > dd:nth-child(14) {
    grid-column: 1;
    grid-row: 8;
}

.ast-mini-cart-price-wrap ins {
    float: left;
    margin-right: 5px;
}

.ast-mini-cart-price-wrap del bdi {
    color: #999 !important;
}

.product-subtotal ins {
    float: left;
    margin-right: 5px;
}
.product-subtotal del bdi {
    color: #999 !important;
}

.product-subtotal p {
    clear: both;
    display: block;
    margin-bottom:0px;
}


li.woocommerce-mini-cart-item.mini_cart_item {
 
    background: white !important;
    border-radius: 12px !important;
    margin-bottom: 5px !important;

    padding-right: 5px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;

}

.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list:before, .woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button.tinvwl-product-in-list:before, a.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products:before, span.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products:before {font-size:32px;}
/* Category Description "Loe veel" (Read More) Functionality */
.woocommerce-category-description {
    position: relative !important;
    transition: max-height 0.3s ease !important;
    max-height: 100px !important;
    min-height: auto !important;
    overflow: hidden !important;
    line-height: 27px;
}

.woocommerce-category-description.expanded {
    max-height: none !important;
}

.fade-out {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.woocommerce-category-description.expanded .fade-out {
    height: 0 !important;
    opacity: 0 !important;
}

.category-description-container {
    margin-bottom: 20px;
    clear: both;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.read-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 273px;
    height: 50px;
    font: normal normal 500 16px/33px -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0px;
    color: #1ca792;
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #1ca792;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px auto;
    padding: 0;
}

.read-more:hover {
    background-color: #1ca792;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 167, 146, 0.3);
}


.woocommerce-category-description h3 {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 53px;
    margin-block-end: 20px;
    margin-block-start: 0px;
    margin-bottom: 20px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
}

.woocommerce-category-description h4 {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    height: auto;
    line-height: 36px;
    margin-block-end: 10px;
    margin-block-start: 30px;
    margin-bottom: 10px;
    margin-inline-end: 0px;
}

.woocommerce-category-description li {
    padding-left: 1.3em;
    padding-bottom: 5px;
    list-style: none;
}

.woocommerce-category-description li:before {
    content: "\e800";
    font-family: fontello;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    color: #1da792;
}

.woocommerce-category-description ul {
    margin: 0 !important;
}

.astra-cart-drawer .mini-after-name {
    margin-top: 10px;
    text-align: left;
    float: left;
}

/* Astra Cart Drawer - REMOVED (Duplicate of mini cart styles) */

/* Site branding and grid adjustments */
.site-branding.ast-site-identity {
    margin: 0 !important;
    padding: 0 !important;
}

.ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center {
    flex-grow: 1;
    display: block !important;
    align-content: center;
}

.ast-site-header-cart i.astra-icon {
    padding: unset !important;
}

/* ===== WOOCOMMERCE PAGINATION STYLES ===== */

nav.woocommerce-pagination {
    text-align: center;
    margin: 40px 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    display: inline-block;
    border: 1px solid #e8e8e8;
    margin: 0 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 500;
    color: #2e3841;
    background: white;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #1ca792 !important;
    color: #ffffff;
    border-color: #1ca792;
}

.woocommerce nav.woocommerce-pagination ul li span.dots {
    border: none;
    background: transparent;
}