/* ===== ROOT VARIABLES ===== */
:root {
    --dark-red: #6B1D1D;
    --dark-red-dark: #4A1414;
    --dark-red-light: #8B2D2D;
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --dark-coffee: #3B1F1B;
    --dark-coffee-light: #5C3A2E;
    --dark-coffee-lighter: #7A4F3F;
    --cream: #FDF8F0;
    --text-light: #F5F0EB;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Extra top spacing for cart and product detail pages */
.page-content {
    padding-top: 30px; /* small additional space after the navbar's default padding */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: #2C1810;
    overflow-x: hidden;
	padding-top: 140px; /* 👈 Add this line */
}

.page-content {
    padding-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-red);
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--yellow);
    border-radius: 4px;
}

.section-subtitle {
    color: var(--dark-coffee-light);
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.btn-primary-custom {
    background: var(--dark-red);
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--dark-red-dark);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 29, 29, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--dark-red);
    border: 2px solid var(--dark-red);
    padding: 10px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--dark-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 29, 29, 0.25);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: var(--dark-red);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow) !important;
    letter-spacing: 1px;
}
.navbar-custom .navbar-brand i {
    color: var(--yellow);
    margin-right: 8px;
}
.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 18px !important;
    transition: var(--transition);
    position: relative;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}
.navbar-custom .nav-link:hover {
    color: var(--yellow) !important;
}
.navbar-custom .nav-link.active {
    color: var(--yellow) !important;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}
.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark-red-dark) 0%, var(--dark-red) 50%, var(--dark-coffee) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}
.hero .hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--yellow);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.hero h1 span {
    color: var(--yellow);
}
.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 540px;
    margin-top: 1.5rem;
}
.hero .hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero .btn-hero-primary {
    background: var(--yellow);
    color: var(--dark-red-dark);
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1.05rem;
    text-decoration: none;
}
.hero .btn-hero-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.35);
    color: var(--dark-red-dark);
}
.hero .btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1.05rem;
    text-decoration: none;
}
.hero .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-3px);
}
.hero .hero-stats {
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.hero .hero-stats .stat-item h3 {
    color: var(--yellow);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}
.hero .hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}
.hero .hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .hero-image-wrapper .img-placeholder {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/0.9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
}
.hero .hero-image-wrapper .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero .float-decor {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.04);
    pointer-events: none;
}
.hero .float-decor.d1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: 10%;
}
.hero .float-decor.d2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    background: rgba(255, 215, 0, 0.02);
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 90px 0 70px;
    background: var(--cream);
}
.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(107, 29, 29, 0.06);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red), var(--yellow));
    opacity: 0;
    transition: var(--transition);
}
.category-card:hover::before {
    opacity: 1;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 29, 29, 0.12);
    border-color: rgba(107, 29, 29, 0.1);
}
.category-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(107, 29, 29, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.category-card:hover .icon-wrapper {
    background: var(--dark-red);
}
.category-card .icon-wrapper i {
    font-size: 2.4rem;
    color: var(--dark-red);
    transition: var(--transition);
}
.category-card:hover .icon-wrapper i {
    color: var(--yellow);
}
.category-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-coffee);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.category-card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== PRODUCTS ===== */
.products-section {
    padding: 80px 0 90px;
    background: #fff;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(107, 29, 29, 0.06);
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(107, 29, 29, 0.12);
    border-color: rgba(107, 29, 29, 0.1);
}
.product-card .product-img {
    height: 220px;
    background: #f5f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-img img {
    transform: scale(1.04);
}
.product-card .product-img .badge-sale {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--dark-red-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 50px;
    z-index: 2;
}
.product-card .product-body {
    padding: 22px 24px 24px;
}
.product-card .product-body .product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-coffee-light);
    font-weight: 600;
    margin-bottom: 4px;
}
.product-card .product-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-coffee);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.product-card .product-body .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-red);
}
.product-card .product-body .product-price .old-price {
    font-size: 0.95rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}
.product-card .product-body .product-rating {
    color: var(--yellow);
    font-size: 0.9rem;
}
.product-card .product-body .product-rating span {
    color: #aaa;
    font-size: 0.8rem;
    margin-left: 4px;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 90px 0;
    background: var(--dark-coffee);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04), transparent 70%);
    pointer-events: none;
}
.about-section .about-title {
    color: var(--yellow);
    font-size: 2.8rem;
    font-weight: 700;
}
.about-section .about-title::after {
    background: var(--yellow);
}
.about-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 1.05rem;
}
.about-section .about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 1.5rem;
}
.about-section .about-features .feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.about-section .about-features .feat-item i {
    color: var(--yellow);
    font-size: 1.3rem;
    width: 28px;
}
.about-section .about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-section .about-image-grid .grid-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
}
.about-section .about-image-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
    transition: var(--transition);
}
.about-section .about-image-grid .grid-item:hover img {
    transform: scale(1.04);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0 90px;
    background: var(--cream);
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 30px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(107, 29, 29, 0.05);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(107, 29, 29, 0.08);
}
.testimonial-card .stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.testimonial-card .testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-card .testimonial-author .info h6 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark-coffee);
    font-family: 'Inter', sans-serif;
}
.testimonial-card .testimonial-author .info small {
    color: #999;
    font-size: 0.8rem;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 90px 0;
    background: #fff;
}
.contact-section .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-section .contact-info-item .icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(107, 29, 29, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.contact-section .contact-info-item:hover .icon-box {
    background: var(--dark-red);
}
.contact-section .contact-info-item .icon-box i {
    font-size: 1.4rem;
    color: var(--dark-red);
    transition: var(--transition);
}
.contact-section .contact-info-item:hover .icon-box i {
    color: var(--yellow);
}
.contact-section .contact-info-item .text h6 {
    font-weight: 700;
    color: var(--dark-coffee);
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}
.contact-section .contact-info-item .text p {
    color: #777;
    margin: 0;
    font-size: 0.95rem;
}
.contact-section .form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafaf8;
}
.contact-section .form-control:focus {
    border-color: var(--dark-red);
    box-shadow: 0 0 0 4px rgba(107, 29, 29, 0.08);
    background: #fff;
}
.contact-section .form-control::placeholder {
    color: #bbb;
}
.contact-section .btn-submit {
    background: var(--dark-red);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1rem;
}
.contact-section .btn-submit:hover {
    background: var(--dark-red-dark);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(107, 29, 29, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-coffee);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    border-top: 3px solid var(--yellow);
}
.footer h5 {
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}
.footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow);
}
.footer .footer-brand i {
    margin-right: 6px;
}
.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
}
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    margin-right: 8px;
    text-decoration: none;
    font-size: 1.1rem;
}
.footer .social-links a:hover {
    background: var(--yellow);
    color: var(--dark-coffee);
    transform: translateY(-4px);
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer ul li a:hover {
    color: var(--yellow);
    padding-left: 6px;
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-red);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(107, 29, 29, 0.35);
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--yellow);
    color: var(--dark-red-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.35);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}
.whatsapp-float .whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float .whatsapp-icon:hover {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .whatsapp-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    white-space: nowrap;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 3.2rem; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero .hero-image-wrapper .img-placeholder { max-width: 100%; margin-top: 40px; }
    .section-title { font-size: 2.3rem; }
    .about-section .about-title { font-size: 2.3rem; }
    .about-section .about-image-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
    .hero { padding: 100px 0 60px; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { margin-left: auto; margin-right: auto; font-size: 1rem; }
    .hero .hero-buttons { justify-content: center; }
    .hero .hero-stats { justify-content: center; gap: 24px; }
    .hero .hero-stats .stat-item h3 { font-size: 1.8rem; }
    .hero .hero-image-wrapper .img-placeholder { padding: 0; aspect-ratio: 1/0.8; }
    .section-title { font-size: 2rem; }
    .about-section .about-title { font-size: 2rem; }
    .whatsapp-float .whatsapp-tooltip { display: none; }
    .whatsapp-float { left: 16px; bottom: 16px; }
    .whatsapp-float .whatsapp-icon { width: 54px; height: 54px; font-size: 1.8rem; }
    .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; font-size: 1.2rem; }
    .contact-section .contact-info-item { gap: 14px; }
    .navbar-custom .navbar-brand { font-size: 1.4rem; }
    .about-section .about-image-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 575.98px) {
    .hero h1 { font-size: 2rem; }
    .hero .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
    .hero .btn-hero-primary, .hero .btn-hero-outline { padding: 10px 24px; font-size: 0.9rem; }
    .section-title { font-size: 1.7rem; }
    .product-card .product-body h5 { font-size: 1rem; }
    .footer .footer-brand { font-size: 1.4rem; }
    .about-section .about-image-grid { grid-template-columns: 1fr 1fr; }
}