/* ==========================================================================
   My Wish List page (Magento_Wishlist) - custom dark/gold restyle
   ========================================================================== */

.wishlist-index-index .page-title-wrapper .page-title {
    color: #fff;
}

/* ---- Title row ----
   ".account .column.main" carries a global padding-top:180px (set in
   custom-account-sidebar.css) meant for other account pages, which pushes
   the content far below the title on this page. Override just here. */
.wishlist-index-index .column.main {
    padding-top: 24px;
}

.wishlist-index-index .page-title-wrapper {
    margin-bottom: 0;
}

/* The wishlist content renders a ".toolbar.wishlist-toolbar" twice (once
   above the items, once below). Hide the top one, keep the bottom one. */
.wishlist-index-index .toolbar.wishlist-toolbar:first-of-type {
    display: none;
}

/* ---- Price ---- */
.products-grid.wishlist .product-item-info .price-box {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.products-grid.wishlist .product-item-info .price-box::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 1px;
    background: #d4af37;
}
.products-grid.wishlist .product-item-name a{
    color: #fff !important;
}
.wishlist-index-index .products-grid .product-item{
    padding: 10px 20px 0 0px !important;
}

.products-grid.wishlist .price-box .price {
    color: #d4af37;
    font-weight: 600;
}

/* ---- Qty selector ---- */
.products-grid.wishlist .box-tocart .fieldset {
    display: flex;
    align-items: center;
}

.products-grid.wishlist .field.qty .label {
    display: none;
}

.products-grid.wishlist .field.qty .control {
    position: relative;
    display: inline-block;
}


.products-grid.wishlist .field.qty input.qty {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    background: #000;
    border: 1px solid #444;
    border-radius: 0px;
    color: #fff;
    width: 64px;
    height: 44px;
    padding: 14px;
}

.products-grid.wishlist .field.qty input.qty::-webkit-inner-spin-button,
.products-grid.wishlist .field.qty input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ---- Add to Cart button ---- */
.products-grid.wishlist .box-tocart .action.tocart.primary {
    background: #fff !important;
    border-radius: 0px;
    color: #000 !important;
    font-weight: 600;
    height: 44px;
    padding: 0 22px;
    margin-left: 12px;
    transition: background-color .2s ease, color .2s ease;
}

.products-grid.wishlist .box-tocart .action.tocart.primary:hover {
    background: #d4af37;
    color: #000;
}

.products-grid.wishlist .product-item-actions .action.edit:hover:before, .products-grid.wishlist .product-item-actions .action.delete:hover:before{
    color: #d4af37 !important;
}
/* ---- Edit / Remove links ----
   ".product-item-actions" is used twice in the wishlist markup: once
   inside ".box-tocart" (wraps the Add to Cart button) and once as a
   direct child of ".product-item-inner" (wraps Edit + Remove). Only
   the latter should get this treatment. */
.products-grid.wishlist .product-item-inner > .product-item-actions {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.products-grid.wishlist .product-item-inner > .product-item-actions .action.edit,
.products-grid.wishlist .product-item-inner > .product-item-actions .action.delete {
    display: inline-flex;
    align-items: center;
    color: #ccc;
}

.products-grid.wishlist .product-item-inner > .product-item-actions .action.edit::after {
    content: '|';
    color: #444;
    margin: 0 0 0 20px;
}
.account .toolbar select{
    filter: invert(1) !important
}
.products-grid .product-item-info:hover{
    background: #000 !important;
}
.account.page-layout-2columns-left .column.main > .toolbar.wishlist-toolbar:first-of-type {
   display: none !important;
}

.products-grid.wishlist .product-item-inner > .product-item-actions .action.edit:hover,
.products-grid.wishlist .product-item-inner > .product-item-actions .action.delete:hover {
    color: #d4af37;
}

.products-grid.wishlist .product-item-inner > .product-item-actions .action.edit > span,
.products-grid.wishlist .product-item-inner > .product-item-actions .action.delete > span {
    position: static;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0 0 0 6px;
    overflow: visible;
    font-size: 13px;
}

.products-grid.wishlist .product-item-inner > .product-item-actions .action.edit::before,
.products-grid.wishlist .product-item-inner > .product-item-actions .action.delete::before {
    margin-right: 0;
}
