/* Account Page */
.btn-outline-primary {
    color: #c79a5c;
    border-color: #c79a5c;
}

.btn-outline-primary:hover {
    background-color: #c79a5c;
    color: #fff;
}
@media (max-width: 768px) {

    #addAddressModal .modal-dialog,
    #editAddressModal .modal-dialog {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #addAddressModal .modal-content,
    #editAddressModal .modal-content {
        border-radius: 16px 16px 0 0;
        max-height: 90vh;
    }

    #addAddressModal .modal-body,
    #editAddressModal .modal-body {
        padding: 15px;
        overflow-y: auto;
        max-height: calc(90vh - 60px);
    }
}
.modal {
    z-index: 1055;
}

.modal-backdrop {
    z-index: 1050;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #fff inset !important;
}
@media (max-width: 768px) {
    .modal .btn-primary {
        width: 100%;
        border-radius: 8px;
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-control:focus {
    border-color: #c79a5c;
    box-shadow: 0 0 0 0.2rem rgba(199, 154, 92, 0.25);
}
.btn-save {
    background-color: #c79a5c !important;
    border: none;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 🔥 FIX hover issue */
.btn-save:hover {
    background-color: #b4884a !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Disabled state */
.btn-save:disabled {
    background-color: #e0c9a6 !important;
    cursor: not-allowed;
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .address-form-row {
        display: block !important;
    }

    .address-form-row .col-md-6 {
        width: 100% !important;
        margin-bottom: 12px;
    }
}
@media (max-width: 768px) {
    .btn-save {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    input, textarea {
        font-size: 16px; /* prevents zoom on iPhone */
    }
}
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.modal-close-btn:hover {
    background-color: #c79a5c;  /* your gold */
    color: #fff;
}

/* Mobile improvement */
@media (max-width: 768px) {
    .modal-close-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
.account-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 700px;
}
.btn-save-main {
    background: #c79a5c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-save-main:hover {
    background: #b4884a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.single-input {
    margin-bottom: 18px;
}

.single-input label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
@media (max-width: 768px) {
    .btn-save-main {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .myaccount-tab-trigger {
        display: flex !important;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
        padding-bottom: 10px;
    }

    .myaccount-tab-trigger .nav-item {
        flex: 0 0 auto;
    }

    .myaccount-tab-trigger .nav-link {
        border-radius: 20px;
        padding: 8px 14px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .account-card {
        margin-bottom: 70px; /* space for floating button */
    }
    .btn-password-save {
        width: 100%;
    }
}
.btn-password-save {
    background: #c79a5c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-password-save:hover {
    background: #b4884a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.password-rules {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    color: #666;
}

.password-rules li {
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
}

.password-rules li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 12px;
}
.account-card input {
    padding: 10px 12px;
    border-radius: 8px;
}
.account-card input:focus {
    outline: none;
    border-color: #c79a5c;
    box-shadow: 0 0 0 2px rgba(199,154,92,0.2);
}
@media (max-width: 768px) {
    .password-rules {
        font-size: 13px;
        line-height: 1.6;
    }

    .password-rules li {
        margin-bottom: 6px;
    }
}
/* cart page */
 @media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border: none;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #555;
  }

  .cart-table .product-quantity {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Checkout page */
.table-wrapper2 {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
  }

  table.rounded-table {

    width: 100%;
    border-collapse: separate;
    border-spacing: 0; 
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    overflow: hidden;
  }

  .rounded-table th,
  .rounded-table td {
    padding: 8px;
    border-right: 1px solid #E5E5E5;
    text-align: left;
    background-color: white;
  }

  .rounded-table th:last-child,
  .rounded-table td:last-child{
    border-right: none;
  } 


  /* Optional: zebra striping */
  .rounded-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .cart_item td{
    border: none;
  }

  @media (max-width: 479px) {
  .cart_item td{
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0 !important;
  }

}

.form-check-label a {
    color: #15b279; 
    text-decoration: underline;
}
.form-check-label a:hover {
    color: #0d8050;
}
.btn-gold-outline {
    border: 1px solid #c89b5d;
    color: #c89b5d;
    background: transparent;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(200,155,93,0.2);
}

.btn-gold-outline:hover {
    background: #c89b5d;
    color: #fff;
}
button.btn-gold-outline:hover {
    background: #c89b5d !important;
    color: #fff !important;
    opacity: 1 !important;
}
@media (max-width: 576px) {
    .btn-gold-outline {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .address-card {
        padding: 10px;
    }
}
@media (max-width: 576px) {
    .address-card .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .address-card .btn-edit {
        align-self: flex-end;
    }
}
.your-order-table {
    overflow-x: auto;
}
@media (max-width: 576px) {
    .breadcrumb-area {
        padding: 20px 0;
    }

    .breadcrumb-area h2 {
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .btn-primary {
        width: 100%;
        font-size: 16px;
    }
}
.modal .btn-save {
    background: #c89b5d;
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

.modal .btn-save:hover {
    background: #b8894f;
    transform: translateY(-2px);
}
.modal-content {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.modal-header {
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #c89b5d;
}
.modal .form-control:focus {
    border-color: #c89b5d;
    box-shadow: 0 0 0 2px rgba(200,155,93,0.2);
}
.modal-body {
    background: #faf8f5;
}
.modal-header .btn-close {
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 8px;
}
.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200,155,93,0.4);
}
.modal-header {
    background: #faf8f5;
    border-bottom: 1px solid #eee;
}
.place-order-btn {
    background: #c89b5d !important;
    color: #fff !important;
    border: none;
    border-radius: 25px;
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
}
.place-order-btn:hover {
    background: #b8894f !important;
    color: #fff !important;
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .select-address,
    .order-summary {
        margin-bottom: 20px;
    }
}
.address-card {
    cursor: pointer;
}
@media (max-width: 768px) {
    .place-order-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        z-index: 9999;
    }

    body {
        padding-bottom: 70px;
    }
}
.btn-gold {
    background: #c89b5d;
    color: #fff;
    border: none;
    border-radius: 25px;
}

.btn-gold:hover {
    background: #b8894f;
    color: #fff;
}
.place-order-btn:disabled {
    background: #c89b5d !important;
    opacity: 0.5;
    cursor: not-allowed;
}
/* Modal for checkout page */
/* Order Details */
.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}
@media (max-width: 768px) {
    .payment-summary {
        width: 100%;
        display: block;
    }
}
.card {
    border-radius: 12px;
}
.d-flex.flex-column {
    gap: 10px;
}
.dropdown-menu {
    z-index: 9999 !important;
}
header, .header-area, .navbar {
    overflow: visible !important;
}
.user_drp_wrap {
    position: relative;
}
.user_dropdowns {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 9999;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}
.user_drp_wrap:hover .user_dropdowns {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header_bottom_area {
    overflow: visible !important;
}
.user_dropdowns {
    position: absolute;
    top: 100%;
    right: 0;   /* important */
    left: auto; /* prevents shift */
}
.user_dropdowns {
    margin-top: 8px;
}
.header-right-area {
    position: relative;
    z-index: 100;
}

.user_drp_wrap {
    position: relative;
    z-index: 101;
}
.user_dropdowns {
    z-index: 9999;
}
.user_dropdowns::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 15px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}
/* Registration page */
   /* Override Bootstrap Primary Button */
.btn-primary {
    background-color: #c89b5d !important;
    border-color: #c89b5d !important;
    border-radius: 25px;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #b8894f !important;
    border-color: #b8894f !important;
}
.form-control:focus {
    border-color: #c89b5d !important;
    box-shadow: 0 0 0 2px rgba(200,155,93,0.2) !important;
}
.text-gold {
    color: #c89b5d !important;
}
/* Shop listing page */
 .active>.page-link,
    .page-link.active {
        background-color: rgb(194, 153, 88);
        color: #ffffff !important;
        border-color: #2F4F4F !important;
        padding: 9px 15px;
        display: block;
    }

    .disabled>.page-link {
        padding: 9px 15px;
        display: block;
    }

    .page-link {
        color: gray !important;
        font-weight: bold;
    }

    .activecat {
        background-color: rgb(194, 153, 88) !important;
        font-weight: bold;
    }

    .activecat a {
        color: white !important;
    }
    .out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.75);

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
    color: #777;

    border-radius: 6px;
}
/* CARD HOVER */
.single_product {
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-radius: 10px;
}
.single_product:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.product-img {
    position: relative;
    overflow: hidden;
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s;
    background: rgba(0,0,0,0.35);   /* slightly darker */
    z-index: 1;
}

.single_product:hover .product-overlay {
    opacity: 1;
}

/* BUTTON */
.overlay-btn {
    background: linear-gradient(135deg, #c29958, #e0b873);
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
    margin-top: 14px;
}

.overlay-btn:hover {
    background: #fff;
    transform: scale(1.08);
}

/* SOLD OUT */

/* IMAGE ZOOM */
.single_product:hover img {
    transform: scale(1.05);
}
.sold-text {
    background: rgba(255,255,255,0.85);
    color: #555;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
/* FIX OUT OF STOCK */
/* MOBILE FIX */
@media(max-width:768px){

    /* REMOVE HOVER DEPENDENCY */
    .product-overlay {
        position: static;
        background: none;
        opacity: 1;
        margin-top: 10px;
    }

    .overlay-btn {
        display: block;
        width: 100%;
        text-align: center;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 12px;
        padding: 12px;  /* bigger tap area */
    }

    /* IMAGE HEIGHT */
    .product-img img {
        height: 200px;
        object-fit: cover;
    }

    /* CARD SPACING */
    .single_product {
        margin-bottom: 15px;
    }

    /* OUT OF STOCK TEXT */
    .out-of-stock-overlay {
        font-size: 12px;
    }

    /* WISHLIST ICON BIGGER */
    .additional-add_action i {
        font-size: 18px;
        right: 10px;
    }
}
@media(max-width:768px){
    .col-6 {
        padding: 6px;
    }
}
@media(max-width:768px){
    .sold-ribbon {
        top: 8px;
        left: -25px;
        font-size: 10px;
        padding: 4px 30px;
    }
}
/* SOLD OUT RIBBON */
.sold-ribbon {
    position: absolute;
    top: 12px;
    left: -30px;
    
    background: #ff4d4d;
    color: #fff;
    
    padding: 5px 40px;
    font-size: 11px;
    font-weight: bold;
    
    transform: rotate(-45deg);
    
    z-index: 10;
}
/* Single Product page */
pinch-zoom {
        touch-action: none;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 100%;
    }

    .carousel-item {
        background-color: #000;
    }

    #imageModal .modal-body {
        overflow: hidden;
        padding: 0;
    }

    #imageModal .modal-dialog {
        margin: 0;
        max-width: 100%;
    }

    #imageModal .modal-content {
        height: 100vh;
        background-color: black;
    }



    .btn-close {
        z-index: 9999 !important;
        position: fixed !important;
        top: 16px !important;
        right: 16px !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        /* translucent background for visibility */
        color: white !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .medium-zoom-image--opened {
        max-width: 100vw !important;
        max-height: 100vh !important;
        object-fit: contain !important;
        z-index: 1058 !important;
        transition: transform 0.3s ease !important;
        transform-origin: center center !important;
    }

    .medium-zoom-overlay {
        z-index: 1056 !important;
        background: rgba(0, 0, 0, 0.85) !important;
    }

    .medium-zoom-overlay ~ .container .ship-ui {
        display: none !important;
    }   
    
    .breadcrumb-title {
        font-size: 1.6rem;
        font-weight: 600;
        color: #fff;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;           /* show up to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
    
    /* Responsive adjustments */
    @media (max-width: 576px) {
        .breadcrumb-title {
            font-size: 1.3rem;
            max-width: 95%;
        }
    }
    .video-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2000 !important;
      background: rgba(0, 0, 0, 0.6);
      border: none;
      border-radius: 50%;
      padding: 8px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    
    .video-modal-close svg {
      pointer-events: none;
      fill: white;
    }
    
    .modal-dialog.modal-fullscreen-sm-down {
      margin: 0;
      max-width: 100%;
      width: 100%;
    }
    
    .modal-fullscreen-sm-down .modal-content {
      height: 100vh;
    }

    .modal-body.video-body {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
    }
    
    #productVideo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: black;
    }

#gallery a {
    width: 85px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#gallery a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #f8f8f8;
}
#gallery a img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
.sp-img_area {
    position: relative;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2;

    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-icon i {
    font-size: 18px;
    color: #777;   /* better than light grey */
    transition: 0.3s;
}

/* Hover effect */
.wishlist-icon:hover {
    transform: scale(1.1);
}

.wishlist-icon:hover i {
    color: red;
}
/* terms and condition page */
.accordion {
    max-width: 800px; 
    margin: 50px auto;
    border: none; 
    border-radius: 0; 
    box-shadow: none;
}

.accordion-item {
    border: 1px solid #e0e0e0 !important; 
    border-radius: 10px; 
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #fff; 
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    font-size: 1.1rem; 
    font-weight: 500; 
    color: #333; 
    background-color: #fff; 
    padding: 15px 20px;
    border-radius: 0 !important; 
    transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease; 
    border: none; 
}

.accordion-button:hover {
    background-color: #e7f7f1; 
    color: #15b279; 
}

.accordion-button:not(.collapsed) {
    background-color: #15b279; 
    color: #ffffff; 
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(15%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%); 
    transition: filter 0.3s ease; 
}

.accordion-button:hover::after {
    filter: invert(50%) sepia(40%) saturate(800%) hue-rotate(90deg) brightness(90%); 
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) saturate(1000%);
}

.accordion-button:focus {
    box-shadow: none; 
    border-color: transparent; 
}

.accordion-body {
    background-color: #fff; 
    padding: 15px 20px; 
    color: #555; 
    font-size: 0.95rem; 
}

.accordion-body ul {
    list-style-type: disc; 
    padding-left: 20px; 
    margin-bottom: 0;
}

.accordion-body li {
    margin-bottom: 8px; 
}

h1.main-faq-header {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    margin-top: 50px;
}

.sub-header {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}
.mt-disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}   
/* whishlist page */
/* BACKGROUND */
.hiraola-cart-area {
    background: #f8f8f8;
    padding: 40px 0;
}

/* GRID FIX */
.row.gy-4 > div {
    display: flex;
}

/* CARD */
.wishlist-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f1f1f1;
}

.wishlist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* HEART BADGE */
.wishlist-card::before {
    content: "❤";
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #e53935;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* IMAGE */
.wishlist-img {
    overflow: hidden;
    border-radius: 12px;
    margin: 12px;
}

.wishlist-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

.wishlist-card:hover img {
    transform: scale(1.08);
}

/* REMOVE BUTTON */
.remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.remove-btn button {
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: red;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.remove-btn button:hover {
    background: red;
    color: #fff;
    transform: scale(1.1);
}

/* CONTENT */
.wishlist-content {
    padding: 10px 15px;
    text-align: center;
}

.wishlist-content h6 {
    font-size: 14px;
    min-height: 42px;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.4;
}

/* PRICE */
.price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

/* STOCK */
.stock {
    font-size: 12px;
    color: #c79a5b;
    margin-top: 4px;
    font-weight: 500;
}

.out-stock {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(135deg, #c79a5b, #a87d3f);
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(199,154,91,0.4);
}

/* MOBILE */
@media(max-width:768px){
    .wishlist-img img {
        height: 200px;
    }
}
/* OVERLAY */
.wishlist-img {
    position: relative;
    overflow: hidden;
}

/* OVERLAY IMPROVED */
.wishlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

/* SHOW */
.wishlist-card:hover .wishlist-overlay {
    opacity: 1;
}

/* BUTTON FINAL */
.overlay-btn {
    background: linear-gradient(135deg, #c79a5b, #a87d3f);
    color: #fff !important;   /* 🔥 FORCE BRIGHT WHITE TEXT */
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;          /* slightly bigger */
    font-weight: 700;         /* bold text */
    text-decoration: none;
    transition: 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    opacity: 1 !important;    /* 🔥 prevent dullness */
    letter-spacing: 0.5px;    /* improve readability */
}

/* HOVER EFFECT */
.overlay-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(199,154,91,0.5);
}

/* SMOOTH ENTRY */
.wishlist-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}
/* OUT OF STOCK */
.overlay-out {
    background: red;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
/* MOBILE FIX */
@media(max-width:768px){

    /* SHOW BUTTON ALWAYS (NO HOVER ISSUE) */
    .wishlist-overlay {
        position: static;
        background: none;
        opacity: 1;
        margin-top: 10px;
    }

    .overlay-btn {
        width: 100%;
        display: block;
        text-align: center;
        transform: none !important;
        opacity: 1 !important;
    }

    /* IMAGE HEIGHT */
    .wishlist-img img {
        height: 180px;
    }

    /* CARD PADDING */
    .wishlist-card {
        border-radius: 12px;
    }

    /* REMOVE BUTTON BIGGER */
    .remove-btn button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* TEXT IMPROVEMENT */
    .wishlist-content h6 {
        font-size: 13px;
    }

    .price {
        font-size: 18px;
    }
}
/* =========================
   FINAL CLEAN FIX
========================= */