:root {
  --primary: #00a6b6;
  --text: #333;
  --light: #f8f9fa;
  --border: #e0e0e0;
}

/* Base */
body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  line-height: 1.6;
}
.mybg{
    background-color: #00a6b6;
    color: #FFFFFF;
}

.no-rounding { border-radius: 0 !important; }
.no-shadow { box-shadow: none !important; }
.text-primary-clean { color: var(--primary); }
.bg-light-clean { background: var(--light); }

/* Sections */
.section-spacing { padding: 3rem 0; }

.section-title {
  font-weight: 700;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.section-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

/* Cards */
.clean-card {
  border: 1px solid var(--border);
  background: #fff;
}

.clean-card .card-body { padding: 1.5rem; }
.clean-card-img { width: 100%; display: block; }

/* Buttons */
.btn-clean,
.btn-clean-outline,
.btn-video {
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: 0;
  transition: background .3s, color .3s, border .3s;
}

.btn-clean {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-clean:hover { background: #008a99; }

.btn-takehairassessment {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-size: 2rem;
  padding: 1rem 2rem;
}

.btn-takehairassessment:hover { background: #008a99; }

.btn-clean-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-clean-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-video {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(5px);
}

.btn-video:hover { background: rgba(255,255,255,.3); }

/* Lists & Icons */
.clean-list { list-style: none; padding: 0; }
.clean-list li { padding: .5rem 0; }

.clean-feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Grids */
.products-grid,
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.products-grid { grid-template-columns: 1fr; }
.features-grid { grid-template-columns: 1fr; }

/* Video Hero */
.video-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background: #000;
  overflow: hidden;
}

.video-container,
.video-overlay,
.fallback-image {
  position: absolute;
  inset: 0;
}

.hero-video,
.fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  background: rgba(0,166,182,.5);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.video-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.video-content p {
  max-width: 600px;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0,0,0,.3);
}

/* Forms & Modals */
.clean-modal .modal-content,
.clean-form-control {
  border: 1px solid var(--border);
  border-radius: 0;
}

.clean-form-control {
  padding: .75rem;
}

.clean-form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

/* Notices */
.assessment-notice {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1rem;
  margin-top: 1rem;
}

/* Legacy compatibility */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-icon i {
  font-size: 24px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-spacing { padding: 2rem 0; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .video-hero { height: 60vh; min-height: 450px; }
  .video-content h1 { font-size: 1.5rem; }
  .video-content p { font-size: 1rem; }
}

@media (min-width: 769px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}














.my_page_header{
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
    font-size: 3em;
    text-align: center;
    margin: 50px 0;
    text-transform: capitalize;
}
.my_page_header span{
    border-bottom: solid 3px #00a6b6;
    padding:30px 0;
}
.btn-primary {
    background: #00a6b6 !important;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #008996;
}

.hdr-text{
    color: #00a6b6 !important;
    text-decoration: none;
}

.top-header {
    font-weight: 600;
    font-size: larger;
    padding: 6px 0;
    color: #00a6b6 !important;
}

.top-header a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.top-header a:hover {
    color: #0d6efd;
}

.navbar-brand img {
    height: 80px;
}

.btn-round {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-consultation {
    background-color: #00a6b6;
    color: white;
    border: none;
    margin: 0 5px;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #00a6b6;
    color: white;
}

.btn-products {
    border: #00a6b6 solid 1px;
    color: #00a6b6;
    margin-left: 10px;
}

.btn-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: #00a6b6 solid 1px;
    color: #00a6b6;
}

.navbar-nav .nav-item {
    border-right: #00a6b6 solid 1px;
    padding: 0 20px;
}

.navbar-nav .nav-link {
    color: #00a6b6 !important;
    font-size: 25px;
    font-weight: 100;
    display: inline-block;
}

.navbar-nav .nav-item:last-child .nav-link::after {
    display: none;
}

.whatsapp-link {
    color: #0d3e68 !important;
    margin-left: 10px;
}

.cart{
    color: #00a6b6;
}
.user{
    color: #00a6b6;
}


.product-image-container {
    overflow: hidden;
    position: relative;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.quick-view-btn {
    background: white;
    color: #00a6b6;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.card-title {
    margin-top: 10px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: large;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.product-price {
    margin-left: 20px;
    font-weight: 700;
    color: #00a6b6;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.cart-container {
    background: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.cart-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.cart-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    font-size: 14px;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin: 0 5px;
}

.summary-card {
    background: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.btn-checkout {
    background: #00a6b6;
    color: white;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: #00a6b6;
    color: white;
    transform: translateY(-2px);
}

.continue-shopping {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.continue-shopping:hover {
    color: #00a6b6;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-item:hover {
    color: #bb2d3b;
}

.answers-card {
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00a6b6;
    margin-top: 1rem;
}

.answers-title {
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
}

.answers-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.answers-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.question {
    font-weight: 500;
    color: #495057;
}

.answer {
    color: #6c757d;
}

.promo-code {
    background: #f8f9fa;
    border-radius: 8px;
}

.tos {
    color: #00a6b6;
}

.apply {
    background: #00a6b6;
    color: white;
    border: none;
}

.apply:hover {
    background: #00a6b6;
    color: white;
    border: none;
}
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.checkout-header {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-title {
    font-weight: 700;
    margin: 0;
}

.checkout-card {
    background: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.checkout-card:hover {
    transform: translateY(-2px);
}

.section-title {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 0.5rem;
    color: #00a6b6;
}

.Myform .form-label {
    font-weight: 500;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e9ecef !important;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #00a6b6;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 182, 0.15);
}

.btn-checkout {
    background: #00a6b6;
    color: white;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    width: 100%;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    background: #008a97;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 182, 0.3);
}

.btn-checkout:disabled {
    background: #6c757d;
    transform: none;
    cursor: not-allowed;
    box-shadow: none;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.order-item-details {
    flex: 1;
    padding: 0 1rem;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #343a40;
}

.order-item-variation {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.order-item-price {
    color: #00a6b6;
    font-weight: 600;
    font-size: 1rem;
}

.order-item-quantity {
    color: #6c757d;
    font-size: 0.9rem;
}

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.order-total-final {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid #e9ecef;
    color: #343a40;
}

.payment-section {
    margin-top: 2rem;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-method {
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.payment-method:hover {
    background-color: rgba(0, 166, 182, 0.1);
    border-color: #00a6b6;
}

.payment-method.selected {
    border-color: #00a6b6;
    background-color: rgba(0, 166, 182, 0.1);
}

.payment-method-icon {
    font-size: 1.75rem;
    margin-right: 1rem;
    color: #6c757d;
}

.payment-method.selected .payment-method-icon {
    color: #00a6b6;
}

.payment-method-name {
    font-weight: 500;
    font-size: 1.05rem;
}

.card-element-container {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    transition: all 0.2s;
}

.card-element-container.focused {
    border-color: #00a6b6;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 182, 0.15);
}

.card-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    z-index: 2;
    font-size: 0.875rem;
    color: #6c757d;
    transition: all 0.3s;
}

.progress-step.active .step-icon {
    background-color: #00a6b6;
    border-color: #00a6b6;
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-icon {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.progress-step.active .step-label {
    color: #00a6b6;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #28a745;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
}

.security-badge i {
    margin-right: 0.5rem;
    color: #28a745;
    font-size: 1.1rem;
}

.plan-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.plan-card {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    background: white;
}

.plan-card:hover {
    border-color: #00a6b6;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
    border-color: #00a6b6;
    background-color: rgba(0, 166, 182, 0.1);
}

.plan-card.selected::before {
    content: "✓";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #00a6b6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #343a40;
}

.plan-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.plan-saving {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.shipping-method {
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shipping-method:hover {
    background-color: rgba(0, 166, 182, 0.1);
    border-color: #00a6b6;
}

.shipping-method.selected {
    border-color: #00a6b6;
    background-color: rgba(0, 166, 182, 0.1);
}

.shipping-method-info {
    display: flex;
    flex-direction: column;
}

.shipping-method-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.shipping-method-duration {
    color: #6c757d;
    font-size: 0.9rem;
}

.shipping-method-price {
    font-weight: 600;
    color: #00a6b6;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .plan-cards {
        flex-direction: column;
    }

    .checkout-progress {
        flex-wrap: wrap;
        gap: 15px;
    }

    .progress-step {
        flex: 0 0 calc(25% - 15px);
    }

    .checkout-progress::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 1rem 0.5rem;
    }

    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-title {
        margin-bottom: 1rem;
    }

    .checkout-card {
        padding: 1.25rem;
    }

    .order-summary {
        position: static;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
}

.hero-section {
    background-color: #00a6b6;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.category-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
}





.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.prescription-section {
    background-color: #f8f9fa;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #00a6b6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 24px;
    background-color: #00a6b6;
    color: white;
}

.card-body i {
    color: #00a6b6;
}

.prescription-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.prescription-upload-area:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.badge-prescription {
    background-color: #fd7e14;
}

.bg {
    background-color: #00a6b6;
    padding: 20px;
    color: white;
    border-radius: 8px;
}

h3 {
    color: #00a6b6;
}

.orders-main-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.orders-header {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    padding: 1.5rem 2rem;
    color: white;
}

.order-card {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
}

.order-card:hover {
    background: linear-gradient(135deg, #f8fdff 0%, #f0f9ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-card:last-child {
    border-bottom: none;
}

.order-status-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-paid {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.status-pending {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.status-canceled {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.status-delivered {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}



.order-summary-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e3f2fd;
}

.order-actions .btn {
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-orders {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.empty-orders i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #00a6b6;
    opacity: 0.7;
}

.order-total {
    font-weight: 700;
    color: #00a6b6;
    font-size: 1.2rem;
}

.order-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-id {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-details-btn {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 182, 0.4);
    color: white;
}

.buy-again-btn {
    background: transparent;
    color: #00a6b6;
    border: 2px solid #00a6b6;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.buy-again-btn:hover {
    background: #00a6b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 182, 0.3);
}

.product-count-badge {
    background: #e3f2fd;
    color: #00a6b6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.shipping-info {
    background: #fff3e0;
    border: 1px solid #ffd8a6;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.answers-preview {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-radius: 10px;
    border-left: 4px solid #00a6b6;
    margin-top: 1rem;
    padding: 1rem;
}

.answers-preview-title {
    font-weight: 600;
    color: #00a6b6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.answers-count {
    background: #00a6b6;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .orders-header {
        padding: 1.25rem;
    }

    .order-card {
        padding: 1.25rem;
    }

    .product-image {
        width: 60px;
        height: 60px;
    }

    .view-details-btn,
    .buy-again-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

.page-title-section {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.orders-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.order-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.order-header {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    padding: 1.5rem;
    color: white;
}

.product-image-large {

    object-fit: cover;
    border-radius: 12px;

}

.consultation-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
    border-left: 5px solid #00a6b6;
    margin-top: 1.5rem;
    padding: 0;
    overflow: hidden;
}

.consultation-header {
    background: #00a6b6;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consultation-header i {
    font-size: 1.2rem;
}

.consultation-body {
    padding: 1.5rem;
}

.question-item {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e3f2fd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.question-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.question-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.answer-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.answer-badge {
    background: #00a6b6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 166, 182, 0.3);
}

.answer-details {
    flex: 1;
}

.answer-text {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.explanation-box {
    background: #fff9e6;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.explanation-label {
    font-weight: 600;
    color: #e67e22;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.input-fields-section {
    background: #f8fff8;
    border: 1px solid #d4edda;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.input-fields-title {
    color: #28a745;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-field-col {
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.input-field-row:hover {
    background: #f8f9fa;
    border-color: #00a6b6;
}

.input-field-label {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-field-value {
    color: #6c757d;
    font-weight: 500;
}

.no-answers {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-answers i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.order-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #dee2e6;
}

.btn-products {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 182, 0.4);
    color: white;
}

.badge-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .answer-section {
        flex-direction: column;
        gap: 10px;
    }

    .answer-badge {
        align-self: flex-start;
    }

    .input-field-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .product-image {
        width: 70px;
        height: 70px;
    }
}

.medication-header {
    color: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-color: #00a6b6 !important;
}

.product-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}
.thumbnail-container {
    display: block;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    object-fit: cover;
    margin-bottom: 10px;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #00a6b6;
}

.medication-details {
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: 600;
    min-width: 120px;
    color: #555;
}

.detail-value {
    flex: 1;
}

.questions-section {
    background: white;
    padding: 2rem;
    border: 1px solid #EEE;
    margin-top: 2rem;
}

.section-title {
    color: #00a6b6;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #00a6b6;
}

.question-block {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #00a6b6;
    transition: all 0.3s ease;
}

.question-block:hover {
    background: #f0f4f8;
}

.question-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.radio-option:hover {
    border-color: #00a6b6;
    background: #f8fdff;
}

.radio-option.selected {
    border-color: #00a6b6;
    background: #e8f2ff;
}

.radio-option input[type="radio"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.multiple-choice-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.choice-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-option:hover {
    border-color: #00a6b6;
    background: #f8fdff;
    transform: translateY(-2px);
}

.choice-option.selected {
    border-color: #00a6b6;
    background: #e8f2ff;
    box-shadow: 0 2px 8px rgba(0, 166, 182, 0.2);
}

.choice-option input[type="radio"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.choice-label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.message-box {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-left: 4px solid;
}

.explanation-box {
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem;
}

.price-tag {
    background: #e4a329;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.manufacturer-badge {
    background: #e8f2ff;
    color: #2a7de1;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.pill-badge {
    background: #e8f5e9;
    color: #4CAF50;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.strength-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.variation-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.variation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.variation-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.selected-badge {
    background: #00a6b6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.variation-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
}

.variation-option:hover {
    border-color: #00a6b6;
    transform: translateY(-2px);
}

.variation-option.selected {
    border-color: #00a6b6;
    background: #e8f2ff;
}

.variation-strength {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.variation-price {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
}

.selected-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4CAF50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.variation-details {
    background: white;
    border-radius: 8px;
    padding: 1.2rem;
    border-left: 4px solid #00a6b6;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label-sm {
    font-weight: 600;
    color: #666;
}

.detail-value-sm {
    font-weight: 600;
    color: #333;
}

.price-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
}

.stock-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-in {
    background: #e8f5e9;
    color: #4CAF50;
}

.stock-low {
    background: #fff3cd;
    color: #856404;
}

.stock-out {
    background: #f8d7da;
    color: #721c24;
}

.btn-consultation {
    background: #00a6b6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;

}

.btn-consultation:hover {
    background: #008a97;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-round {
    border-radius: 50px;
}

.additional-informaton {
    color: #00a6b6
}

@media (max-width: 768px) {
    .detail-item {
        flex-direction: column;
    }

    .detail-label {
        min-width: auto;
        margin-bottom: 0.25rem;
    }

    .variation-options {
        flex-direction: column;
    }

    .variation-option {
        min-width: auto;
    }

    .radio-options {
        flex-direction: column;
        gap: 0.8rem;
    }

    .radio-option {
        min-width: auto;
    }
}

.thankyou-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.thankyou-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.checkmark {
    color: white;
    font-size: 3rem;
}

.btn-continue {
    background: #0d6efd;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-continue:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.brand-section {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.brand-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.brand-logo {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.brand-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    text-align: left;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.login-section {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    max-width: 400px;
    width: 100%;
    animation: slideInRight 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: white;
}

.input-group:focus-within {
    border-color: #00a6b6;
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 182, 0.15);
    transform: translateY(-2px);
}

.input-group-text {
    background: linear-gradient(135deg, #f8fdff 0%, #f0f9ff 100%);
    border: none;
    color: #00a6b6;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: transparent;
    font-weight: 500;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.form-control:focus {
    box-shadow: none;
    background: transparent;
}

.password-toggle {
    background: linear-gradient(135deg, #f8fdff 0%, #f0f9ff 100%);
    border: none;
    color: #00a6b6;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    background: rgba(0, 166, 182, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    border: 2px solid #e9ecef;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #00a6b6;
    border-color: #00a6b6;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
}

.forgot-password {
    color: #00a6b6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #008a97;
    text-decoration: underline;
}

.btn-login {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 182, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #e9ecef;
}

.divider-text {
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
}

.btn-google:hover {
    border-color: #00a6b6;
    background: rgba(0, 166, 182, 0.1);
    color: #00a6b6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 182, 0.2);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.login-footer p {
    margin: 0;
    color: #6c757d;
}

.login-footer a {
    color: #00a6b6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-footer a:hover {
    color: #008a97;
    text-decoration: underline;
}

.alert-container {
    margin-bottom: 1.5rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-content {
    animation: fadeInUp 0.8s ease-out;
}

.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .brand-section {
        padding: 3rem 2rem;
        min-height: 40vh;
    }

    .login-section {
        padding: 3rem 2rem;
    }

    .brand-logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {

    .brand-section,
    .login-section {
        padding: 2rem 1rem;
    }

    .brand-logo {
        font-size: 2rem;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.register-section {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.register-card {
    max-width: 450px;
    width: 100%;
    animation: slideInRight 0.8s ease-out;
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    border: 2px solid #e9ecef;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: #00a6b6;
    border-color: #00a6b6;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.4;
}

.terms-link {
    color: #00a6b6;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-register {
    background: linear-gradient(135deg, #00a6b6 0%, #008a97 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 182, 0.4);
}

.social-register {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.register-footer p {
    margin: 0;
    color: #6c757d;
}

.register-footer a {
    color: #00a6b6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-footer a:hover {
    color: #008a97;
    text-decoration: underline;
}

.password-strength {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 0.25rem;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak {
    background: #dc3545;
    width: 25%;
}

.strength-fair {
    background: #fd7e14;
    width: 50%;
}

.strength-good {
    background: #ffc107;
    width: 75%;
}

.strength-strong {
    background: #198754;
    width: 100%;
}

@media (max-width: 992px) {
    .register-container {
        grid-template-columns: 1fr;
    }

    .brand-section {
        padding: 3rem 2rem;
        min-height: 40vh;
    }

    .register-section {
        padding: 3rem 2rem;
    }

    .brand-logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {

    .brand-section,
    .register-section {
        padding: 2rem 1rem;
    }

    .brand-logo {
        font-size: 2rem;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .form-check {
        align-items: flex-start;
    }
}
@media (max-width: 420px) {

    .brand-section,
    .register-section {
        padding: 2rem 1rem;
    }

    .navbar-brand img {
    height: 50px;
    }

    .product-card{
        height: auto;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .form-check {
        align-items: flex-start;
    }
}

