/* ===============================
   BORDER RADIUS CLEAN OVERRIDE
   =============================== */

:root {
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
}

/* ALL INPUT TYPES */
input,
textarea,
select {
  border-radius: var(--radius-md) !important;
}

/* BUTTON (INCLUDE INPUT BUTTONS) */
.btn,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  border-radius: var(--radius-md) !important;
}

/* CARD */
.card {
  border-radius: var(--radius-lg) !important;
}

/* NAV ITEM */
.page-nav li a {
  border-radius: var(--radius-md) !important;
}

/* IMAGE / HERO */
.single-hero-slide,
.catagory-single-img,
.collection-card img {
  border-radius: var(--radius-lg) !important;
}

/* BADGE */
.badge {
  border-radius: var(--radius-sm) !important;
}

/* SMALL CARD / SETTINGS */
.settings-card {
  border-radius: var(--radius-md) !important;
}

/* COLLECTION TITLE */
.collection-card .collection-title {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* CHAT BUBBLE */
.agent-message-content .agent-message-text p,
.user-message-content .user-message-text p {
  border-radius: var(--radius-lg) !important;
}

/* ROUND ELEMENT */
.go-back-btn,
.sidenav-profile .user-profile img {
  border-radius: 50% !important;
}

/* SEARCH BAR */
.top-search-form form .form-control {
  border-radius: var(--radius-full) !important;
}
