/* ============================================
   PRODUCT COMPONENT STYLES
   ============================================ */
.products-section {
    background-color: #fff;
}

.product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.product-badges {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.badge-group-left {
    display: flex;
    gap: 5px;
}

.badge-made-in {
    width: 50px;
    height: auto;
}

.product-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.badge-hot {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.btn-favorite {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    border-color: #e30613;
}

.btn-favorite.active img {
    opacity: 1;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-image {
        min-height: 200px;
    }
}

/* ============================================
   BLOG COMPONENT STYLES
   ============================================ */
.blog-section {
    margin-bottom: 20px;
}

.blog-heading {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 405px;
    margin: 0 auto;
}

.blog-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 405px;
    max-height: 405px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.blog-image:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 8px;
}

.blog-image:hover img {
    transform: scale(1.02);
}

.blog-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.blog-content {
    padding-top: 20px;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.blog-title-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%; /* or 36px */
    color: #000000;
    margin: 0;
    white-space: normal;
}

@media (max-width: 991px) {
    .blog-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .blog-image {
        max-width: 100%;
        max-height: none;
    }
    
    .blog-title-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .blog-heading {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .blog-image {
        max-width: 100%;
        max-height: none;
    }
    
    .blog-title-text {
        font-size: 18px;
        line-height: 140%;
    }
    
    .blog-content {
        padding-top: 16px;
    }
}

/* ============================================
   HOME PAGE - SPECIFIC STYLES
   ============================================ */

/* Carousel Indicator Buttons */
.carousel-indicator-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: #d0d0d0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator-btn.active {
    background-color: #999;
}

.carousel-indicator-btn:hover {
    background-color: #bbb;
}

/* Hero Carousel */
.rommel-hero-carousel {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #ffffff;
}

.rommel-hero-carousel .carousel-item {
    width: 100%;
    height: auto;
}

.rommel-hero-carousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}

.carousel-indicators-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 30px;
    background-color: #fff;
}

/* Welcome Section */
.welcome-section {
    padding-top: 30px;
    text-align: center;
}

.welcome-content {
    margin: 0 auto;
    font-family: 'Aleo';
    font-style: italic;
    text-align: center;
}

.welcome-heading {
    font-family: 'Aleo';
    font-style: italic;
    font-weight: 400;
    font-size: 48px;
    color: #E30613;
    text-align: center;
}

.welcome-text {
    font-size: 24px;
    color: #646463;
    margin-bottom: 12px;
    text-align: center;
}

.welcome-text:last-child {
    margin-bottom: 0;
}

.welcome-text strong {
    font-weight: 700;
    color: #646463;
}

@media (max-width: 1200px) {
    .welcome-heading {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .welcome-heading {
        font-size: 36px;
        line-height: 150%;
    }
    
    .welcome-content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .welcome-heading {
        font-size: 28px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .welcome-text {
        font-size: 14px;
    }
    
    .welcome-content {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .welcome-heading {
        font-size: 24px;
    }
    
    .welcome-text {
        font-size: 13px;
    }
}

/* About Section */
.about-section-title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-section-title-lg {
    font-size: 30px;
    font-weight: 700;
}

.about-section-title-md {
    font-size: 26px;
    font-weight: 700;
}

.btn-view-details-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
    min-height: 60px;
    background: #E6E6E6;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%; /* identical to box height, or 36px */
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: none;
    flex-grow: 0;
}

.btn-view-details-about:hover {
    background: #D6D6D6;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}

.btn-view-details-about:active {
    transform: translateY(1px);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* FAB Button */
.rommel-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    /* width: 60px;
    height: 60px; */
}

.rommel-fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Header Z-index */
.bg-white:has(.topbar-rommel) {
    position: relative;
    z-index: 100;
}

.main-nav {
    position: relative;
    z-index: 99;
}

/* ============================================
   CONTENT PAGES - COMMON STYLES
   ============================================ */

/* ============================================
   ABOUT SECTION
   ============================================ */

/* Main heading */
#about-section #info-main h2 {
    font-size: 48px;
}

#about-section #info-main h2 span.about-quote {
    color: #828282;
}

/* Image containers */
#about-section .about-image-border {
    border: 1px solid #F5F5F5;
}

/* Text alignment */
#about-section .about-text-left {
    text-align: left;
}

#about-section .about-text-right {
    text-align: right;
}

/* Line height utilities */
#about-section .about-line-height-1-3 {
    line-height: 1.3;
}

#about-section .about-line-height-1-7 {
    line-height: 1.7;
}

#about-section .about-line-height-1-6 {
    line-height: 1.6;
}

#about-section .about-line-height-1-4 {
    line-height: 1.4;
}

#about-section .about-line-height-1-25 {
    line-height: 1.25;
}

/* Flag emoji */
#about-section .about-flag-emoji {
    font-size: 48px;
    margin-right: 8px;
}

/* Title text */
#about-section .about-title-large {
    font-size: 48px;
}

/* Paragraph text */
#about-section .about-paragraph {
    font-size: 32px;
    line-height: 1.7;
    color: #333;
}

/* Detail text */
#about-section .about-detail-text {
    font-size: 32px;
    color: #222;
}

/* History section text */
#about-section .about-history-text {
    color: #333;
    font-size: 32px;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Quote text */
#about-section .about-quote-text {
    font-size: 32px;
    color: #111;
    margin-bottom: 1.3rem;
}

/* Mission title */
#about-section .about-mission-title {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 0.5rem;
}

/* Mission text */
#about-section .about-mission-text {
    font-size: 32px;
    font-weight: 600;
}

/* Mission description */
#about-section .about-mission-desc {
    margin: 0.9rem 0 1.25rem 0;
    color: #333;
    font-size: 32px;
    line-height: 1.6;
}

/* Image styles */
#about-section .about-img-cover {
    object-fit: cover;
    width: 100%;
}

/* Divider */
#about-section .about-divider {
    border: 2px solid #F5F5F5;
    transform: rotate(180deg);
    width: 100%;
    margin: 20px 0;
}

/* Button/Link styles */
#about-section .about-btn-detail {
    border-radius: 0 6px 0 6px;
    font-size: 1rem;
    background-color: #eeeeee;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

#about-section .about-btn-detail.float-right {
    float: right;
}

#about-section .about-btn-detail.inline-block {
    display: inline-block;
}

/* Info box */
#about-section .about-info-box {
    border-radius: 0 6px 0 6px;
    background: #fafafa;
    border: 1px solid #f1f1f1;
    padding: 1.1rem 1.2rem;
    font-size: 32px;
}

#about-section .about-info-box-title {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 0.4rem;
}

/* Text utilities */
#about-section .about-text-bold {
    font-weight: bold;
}

#about-section .about-text-italic {
    font-style: italic;
}

#about-section .about-text-uppercase {
    text-transform: uppercase;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    background-color: #fff;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    white-space: nowrap;
}

.blog-categories {
    font-size: 16px;
}

.blog-category-link {
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.blog-category-link:hover {
    color: #e3000f;
    text-decoration: underline;
}

.blog-category-link.active {
    color: #e3000f;
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================
   BLOG TOP LAYOUT
   ============================================ */

.blog-top-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.blog-featured-wrapper {
    width: 528px;
    flex-shrink: 0;
}

.blog-articles-wrapper {
    width: 402px;
    flex-shrink: 0;
}

.blog-sidebar-wrapper {
    width: 295px;
    flex-shrink: 0;
}

.featured-article {
    width: 100%;
}

.featured-article-image {
    width: 100%;
    height: 572px;
    overflow: hidden;
    border-radius: 8px;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-article-title {
    font-size: 36px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    margin-top: 1rem;
}

.featured-article-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-article-link:hover {
    color: #e3000f;
    text-decoration: none;
}

.blog-articles-small {
    width: 100%;
    height: 578px;
    display: flex;
    flex-direction: column;
}

.blog-article-small {
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-article-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-article-small-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-article-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-article-category {
    font-size: 11px;
    font-weight: bold;
    color: #646463;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.blog-article-small-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   BLOG CAROUSEL
   ============================================ */

.blog-carousel-divider {
    width: 100%;
    border-top: 3px solid #BF1E2E;
    margin: 40px 0;
}

.blog-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1282px;
    margin: 0 auto;
}

.blog-carousel {
    width: 100%;
    overflow: hidden;
}

.blog-carousel-container {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.blog-carousel-item {
    flex-shrink: 0;
    width: 300px;
    height: 364px;
    cursor: pointer;
}

.blog-carousel-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 14px;
}

.blog-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-carousel-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #454545;
    margin: 0;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 85px;
    border: none;
    border-radius: 0 8px;
    background: #757575;
    opacity: 0.5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.blog-carousel-nav:hover {
    background: #E30613;
    opacity: 0.5;
}

.blog-carousel-prev {
    left: 5px;
}

.blog-carousel-next {
    right: 5px;
}

.blog-carousel-nav span {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.blog-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================
   BLOG SIDEBAR
   ============================================ */

.blog-sidebar {
    box-sizing: border-box;
    width: 295px;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    padding: 15px;
}

.blog-sidebar-logo {
    width: 252px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid #F5F5F5;
    box-sizing: border-box;
}

.blog-sidebar-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.blog-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 20px;
}

.blog-sidebar-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-sidebar-carousel {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.blog-sidebar-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.blog-sidebar-slide.active {
    display: block;
}

.blog-sidebar-article-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-sidebar-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-link:hover {
    color: #e3000f;
    text-decoration: none;
}

.blog-sidebar-meta {
    font-size: 0.85rem;
}

.pagination-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #BCC1C7;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: #BCC1C7;
    opacity: 1;
}

.pagination-dot:hover {
    opacity: 0.7;
}

/* ============================================
   BLOG LIST
   ============================================ */

.blog-list {
    max-width: 954px;
    width: 100%;
    margin-right: 48px;
}

.blog-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 37px;
    position: relative;
}

.blog-list-image {
    flex-shrink: 0;
    width: 294px;
    height: 189px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-content {
    flex: 1;
    min-width: 0;
}

.blog-list-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #000000;
    margin: 0 0 8px 0;
}

.blog-list-category {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    line-height: 100%;
    color: #646463;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-list-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin: 0;
}

.blog-list-divider {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 0;
    border: 1px solid #F5F5F5;
}

.blog-list-item:last-child .blog-list-divider {
    display: none;
}

/* ============================================
   BLOG PRODUCTS SIDEBAR
   ============================================ */

.blog-products-sidebar {
    width: 297px;
    flex-shrink: 0;
}

.blog-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-products-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

.blog-products-filter-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px;
    gap: 8px;
    width: 68px;
    height: 32px;
    background: #2C2C2C;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-products-filter-btn.active {
    background: #2C2C2C;
}

.blog-products-filter-btn:not(.active) {
    background: #F5F5F5;
    display: none;
}

.filter-check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
}

.filter-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    color: #F5F5F5;
}

.blog-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-product-card {
    width: 100%;
    min-height: 400px;
    background: #F8F8F8;
    border-radius: 8px;
    padding: 18px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-product-card:hover .blog-product-image {
    transform: scale(1.02);
}

.blog-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 255px;
    margin-bottom: 18px;
}

.blog-product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.blog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-product-badge-new {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 80px;
    height: 70px;
    z-index: 10;
}

.blog-product-badge-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-product-badge-hot {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 60px;
    height: 60px;
    z-index: 10;
}

.blog-product-badge-hot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-product-info {
    display: block;
}

.blog-product-name-wrapper {
    display: block;
}

.blog-product-name {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #1E1E1E;
    margin: 0 0 4px 0;
}

.blog-product-brand {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #1E1E1E;
    display: block;
    margin-bottom: 4px;
}

.blog-product-model-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.blog-product-model {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #1E1E1E;
}

.blog-product-favorite {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 8px;
    width: 44px;
    height: 44px;
    background: #E6E6E6;
    opacity: 0.5;
    border: 1px solid #F3F3F3;
    border-radius: 32px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.3s ease;
}

.blog-product-favorite:hover {
    opacity: 1;
}

.blog-product-favorite:hover svg path {
    fill: #C00F0C;
    opacity: 1;
}

.blog-product-favorite.active {
    opacity: 1;
    background: #E6E6E6;
}

.blog-product-favorite svg {
    width: 20px;
    height: 20px;
}

.blog-product-favorite.active svg path {
    fill: #C00F0C;
    opacity: 1;
}

/* ============================================
   BLOG DETAIL
   ============================================ */

.blog-detail-content {
    animation: fadeIn 0.3s ease-in;
}

.blog-detail-image {
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-social {
    margin-top: 15px;
}

.blog-detail-social a {
    transition: opacity 0.3s ease;
}

.blog-detail-social a:hover {
    opacity: 0.8;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.blog-detail-intro .lead {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
}

.blog-detail-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 2rem;
}

.blog-detail-body {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

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

/* ============================================
   ROMMEL VALUE BOX
   ============================================ */

.rommel-value-box {
    box-sizing: border-box;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 0px 15px;
    position: relative;
    margin-bottom: 2rem;
}

.rommel-value-content {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: #000000;
    box-sizing: border-box;
    padding: 40px 30px;
}

.rommel-brand {
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rommel-main-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.rommel-intro {
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 20px 0;
}

.rommel-value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.rommel-value-list li {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.rommel-value-list li strong {
    font-weight: 700;
}

.checkmark {
    margin-right: 8px;
    flex-shrink: 0;
}

.rommel-conclusion {
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 20px 0;
}

.rommel-tagline {
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    color: #000000;
    margin: 0;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.blog-video-header {
    position: relative;
    width: 944px;
    height: 35px;
    background: #D9D9D9;
    border-radius: 0px 10px 0px 0px;
    margin-bottom: 1rem;
}

.blog-video-label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.blog-video-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #757575;
    margin-top: 15px;
}

.video-section-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.video-main-container {
    width: 550px;
    flex-shrink: 0;
}

.video-main {
    overflow: hidden;
    background: #000;
}

.video-list-container {
    width: 374px;
    flex-shrink: 0;
}

.video-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 12px;
}

.video-list-image {
    width: 167px;
    height: 94px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.video-list-content {
    flex: 1;
    min-width: 0;
}

.video-list-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #828282;
    margin-bottom: 4px;
}

.video-list-meta {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #a1a1a1;
}

/* ============================================
   HASHTAG SECTION (COMMON - Used in both About and Blog)
   ============================================ */

.about-hashtag-container,
#about-section .about-hashtag-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    border-radius: 0 6px 0 6px;
    font-size: 32px;
}

.about-hashtag-button,
#about-section .about-hashtag-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 80px;
    height: 32px;
    background: rgba(20, 18, 24, 0.16);
    border-radius: 8px;
    color: #FFF;
    font-size: 0.9rem;
}

.about-hashtag-list,
#about-section .about-hashtag-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.about-hashtag-item,
#about-section .about-hashtag-item {
    color: #bcbcbc;
    font-size: 0.92rem;
    line-height: 1.4;
}

.about-hashtag-link,
#about-section .about-hashtag-link {
    color: #bcbcbc;
    text-decoration: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.blog-arrow-separator {
    font-size: 24px;
    color: #828282;
}

.blog-detail-padding {
    padding-right: 200px;
    padding-left: 200px;
}

.blog-social-icon {
    max-height: 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .blog-list {
        max-width: 100%;
        margin-right: 24px;
    }
    
    .blog-products-sidebar {
        width: 280px;
    }
    
    .blog-product-card {
        width: 100%;
    }
    
    .video-section-container {
        flex-direction: column;
    }
    
    .video-main-container {
        width: 100%;
        max-width: 550px;
    }
    
    .video-list-container {
        width: 100%;
        max-width: 374px;
    }
}

@media (max-width: 992px) {
    .blog-top-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .blog-featured-wrapper {
        width: 100%;
    }
    
    .blog-articles-wrapper {
        width: 100%;
    }
    
    .blog-sidebar-wrapper {
        width: 100%;
    }
    
    .featured-article {
        width: 100%;
    }
    
    .featured-article-image {
        width: 100%;
        height: auto;
        aspect-ratio: 528 / 572;
    }
    
    .featured-article-image img {
        height: 100%;
    }
    
    .blog-articles-small {
        width: 100%;
        height: auto;
    }
    
    .blog-sidebar {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    .blog-sidebar-logo {
        width: 100%;
        max-width: 252px;
        height: auto;
    }
    
    .blog-sidebar-carousel {
        min-height: auto;
    }
    
    .col-md-12.d-flex {
        flex-direction: column;
    }
    
    .blog-list {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .blog-list-item {
        flex-direction: column;
    }
    
    .blog-list-image {
        width: 100%;
        height: auto;
        aspect-ratio: 294 / 189;
    }
    
    .blog-products-sidebar {
        width: 100%;
    }
    
    .blog-product-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .rommel-value-box {
        width: 100%;
        max-width: 946px;
        height: auto;
        min-height: 460px;
    }
    
    .rommel-value-content {
        width: calc(100% - 44px);
        height: auto;
        position: relative;
        left: 22px;
        top: 30px;
        padding-bottom: 30px;
    }
    
    .rommel-brand,
    .rommel-main-title,
    .rommel-intro,
    .rommel-value-list li,
    .rommel-conclusion,
    .rommel-tagline {
        font-size: 24px;
        line-height: 22px;
    }
    
    .blog-video-header {
        width: 100%;
        max-width: 944px;
    }
    
    .blog-video-title {
        width: 100%;
        max-width: 283px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .featured-article-title {
        font-size: 1.4rem;
    }
    
    .blog-article-small-image {
        width: 120px;
        height: 120px;
    }
    
    .blog-carousel-item {
        width: 250px;
        height: auto;
    }
    
    .blog-carousel-image {
        width: 250px;
        height: 250px;
    }
    
    .blog-carousel-nav {
        width: 40px;
        height: 60px;
    }
    
    .blog-carousel-nav span {
        font-size: 32px;
    }
    
    .blog-sidebar {
        padding: 20px;
        width: 100%;
        height: auto;
    }
    
    .blog-sidebar-title {
        font-size: 20px;
    }
    
    .blog-sidebar-logo {
        width: 100%;
        max-width: 200px;
    }
    
    .blog-products-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .blog-list-title {
        font-size: 20px;
    }
    
    .blog-list-image {
        width: 100%;
    }
    
    .blog-detail-title {
        font-size: 1.5rem;
    }
    
    .blog-detail-section-heading {
        font-size: 1.2rem;
    }
    
    .blog-detail-intro .lead {
        font-size: 1rem;
    }
    
    .rommel-value-box {
        height: auto;
    }
    
    .rommel-value-content {
        width: calc(100% - 30px);
        left: 15px;
        top: 20px;
        padding-bottom: 20px;
    }
    
    .rommel-brand,
    .rommel-main-title,
    .rommel-intro,
    .rommel-value-list li,
    .rommel-conclusion,
    .rommel-tagline {
        font-size: 20px;
        line-height: 18px;
    }
    
    .blog-video-header {
        height: 30px;
    }
    
    .blog-video-label {
        font-size: 18px;
    }
    
    .blog-video-title {
        font-size: 18px;
    }
    
    .video-main-container,
    .video-list-container {
        max-width: 100%;
    }
    
    .video-list-image {
        width: 120px;
        height: 68px;
    }
    
    .video-list-title {
        font-size: 12px;
    }
    
    .video-list-meta {
        font-size: 11px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: #fff;
    overflow-x: hidden;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}

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

.contact-message-title {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #484848;
}

/* Figma Contact Form Styles */
.contact-form-figma {
    box-sizing: border-box;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 0px 10px;
    padding: 24px;
    width: 100%;
}

.contact-form-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    margin-bottom: 24px;
}

.contact-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form-col-half {
    flex: 1;
}

.contact-form-input,
.contact-form-textarea {
    box-sizing: border-box;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 0px 8px;
    padding: 8px 12px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #000000;
    transition: border-color 0.2s;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #B3B3B3;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #C00F0C;
}

.contact-form-textarea {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    resize: vertical;
    min-height: 100px;
}

.contact-form-textarea::placeholder {
    color: #BCBABA;
}

.contact-form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.contact-form-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    box-sizing: border-box;
    width: 93px;
    height: 42px;
    min-width: 93px;
    max-width: 93px;
    min-height: 42px;
    max-height: 42px;
    background: #C00F0C;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0px 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
}

.contact-form-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-form-button:hover {
    background: #A00C0A;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-button:active {
    background: #8A0A08;
}

/* Contact Info Section - Full Width */
.contact-info-section {
    width: 100%;
    background: #F8F8F8;
    padding: 60px 0;
}

.contact-info-left-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 80px 40px 0;
    min-height: 469px;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    text-align: right;
    color: #43474D;
    box-sizing: border-box;
    border-right: 1px solid #E6E6E6;
    padding-right: 15px;
    margin-right: 60px;
    margin-top: 75px;
}

.contact-info-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 40px 0;
    min-height: 469px;
    max-width: 679px;
    width: 100%;
}

.contact-company-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #454545;
    margin-bottom: 8px;
}

.contact-company-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #454545;
    margin-bottom: 16px;
}

.contact-manufacturer-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #454545;
    margin-top: 24px;
    margin-bottom: 8px;
}

.contact-info-list {
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #454545;
    margin-bottom: 8px;
}

.contact-info-list li strong {
    font-weight: 700;
}

.contact-info-list a {
    color: #454545;
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

/* Promo Banner - Full Width */
.contact-promo-banner {
    width: 100%;
    background: #C00F0C;
    height: 60px;
    display: flex;
    align-items: center;
}

.contact-promo-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1282px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.contact-promo-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-promo-input-group {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 683px;
}

.contact-promo-input {
    box-sizing: border-box;
    width: 100%;
    height: 47px;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 0px 10px;
    padding: 0 110px 0 16px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #000000;
}

.contact-promo-input::placeholder {
    color: #B3B3B3;
}

.contact-promo-input:focus {
    outline: none;
    border-color: #C00F0C;
}

.contact-promo-button {
    box-sizing: border-box;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 89px;
    height: 39px;
    background: #E8E4E4;
    border: 1px solid #E6E6E6;
    border-radius: 0px 10px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    color: #C00F0C;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.contact-promo-button:hover {
    background: #D8D4D4;
}

@media (max-width: 767.98px) {
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-message-title {
        font-size: 1rem;
    }
    
    .contact-form-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .contact-form-figma {
        padding: 20px 16px;
    }
    
    .contact-form-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .contact-form-button {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        font-size: 20px;
        padding: 12px 24px;
        height: auto;
        min-height: 42px;
    }
    
    .contact-illustration {
        margin-bottom: 30px;
    }
    
    .contact-info-section {
        padding: 30px 0;
    }
    
    .contact-info-left-content {
        padding: 0 15px;
        min-height: auto;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    
    .contact-info-right-content {
        padding: 0 15px;
        min-height: auto;
        max-width: 100%;
    }
    
    .contact-info-text {
        font-size: 18px;
        line-height: 140%;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid #E6E6E6;
        padding-right: 0;
        padding-bottom: 20px;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
    }
    
    .contact-info-divider {
        display: none;
    }
    
    .contact-company-title {
        font-size: 20px;
        line-height: 140%;
        margin-bottom: 10px;
    }
    
    .contact-company-subtitle {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .contact-manufacturer-title {
        font-size: 18px;
        line-height: 140%;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    
    .contact-info-list {
        margin-bottom: 0;
    }
    
    .contact-info-list li {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 10px;
        word-break: break-word;
    }
    
    .contact-promo-banner {
        height: auto;
        padding: 16px 0;
    }
    
    .contact-promo-form {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }
    
    .contact-promo-text {
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
    
    .contact-promo-input-group {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-promo-input {
        height: 42px;
    }
    
    .contact-promo-button {
        width: 80px;
        height: 42px;
        font-size: 20px;
    }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
    background: #fff;
}

.guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guarantee-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    margin-top: 0;
    line-height: 1.2;
}

.guarantee-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
}

.guarantee-content {
    flex: 1 1 55%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guarantee-box {
    border: 1px solid #e0e0e0;
    border-radius: 0 10px 0 10px;
    background: #fff;
    margin-bottom: 20px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.guarantee-box:last-child {
    margin-bottom: 0;
}

/* Box 1: height 272px */
.guarantee-box.guarantee-box-type1 {
    padding: 18px 24px;
}

.guarantee-box.guarantee-box-type1 .guarantee-box-header {
    font-size: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guarantee-box.guarantee-box-type1 .guarantee-box-content {
    margin-bottom: 12px;
    flex: 1;
    overflow: hidden;
}

.guarantee-box.guarantee-box-type1 .guarantee-box-content strong {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.guarantee-box.guarantee-box-type1 .guarantee-box-content ul {
    margin: 0 0 12px 20px;
}

.guarantee-box.guarantee-box-type1 .guarantee-box-content li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Box 2: height 372px */
.guarantee-box.guarantee-box-type2 {
    padding: 22px 24px;
}

.guarantee-box.guarantee-box-type2 .guarantee-box-header {
    font-size: 25px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.guarantee-box.guarantee-box-type2 .guarantee-box-content {
    margin-bottom: 14px;
    flex: 1;
    overflow: hidden;
}

.guarantee-box.guarantee-box-type2 .guarantee-box-content strong {
    font-size: 1rem;
    margin-bottom: 12px;
    margin-top: 0;
}

.guarantee-box.guarantee-box-type2 .guarantee-box-content ul {
    margin: 0 0 14px 20px;
}

.guarantee-box.guarantee-box-type2 .guarantee-box-content li {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.guarantee-box-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
    text-transform: uppercase;
    flex-shrink: 0;
}

.guarantee-box-content {
    margin-bottom: 20px;
}

.guarantee-box-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    margin-top: 8px;
}

.guarantee-box-content ul {
    margin: 0 0 20px 24px;
    padding: 0;
    list-style: disc;
}

.guarantee-box-content li {
    font-size: 1rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 10px;
}

.btn-guarantee-detail {
    background: #e30613;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    padding: 8px 22px;
    border-radius: 0 10px 0 10px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    align-self: flex-start;
    margin-top: 8px;
}

.btn-guarantee-detail:hover {
    background: #c1000c;
    color: #fff;
}

.guarantee-illustration {
    flex-shrink: 0;
    width: 400px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-top: 0;margin-bottom: -24px;
}

.guarantee-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
}

.guarantee-banner {
    width: 100%;
    height: 60px;
    background: #C00F0C;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.guarantee-banner-content {
    max-width: 1228px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    height: 100%;
}

.guarantee-banner-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #FFFFFF;
    text-align: center;
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

/* ============================================
   GUARANTEE MODAL
   ============================================ */

.guarantee-modal .modal-dialog {
    max-width: 900px;
    margin: 30px auto;
}

.guarantee-modal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.guarantee-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

.guarantee-modal-header {
    border-bottom: none;
    padding: 24px 30px 10px 30px;
    position: relative;
}

.guarantee-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-modal-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.guarantee-modal-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
}

.guarantee-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    transition: opacity 0.2s;
}

.guarantee-modal-close:hover {
    opacity: 0.8;
}

.guarantee-close-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.guarantee-modal-body {
    padding: 0 30px 30px 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.guarantee-modal-section {
    margin-bottom: 30px;
}

.guarantee-modal-section:last-child {
    margin-bottom: 0;
}

.guarantee-modal-section-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
}

.guarantee-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-modal-list li {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.guarantee-modal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.guarantee-modal-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-modal-exclusion-list li {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.guarantee-exclusion-icon {
    color: #C00F0C;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-modal-commitment {
    display: flex;
    flex-direction: column;
}

.guarantee-commitment-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.guarantee-commitment-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .guarantee-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .guarantee-modal-header {
        padding: 20px;
    }
    
    .guarantee-modal-title {
        font-size: 20px;
    }
    
    .guarantee-modal-body {
        padding: 20px;
        max-height: 80vh;
    }
    
    .guarantee-modal-logo {
        width: 32px;
        height: 32px;
    }
    
    .guarantee-modal-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 1024px) {
    .guarantee-wrapper {
        gap: 30px;
    }
    
    .guarantee-content {
        flex: 1 1 100%;
    }
    
    .guarantee-illustration {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .guarantee-container {
        padding: 40px 16px 30px 16px;
    }
    
    .guarantee-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .guarantee-section .blog-title {
        font-size: 1.75rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
        display: block;
    }
    
    .guarantee-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .guarantee-content {
        width: 100%;
    }
    
    .guarantee-box {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .guarantee-box-header {
        font-size: 25px;
        margin-bottom: 16px;
    }
    
    .guarantee-box-content strong {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .guarantee-box-content li {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }
    
    .guarantee-illustration {
        width: 100%;
        max-width: 300px;
        order: -1;
        margin-bottom: 20px;
    }
    
    .guarantee-banner {
        height: auto;
        min-height: 60px;
        padding: 16px 0;
    }
    
    .guarantee-banner-content {
        padding: 0 16px;
    }
    
    .guarantee-banner-text {
        font-size: 16px;
        line-height: 1.5;
        white-space: normal;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .guarantee-container {
        padding: 30px 12px 24px 12px;
    }
    
    .guarantee-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
    
    .guarantee-section .blog-title {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
        display: block;
    }
    
    .guarantee-box {
        padding: 20px 16px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .guarantee-box-header {
        font-size: 1rem;
    }
    
    .guarantee-box-content li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-guarantee-detail {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .guarantee-illustration {
        max-width: 250px;
    }
    
    .guarantee-banner {
        padding: 12px 0;
    }
    
    .guarantee-banner-content {
        padding: 0 12px;
    }
    
    .guarantee-banner-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Component nhỏ - không có padding */
/* ============================================
   PAGINATION - GENERAL STYLE (FIGMA DESIGN)
   ============================================ */

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0;
    list-style: none;
}

.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 3px;
    color: #828282;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination .page-link:hover {
    color: #828282;
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background-color: #E30613;
    color: #FFFFFF;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    color: #828282;
}

/* Style cho mũi tên « và » */
.pagination .page-link[aria-label="Trước"],
.pagination .page-link[aria-label="Sau"],
.pagination .page-link[aria-label="Previous"],
.pagination .page-link[aria-label="Next"] {
    font-size: 24px;
    line-height: 150%;
    color: #828282;
    width: auto;
    height: auto;
    padding: 0 8px;
}

.pagination .page-item.disabled .page-link[aria-label="Trước"],
.pagination .page-item.disabled .page-link[aria-label="Sau"],
.pagination .page-item.disabled .page-link[aria-label="Previous"],
.pagination .page-item.disabled .page-link[aria-label="Next"] {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .pagination {
        gap: 4px;
    }
    
    .pagination .page-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .pagination .page-link[aria-label="Trước"],
    .pagination .page-link[aria-label="Sau"],
    .pagination .page-link[aria-label="Previous"],
    .pagination .page-link[aria-label="Next"] {
        font-size: 20px;
    }
}

.products-section,
.blog-section,
.welcome-section,
.filter-section {
    padding-bottom: 30px;
}

/* ============================================
   HOME PAGE RESPONSIVE STYLES
   ============================================ */

/* Carousel Indicators Responsive */
@media (max-width: 768px) {
    .carousel-indicators-wrapper {
        padding: 10px 15px;
        gap: 6px;
    }
    
    .carousel-indicator-btn {
        width: 12px;
        height: 12px;
    }
}

/* Filter Section Responsive */
@media (max-width: 1200px) {
    .filter-section h2 {
        font-size: 42px;
        line-height: 50px;
    }
    
    .filter-header-wrapper {
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .filter-section h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .filter-header-wrapper {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .filter-btn {
        font-size: 14px;
        padding: 6px 12px;
        height: 28px;
    }
    
    .dealer-list-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .filter-section {
        padding: 20px 0;
    }
    
    .filter-section h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }
    
    .filter-header-wrapper {
        gap: 16px;
    }
    
    .filter-buttons {
        gap: 4px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 6px 10px;
        height: 26px;
        flex-shrink: 0;
    }
    
    .filter-btn .new-icon,
    .filter-btn .filter-icon {
        width: 14px;
        height: 14px;
    }
    
    .dealer-list-btn {
        font-size: 12px;
        padding: 6px 12px;
        width: 100%;
        justify-content: center;
    }
    
    .briefcase-icon {
        width: 16px;
    }
}

@media (max-width: 576px) {
    .filter-section h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 5px 8px;
        height: 24px;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-section-title-lg {
        display: none;
    }
    
    .about-section-title-md {
        display: block;
    }
    
    .btn-view-details-about {
        font-size: 20px;
        padding: 10px 20px;
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .about-section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .about-section-title-md {
        font-size: 22px;
    }
    
    .btn-view-details-about {
        font-size: 18px;
        padding: 8px 16px;
        min-height: 44px;
        width: 100%;
    }
    
    #about .ratio {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-section-title {
        font-size: 20px;
    }
    
    .about-section-title-md {
        font-size: 18px;
    }
    
    .btn-view-details-about {
        font-size: 16px;
        padding: 6px 12px;
        min-height: 40px;
    }
}

/* FAB Button Responsive */
@media (max-width: 768px) {
    .rommel-fab {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .rommel-fab {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}

/* Products Section Responsive */
@media (max-width: 992px) {
    .products-section {
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding-bottom: 15px;
    }
}

