/* From mh_css */
	.page-link {
		background-color: rgb(255 0 102) !important;
	}

	a {
		color: #ff0066;
	}
	a:hover {
		color: #000000;
	}
	/* ===============================
	   FORM THEME VARIABLES
	================================ */
	:root {
	  --form-bg: #f2f2f2;
	  --form-bg-focus: #e9e9e9;
	  --form-text: #000000;
	  --form-placeholder: #666666;
	  --form-disabled-bg: #ededed;
	  --form-disabled-text: #888888;
	}

	/* ===============================
	   TEXT INPUTS / DATE INPUTS
	================================ */
	.form-control,
	input[type="date"],
	input[type="datetime-local"],
	input[type="month"],
	input[type="time"],
	input[type="week"] {
	  background-color: #ffffff !important;
	  color: var(--form-text) !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  border-radius: 0.375rem;
	}

	/* ===============================
	   SELECT (NATIVE, SAFE)
	================================ */
	.form-select {
	  appearance: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;

	  background-color: #ffffff !important;
	  color: #000000 !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  border-radius: 0.375rem;

	  /* Custom arrow */
	  background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	  background-repeat: no-repeat;
	  background-position: right 0.75rem center;
	  background-size: 14px 10px;

	  padding-right: 2rem;
	}

	/* ===============================
	   SELECT OPTIONS (BEST POSSIBLE)
	================================ */
	.form-select option,
	.form-select optgroup {
	  background-color: #ffffff;
	  color: #000000;
	}

	/* ===============================
	   PLACEHOLDER
	================================ */
	.form-control::placeholder {
	  color: var(--form-placeholder) !important;
	}

	/* ===============================
	   FOCUS STATE
	================================ */
	.form-control:focus,
	.form-select:focus,
	input[type="date"]:focus,
	input[type="datetime-local"]:focus,
	input[type="month"]:focus,
	input[type="time"]:focus,
	input[type="week"]:focus {
	  background-color: var(--form-bg-focus) !important;
	  color: var(--form-text) !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  outline: none !important;
	}

	/* ===============================
	   DISABLED / READONLY
	================================ */
	.form-control:disabled,
	.form-control[readonly],
	.form-select:disabled,
	input[type="date"]:disabled {
	  background-color: var(--form-disabled-bg) !important;
	  color: var(--form-disabled-text) !important;
	  opacity: 1;
	}

	/* ===============================
	   CHECKBOXES / RADIOS
	================================ */
	.form-check-input {
	  background-color: #d5d5d5;
	  border: none !important;
	}

	.form-check-input:checked {
	  background-color: #000000 !important;
	}

	/* ===============================
	   LABELS / TEXT
	================================ */
	.form-label,
	.form-check-label,
	.form-text {
	  color: var(--form-text) !important;
	}

	/* ===============================
	   CHROME AUTOFILL FIX
	================================ */
	input:-webkit-autofill,
	textarea:-webkit-autofill,
	select:-webkit-autofill {
	  -webkit-text-fill-color: #000000 !important;
	  box-shadow: 0 0 0px 1000px #ffffff inset !important;
	  transition: background-color 9999s ease-in-out 0s;
	}
	/* ===============================
       INPUT GROUP PINK STYLE FIX
    ================================ */

    .input-group {
      border: 1px solid #ff0066;
      border-radius: 0.375rem;
      overflow: hidden; /* important */
    }

    /* Remove individual borders */
    .input-group .form-control,
    .input-group .input-group-text {
      border: none !important;
      box-shadow: none !important;
    }

    /* Input styling */
    .input-group .form-control {
      background-color: #f2f2f2;
      padding: 6px 20px;
    }

    /* Icon background */
    .input-group .input-group-text {
      background-color: #f2f2f2;
      padding-right: 20px;
    }

    /* Country code select */
    .input-group .form-select {
        flex: 0 0 90px !important;  /* fixed width */
        max-width: 90px !important;
    }

    /* Phone input takes remaining space */
    .input-group .form-control {
        flex: 1 1 auto;
    }

/* Override Bootstrap file input button */
.form-control[type="file"]::file-selector-button {
    background-color: #ffc107;   /* Bootstrap yellow */
    color: #000;
    border: none;
    padding: 0.375rem 0.75rem;
    margin-right: 0.75rem;
    border-radius: 0.375rem;
    transition: 0.2s ease-in-out;
}

/* Hover effect */
.form-control[type="file"]::file-selector-button:hover {
    background-color: #e0a800;
    color: #000;
}

    /* Focus effect */
    .input-group:focus-within {
      box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.15);
    }
	.brand-scroll {
		max-height: 260px;
		overflow-y: auto;
	}

	/* arrow animation */
	.collapse-arrow {
		transition: transform 0.3s ease;
	}

	button[aria-expanded="true"] .collapse-arrow {
		transform: rotate(180deg);
	}
	
	.nav-item.active {
	  border-bottom: 2px solid #fc454f;
	}


/* ===============================
   CUSTOM SORT SELECT STYLE
================================ */

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff !important;
    color: #000000 !important;

    border: 2px solid #ff0066 !important;
    border-radius: 40px !important;

    padding: 10px 45px 10px 20px !important;
    font-weight: 500;

    box-shadow: none !important;
    outline: none !important;

    /* Custom Arrow */
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/* Focus State */
.sort-select:focus {
    border-color: #ff0066 !important;
    box-shadow: 0 0 0 2px rgb(255 0 102) !important;
}

.card-header {
	background-color: transparent;
}

/* Buy Now Button Style */
.btn-yellow {
    background-color: #f4b400;   /* yellow */
    color: #000000;              /* black text */
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 40px;         /* pill shape */
    border: none;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e0a800;   /* darker yellow on hover */
    color: #000000;
}
.card-pink {
	background-color: #ffd8e7;
    border-radius: 10px;
    padding: 24px;
}
.card-body-new {
    border: 1px solid lightgrey;
    border-radius: 14px;
    padding: 2rem;    
}
.pill {
    border-radius: 40px;         /* pill shape */
}