/* -----------------------------------------------------------------------------
   TransformPeptides – Clinic Theme Integration
   Pulling foundational variables & nav styling from BootstrapMade "Clinic"
   and adapting them to Bootstrap 5 utility classes.
----------------------------------------------------------------------------- */

:root {
    /* Bootstrap primary overrides */
    --bs-primary: #175cdd;
    --bs-primary-rgb: 23, 92, 221;

    /* Typography */
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Lato", sans-serif;

    /* Global Colors */
    --background-color: #ffffff;
    --default-color: #3c4049;
    --heading-color: #112344;
    --accent-color: #175cdd;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;

    /* Navigation palette */
    --nav-color: #3c4049;
    --nav-hover-color: #175cdd;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #3c4049;
    --nav-dropdown-hover-color: #175cdd;

    scroll-behavior: smooth;
}

body {
    font-family: var(--default-font);
    color: var(--default-color);
    background-color: var(--background-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
}

/* -----------------------------------------------------------------------------
   Buttons
----------------------------------------------------------------------------- */

.btn {
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.btn-lg {
    padding: 0.95rem 2.75rem;
    font-size: 1rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--accent-color);
    --bs-btn-border-color: var(--accent-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: color-mix(in srgb, var(--accent-color), black 10%);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--accent-color), black 10%);
    --bs-btn-focus-shadow-rgb: 23, 92, 221;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: color-mix(in srgb, var(--accent-color), black 15%);
    --bs-btn-active-border-color: color-mix(in srgb, var(--accent-color), black 15%);
    --bs-btn-disabled-bg: var(--accent-color);
    --bs-btn-disabled-border-color: var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    background-color: transparent;
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

/* Mandatory field indicator */
.mandatory {
    color: #dc3545;
}

/* Cart action buttons - standard Bootstrap style */
.btn-cart-update {
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.btn-cart-update:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: #fff;
    transform: none;
}

.btn-cart-remove {
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.btn-cart-remove:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    color: #fff;
    transform: none;
}

/* -----------------------------------------------------------------------------
   Header / Navbar
----------------------------------------------------------------------------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    background-color: var(--surface-color);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.navbar-brand {
    margin-right: 1rem;
    padding: 0;
}

.navbar-brand img {
    max-height: 48px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.navbar-nav .nav-link {
    font-family: var(--nav-font);
    font-weight: 500;
    color: var(--nav-color);
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    visibility: hidden;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--nav-hover-color);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
    visibility: visible;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--nav-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-wrapper .search-form {
    position: relative;
}

.navbar .navbar-wrapper .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .navbar-wrapper .search-input-wrapper .form-control {
    border-radius: 999px;
    padding-left: 1rem;
    padding-right: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    width: 100%;
}

.navbar .navbar-wrapper .search-input-wrapper .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
    outline: none;
}

.navbar .navbar-wrapper .search-input-wrapper .search-btn {
    position: absolute;
    right: 3px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar .navbar-wrapper .search-input-wrapper .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.navbar .navbar-wrapper .search-input-wrapper .search-btn i {
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 0.5rem 0;
    }

    .navbar .navbar-wrapper .search-form {
        width: 100%;
        order: -1;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 0;
        margin-left: revert !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .navbar .container {
        align-items: flex-start;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar .navbar-wrapper .search-form {
        width: 100%;
    }
}

/* -----------------------------------------------------------------------------
   Sections & Layout Helpers
----------------------------------------------------------------------------- */

section {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--default-color);
}

.section-alt {
    background-color: #f4f8ff;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1.1rem;
}

.section-heading,
.section-header h2.section-heading {
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    line-height: 1.3 !important;    
}

@media (max-width: 768px) {
    .section-heading,
    .section-header h2.section-heading {
        font-size: 2rem !important;
    }
}

.section-header p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.section-header .view-all {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.section-header .view-all::after {
    content: "→";
    transition: transform 0.3s ease;
}

.section-header .view-all:hover::after {
    transform: translateX(4px);
}

@media (max-width: 575.98px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* -----------------------------------------------------------------------------
   Hero
----------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding: 60px 90px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), var(--surface-color));
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 45%);
    opacity: 0.4;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.hero .hero-content h1 .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero .hero-content h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    height: 3px;
    background: color-mix(in srgb, var(--accent-color), transparent 30%);
    border-radius: 999px;
}

.hero .hero-content p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 2rem;
}

.hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero .hero-actions .btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.hero .hero-actions .btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.hero .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero .hero-stats .stat-item {
    min-width: 120px;
}

.hero .hero-stats .stat-item h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.hero .hero-stats .stat-item span {
    display: block;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-visual-card {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 30px 70px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero-visual-img {
    position: relative;
    width: 100%;
    height: 60vh;
    background: #e6eefc;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.hero-visual-img img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 20px;
}

.hero-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 1rem 1.25rem;
    min-width: 210px;
    z-index: 2;
}

.hero-floating-card--top {
    top: 24px;
    right: 24px;
}

.hero-floating-card--bottom {
    bottom: 24px;
    left: 24px;
}

.hero-floating-card .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.hero-floating-card .stars {
    color: #f4c443;
    font-size: 0.9rem;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.background-elements .element {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.1;
}

.background-elements .element.element-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: float1 6s ease-in-out infinite;
}

.background-elements .element.element-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: float2 8s ease-in-out infinite;
}

.background-elements .element.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-180deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-70%) rotate(180deg);
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero-highlight-card {
        margin-top: 2.5rem;
    }
}

/* -----------------------------------------------------------------------------
   Product Cards
----------------------------------------------------------------------------- */

.product-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

/* -----------------------------------------------------------------------------
   Featured "Provider" Cards
----------------------------------------------------------------------------- */

.featured-products-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.featured-filter {
    flex-wrap: wrap;
    width: 100%;
}

.filter-pill {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.filter-pill.active:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.filter-pill:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.provider-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    box-shadow: 0 20px 45px color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.provider-card__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.provider-avatar {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.provider-meta-line {
    margin: 0;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.provider-meta h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.provider-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.provider-tag.available {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.provider-tag.backorder {
    background: color-mix(in srgb, #f44336, transparent 85%);
    color: #f44336;
}

.provider-price strong {
    font-size: 1.4rem;
    color: var(--heading-color);
}

.provider-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.provider-rating .stars {
    color: #f4c443;
    font-size: 0.95rem;
}

.provider-rating .rating-value {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.provider-rating .rating-value strong {
    font-size: 1.3rem;
    color: var(--heading-color);
}

.provider-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.provider-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.provider-highlights i {
    color: var(--accent-color);
    margin-right: 0.35rem;
}

.provider-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.provider-actions form {
    margin: 0;
    flex: 1;
}

.provider-actions .provider-action-disabled {
    flex: 1;
}

.provider-actions .btn {
    flex: 1;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
}

.provider-action-disabled {
    background: #d7e3ff;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    border: none;
}

.provider-actions .btn-outline-primary {
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    background: #fff;
    font-weight: 600;
}

.provider-actions .btn-outline-primary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.provider-actions .btn-primary {
    --bs-btn-bg: #1a66ff;
    --bs-btn-border-color: #1a66ff;
    --bs-btn-hover-bg: #1350d8;
    --bs-btn-hover-border-color: #1350d8;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 575.98px) {
    .provider-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .provider-actions {
        flex-direction: column;
    }
}

/* -----------------------------------------------------------------------------
   Specialty Cards (Featured Departments Style)
----------------------------------------------------------------------------- */

.specialty-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.specialty-visual {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.specialty-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.specialty-card:hover .specialty-visual img {
    transform: scale(1.08);
}

.specialty-visual .visual-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.specialty-visual .visual-overlay i {
    color: var(--accent-color);
    font-size: 24px;
}

.specialty-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.specialty-meta {
    margin-bottom: 15px;
}

.specialty-label {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
}

.specialty-card h3 {
    font-size: 28px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.specialty-card p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.specialty-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.specialty-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.specialty-features span i {
    color: var(--accent-color);
    font-size: 16px;
}

.specialty-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.specialty-link:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateX(5px);
}

.specialty-link i {
    transition: transform 0.3s ease;
}

.specialty-link:hover i {
    transform: translateX(3px);
}

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

    .specialty-visual {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .specialty-content {
        padding: 30px 25px;
    }

    .specialty-card h3 {
        font-size: 24px;
    }
}

.product-image-wrapper {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.product-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-card-actions form {
    margin: 0;
}

.btn-product {
    width: 100%;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-view-details {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.btn-view-details:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.btn-add-cart {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.btn-add-cart:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
}

.btn-sold-out {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    cursor: not-allowed;
}

/* -----------------------------------------------------------------------------
   Home About Section
----------------------------------------------------------------------------- */

.home-about {
    padding: 100px 0;
    background-color: var(--surface-color);
}

/* Generic About Content Styles (for reuse on about.html) */

/* Generic lead-text class (can be used anywhere) */
.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.about-content .lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
}

.home-about .about-content .section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
    .home-about .about-content .section-heading {
        font-size: 2rem;
    }
}

.home-about .about-content .lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.home-about .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2.5rem;
}

.home-about .about-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 576px) {
    .home-about .about-content .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.home-about .about-content .stats-grid .stat-item {
    text-align: center;
}

.home-about .about-content .stats-grid .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.home-about .about-content .stats-grid .stat-item .stat-label {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
    font-weight: 400;
}

.home-about .about-content .cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.home-about .about-content .cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

.home-about .about-content .cta-section .btn-secondary {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-secondary i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.home-about .about-content .cta-section .btn-secondary:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.home-about .about-visual {
    position: relative;
}

.home-about .about-visual .main-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.home-about .about-visual .main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.home-about .about-visual .main-image:hover img {
    transform: scale(1.05);
}

.home-about .about-visual .floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
    .home-about .about-visual .floating-card {
        position: static;
        margin-top: 2rem;
        left: auto;
        bottom: auto;
    }
}

.home-about .about-visual .floating-card .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-about .about-visual .floating-card .card-content .icon {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-about .about-visual .floating-card .card-content .icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.home-about .about-visual .floating-card .card-content .card-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.home-about .about-visual .floating-card .card-content .card-text p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    line-height: 1.4;
}

.home-about .about-visual .experience-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 768px) {
    .home-about .about-visual .experience-badge {
        position: static;
        margin-bottom: 2rem;
        right: auto;
        top: auto;
        display: inline-block;
    }
}

.home-about .about-visual .experience-badge .badge-content .years {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.home-about .about-visual .experience-badge .badge-content .text {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .home-about {
        padding: 80px 0;
    }

    .home-about .row {
        text-align: center;
    }

    .home-about .about-content .stats-grid {
        margin: 2rem 0;
    }
}

/* -----------------------------------------------------------------------------
   Features / Value Props
----------------------------------------------------------------------------- */

.features-section {
    background-color: var(--surface-color);
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px color-mix(in srgb, var(--default-color), transparent 88%);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 25px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.feature-card p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   Newsletter
----------------------------------------------------------------------------- */

.newsletter-section {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
    color: var(--contrast-color);
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
    color: inherit;
}

.newsletter-section p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.newsletter-form {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.35rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--contrast-color);
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    border: none;
    background: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    background-color: color-mix(in srgb, var(--contrast-color), black 5%);
}

@media (max-width: 575.98px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* -----------------------------------------------------------------------------
   Footer
----------------------------------------------------------------------------- */

.site-footer {
    background: var(--background-color);
    color: var(--default-color);
    font-size: 15px;
    padding: 100px 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.site-footer .footer-main {
    margin-bottom: 80px;
}

.footer-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand .sitename {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 300;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

.footer-brand img {
    max-height: 36px;
    width: auto;
}

.footer-description {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 300;
    max-width: 380px;
    margin: 0 0 1.5rem 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-contact .contact-item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    line-height: 1.6;
}

.footer-contact .contact-item a {
    color: inherit;
    text-decoration: none;
}

.brand-section .contact-info {
    margin-top: 1.5rem;
}

.brand-section .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.brand-section .contact-info .contact-item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.brand-section .contact-info .contact-item span {
    line-height: 1.6;
}

.brand-section .contact-info .contact-item span a {
    color: inherit;
    text-decoration: none;
}

.footer-nav-wrapper {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .footer-nav-wrapper {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

.nav-column {
    margin-bottom: 40px;
}

.footer-title {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter input {
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 0.75rem 1rem;
    font-size: 15px;
    background: var(--surface-color);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-bottom .copyright p {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    font-weight: 300;
}

.footer-bottom .copyright p .sitename {
    color: var(--heading-color);
    font-weight: 400;
}

.footer-bottom .legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

@media (max-width: 991px) {
    .footer-bottom .legal-links {
        justify-content: flex-start;
        margin-top: 20px;
        flex-wrap: wrap;
    }
}

.footer-bottom .legal-links a {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-bottom .legal-links a:hover {
    color: var(--accent-color);
}

.footer-bottom .social-section {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .footer-bottom .social-section {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

.footer-bottom .social-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-bottom .social-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.footer-bottom .social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-bottom .social-links .social-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-bottom .social-links .social-link span {
    transition: all 0.3s ease;
}

.footer-bottom .social-links .social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom .social-links .social-link:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 70px 0 0;
    }

    .site-footer .brand-section {
        text-align: center;
    }

    .site-footer .brand-section .footer-description {
        max-width: none;
    }

    .site-footer .brand-section .footer-contact {
        text-align: left;
        display: inline-block;
    }

    .footer-nav-wrapper .nav-column {
        text-align: left;
    }

    .footer-nav-wrapper .nav-column .footer-title {
        margin-bottom: 16px;
    }

    .footer-nav-wrapper .nav-column .footer-nav {
        gap: 10px;
    }

    .footer-bottom .social-section {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .legal-links {
        justify-content: center;
    }
}

/* -----------------------------------------------------------------------------
   Testimonials
----------------------------------------------------------------------------- */

.testimonial-item {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item .stars {
    margin-bottom: 16px;
    color: #f7b50d;
}

.testimonial-item .stars i {
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-item .testimonial-text {
    font-size: 15px;
    font-style: italic;
    margin: 0 0 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    line-height: 1.6;
    flex: 1;
}

.testimonial-item .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-item .testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--heading-color);
}

.testimonial-item .testimonial-info span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
