/* Ashes Love shop overrides.
   Kept separate from the purchased "garnish" theme so theme files stay pristine.
   Loaded after the theme CSS in base.html. */

/* ---- Buttons rendered as <button> ----
   The theme styles `.default-btn` (gold fill) for <a> tags, but
   `.quatity-stock ul li button` forces a transparent background, so a
   <button class="default-btn"> (our add-to-cart) showed up blank until hover.
   Restore the intended gold, legible look for button elements. */
.default-btn,
button.default-btn,
.quatity-stock ul li button.default-btn {
    background: #d0e7f6;
    border: 1px solid #a9d2ee;
    color: #4a4441;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 0 22px;
    cursor: pointer;
    border-radius: 2px;
    transition: all .3s ease 0s;
    -webkit-appearance: none;
    appearance: none;
}

.default-btn:hover,
button.default-btn:hover,
.quatity-stock ul li button.default-btn:hover {
    background: #a9d2ee;
    border-color: #3f7da6;
    color: #4a4441;
}

/* Add-to-cart button sizing inside the quantity row. */
.quatity-stock ul li .aqbw.default-btn {
    height: 46px;
    line-height: 44px;
    min-width: 180px;
    padding: 0 24px;
}
.quatity-stock ul li .aqbw.default-btn i {
    margin-right: 6px;
}

/* Quantity input legibility. */
.quatity-stock .box-quantity .quantity {
    height: 46px;
    width: 90px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 0 12px;
    font-size: 15px;
    text-align: center;
}

/* ---- Product option selectors (size / color / etc.) ---- */
.product-varient {
    margin: 22px 0 6px;
}
.product-varient .commmon_varient {
    margin-bottom: 16px;
}
.product-varient .commmon_varient > label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    text-transform: capitalize;
}
.product-varient select {
    -webkit-appearance: none;
    appearance: none;
    min-width: 200px;
    height: 44px;
    padding: 0 36px 0 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'14'%20height%3D'14'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20fill%3D'%23999'%20d%3D'M7%2010l5%205%205-5z'%2F%3E%3C%2Fsvg%3E") no-repeat right 12px center;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}
.product-varient select:focus {
    border-color: #3f7da6;
    outline: none;
}
.product-varient .option-radio-group label {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 8px 14px;
    margin: 0 10px 8px 0;
    cursor: pointer;
}
.product-varient .option-radio-group input {
    margin-right: 6px;
}

/* ---- Cart table ---- */
.cart-main-area table thead th {
    font-weight: 700;
    color: #333;
}
.cart-main-area .del-icone {
    color: #b00;
}
.cart-main-area .del-icone:hover {
    color: #800;
}

/* ---- Cart / order summary box buttons ---- */
.cart-footer button.default-btn {
    height: 46px;
    line-height: 44px;
}

/* ---- Account / order pages ---- */
.account-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.account-nav li {
    display: inline-block;
    margin-right: 18px;
}
.account-table {
    width: 100%;
    border-collapse: collapse;
}
.account-table th,
.account-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.account-table th {
    border-bottom: 2px solid #e0d6c8;
    font-weight: 700;
}
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}
.status-paid { background: #e3f5e8; color: #1d7a3a; }
.status-pending { background: #fdf3e0; color: #9a6a12; }
.status-failed { background: #fde3e3; color: #a12020; }
.status-fulfilled { background: #e3eefc; color: #1d4f9a; }
.status-refunded { background: #efefef; color: #555; }

/* Form error messages. */
.form-errors {
    color: #a12020;
    font-size: 13px;
    margin-top: 4px;
}

/* Memories counter band (deep primary blue accent). */
.memories-counter-area {
    background: #3f7da6;
    padding: 70px 0;
}
.memories-counter-title {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}
.memories-counter-number {
    color: #ffffff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 10px 0;
}
.memories-counter-sub {
    color: #faf5f0;
    font-size: 16px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 575px) {
    .memories-counter-number { font-size: 44px; }
}
