/*
 * MODERNE WOOCOMMERCE STYLING VOOR TWENTY TWENTY
 * Kopieer ALLES naar woocommerce.css
 */

/* ========== 1. ALGEMENE RESET ========== */
body.woocommerce,
body.woocommerce-page,
body.woocommerce-shop {
    background-color: #F6CCD3 !important;
}

.woocommerce .site-main,
.woocommerce-page .site-main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ========== 2. SHOP CONTAINER ========== */
.tt-woocommerce-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #F6CCD3;
}

/* ========== 3. SHOP HEADER ========== */
.tt-shop-header {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-shop-header h1.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* ========== 4. SHOP LAYOUT ========== */
.tt-shop-layout {
    display: flex;
    gap: 40px;
}

/* ========== 5. CATEGORIEËN SIDEBAR ========== */
.tt-shop-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 0px 13px 0px 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F6CCD3;
    position: relative;
}

.tt-sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ff3366;
}

/* MODERNE CATEGORIEËN LIJST */
.tt-categories-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.tt-categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tt-categories-list li a:hover {
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    transform: translateX(5px);
}

.tt-categories-list li.current-cat a {
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    font-weight: 600;
}

.tt-categories-list .count {
    background: white;
    color: #ff3366;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ========== 6. MAIN PRODUCT AREA ========== */
.tt-shop-main {
    flex: 1;
    min-width: 0;
}

/* Shop Controls */
.tt-shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.tt-result-count {
    font-size: 15px;
    color: #666;
}

.tt-ordering select {
    padding: 12px 25px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    min-width: 200px;
}

/* ========== 7. PRODUCT GRID ========== */
.tt-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Product Card */
.product.type-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product.type-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Product Image */
.woocommerce-LoopProduct-link {
    display: block;
    overflow: hidden;
}

.woocommerce-loop-product__link img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product.type-product:hover .woocommerce-loop-product__link img {
    transform: scale(1.05);
}

/* Sale Badge */
.onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* Product Info */
.woocommerce-loop-product__title {
    font-size: 23px;
    font-weight: 600;
    color: #222;
    margin: 15px 15px 10px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}
.woocommerce-loop-product__title a{
    color:black;
    text-decoration: none !important;

}
.star-rating {
    margin: 0 15px 10px;
    color: #ffc107;
    font-size: 14px;
}

/* Prijs */
.price {
    margin: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #ff3366;
}

.price del {
    color: #999;
    font-size: 15px;
    margin-right: 5px;
}

/* Add to Cart Button */
.add_to_cart_button,
.product_type_simple {
    margin: 15px;
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.add_to_cart_button:hover,
.product_type_simple:hover {
    background: linear-gradient(135deg, #ff0066, #cc0052);
    transform: translateY(-2px);
}

/* ========== 8. PAGINATIE ========== */
.woocommerce-pagination {
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    padding: 0;
}

.page-numbers li a,
.page-numbers li span {
    display: block;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
}

.page-numbers li a:hover {
    background: #ff3366;
    color: white;
}

.page-numbers li span.current {
    background: #ff3366;
    color: white;
}

/* ========== 9. PRODUCT DETAIL PAGINA ========== */
.single-product .tt-woocommerce-container {
    background: #F6CCD3;
}

.tt-single-product {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Product Gallery */
.woocommerce-product-gallery {
    margin-bottom: 30px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Product Summary */
.summary.entry-summary {
    padding: 20px 0;
}

.product_title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Prijs op detail pagina */
.woocommerce-Price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #ff3366;
}

/* Quantity */
.quantity input {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 18px;
}

/* Add to Cart button op detail pagina */
.single_add_to_cart_button {
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 25px;
}

.single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #ff0066, #cc0052);
    transform: translateY(-2px);
}

/* ========== 10. RESPONSIVE ========== */
@media (max-width: 1200px) {
    .tt-shop-layout {
        flex-direction: column;
    }

    .tt-shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tt-woocommerce-container {
        padding: 20px 15px;
    }

    .tt-shop-header {
        padding: 30px 20px;
    }

    .tt-shop-header h1.page-title {
        font-size: 32px;
    }

    .tt-shop-controls {
        flex-direction: column;
        gap: 15px;
    }

    .tt-ordering select {
        width: 100%;
    }

    .tt-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .woocommerce-loop-product__link img {
        height: 180px;
    }
}

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

    .product_title {
        font-size: 28px;
    }
}

/* ============================================
   CLEAN PRODUCT DETAIL PAGE
   ============================================ */

/* Breadcrumb */
.tt-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.tt-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.tt-breadcrumb a:hover {
    color: #ff3366;
}

/* Main Container */
.tt-product-detail-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Product Gallery */
.tt-product-gallery-clean {
    position: sticky;
    top: 30px;
    align-self: start;
}

.tt-main-image-clean {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f9f9f9;
}

.tt-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.tt-main-image-clean:hover .tt-product-image {
    transform: scale(1.02);
}

.tt-thumbnails-clean {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tt-thumbnail-clean {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: #f9f9f9;
}

.tt-thumbnail-clean:hover {
    border-color: #ddd;
}

.tt-thumbnail-clean.active {
    border-color: #ff3366;
}

.tt-thumbnail-clean img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.tt-product-info-clean {
    padding: 10px 0;
}

.tt-product-title-clean {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.tt-product-rating-clean {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.star-rating {
    color: #ffc107;
    font-size: 18px;
}

.tt-review-count-clean {
    color: #666;
    font-size: 14px;
}

/* Price */
.tt-product-price-clean {
    margin: 25px 0;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tt-product-price-clean del {
    font-size: 22px;
    color: #999;
    font-weight: 500;
}

.tt-sale-badge-clean {
    background: #ff3366;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* Excerpt */
.tt-product-excerpt-clean {
    margin: 25px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 3px solid #ff3366;
}

.tt-product-excerpt-clean p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Cart Section */
.tt-cart-section-clean {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
}

.tt-quantity-clean {
    margin-bottom: 25px;
}

.tt-quantity-clean label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.tt-quantity-controls {
    display: flex;
    align-items: center;
    max-width: 180px;
}

.tt-qty-btn-clean {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tt-qty-btn-clean:hover {
    background: #f5f5f5;
}

.tt-qty-btn-clean.minus {
    border-radius: 8px 0 0 8px;
}

.tt-qty-btn-clean.plus {
    border-radius: 0 8px 8px 0;
}

.tt-quantity-controls .qty {
    width: 70px;
    height: 45px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-size: 16px;
    font-weight: 600;
}

.tt-add-to-cart-btn-clean {
    background: #222;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.tt-add-to-cart-btn-clean:hover {
    background: #ff3366;
    transform: translateY(-2px);
}

/* Out of Stock */
.tt-out-of-stock-clean {
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
    text-align: center;
}

.tt-out-of-stock-clean p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Meta Info */
.tt-product-meta-clean {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.tt-meta-item-clean {
    display: flex;
    margin-bottom: 10px;
    font-size: 15px;
}

.tt-meta-item-clean:last-child {
    margin-bottom: 0;
}

.tt-meta-label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.tt-meta-value {
    color: #666;
}

.tt-meta-value a {
    color: #666;
    text-decoration: none;
}

.tt-meta-value a:hover {
    color: #ff3366;
}

/* Description Section */
.tt-product-description-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-description-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.tt-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.tt-description-text p {
    margin-bottom: 20px;
}

/* Additional Info */
.tt-additional-info-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-additional-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Reviews */
.tt-reviews-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-reviews-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.tt-reviews-count {
    color: #666;
    font-weight: 500;
    font-size: 20px;
}

/* Related Products */
.tt-related-products-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    text-align: center;
}

.tt-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tt-related-product {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    transition: transform 0.3s;
}

.tt-related-product:hover {
    transform: translateY(-5px);
}

.tt-related-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

.tt-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tt-related-product:hover .tt-related-image img {
    transform: scale(1.05);
}

.tt-related-info {
    padding: 20px;
}

.tt-related-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.tt-related-product-title a {
    color: #222;
    text-decoration: none;
}

.tt-related-product-title a:hover {
    color: #ff3366;
}

.tt-related-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff3366;
}

/* Responsive */
@media (max-width: 1024px) {
    .tt-product-detail-clean {
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .tt-product-detail-clean {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .tt-product-gallery-clean {
        position: static;
    }

    .tt-product-title-clean {
        font-size: 28px;
    }

    .tt-product-price-clean {
        font-size: 24px;
    }

    .tt-product-description-section,
    .tt-additional-info-section,
    .tt-reviews-section,
    .tt-related-products-section {
        padding: 30px;
    }

    .tt-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tt-woocommerce-container {
        padding: 15px;
    }

    .tt-product-detail-clean {
        padding: 25px;
    }

    .tt-thumbnail-clean {
        width: 60px;
        height: 60px;
    }

    .tt-add-to-cart-btn-clean {
        padding: 15px;
        font-size: 16px;
    }

    .tt-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Related Products - Grote afbeeldingen */
.tt-related-products-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tt-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    text-align: center;
}

.tt-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tt-related-product {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tt-related-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* GROTE AFBEELDINGEN */
.tt-related-image {
    display: block;
    overflow: hidden;
    height: 300px; /* Verhoogde hoogte voor grotere foto's */
    position: relative;
    background: #f5f5f5;
}

.tt-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt dat afbeelding de ruimte vult */
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tt-related-product:hover .tt-related-image img {
    transform: scale(1.08);
}

.tt-related-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tt-related-product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.tt-related-product-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.tt-related-product-title a:hover {
    color: #ff3366;
}

.tt-related-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff3366;
    margin-top: auto;
}

/* Responsive aanpassingen voor grote afbeeldingen */
@media (max-width: 1200px) {
    .tt-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .tt-related-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .tt-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tt-related-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .tt-related-products-section {
        padding: 30px;
    }

    .tt-related-grid {
        gap: 20px;
    }

    .tt-related-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .tt-related-grid {
        grid-template-columns: 1fr;
    }

    .tt-related-image {
        height: 280px;
    }
}
/* Add to Cart Button met Icon */
.add_to_cart_button {
    background: #333;
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 91%;
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.add_to_cart_button:hover {
    background: #ff3366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,51,102,0.3);
}

.add_to_cart_button i {
    font-size: 18px;
}

/* Winkelwagen Icon in Header (optioneel) */
.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.cart-count {
    background: #ff3366;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* ============================================
   FLOATING CART ICON - ALLE WOOCOMMERCE PAGINA'S
   ============================================ */

.floating-cart-container {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
}

.floating-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff3366, #ff0066);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.floating-cart-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
    background: linear-gradient(135deg, #ff0066, #cc0052);
}

.floating-cart-icon i {
    font-size: 28px;
}

/* Cart Count Badge */
.floating-cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #222;
    color: white;
    font-size: 14px;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Animation for new items */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-count.new-item {
    animation: cartPulse 0.5s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-cart-container {
        right: 20px;
        bottom: 20px;
    }

    .floating-cart-icon {
        width: 60px;
        height: 60px;
    }

    .floating-cart-icon i {
        font-size: 24px;
    }

    .floating-cart-icon .cart-count {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}


li {
    line-height: 1.5;
    margin: 0;
}

.woocommerce-breadcrumb {
    margin-bottom: 5rem;
    font-size: 23px;
    color: black;
    font-family: -apple-system, blinkmacsystemfont, "Helvetica Neue", helvetica, sans-serif;
}