/*------------------------------------------------------------------
[Table of contents]

1. Import libraries
2. Custom properties
3. General Styles
4. Typography
5. Navs and Tabs
6. Breadcrumb
7. Buttons
8. Utilities
9. Sections
10.Boxes and Cards
11.Accordion
12.Form
13.Responsive Layouts

-------------------------------------------------------------------*/

/* ---------------------------- */
/* Import libraries             */
/* ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
@import url('../vendor/bootstrap/bootstrap.min.css');

/* ---------------------------- */
/* Custom properties            */
/* ---------------------------- */
:root {
  /* --primary-color:#b50c09;
  --secondary-color:#1E1E1E;
  --text-color:#FFFFFF;
  --text-color-2:#AAAAAA;
  --accent-color:#11111100;
  --accent-color-2:#444444;
  --font-1:"Public Sans", sans-serif;
  --font-2:"Libre Franklin", sans-serif; */

    /* Brand */
    --primary-color: #b50c09;

    /* Core surfaces (cards, sections, nav, footer) */
    --secondary-color: #1b1b1b;      /* Rich charcoal, warmer than #1E1E1E */
  
    /* Backgrounds & overlays */
    --accent-color: #121212;         /* Main site background */
    --accent-color-2: #2e2e2e;       /* Borders, dividers, inputs */
  
    /* Text */
    --text-color: #f4f4f4;           /* Softer than pure white */
    --text-color-2: #b0b0b0;         /* Elegant muted grey */
  
    /* Fonts */
    --font-1: "Public Sans", sans-serif;
    --font-2: "Libre Franklin", sans-serif;

    --primary-border: rgba(181, 12, 9, 0.6);
}

/* ---------------------------- */
/* General Styles               */
/* ---------------------------- */
body {
  font-family: var(--font-1);
  color: var(--text-color);
  background-color: var(--accent-color);
}

/* ---------------------------- */
/* Header Styles                */
/* ---------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Transparent header - Desktop only */
@media only screen and (min-width: 992px) {
  .header-transparent .navbar {
    background-color: transparent !important;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
  }

  .header-transparent .navbar .nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .header-transparent .navbar .nav-link:hover,
  .header-transparent .navbar .nav-link.active {
    color: var(--primary-color) !important;
  }

  .header-transparent .navbar .dropdown-menu {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header-transparent .navbar .dropdown-item {
    color: var(--text-color);
  }

  .header-transparent .navbar .dropdown-item:hover {
    background-color: var(--accent-color-2);
    color: var(--primary-color);
  }

  /* Header with background on scroll */
  .header-scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-scrolled .navbar {
    padding: 0.75rem 0;
  }

  .header-scrolled .navbar .nav-link {
    color: var(--text-color) !important;
  }
}

/* Mobile header - preserve current styling */
@media only screen and (max-width: 991.98px) {
  .header .navbar {
    background-color: var(--accent-color) !important;
  }
}

/* Header vertical alignment - Desktop only */
@media only screen and (min-width: 992px) {
  .navbar {
    display: flex;
    align-items: center;
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .logo-box {
    display: flex;
    align-items: center;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .navbar-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }

  .offcanvas-body {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    display: flex;
    align-items: center;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  .offcanvas-body > .d-flex {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .offcanvas-body .dropdown {
    display: flex;
    align-items: center;
  }

  .offcanvas-body .btn {
    display: flex;
    align-items: center;
  }

  .offcanvas-body .dropdown .btn {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }

  .offcanvas-body .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }
}

.bg-primary-color {
  background-color: var(--primary-color) !important;
}

.bg-secondary-color {
  background-color: var(--secondary-color) !important;
}

.bg-accent-color {
  background-color: var(--accent-color) !important;
}

.bg-accent-color-2 {
  background-color: var(--accent-color-2) !important;
}

.text-primary-color {
  color: var(--primary-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.text-color-2 {
  color: var(--text-color-2) !important;
}

.font-1 {
  font-family: var(--font-1);
}

.font-2 {
  font-family: var(--font-2);
}

.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.b-container {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

img {
  object-fit: cover;
}

.heading {
  font-family: var(--font-2);
  font-weight: 600;
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

p, a {
  font-size: 18px;
}

/* ---------------------------- */
/* Navs and Tabs                */
/* ---------------------------- */
.nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font-2);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link.dropdown-toggle:hover,
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle.show {
  color: var(--primary-color) !important;
}

.dropdown-menu {
  background-color: var(--secondary-color);
  border: none;
  border-radius: 15px;
  padding: 15px 0;
  width: 220px;
}

.dropdown-item {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-2);
  margin: 15px 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary-color) !important;
  background-color: transparent;
}

.dropdown-item.active {
  color: var(--primary-color) !important;
  background-color: transparent;
}

.nav-pills .nav-link {
  padding: 10px 0;
  font-size: 22px;
  font-weight: bolder;
  text-align: end;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--text-color);
}

/* ---------------------------- */
/* Breadcrumb                   */
/* ---------------------------- */
.breadcrumb {
  font-size: 18px;
}

.breadcrumb .breadcrumb-item>a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-color) !important;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--text-color) !important;
}

/* ---------------------------- */
/* Buttons                      */
/* ---------------------------- */
.btn-cta-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
  /* border: #FFF326 1px solid; */
  border: 1px solid rgba(181, 12, 9, 0.4);
  box-shadow: 0 8px 25px rgba(181, 12, 9, 0.35);
  padding: 13px 30px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 400;
  font-family: var(--font-2);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--text-color);
  border: #FFFFFF 1px solid;
  transform: scale(1.05);
}

.btn-cta-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  padding: 13px 30px;
  font-size: 16px;
  border: #FFFFFF 1px solid;
  border-radius: 30px;
  font-weight: 400;
  font-family: var(--font-2);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: var(--primary-color) !important;
  color: var(--text-color);
  border: 1px solid var(--primary-border);
  transform: scale(1.05);
}

/* ---------------------------- */
/* VIN Input Group              */
/* ---------------------------- */
.vin-input-group {
  width: 100%;
  max-width: 900px;
}

.vin-input-group .input-group {
  display: flex;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 12, 9, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vin-input-group .vin-input {
  flex: 1;
  background-color: transparent;
  color: var(--text-color);
  border: none;
  padding: 13px 25px;
  font-size: 16px;
  font-family: var(--font-2);
  font-weight: 400;
  outline: none;
  transition: background-color 0.3s ease;
}

.vin-input-group .vin-input::placeholder {
  color: var(--text-color-2);
  opacity: 0.7;
}

.vin-input-group .vin-input:focus {
  background-color: transparent;
  color: var(--text-color);
  box-shadow: none;
}

.vin-input-group .vin-input:focus::placeholder {
  opacity: 0.5;
}

.vin-input-group .vin-submit-btn {
  border-radius: 0 30px 30px 0;
  border-left: 1px solid rgba(181, 12, 9, 0.2);
  padding: 13px 35px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-2);
  margin: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vin-input-group .vin-submit-btn:hover {
  transform: none;
  box-shadow: none;
}

.vin-input-group .vin-submit-btn:active {
  transform: scale(0.98);
}

.vin-input-group .vin-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media only screen and (max-width: 576.98px) {
  .vin-input-group {
    max-width: 100%;
  }

  .vin-input-group .vin-input {
    padding: 12px 20px;
    font-size: 14px;
  }

  .vin-input-group .vin-submit-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* ---------------------------- */
/* Hero Icon Cards              */
/* ---------------------------- */
.hero-icon-cards {
  width: 100%;
}

.hero-icon-cards-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Desktop: single row */
@media only screen and (min-width: 992px) {
  .hero-icon-cards-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Mobile: wrap to multiple rows if needed */
@media only screen and (max-width: 991.98px) {
  .hero-icon-cards-row {
    justify-content: center;
    gap: 8px;
  }
}

.hero-icon-card {
  background-color: var(--accent-color-2);
  border: 1px solid rgba(181, 12, 9, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: fit-content;
  min-width: 0;
}

.hero-icon-card:hover {
  background-color: rgba(181, 12, 9, 0.1);
  border-color: var(--primary-color);
  transform: translateX(2px);
}

.hero-icon-card i {
  font-size: 14px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hero-icon-card span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-2);
  line-height: 1.2;
  white-space: nowrap;
}

/* ---------------------------- */
/* Utilities                    */
/* ---------------------------- */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  z-index: 1;
  pointer-events: none;
  inset: 0;
}

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

.img-ratio-321 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.img-ratio-121 {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-ratio-113 {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.links-primary {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-primary:hover,
.links-primary.active {
  color: var(--primary-color) !important;
}

.bg-wrapper {
  position: relative;
}

.bg-grayscale {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  display: block;
  width: 100%;
  height: 350px;
  pointer-events: auto;
}

.bg-wrapper:hover .bg-grayscale  {
  filter: grayscale(0%);
}

/* ---------------------------- */
/* Sections                     */
/* ---------------------------- */
.hero {
  font-family: var(--font-2);
  height: 100vh;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero-content {
  width: 100%;
  margin: 0;
}

.hero-vin-section {
  margin-top: 2rem;
}

/* Hero title responsive styling */
.hero-title {
  font-size: 72px;
}

/* Mobile portrait (max-width: 575.98px) */
@media only screen and (max-width: 575.98px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 1.5rem !important;
  }

  .hero-container {
    padding: 2rem 0;
  }

  .hero-vin-section {
    margin-top: 1.5rem;
  }
}

/* Mobile landscape (576px - 991px) */
@media only screen and (min-width: 576px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 1.5rem !important;
  }

  .hero-container {
    padding: 3rem 0;
  }

  .hero-content {
    margin-top: 2rem;
  }

  .hero-vin-section {
    margin-top: 2rem;
  }
}

.feature {
  margin-top: -125px;
  z-index: 2;
}

.warranty {
  padding: 15vh 0;
}

.info-lb-overlay {
  width: 75%;
  background-color: rgba(17, 17, 17, 0.8);
  left: 8%;
  bottom: 8%;
  border-radius: 24px;
}

.reviews {
  overflow: hidden;
}

/* ---------------------------- */
/* Boxes and Cards              */
/* ---------------------------- */
.logo-box {
  max-width: 160px;
}

.feature-box-wrapper {
  background: transparent;
}

.feature-box {
  padding: 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-family: var(--font-2);
}

.feature-box:not(:last-child) {
  margin-bottom: 0;
}

.service-box {
  background-color: var(--secondary-color);
  width: 100%;
  border-radius: 25px;
  padding: 30px;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-box.top-left {
  top: -75%;
  left: -10%;
}

.service-box.top-right {
  top: -75%;
  right: -10%;
}

.service-icon {
  top: 1px;
  left: 1px;
  background-color: var(--primary-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 0 15px var(--accent-color);
}

.service-icon i {
  color: var(--accent-color);
  font-size: 50px;
  font-weight:900;
}

.step-number {
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-weight: 700;
  font-size: 25px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: 0;
}

.blogs {
  transition: all 0.3s ease;
}

.blogs-title {
  transition: color 0.3s ease;
  color: var(--text-color);
  text-decoration: none;
}

.blogs:hover .blogs-title {
  color: var(--primary-color);
}

.blogs-cover {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.blogs:hover .blogs-cover {
  transform: scale(1.05) rotate(1deg);
}

.social-box {
  display: flex;
  gap: 16px;
}

.social-box a {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  align-content: center;
  text-align: center;
  padding: 7px 0;
  transition: all 0.3s ease-in-out;
}

.social-box a:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.card-team-label {
  background-color: var(--accent-color);
  opacity: 85%;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}

.card-service-label {
  background-color: rgba(17, 17, 17, 0.6);
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-height: 130px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card-service-label .card-text {
  color: var(--text-color-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.group-card:hover .card-service-label {
  transform: translateX(-50%) translateY(-25%);
  max-height: 400px;
}

.group-card:hover .card-service-label .card-text {
  opacity: 1;
}

.footer-logo-box {
  height: 60px;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: var(--accent-color-2) 2px solid;
}

.accordion .accordion-button {
  font-family: var(--font-2);
  padding: 15px 0px;
  font-size: 22px;
  font-weight: 600;
  background-color: transparent;
  color: var(--text-color);
  border: none;
  border-bottom: none !important;
  box-shadow: none !important;
}

.accordion .accordion-button::after {
  display: none;
}

.accordion .accordion-button.collapsed {
  color: var(--text-color-2);
  font-weight: 400;
  background-color: transparent;
}

.accordion .accordion-body {
  color: var(--text-color-2);
  padding: 10px 0px;
}

.accordion .accordion-body-2 {
  color: var(--text-color-2);
  padding: 10px 15px 10px 100px;
}

/* ---------------------------- */
/* Form                         */
/* ---------------------------- */
.form label {
  font-size: 18px;
  font-weight: 500;
}

.form input,
.form textarea {
  background-color: transparent;
  color: var(--text-color);
  border: solid 2px var(--accent-color-2);
  border-radius: 7px;
  outline: none;
  padding: 17px 30px;
}

.form input:focus,
.form textarea:focus {
    box-shadow: none;
    border: solid 2px var(--accent-color-2);
    background-color: transparent;
    color: var(--text-color);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color-2);
}

/* ---------------------------- */
/* Responsive Layouts           */
/* ---------------------------- */
@media only screen and (max-width: 1199.98px) {
  .section {
    padding: 5em 1.5em;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 22px;
  }

  p,a {
    font-size: 18px;
  }

  .hero {
    height: 90vh;
  }

  .service-box.top-left {
    top: 0;
    left: 0;
  }

  .service-box.top-right {
    top: 0;
    right: 0;
  }

  .img-ratio-321 {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }

  .img-ratio-121 {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }

  .info-lb-overlay {
    width: 90%;
    left: 5%;
    bottom: 15%;
  }

  .footer-logo-box {
    height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 991.98px) {
  .section {
    padding: 4em 1em;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  p,a {
    font-size: 16px;
  }

  .dropdown-menu {
    width: 100%;
    border-radius: 0;
    padding: 5px;
  }

  .dropdown-item {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 768.98px) {
  .section {
    padding: 3em 1em;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p,a {
    font-size: 14px;
  }

  .hero {
    height: 80vh;
  }

  .feature {
    margin-top: 0;
    z-index: 2;
  }

  .nav-pills .nav-link {
    text-align: center;
  }

  .footer-logo-box {
    height: 100px;
  }

}

@media only screen and (max-width: 576.98px) {
  .section {
    padding: 2em 1em;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p, a {
    font-size: 12px;
  }

  .hero {
    height: 85vh;
  }

  .service-icon {
    width: 55px;
    height: 55px;
  }

  .info-lb-overlay {
    bottom: 27.5%;
    bottom: 10%;
  }

  .img-ratio-321 {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .img-ratio-113 {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }

  .card-team-label {
    background-color: var(--accent-color);
    opacity: 85%;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .footer-logo-box {
    height: 80px;
  }
}

/* ---------------------------- */
/* Category Selector Buttons   */
/* ---------------------------- */
.category-btn,
.category-btn-component {
  border: 2px solid transparent !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.category-btn .category-btn-img,
.category-btn-component .category-btn-img-component {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.category-btn:hover,
.category-btn-component:hover {
  transform: scale(1.08) !important;
}

.category-btn:hover .category-btn-img,
.category-btn-component:hover .category-btn-img-component {
  transform: scale(1.1);
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 20px rgba(181, 12, 9, 0.4);
}

.category-btn:hover h6,
.category-btn-component:hover h6 {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Active State - Slightly Bigger */
.category-btn.active,
.category-btn-component.active {
  transform: scale(1.12) !important;
}

.category-btn.active .category-btn-img,
.category-btn-component.active .category-btn-img-component {
  width: 100px !important;
  height: 100px !important;
  border-color: var(--primary-color) !important;
  border-width: 4px !important;
  box-shadow: 0 10px 30px rgba(181, 12, 9, 0.5);
}

.category-btn.active h6,
.category-btn-component.active h6 {
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.1em;
}

/* Smooth transitions for text */
.category-btn h6,
.category-btn-component h6 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
