/* Focus effect */
.form-input:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Error state */
.form-input.error {
  border-color: #e74c3c;
  background-color: #fff6f6;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}
.form-control.error {
  border-color: #e74c3c !important;
  background-color: #fff6f6 !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

/* Error message */
.error-message {
  color: #e74c3c;
  font-size: 0.95rem;
  margin-top: 6px;
  font-weight: 500;
  display: none;
  animation: fadeSlideDown 0.3s ease;
}

/* Show error message when input is in error */
.form-input.error + .error-message {
  display: block;
}

/* Smooth animation */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-li {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.profile-table-container {
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th {
  text-align: left;
  padding: 10px 15px;
  background-color: #f9f9f9;
  color: #333;
  font-weight: 600;
  width: 35%;
}

.profile-table td {
  padding: 10px 15px;
  color: #444;
  background-color: #fff;
}

.profile-table tr:nth-child(even) td {
  background-color: #f7f7f7;
}

.pull-right {
    float: right;
}

.pl8px {
    padding-left: 8px;
}


/* 
---------------------------------------------
Change Password
--------------------------------------------- 
*/

.change-password .section-heading {
  margin-bottom: 30px;
}

.change-password .section-heading h2 {
  line-height: 55px;
}

.change-password form input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0px 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #aaa;
  border-radius: 0px;
  border: 1px solid #7a7a7a;
  box-shadow: none;
  margin-bottom: 10px;
}

.change-password form input::focus {
  border-color: #2a2a2a;
  border-radius: 0px;
}

.change-password ul li {
  margin-bottom: 30px;
  display: block;
}

.change-password ul li {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
}

.change-password ul li span,
.change-password ul li span a {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
}

.change-password ul li span a:hover {
  color: #2a2a2a;
}

.change-password form .main-dark-button:hover {
  background-color: #fff;
  border: 1px solid #2a2a2a;
  color: #2a2a2a;
}

.change-password form .main-dark-button {
  width: 100%;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: #2a2a2a;
  box-shadow: none;
  border: 1px solid transparent;
  color: #fff;
  transition: all 0.3s;
}

.cart-success {
  color: #ffbb00 !important;
}

.bg-dark-gray {
    background: #343a40 !important;
}

.bg-white {
    background: #fff !important;
}




.address-section h3 {
  text-align: left;
  /* margin-bottom: 20px; */
  color: #333;
  font-size: 18px;
}

.address-block {
  background: #f5f5f5;
  border: 1px solid #e0b6d9;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.address-grid .form-group{
  margin-bottom: 0 !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group select {
  font-size: 14px;
}

/* .add-btn, .remove-btn {
  color: white;
  padding: 4px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
} */

/* .add-btn {
  display: block;
  margin: 0 auto;
  background: #28a745;
} */

/* .remove-btn {
  position: absolute;
  top: 0px;
  right: 12px;
  background: #dc3545;
  padding: 2px 8px;
   font-size: 18px; 
} */


/* Reset default select appearance */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 40px 10px 12px;
  border-radius: 5px;
  font-size: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23999" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/* Optional: on focus */
select:focus {
  border-color: #7a9cc6;
  outline: none;
}

/* Strong Password */
.neutral {
        display: block !important;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 4px;
        text-transform: uppercase;
    }

    .veryweak {
        color: #fff;
        padding: 2px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-color: #B40404;

    }

    .weak {
        color: #fff;
        padding: 2px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-color: #ed6907;
    }

    .medium {
        color: #fff;
        padding: 2px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-color: #f2bd06;
    }


    .strong {
        color: #fff;
        padding: 2px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-color: #068747;
    }


    .verystrong {
        color: #fff;
        padding: 2px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-color: #056133;
    }


/* product image */
.product-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
}

.product-gallery .thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-gallery .thumbs-row { 
  /* display: grid; */
  height: fit-content;
}

.product-gallery .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s, border 0.3s;
  margin-bottom: 6px;
}

.product-gallery .thumb:hover {
  transform: scale(1.05);
}

.product-gallery .thumb.active {
  border: 2px solid #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
      
}

.product-gallery .main-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.product-gallery .main-image {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-gallery .main-image:hover {
  transform: scale(1.02);
}


@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .product-gallery .thumbnails {
    flex-direction: row;
    justify-content: center;
  }

  .product-gallery .thumb {
    width: 60px;
    height: 60px;
  }
}

.address-container {
  /* background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif; */
}

.address-container .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.address-container .address-header h3 {
  margin: 0;
  font-size: 20px;
}

.address-container .add-btn {
  background-color: #fff;
  border: 1px solid #28a745;
  color: #28a745;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.address-container .add-btn:hover {
  background-color: #28a745;
  color: #fff;
}

.address-container .address-card {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.address-container .address-left {
  flex: 1;
}

.address-container .address-label {
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

.address-container .address-text {
  color: #333;
}

.address-container .address-actions button {
  background: #f8f9fa;
  border: none;
  padding: 6px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.address-container .address-actions button:hover {
  background-color: #e2e6ea;
}

.address-container .address-actions i {
  color: #444;
  font-size: 14px;
}

.badge.text-bg-danger {
    background-color: #fff !important;
    border: 1px solid #dc3545;
    color: #dc3545 !important;
        font-size: 11px !important;
}


/* My Cart Page */
.cart-box {
      max-width: 1100px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin: auto;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }
.cart-box .cart-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .cart-box .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }
    .cart-box .item-left {
      display: flex;
      align-items: center;
      gap: 15px;
      flex: 1;
    }
    .cart-box .item-left img {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      object-fit: cover;
    }
    .cart-box .item-details {
      line-height: 1.4;
    }
    .cart-box .item-details .name {
      font-weight: bold;
    }
    .cart-box .item-details .category {
      font-size: 14px;
      color: gray;
    }
    .cart-box .item-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .cart-box .qty-control {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 4px;
      overflow: hidden;
    }
    .cart-box .qty-control button {
      background: #f4f4f4;
      border: none;
      padding: 6px 10px;
      font-size: 16px;
      cursor: pointer;
    }
    .cart-box .qty-control input {
      width: 30px;
      text-align: center;
      border: none;
      font-size: 16px;
    }
    .cart-box .item-price {
      font-weight: bold;
      min-width: 80px;
      text-align: right;
      display: inline-grid;
      font-weight: 600;
    }
    .cart-box .remove-btn {
      color: #b7b7b7;
      cursor: pointer;
      font-size: 18px;
    }
    .cart-box .cart-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
    }
    .cart-box .total {
      font-size: 20px;
      font-weight: bold;
    }
    .cart-box .checkout-btn {
      background-color: green;
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .cart-box .checkout-btn:hover {
      background-color: darkgreen;
    }

    @media (max-width: 600px) {
      .cart-box .cart-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .cart-box .item-right {
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
      }
    }



    .empty-cart-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

.empty-cart-box .empty-cart-icon img {
    width: 80px;
    height: auto;
    filter: grayscale(100%) brightness(0) invert(1); /* makes icon white */
    margin-bottom: 20px;
}

.empty-cart-box h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
}

.empty-cart-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.empty-cart-box .btn-shop {
    display: inline-block;
    padding: 10px 20px;
    background-color: #111; /* black button */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.empty-cart-box .btn-shop:hover {
    background-color: #222;
}


.search-bar {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
}

.search-input {
  width: 60%;
  /* max-width: 500px; */
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-btn {
  padding: 12px 20px;
  border: 1px solid #333;
  border-left: none;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background-color: #555;
}



  .address-box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
        display: flex;
    margin-bottom: 10px;
  }

  .address-box .header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    /* width: 74%; */
  }

  .address-box .add-link {
    background-color: #fff;
    border: 1px solid #28a745;
    color: #28a745;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    /* width: 26%; */
  }

  .address-box .add-link:hover {
    /* text-decoration: underline; */
    background-color: #28a745;
    color: #fff;
  }

  .address-box .total-text {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .address-box .address-option {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .address-box .address-option input[type="radio"] {
    accent-color: green;
    margin-top: 4px;
  }

  .address-box .address-option.selected {
    border-color: #007bff;
    background: #f0f8ff;
  }

  .address-box .address-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .address-box .address-text {
    font-size: 14px;
    color: #333;
  }


  .video-wrapper {
      position: relative;
      width: 640px;
      max-width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    .video-wrapper video {
      width: 100%;
      display: block;
    }

    .video-wrapper .controls {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(20, 20, 20, 0.7);
      backdrop-filter: blur(10px);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .video-wrapper .video-wrapper:hover .controls {
      opacity: 1;
    }

    .video-wrapper .control-btn {
      color: #fff;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .video-wrapper .control-btn:hover {
      transform: scale(1.2);
      color: #1db954;
    }

    .video-wrapper .progress {
      flex-grow: 1;
      margin: 0 12px;
    }

    .video-wrapper .progress input[type="range"] {
      width: 100%;
      cursor: pointer;
      accent-color: #1db954;
    }

    .video-wrapper .volume-slider {
      width: 80px;
    }

    .video-wrapper .material-symbols-outlined {
      font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    }



    .view-order .container {
        max-width: 800px;
        margin: 40px auto;
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.06);
    }

    .view-order h1 {
        font-size: 24px;
        font-weight: bold;
        color: #111827;
        margin-bottom: 24px;
    }

    .view-order .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.view-order .cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.view-order .cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f3f4f6;
}

.view-order .cart-item-details h2 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.view-order .cart-item-details p {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0 0;
}

.view-order .cart-item-meta {
    font-size: 13px;
    color: #6b7280;
    min-width: 110px;
    text-align: right;
}

.view-order .cart-item-price {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    min-width: 100px;
    text-align: right;
}

    .view-order .section-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111827;
    }

    .view-order .shipping-box {
        background-color: #f9fafb;
        border: 1px solid #e5e7eb;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .view-order .shipping-box p {
        margin-bottom: 4px;
        color: #374151;
        font-size: 14px;
    }

    .view-order .summary {
        margin-bottom: 30px;
    }

    .view-order .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 15px;
        color: #374151;
    }

    .view-order .discount-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 15px;
        color: #374151;
    }

    .view-order .summary-total {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        font-size: 18px;
        margin-top: 14px;
        color: #111827;
    }

    .view-order .actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .view-order .back-link {
        color: #2563eb;
        text-decoration: none;
        font-size: 15px;
    }

    .view-order .back-link:hover {
        text-decoration: underline;
    }

    .view-order .btn-confirm {
        background-color: #16a34a;
        color: white;
        padding: 10px 24px;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .view-order .btn-confirm:hover {
        background-color: #15803d;
    }
    
    .payment-status {
  margin-top: 10px;
  font-size: 15px;
  color: #16a34a; /* green */
  font-weight: 500;
}

    @media (max-width: 576px) {
    .view-order .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-order .cart-item-info {
        width: 100%;
        margin-bottom: 10px;
    }

    .view-order .cart-item-meta,
    .view-order .cart-item-price {
        width: 100%;
        text-align: left;
        margin-top: 6px;
        font-size: 14px;
    }

    .view-order .cart-item-price {
        font-weight: 600;
        color: #111827;
    }

    .view-order .actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .view-order .cart-item img {
        width: 50px;
        height: 50px;
    }

    .view-order .cart-item-details h2 {
        font-size: 15px;
    }

    .view-order .cart-item-details p {
        font-size: 13px;
    }
}

    
    .view-order .payment-status {
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Status Colors */
.view-order .payment-status.paid {
  background-color: #e6ffed;
  color: #1a7f37;
  border: 1px solid #b7e6c1;
      width: 100%;
}

.view-order .payment-status.pending {
  background-color: #fffbe6;
  color: #b08600;
  border: 1px solid #ffe58f;
      width: 100%;
}

.view-order .payment-status.unpaid {
  background-color: #fff1f0;
  color: #cf1322;
  border: 1px solid #ffa39e;
      width: 100%;
}

.view-order .payment-status.failed {
  background-color: #fff1f0;
  color: #a8071a;
  border: 1px solid #ffa39e;
      width: 100%;
}

.view-order .payment-status.refunded {
  background-color: #f0f5ff;
  color: #1d39c4;
  border: 1px solid #adc6ff;
      width: 100%;
}

.view-order .payment-status.partial {
  background-color: #f4faff;
  color: #096dd9;
  border: 1px solid #91d5ff;
      width: 100%;
}

.download-invoice { float: inline-end; background: #f5f5f5; padding: 2px 8px; border-radius: 6px; cursor: pointer; border: 2px solid #ccc; }

.cart-wrapper {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.cart-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: relative;
  gap: 16px;
}

.item-img {
  width: 90px;
  height: auto;
  border-radius: 8px;
}

.item-info {
  flex: 1;
}

.item-info h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.category {
  color: #888;
  font-size: 13px;
}

.item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.item-controls select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.qty {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qty button {
  padding: 6px 10px;
  background: #e7e7e7;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.qty input {
  width: 35px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px;
}

.final-price {
  font-weight: bold;
}

.strike {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 4px;
}

.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 0;
}

.summary {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.summary h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background-color: #0e9e6e;
}

/* Responsive */
@media (max-width: 640px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-img {
    width: 100%;
    max-width: 100px;
  }

  .checkout-btn {
    font-size: 15px;
  }
}

    .submenu ul li .active {
      background-color: #ffe898 !important;
    color: #000000 !important;
    }

    .stars li i.fa-star, .stars li i.fa-star-half-o, .stars li i.fa-star-o {
      color: #ffbb00;
    }

    .mb15px {
      margin-bottom: 15px;
    }

    .modal-ok-btn {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s ease;
}

.modal-ok-btn:hover {
    background-color: #444;
}

.out-of-stock-alert {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  /* width: 100%; */
}

.view-more-btn {
  padding: 10px 20px;
  border: 2px solid #333;
  background-color: transparent;
  color: #333;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #333;
  color: #fff;
}

.rating-tag {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 14px !important;
    color: #333 !important;
    gap: 4px !important;
}

.rating-tag .fa-star {
    color: #fbbc04 !important; /* Google-style yellow */
    font-size: 14px !important;
}

.rating-tag span {
        font-size: 14px !important;
        font-weight: 400 !important;
}

/* ************** */
/* privacy-policy */
/* ************** */
:root {
        --privacy-primary-color: #F6D15F;
        --privacy-text-color: #2a2a2a;
        --privacy-bg-color: #ffffff;
        --privacy-section-bg: #f9f9f9;
    }
    .privacy-policy {
        margin: 0;
        padding: 0;
        /*font-family: 'Inter', sans-serif;*/
        color: var(--privacy-text-color);
        background-color: var(--privacy-bg-color);
        line-height: 1.8;
    }
    .privacy-policy .header {
        background-color: var(--privacy-primary-color);
        padding: 20px 40px;
        text-align: center;
        color: var(--privacy-text-color);
    }
    .privacy-policy header h1 {
        margin: 0;
        font-size: 28px;
    }
    .privacy-policy main {
        max-width: 900px;
        margin: 40px auto;
        padding: 0 20px;
    }
    .privacy-policy div {
        margin-bottom: 40px;
        background-color: var(--privacy-section-bg);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .privacy-policy div h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #111;
    }
    .privacy-policy p, .privacy-policy li {
        font-size: 16px;
        margin: 10px 0;
    }
    .privacy-policy ul {
        padding-left: 20px;
    }

    @media (max-width: 600px) {
        .privacy-policy header h1 {
            font-size: 22px;
        }
        .privacy-policy main {
            padding: 0 10px;
        }
    }

/* ************** */
/* Terms & Conditions */
/* ************** */
:root {
      --term-primary-color: #F6D15F;
      --term-text-color: #2a2a2a;
      --term-bg-color: #ffffff;
      --term-section-bg: #f9f9f9;
    }
    .term-conditions {
      margin: 0;
      padding: 0;
      /*font-family: 'Inter', sans-serif;*/
      color: var(--term-text-color);
      background-color: var(--term-bg-color);
      line-height: 1.8;
    }
    .term-conditions .header {
      background-color: var(--term-primary-color);
      padding: 20px 40px;
      text-align: center;
      color: var(--text-color);
    }
    .term-conditions header h1 {
      margin: 0;
      font-size: 28px;
    }
    .term-conditions main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .term-conditions div {
      margin-bottom: 40px;
      background-color: var(--term-section-bg);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .term-conditions div h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #111;
    }
    .term-conditions p, .term-conditions li {
      font-size: 16px;
      margin: 10px 0;
    }
    .term-conditions ul {
      padding-left: 20px;
    }

    @media (max-width: 600px) {
      .term-conditions header h1 {
        font-size: 22px;
      }
      .term-conditions main {
        padding: 0 10px;
      }
    }

/* ************** */
/* Product List */
/* ************** */
#products .search-bar-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

#products .search-bar {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
}

#products .search-input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 14px;
}

#products .search-btn {
  background-color: #333;
  color: #fff;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

#products .product-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#products .product-toggle label {
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

#products .product-toggle input[type="checkbox"] {
  display: none;
}

#products .product-toggle input[type="checkbox"]:checked + label {
  background-color: #333;
  color: #fff;
}

@media (max-width: 576px) {
  #products .search-bar-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  #products .search-bar {
    width: 100%;
  }

  #products .product-toggle {
    justify-content: flex-start;
  }
}

#products .rating-tag .fa-star {
    color: #fbbc04 !important; /* Google-style yellow */
    font-size: 14px !important;
}

#products .rating-tag span {
        font-size: 14px !important;
        font-weight: 400 !important;
}    

#products .item .thumb {
    height: 370px;
}


/* *************** */
/* Product Details */
/* *************** */
#product .product-size-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        padding-bottom: 14px;
    }

    #product .product-size-row .label {
        font-weight: 700;
        color: #aaa;
        font-size: 20px;
    }

    #product .product-size-row .dropdown select.product-size-dropdown {
        padding: 8px 12px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        min-width: 100px;
    }