 /* Container styling */
    .star-rating {
        display: flex;
        flex-direction: row-reverse; /* Allows highlighting stars to the left */
        justify-content: flex-end;
    }

    /* Hide the actual radio dots */
    .star-rating input {
        display: none;
    }

    /* Base star style */
    .star-rating label {
        font-size: 20px;
        color: #ccc; /* Gray stars by default */
        cursor: pointer;
        transition: color 0.2s;
        margin-right: 5px;
    }

    /* Hover and Checked state: Turn stars Gold */
    .star-rating input:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label {
        color: #ffb800; /* Gold color */
    }

    /* Specific hover effect to show what you're about to click */
    .star-rating label:hover ~ label {
        color: #ffb800;
    }
    .tp-color-variation-btn {
        padding: 3px;
        border: 2px solid transparent;
        border-radius: 50%;
        transition: all 0.2s;
        background: transparent;
    }
    .tp-color-variation-btn.active { border-color: #3b82f6; }

    /* Size Styling */
    .tp-size-list { display: flex; gap: 10px; flex-wrap: wrap; }
    .size-option {
        padding: 8px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #475569;
        text-decoration: none;
        transition: all 0.2s;
    }
    .size-option:hover, .size-option.active { background: #1e293b; color: #fff; border-color: #1e293b; }

    /* Minor layout styling that bootstrap doesn't cover for your specific theme */
   .tp-radio-item input[type="radio"] { accent-color: #4D3D30; }
   .tp-profile-input-box { position: relative; }
   .tp-profile-input input {
      height: 60px;
      padding-top: 25px !important;
      border: 1px solid #EAECEF;
   }
   .tp-profile-input-title {
      position: absolute;
      top: 8px;
      left: 13px;
      font-size: 10px;
      font-weight: 700;
      color: #8D735B;
      text-transform: uppercase;
   }
    /* Header Styling */
   .tp-account-title {
      font-size: 24px;
      font-weight: 700;
      color: #161C2D;
      margin-bottom: 5px;
   }
   .text-muted {
      font-size: 15px;
      color: #718096;
   }

   /* Card Container */
   .tp-address-card {
      background: #ffffff;
      border: 1px solid #EAECEF;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
   }

   /* Input Styling */
   .tp-profile-input-box {
      position: relative;
   }
   .tp-profile-input input {
      width: 100%;
      height: 56px;
      line-height: 56px;
      padding: 0 20px;
      padding-top: 15px;
      border-radius: 8px;
      border: 1px solid #EAECEF;
      font-size: 15px;
      color: #161C2D;
      background: #ffffff;
      outline: none;
      transition: all 0.3s;
   }
   .tp-profile-input input:focus {
      border-color: #4D3D30;
   }
   .tp-profile-input-title {
      position: absolute;
      top: 6px;
      left: 20px;
      font-size: 11px;
      font-weight: 600;
      color: #8D735B;
      text-transform: uppercase;
      letter-spacing: 0.5px;
   }

   /* Customizing the Select field to match inputs */
   #state {
      padding-top: 15px !important;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 20px center;
   }
.custom-select .options {
display:none;}
.custom-select .selected.open + .options {
display:block;}

/* Modal Overlay */
.custom-modal-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* Modern blur effect */
    align-items: center;
    justify-content: center;
}

/* Modal Box */
.custom-modal-content {
        background-color: #fff;
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: absolute;
    transition: all 0.3s ease-out;
    overflow: hidden;
    top: 12%;
}

.custom-modal-overlay.active {
    display: flex !important;
}

/* Header */
.custom-modal-header {
    padding: 20px 30px;
    background: #fdfcfb;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header h4 {
    margin: 0;
    color: #4D3D30;
    font-weight: 700;
}

.close-custom-modal {
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

/* Body */
.custom-modal-body {
    padding: 30px;
    max-height: 350px;
    overflow-y: auto;
}

.custom-modal-body h5 {
    color: #4D3D30;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.custom-modal-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.custom-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel {
    background: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-agree {
    background: #4D3D30;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.tp-cart-list tbody tr:first-child td {
    padding: 10px !important
}
.tp-cart-title a {
    margin-left: 0px;
}
.agntix-light .sidebar-search input {
	border-color: #ccc;
}