/* ============================================================
   Enso Pharmaceuticals — Design System
   ============================================================ */
:root {
    --primary: #0F4C3A;
    --primary-dark: #0A3528;
    --primary-light: #1A6B52;
    --accent: #C9A227;
    --accent-hover: #A8861E;
    --accent-soft: #F5EDD6;
    --surface: #FAF8F5;
    --surface-alt: #EEF5F0;
    --surface-card: #FFFFFF;
    --text-dark: #1C2B26;
    --text-muted: #5A6B64;
    --text-light: #8A9A92;
    --border: #D8E4DC;
    --border-light: #E8F0EB;
    --shadow-sm: 0 2px 8px rgba(15, 76, 58, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 76, 58, 0.1);
    --shadow-lg: 0 20px 50px rgba(15, 76, 58, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-width: 320px;
}

.wrapper {
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6,
.display-4, .section-title, .all-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    transition: color var(--transition), background var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-orange,
.btn-primary-enso {
    background: linear-gradient(135deg, var(--accent) 0%, #D4B84A 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.75rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.btn-orange:hover,
.btn-primary-enso:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-outline-enso {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.75rem;
    transition: all var(--transition);
}

.btn-outline-enso:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.75rem;
}

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

.btn-outline-green {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.75rem;
}

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

.btn-success {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-success:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.send-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #D4B84A 100%);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.send-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.discover-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #D4B84A 100%);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.65rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.discover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
    color: var(--primary-dark);
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.main-header .navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    transition: all var(--transition);
}

.navbar-brand img {
    height: 58px;
    transition: transform var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    margin: 0 0.15rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: var(--surface-alt);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.text-success {
    color: var(--primary) !important;
    font-weight: 600;
    background: var(--surface-alt);
}

.navbar-nav .dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.navbar-nav .dropdown-item:hover {
    background: var(--surface-alt);
    color: var(--primary);
}

.header-search .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--surface);
    transition: border-color var(--transition);
    min-width: 0;
    flex: 1 1 auto;
}

.header-search .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 107, 82, 0.12);
    background: #fff;
}

.header-search .btn-orange {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
}

.navbar-toggler {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 107, 82, 0.12);
}

/* ============================================================
   Hero Sections
   ============================================================ */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 53, 40, 0.82) 0%,
        rgba(15, 76, 58, 0.65) 50%,
        rgba(10, 53, 40, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: var(--accent-soft);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-section .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.about_ushero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about_ushero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.about_ushero-section h5 {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about_ushero-section h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about_ushero-section p {
    max-width: 720px;
    margin: 0 auto 1rem;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.92;
}

.shophero-section,
.bloghero-section {
    background-size: cover;
    background-position: center;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shophero-section::before,
.bloghero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(250, 248, 245, 0.94) 0%,
        rgba(238, 245, 240, 0.88) 100%
    );
    z-index: 1;
}

.shophero-content,
.bloghero-section .shophero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem;
    max-width: 720px;
}

.shophero-section h1,
.bloghero-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.shophero-section p,
.bloghero-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================================
   Sections & Typography
   ============================================================ */
.section-padding {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.all-title {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 3px solid var(--accent) !important;
    padding-bottom: 0.5rem;
}

.text-green { color: var(--primary); }
.text-dark { color: var(--text-dark); }
.bg-green { background-color: var(--primary); }
.bg-surface { background-color: var(--surface); }
.bg-surface-alt { background-color: var(--surface-alt); }

/* ============================================================
   Cards — Feature, Expertise, Trust
   ============================================================ */
.feature-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    border-radius: 50%;
}

.feature-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.expertise-section {
    background: var(--surface);
    padding: 80px 0;
}

.expertise-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.expertise-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    background: var(--surface-alt);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.expertise-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.expertise-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.trust-section {
    background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
    padding: 80px 0;
}

.trust-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.trust-card:hover::after {
    transform: scaleX(1);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.trust-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--accent-soft);
    color: var(--accent-hover);
}

.trust-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.trust-text {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9rem;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 53, 40, 0.88) 0%, rgba(15, 76, 58, 0.78) 100%);
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stat {
    margin-bottom: 2rem;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-section h3 {
    color: var(--accent);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.testimonial-section h4 {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.testimonial {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    margin: 12px;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-lg);
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    padding: 0;
}

.testimonial blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.testimonial blockquote::after {
    display: none;
}

.testimonial h5 {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-section .slick-dots li button:before {
    color: var(--accent);
    font-size: 10px;
}

.testimonial-section .slick-dots li.slick-active button:before {
    color: #fff;
}

.testimonial-section .slick-prev:before,
.testimonial-section .slick-next:before {
    color: var(--accent);
    font-size: 28px;
}

.wrapper {
    width: 100%;
    padding-top: 0;
    text-align: center;
}

.carousel {
    width: 95%;
    margin: 0 auto;
    max-width: 100%;
}

.testimonial-section .slick-list {
    overflow: hidden;
}

.slick-slide {
    margin: 8px;
}

/* ============================================================
   Quality / Image Sections
   ============================================================ */
.quality-section {
    background: var(--surface-alt);
    overflow: hidden;
}

.quality-title {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-family: var(--font-display);
}

.quality-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.quality-image,
.herb-image,
.about-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.herb-image {
    aspect-ratio: 4/3;
}

/* ============================================================
   About Page
   ============================================================ */
.about-section {
    padding: 80px 20px;
}

.about-section h2 {
    font-weight: 700;
    color: var(--primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.25rem;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.features-section {
    background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
    padding: 80px 20px;
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-box .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background: var(--surface-alt);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-box .feature-title {
    margin-top: 0.5rem;
    font-size: 1.15rem;
}

/* ============================================================
   Shop / Products
   ============================================================ */
.product-card {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--border) !important;
}

.product-card .card-img-top {
    transition: transform 0.5s ease;
}

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

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-title {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.card-hover-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 53, 40, 0.92) 0%,
        rgba(15, 76, 58, 0.6) 100%
    ) !important;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.product-card:hover .card-hover-overlay {
    opacity: 1 !important;
    pointer-events: auto;
}

.card-hover-overlay .btn-light {
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

/* Product Detail */
.product-detail-page {
    padding: 3rem 0 5rem;
}

.product-detail-page .product-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.product-image-placeholder {
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
}

.product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.product-meta-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.product-meta-list li strong {
    color: var(--primary);
    min-width: 160px;
    display: inline-block;
}

.desc-div {
    background: var(--surface-card);
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2rem !important;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Shared responsive utilities */
.quality-split-image {
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100%;
    object-fit: cover;
    min-height: 280px;
}

.quality-split-content {
    padding: 2.5rem;
}

.card-img-top-fixed {
    object-fit: cover;
    height: 220px;
    width: 100%;
}

.card-img-placeholder {
    height: 220px;
}

.product-card-actions .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
}

.desc-div table td {
    border: 1px solid var(--border-light);
    padding: 10px 14px;
}

/* ============================================================
   Blog
   ============================================================ */
.blog-card {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--border) !important;
}

.blog-card .card-img-top {
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.04);
}

.blog-card .card-title {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.blog-content {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    color: var(--primary);
    font-family: var(--font-display);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p { margin-bottom: 1.5rem; }

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.blog-featured-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.related-blog-card {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition);
    overflow: hidden;
}

.related-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md) !important;
}

.blog-sidebar-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-sidebar-card .card-header {
    background: var(--primary) !important;
    border: none;
    padding: 1rem 1.25rem;
    font-family: var(--font-display);
}

.blog-cta-card {
    background: linear-gradient(135deg, var(--surface-alt) 0%, var(--accent-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.blog-cta-card h5 {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
}

.search-bar-enso .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    background: var(--surface-card);
}

.search-bar-enso .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 107, 82, 0.1);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: #fff;
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-header p {
    opacity: 0.8;
    font-size: 1.05rem;
}

.contact-section {
    background: var(--surface);
    padding: 80px 20px;
}

.contact-form-card {
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-section .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    background: var(--surface);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-section .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 107, 82, 0.1);
    background: #fff;
}

.contact-info-card {
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    gap: 1rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.icon-circle:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.icon-circle i {
    color: #fff;
    font-size: 1.1rem;
}

.info-text h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-family: var(--font-display);
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--primary);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    transition: all var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.social-icons i {
    color: inherit;
    font-size: 1rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}

.footer .navbar-brand img {
    height: 52px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--accent);
}

.footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
    --bs-pagination-color: var(--primary);
    --bs-pagination-active-bg: var(--primary);
    --bs-pagination-active-border-color: var(--primary);
    --bs-pagination-hover-color: var(--accent-hover);
    --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(15, 76, 58, 0.15);
    font-size: 0.95rem;
    gap: 0.25rem;
}

.pagination .page-link {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border);
    margin: 0 0.1rem;
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition);
}

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-link:hover {
    background: var(--surface-alt);
    border-color: var(--primary-light);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.breadcrumb-item a:hover {
    color: var(--accent-hover);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ============================================================
   Alerts
   ============================================================ */
.alert-info {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: var(--radius-md);
}

.alert-success {
    border-radius: var(--radius-md);
}

.alert-light.border-start {
    border-left-color: var(--primary) !important;
    border-radius: var(--radius-md);
    background: var(--surface-alt);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.hero-content.container {
    animation: fadeInUp 1s ease-out;
}

.floating { animation: float 3s ease-in-out infinite; }
.pulse { animation: pulse 2.5s ease-in-out infinite; }

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated { opacity: 1; }

.fade-in-up { transform: translateY(40px); }
.fade-in-up.animated { transform: translateY(0); }

.fade-in-down { transform: translateY(-40px); }
.fade-in-down.animated { transform: translateY(0); }

.slide-in-left { transform: translateX(-40px); }
.slide-in-left.animated { transform: translateX(0); }

.slide-in-right { transform: translateX(40px); }
.slide-in-right.animated { transform: translateX(0); }

.scale-in { transform: scale(0.92); }
.scale-in.animated { transform: scale(1); }

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   Misc / Legacy
   ============================================================ */
.border_radius_50 { border-radius: 50%; }

.benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(250, 248, 245, 0.85);
    z-index: 0;
}

.benefit-item {
    position: relative;
    z-index: 1;
    padding: 10px 15px;
}

.auto_slider_container_div {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auto_slider_container {
    width: 100%;
    display: flex;
    margin: auto;
    overflow: hidden;
}

.auto_slider {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotation 30s linear infinite;
}

.auto_slider li {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    border-radius: var(--radius-lg);
}

.auto_slider img {
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg);
}

@keyframes rotation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.header_green h2 {
    font-weight: 700;
    color: var(--primary);
}

.content-wrapper {
    min-height: 50vh;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .hero-section { min-height: 80vh; }
    .shophero-section, .bloghero-section { min-height: 45vh; }
    .contact-form-card { padding: 1.75rem; }

    .header-search {
        width: 100%;
        max-width: 100%;
    }

    .navbar-collapse .header-search {
        margin-top: 0.75rem !important;
    }
}

@media (max-width: 767px) {
    .navbar-brand img { height: 48px; }
    .hero-section { min-height: 75vh; }
    .about_ushero-section { padding: 70px 16px; }
    .about_ushero-section .d-flex.flex-wrap .btn { width: 100%; }
    .about-section { text-align: center; }
    .about-section .btn { width: 100%; margin-top: 1rem; }
    .shophero-section h1, .bloghero-section h1 { font-size: 1.8rem; }
    .quality-image { margin-bottom: 1.5rem; }
    .quality-split-content { padding: 1.75rem 1rem; }
    .quality-split-image { min-height: 220px; }
    .expertise-card, .trust-card { margin-bottom: 1rem; }
    .testimonial { min-height: 220px; padding: 1.75rem 1.25rem; }
    .testimonial-section h3 { font-size: 1.4rem; }
    .footer { text-align: center; }
    .footer-tagline { margin: 0 auto 1.5rem; }
    .footer-heading { margin-top: 1.5rem; }
    .footer .social-icons { justify-content: center; }

    .product-card .card-hover-overlay {
        display: none !important;
    }

    .product-detail-page .d-flex.flex-wrap.gap-2 .btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row {
        --bs-gutter-x: 0.75rem;
    }

    .hero-section { min-height: 68vh; }
    .hero-content { padding: 1.5rem 0.75rem; }
    .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; letter-spacing: 0.08em; }

    .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 0.65rem !important;
    }

    .hero-actions .btn {
        width: 100%;
        margin: 0 !important;
    }

    .search-bar-enso {
        flex-direction: column;
        align-items: stretch !important;
    }

    .search-bar-enso .btn,
    .search-bar-enso a.btn {
        width: 100%;
    }

    .testimonial-section .carousel {
        width: 100%;
        margin: 0;
    }

    .testimonial {
        margin: 6px 2px;
        min-height: 200px;
        padding: 1.25rem 1rem;
    }

    .testimonial blockquote { font-size: 0.9rem; }
    .slick-slide { margin: 4px; }

    .stat { margin-bottom: 1.25rem; }

    .contact-header { padding: 3rem 0 2.5rem; }
    .contact-header h2 { font-size: 1.75rem; }

    .page-hero { padding: 3rem 0 2.5rem; }

    .about_ushero-section h1 { font-size: 1.85rem; }
    .about_ushero-section p { font-size: 0.95rem; }

    .shophero-section,
    .bloghero-section {
        min-height: 42vh;
    }

    .shophero-content,
    .bloghero-section .shophero-content {
        padding: 2rem 1rem;
    }

    .card-img-top-fixed,
    .card-img-placeholder {
        height: 200px;
    }

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.35rem;
    }
}

@media (max-width: 400px) {
    .blog-featured-image {
        max-height: 280px;
    }

    .stat-number {
        font-size: 2.1rem !important;
    }

    .stat-label {
        font-size: 0.78rem;
        max-width: 140px;
    }

    .btn-orange,
    .btn-outline-enso,
    .btn-outline-light,
    .btn-outline-green,
    .btn-success {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.88rem;
    }

    .product-meta-list li strong {
        display: block;
        min-width: 0;
        margin-bottom: 0.2rem;
    }

    .product-meta-list li {
        font-size: 0.88rem;
        padding: 0.6rem 0;
    }

    .product-detail-page .d-flex.flex-wrap.gap-2 {
        flex-direction: column;
    }

    .product-detail-page .d-flex.flex-wrap.gap-2 .btn {
        width: 100%;
        min-width: 0;
    }

    .pagination .page-link {
        padding: 0.35rem 0.55rem;
        font-size: 0.82rem;
        margin: 0 0.05rem;
    }

    .section-title { font-size: 1.45rem; }
    .section-desc { font-size: 0.95rem; }

    .feature-icon,
    .expertise-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .trust-icon {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.45rem 0.75rem !important;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

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

    .section-padding { padding: 52px 0; }

    .contact-form-card,
    .contact-info-card {
        padding: 1.35rem;
    }

    .feature-card,
    .expertise-card,
    .trust-card {
        padding: 1.65rem 1.15rem;
    }

    .card-img-top-fixed,
    .card-img-placeholder {
        height: 185px;
    }
}

@media (max-width: 320px) {
    .container {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .row {
        --bs-gutter-x: 0.5rem;
    }

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

    .main-header .navbar {
        padding: 0.35rem 0;
    }

    .header-search .form-control {
        font-size: 0.85rem;
        padding: 0.45rem 0.65rem;
    }

    .header-search .form-control::placeholder {
        font-size: 0.82rem;
    }

    .hero-section {
        min-height: 62vh;
    }

    .hero-section h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 1.25rem 0.5rem;
    }

    .section-padding { padding: 44px 0; }
    .section-title { font-size: 1.3rem; }
    .section-label { font-size: 0.72rem; }
    .section-subtitle { font-size: 1rem; }

    .about_ushero-section {
        padding: 56px 12px;
    }

    .about_ushero-section h1 {
        font-size: 1.55rem;
    }

    .about_ushero-section h5 {
        font-size: 0.72rem;
    }

    .about_ushero-section p {
        font-size: 0.88rem;
    }

    .shophero-section h1,
    .bloghero-section h1 {
        font-size: 1.45rem;
    }

    .shophero-section p,
    .bloghero-section p {
        font-size: 0.9rem;
    }

    .shophero-section,
    .bloghero-section {
        min-height: 36vh;
    }

    .shophero-content,
    .bloghero-section .shophero-content {
        padding: 1.5rem 0.625rem;
    }

    .quality-split-content {
        padding: 1.25rem 0.625rem;
    }

    .quality-split-image {
        min-height: 170px;
    }

    .stat-number {
        font-size: 1.85rem !important;
    }

    .stat-label {
        font-size: 0.72rem;
        max-width: 120px;
    }

    .testimonial {
        min-height: 180px;
        padding: 1rem 0.85rem;
        margin: 4px 0;
    }

    .testimonial blockquote {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .testimonial h5 { font-size: 0.9rem; }
    .testimonial small { font-size: 0.78rem; }

    .testimonial-section h3 { font-size: 1.2rem; }

    .contact-header {
        padding: 2.5rem 0 2rem;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.1rem;
    }

    .contact-section .form-control {
        font-size: 0.88rem;
        padding: 0.65rem 0.75rem;
    }

    .feature-card,
    .expertise-card,
    .trust-card,
    .feature-box {
        padding: 1.35rem 0.9rem;
    }

    .feature-title,
    .expertise-title,
    .trust-title {
        font-size: 1rem;
    }

    .feature-text,
    .expertise-text,
    .trust-text {
        font-size: 0.85rem;
    }

    .card-img-top-fixed,
    .card-img-placeholder {
        height: 170px;
    }

    .product-card .card-title {
        font-size: 1rem;
    }

    .product-card-actions .btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .all-title {
        font-size: 1.35rem;
    }

    .desc-div {
        padding: 1rem !important;
        font-size: 0.9rem;
    }

    .desc-div table {
        font-size: 0.82rem;
    }

    .desc-div table td {
        padding: 6px 8px;
    }

    .footer {
        padding: 36px 0 20px;
    }

    .footer-tagline {
        font-size: 0.82rem;
    }

    .footer-contact-item {
        font-size: 0.78rem;
        word-break: break-word;
    }

    .footer-bottom {
        font-size: 0.78rem;
        text-align: center;
    }

    .social-icons a {
        height: 38px;
        width: 38px;
    }

    .blog-cta-card {
        padding: 1.35rem 1rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }

    .blog-featured-image {
        max-height: 200px;
    }

    .breadcrumb {
        font-size: 0.78rem;
    }

    .info-text p {
        font-size: 0.82rem;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .btn-orange,
    .btn-outline-enso,
    .btn-outline-light,
    .btn-outline-green {
        font-size: 0.85rem;
        padding: 0.55rem 0.85rem;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .header-search .form-control {
        min-width: 160px;
    }
}

@media (max-width: 400px) {
    .product-image-placeholder {
        min-height: 200px;
    }
}

@media (max-width: 320px) {
    .product-image-placeholder {
        min-height: 170px;
    }

    .product-detail-page {
        padding: 2rem 0 3rem;
    }
}
