.elementor-176 .elementor-element.elementor-element-19361f8{margin-top:-70px;margin-bottom:0px;padding:100px 0px 70px 0px;}.elementor-176 .elementor-element.elementor-element-c2523c7:not(.elementor-motion-effects-element-type-background), .elementor-176 .elementor-element.elementor-element-c2523c7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F5F5F5;}.elementor-176 .elementor-element.elementor-element-c2523c7{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-176 .elementor-element.elementor-element-c2523c7 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-176 .elementor-element.elementor-element-73c4fea.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-176 .elementor-element.elementor-element-73c4fea.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-176 .elementor-element.elementor-element-73c4fea.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-176 .elementor-element.elementor-element-73c4fea > .elementor-element-populated{padding:40px 40px 40px 40px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-176 .elementor-element.elementor-element-5e3f49d .elementor-heading-title{font-family:"Rajdhani", Sans-serif;font-weight:800;color:var( --e-global-color-text );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-176 .elementor-element.elementor-element-ef404cd{padding:0px 0px 70px 0px;}@media(max-width:1024px){.elementor-176 .elementor-element.elementor-element-19361f8{padding:70px 0px 40px 0px;}}@media(max-width:767px){.elementor-176 .elementor-element.elementor-element-19361f8{padding:70px 0px 40px 0px;}.elementor-176 .elementor-element.elementor-element-73c4fea > .elementor-element-populated{padding:20px 20px 20px 20px;}.elementor-176 .elementor-element.elementor-element-5e3f49d .elementor-heading-title{font-size:28px;}}/* Start custom CSS *//* Osnovna stilizacija tabele */
.wishlist_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    font-family: 'Nunito Sans', sans-serif;
}

/* Header */
.wishlist_table thead th {
    background-color: #f7f7f7;
    text-align: left;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 15px;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

/* Redovi */
.wishlist_table tbody tr {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.wishlist_table tbody tr:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Ćelije */
.wishlist_table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

/* Uklanjanje proizvoda */
.wishlist_table .product-remove a {
    color: #DE1A21;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wishlist_table .product-remove a:hover {
    color: #b01419;
}

/* Slika proizvoda */
.wishlist_table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

/* Naziv proizvoda */
.wishlist_table .product-name a {
    color: #222;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.wishlist_table .product-name a:hover {
    color: #DE1A21;
}

/* Cena */
.wishlist_table .product-price .amount {
    color: #DE1A21;
    font-weight: 700;
    font-size: 16px;
}

/* Status na stanju */
.wishlist_table .product-stock-status .wishlist-in-stock {
    color: #1aaa55;
    font-weight: 600;
}

/* Dugme Add to cart */
.wishlist_table .product-add-to-cart a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #DE1A21;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.wishlist_table .product-add-to-cart a:hover {
    background-color: #b11419;
}

.woocommerce table.shop_table {
    border: 0px !important;
}

/* Responsive (mobilni) */
@media (max-width: 768px) {
    .wishlist_table thead {
        display: none;
    }

    .wishlist_table tr {
        display: block;
        margin-bottom: 20px;
    }

    .wishlist_table td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .wishlist_table td:before {
        content: attr(data-title);
        font-weight: bold;
        color: #555;
    }
}/* End custom CSS */