/* ========================================
   MASSIVE FARM TRACTORS - UNIFIED CSS
   All Pages Stylesheet
   ======================================== */

/* ========================================
   1. GLOBAL STYLES & ROOT VARIABLES
   ======================================== */
:root {
    --primary-color: #18185B;
    --secondary-color: #1a1c1e;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --accent-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

/* ========================================
   2. HEADER & NAVIGATION (from page.css)
   ======================================== */

/* Header Top Bar */
.header-top {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-top a:hover {
    opacity: 0.8;
}

.header-top i {
    margin-right: 5px;
}

/* Main Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    padding: 20px 18px !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 0;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    padding-left: 25px;
}

/* ========================================
   3. PAGE HEADERS & BREADCRUMBS
   ======================================== */

/* Hero Carousel (Home Page) */
.hero-carousel {
    position: relative;
    height: 600px;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-gold);
    font-weight: 500;
}

.carousel-caption h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-caption .lead {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(24, 24, 91, 0.5);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: 2px solid #fff;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* Page Header (Internal Pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.massivetractors.com/wp-content/uploads/2019/12/pic1.jpg') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header .subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Simple Page Title (Listing/Detail Pages) */
.page-title-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Breadcrumbs for Page Header */
.page-header .breadcrumb {
    justify-content: center;
}

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-gold);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Breadcrumbs for Simple Page Title */
.page-title-section .breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.page-title-section .breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* ========================================
   4. BUTTONS & CTAs
   ======================================== */

.btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-cta {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--accent-gold);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-inquiry {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-inquiry:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-read-more {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   5. SECTIONS & CONTENT AREAS
   ======================================== */

.py-80 {
    padding: 80px 0;
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.content-wrapper p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.content-wrapper strong {
    color: var(--text-dark);
}

/* Section Headings */
.section-heading {
    margin-bottom: 50px;
}

.section-heading .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.heading-divider {
    display: flex;
    gap: 8px;
}

.heading-divider span {
    height: 3px;
    display: block;
}

.heading-line1 {
    width: 60px;
    background-color: var(--primary-color);
}

.heading-line2 {
    width: 30px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

/* About Section */
.about-section {
    background-color: #f9f9f9;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   6. FEATURE BOXES & CARDS
   ======================================== */

/* Compact Feature Grid (Home Page) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-box-compact {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.feature-box-compact:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.feature-box-compact i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.feature-box-compact h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-box-compact p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-box-compact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.feature-box-compact a:hover {
    text-decoration: underline;
}

/* Feature Highlights (Page.css) */
.feature-highlights {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.feature-highlight-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.feature-highlight-box:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-highlight-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-highlight-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Info Cards - Vision, Mission, Careers, CEO */
.info-card {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 91, 0.85);
}

.info-card-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.info-card-content i {
    font-size: 60px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.info-card-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.info-card-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* CEO Message Card */
.ceo-message-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.ceo-message-content {
    color: #fff;
    max-width: 700px;
}

.ceo-message-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.ceo-message-content p {
    font-size: 17px;
    line-height: 1.9;
}

/* ========================================
   7. PRODUCT CARDS & LISTINGS
   ======================================== */

.product-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card:hover .btn-read-more {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

/* Products Toolbar (Listing Page) */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.result-count {
    color: var(--text-light);
    margin: 0;
}

.products-toolbar select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* ========================================
   8. PRODUCT DETAIL PAGE
   ======================================== */

/* Product Gallery */
.main-image {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: calc(25% - 8px);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Info */
.product-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.product-meta p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.product-meta strong {
    color: var(--text-dark);
}

.product-description {
    margin-bottom: 30px;
}

/* Product Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-top: 40px;
}

.nav-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-bottom: 3px solid transparent;
    background-color: transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: transparent;
}

.tab-content {
    padding: 30px 0;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    margin: 20px 0;
}

.specifications-table th {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.specifications-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.specifications-table tr:nth-child(even) td {
    background-color: #f8f9fa;
}

.spec-label {
    font-weight: 600;
    width: 40%;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.features-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* ========================================
   9. SIDEBAR
   ======================================== */

.sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.search-form {
    display: flex;
    margin-bottom: 20px;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-color);
}

.category-list .children {
    padding-left: 20px;
    margin-top: 5px;
}

/* ========================================
   10. FORMS
   ======================================== */

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(24, 24, 91, 0.15);
}

.contact-form textarea.form-control {
    min-height: 120px;
}

/* Inquiry Form */
.inquiry-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.inquiry-form h3 {
    margin-bottom: 20px;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.inquiry-form .btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.inquiry-form .btn-submit:hover {
    background-color: var(--secondary-color);
}

/* ========================================
   11. STATISTICS & COUNTERS
   ======================================== */

.stats-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.stat-box .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box div {
    font-size: 18px;
    font-weight: 500;
}

/* ========================================
   12. ACCORDION & FAQ
   ======================================== */

.faq-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.accordion-button {
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(24, 24, 91, 0.15);
}

/* ========================================
   13. PAGINATION
   ======================================== */

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--text-dark);
    border: 1px solid #ddd;
    margin: 0 3px;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ========================================
   14. FOOTER
   ======================================== */

.footer {
    background-color: #1a1c1e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--accent-gold);
}

.footer p {
    color: #ccc;
}

.footer p i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-gold);
}

/* ========================================
   15. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .carousel-caption h1 {
        font-size: 36px;
    }

    .hero-carousel,
    .carousel-item {
        height: 450px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption .lead {
        font-size: 16px;
    }

    .info-card-content h3 {
        font-size: 24px;
    }

    .ceo-message-content h3 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }

    .content-wrapper p {
        font-size: 15px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-toolbar select {
        margin-top: 10px;
        width: 100%;
    }

    .thumbnail {
        width: calc(33.333% - 8px);
    }

    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .hero-carousel,
    .carousel-item {
        height: 400px;
    }

    .product-title {
        font-size: 24px;
    }
}

/* ========================================
   END OF UNIFIED CSS
   ======================================== */