/* ============================================================
   MY PROFILE PAGE — Complete Styles
   ============================================================ */

/* --- Page Section --- */
.innerpage {
  padding-top: 10px;
  padding-bottom: 40px;
  min-height: 70vh;
  background: #f5f6fa;
}

/* --- Breadcrumb --- */
.innerpage .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.innerpage .breadcrumb a {
  color: #be3240;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.innerpage .breadcrumb a:hover {
  color: #8c1c28;
}

.innerpage .breadcrumb .active {
  color: #777;
}

/* --- Process Block (Card Wrapper) --- */
.processBlock {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.processBlock:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* --- Profile Menu (User Card in Left Panel) --- */
.profilemenu {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* --- Profile Pic Block --- */
.profilepicblock {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f0f0;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profilepicblock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* --- Profile Content Block (Name / Info) --- */
.profilecontentBlock {
  flex: 1;
  min-width: 0;
}

.profilecontentBlock h5 {
  margin: 0 0 2px 0;
  font-size: 13px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.profilecontentBlock h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #2d2d2d;
  word-break: break-word;
  line-height: 1.35;
}

/* --- Account Tabs (Section Header with Icon) --- */
.accounttabs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 10px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 10px;
}

.accounttabs img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}

.accounttabs span {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* --- Account Navigation List --- */
.accountList {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.accountList li {
  border-bottom: 1px solid #f5f5f5;
}

.accountList li:last-child {
  border-bottom: none;
}

.accountList li a {
  display: block;
  padding: 12px 16px;
  color: #444;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.22s ease;
  position: relative;
  padding-left: 20px;
}

.accountList li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #be3240;
  border-radius: 4px;
  transition: height 0.22s ease;
}

.accountList li a:hover {
  background: #fdf2f3;
  color: #be3240;
  padding-left: 24px;
}

.accountList li a:hover::before {
  height: 60%;
}

/* --- Order Tab (Logout, etc.) --- */
.ordertab {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.22s ease;
}

.ordertab:hover {
  background: #fdf2f3;
}

.ordertab img {
  max-width: 20px;
}

.ordertab span {
  font-size: 14.5px;
  font-weight: 600;
  color: #be3240;
  transition: color 0.2s;
}

.ordertab:hover span {
  color: #8c1c28;
}

/* ============================================================
   RIGHT PANEL — My Account Form
   ============================================================ */

.processBlock h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  letter-spacing: -0.3px;
}

/* --- Profile Box (Form Row Wrapper) --- */
.profilebox {
  width: 100%;
  padding: 0;
}

/* --- Form Group Spacing --- */
.form-group.mr-bm0,
.mr-bm0 {
  margin-bottom: 22px;
}

/* --- Labels --- */
.processBlock label,
.my-account-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 7px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* --- Text Inputs --- */
.textbox,
input.textbox {
  width: 100%;
  height: 46px;
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  background: #f8f9fb;
  border: 1.5px solid #e2e5ea;
  border-radius: 10px;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.textbox:focus,
input.textbox:focus {
  border-color: #be3240;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(190, 50, 64, 0.1);
}

.textbox:disabled,
input.textbox:disabled,
.textbox[disabled],
input.textbox[disabled] {
  background: #eef0f3;
  color: #999;
  cursor: not-allowed;
  border-color: #ddd;
}

/* --- Radio Buttons --- */
.radio-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
  font-size: 14.5px;
  color: #555;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 0;
}

.radio-inline input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #be3240;
  cursor: pointer;
  margin: 0;
}

/* --- Submit Button --- */
.probtn,
input.probtn {
  display: inline-block;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #be3240 0%, #d94452 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(190, 50, 64, 0.25);
  margin-top: 8px;
}

.probtn:hover,
input.probtn:hover {
  background: linear-gradient(135deg, #a52935 0%, #c63b49 100%);
  box-shadow: 0 6px 20px rgba(190, 50, 64, 0.35);
  transform: translateY(-1px);
}

.probtn:active,
input.probtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(190, 50, 64, 0.2);
}

/* --- Spacer --- */
.spacer20 {
  height: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets */
@media (max-width: 991.98px) {
  .processBlock {
    padding: 22px 18px;
  }

  .profilemenu {
    gap: 14px;
  }

  .profilepicblock {
    width: 56px;
    height: 56px;
  }

  .processBlock h2 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .innerpage {
    padding-top: 5px;
    padding-bottom: 24px;
  }

  .processBlock {
    padding: 18px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .profilepicblock {
    width: 50px;
    height: 50px;
  }

  .profilecontentBlock h4 {
    font-size: 15px;
  }

  .accountList li a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .textbox,
  input.textbox {
    height: 42px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .probtn,
  input.probtn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
  }

  .processBlock h2 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

/* Small Mobile */
@media (max-width: 479.98px) {
  .profilemenu {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .accounttabs {
    justify-content: center;
  }

  .radio-inline {
    margin-right: 14px;
    font-size: 13.5px;
  }
}


.profile-page {
  display: none;
}

.profile-page:first-child {
  display: block;
}

.account-menu.active {
  font-weight: 600;
}