
    /* ========================================
   HOMEPAGE STYLES CSS
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

 /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            animation: zoomEffect 10s ease-in-out infinite;
        }

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

        /* Overlay */
        .hero-slider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        /* Slider Content */
        .slider-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            padding: 40px;
            max-width: 800px;
        }

       .slider-image {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
    animation: zoomOut 1s ease-out 0.3s forwards;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Add this keyframe animation */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.3);  /* Start larger */
    }
    100% {
        opacity: 1;
        transform: scale(1);    /* End at normal size */
    }
}
/* Subtle zoom out */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dramatic zoom out */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Zoom out with slight rotation */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.3) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

        .slider-title {
              z-index: 8;
    font-family: "xocora heading";
    text-transform: uppercase;
    height: auto;
    width: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: center;
    line-height: 86px;
    letter-spacing: 0px;
    font-weight: 100;
    font-size: 70px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
        }

        .slider-title {
            animation: splitTextReveal 1.5s ease-out 0.6s forwards;
        }

        @keyframes splitTextReveal {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

 .shop-now-btn {
    display: inline-block;
    background: white;
    color: #000;
    padding: 20px 40px 20px 60px; /* Increased left padding for more gap */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    border-radius: 0px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

/* Left decorative line - visible by default */
.shop-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px; /* Moved closer to left edge */
    width: 25px;
    height: 1px;
    background: #000;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Background overlay for hover */
.shop-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(81, 70, 51, 0.85);
    transition: left 0.3s ease;
    z-index: 0;
}

.shop-now-btn:hover::before {
    left: auto;
    right: 20px; /* Moved closer to right edge */
    background: white;
}

.shop-now-btn:hover::after {
    left: 0;
}

.shop-now-btn:hover {
    color: white;
    padding: 20px 60px 20px 40px; /* Increased right padding on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Make sure text stays on top */
.shop-now-btn span {
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }

            .slider-image {
                width: 200px;
                margin-bottom: 20px;
            }

            .slider-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .shop-now-btn {
                padding: 15px 30px;
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider {
                height: 350px;
            }

            .slider-image {
                width: 150px;
            }

            .slider-title {
                font-size: 28px;
                letter-spacing: 2px;
            }
        }
/* Best Selling Section */
.best-selling {
    padding: 100px 40px 120px;
    background:none;
    text-align: center;
    background: transparent;
}

.section-subtitle {
    color: #c84a3a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #333;
    font-family: 'Playfair Display', Georgia, serif;
}

.products-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    /* background: #fff; */
    border-radius: 14px;
    padding: 20px;
    /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
    /* transition: 0.3s ease; */
    margin-bottom: 5px; /* Add space below */
}

.product-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square box */
    overflow: hidden;
    /* background: #fff; */
    border-radius: 14px 14px 0 0;
}

/* FIXED IMAGE ALIGNMENT */
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Fills box perfectly */
    /* background: #fff; */   /* Removes patterned background */
}

/* Product Hover Action Buttons */
.product-actions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 45px;
    height: 45px;
    /* background: white; */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.action-btn:hover {
    background: #c84a3a;
    color: black;
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 25px 15px;
    text-align: center;
}

.product-category {
    color:#c84a3a !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-category a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.product-category a:hover {
    color: #c84a3a;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color:  var(--accent);
    line-height: 1.4;
    font-family: 'Lora', serif;
}

.product-price {
    color: #c84a3a!important;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.kova-section {
           display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 80px;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
                background: transparent;

/* background-size: 120%  50%;
background-position: left; */
        }

        .elementor-container {
            max-width: 1290px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .inner-section {
            display: flex;
            align-items: center;
            /* background-color: #F5EDE4; */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            background-image: linear-gradient(90deg, #F4EBE5 60%, transparent 0%);
            background-color: transparent;

        }

       /* Image column with gradient background */
.image-column {
        background: transparent;

    position: relative;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transition: background 0.3s ease; */
}

/* Image styling */
.image-column img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 0px;
}

/* Alternative: Solid background color option */
.image-column.solid-bg {
    background-image: none;
    /* background-color: #F4EBE5; */
}

/* Alternative: Add padding/border effect to image */
.image-column.image-padded img {
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .image-column {
        padding: 40px 15px;
    }
}

@media (max-width: 520px) {
    .image-column {
        padding: 30px 10px;
    }

    .image-column img {
        max-width: 100%;
    }
}
        /* Content Column */
        .content-column {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 60px 80px;
        }

        .content-wrapper {
            max-width: 500px;


        }

        /* Heading */
       /* Root variables */
:root {
    --primary: #BF624C;
    --primary_hover: #b1553f;
    --text: #716147;
    --accent: #514633;
    --lighter: #9D9991;
    --border: #E5E5E5;
    /* --background: #F4EBE5; */
}

/* Content column */
.content-column {
    box-sizing: border-box;
    padding: 60px 40px;
    position: relative;
}

/* Content wrapper */
.content-wrapper {
    background: transparent;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
}

/* Main heading */
.main-heading {
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 30px 0;
    color: #5C4A3A;
    font-family: "xocora heading", Georgia, serif;
    font-weight: 300;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: left;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

/* @ symbol styling */
.main-heading::first-line {
    font-style: italic;
}

/* Description text */
.description-text {
    margin: 30px 0 40px 0;
}

.description-text p {
    color: #5C4A3A;
    font-family: "Crimson Text", Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding: 0;
}

/* Button wrapper */
.button-wrapper {
    margin: 40px 0 0 0;
}

/* Selection button */
/* Selection button */
.selection-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: transparent;
    /* border: 2px solid #5C4A3A; */
    color: #5C4A3A;
    font-family: "Spartan", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.selection-button::before {
    content: "";
    display: inline-block;
    width: 30px;  /* Adjust width as needed */
    height: 1px;
    background: currentColor;
    margin-right: 15px;
    vertical-align: middle;
    transition: all 0.3s ease;
    opacity: 1;
}

.selection-button::after {
    content: "";
    display: inline-block;
    width: 30px;  /* Adjust width as needed */
    height: 1px;
    background: currentColor;
    margin-left: 15px;
    vertical-align: middle;
    transition: all 0.3s ease;
    opacity: 0;
}
.selection-button:hover {
    background-color: #c84a3a;
    color: #F4EBE5;
}

.selection-button:hover::before {
    opacity: 0;
    margin-right: 0;
}

.selection-button:hover::after {
    opacity: 1;
    margin-left: 15px;
}

.selection-button span {
    display: inline-block;
}

/* Decorative flower (optional) */
.content-column::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23E5D5C8" stroke-width="1" opacity="0.3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive design */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 42px;
    }

    .description-text p {
        font-size: 18px;
    }
}

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

    .main-heading {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .description-text p {
        font-size: 17px;
    }

    .description-text {
        margin: 25px 0 35px 0;
    }
}

@media (max-width: 520px) {
    .content-column {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 28px;
    }

    .description-text p {
        font-size: 16px;
    }

    .selection-button {
        padding: 12px 28px;
        font-size: 10px;
        letter-spacing: 2.4px;
    }

    .content-column::after {
        width: 100px;
        height: 100px;
    }
}
        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-column {
                padding: 40px 50px;
            }

            .main-heading {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .inner-section {
                flex-direction: column;
            }

            .image-column,
            .content-column {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .content-column {
                padding: 40px 30px;
            }

            .content-wrapper {
                max-width: 100%;
            }

            .main-heading {
                font-size: 32px;
                text-align: center;
            }

            .description-text {
                text-align: center;
            }

            .button-wrapper {
                text-align: center;
                display: block;
            }

            .selection-button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .kova-section {
                padding: 40px 0;
            }

            .main-heading {
                font-size: 28px;
            }

            .description-text {
                font-size: 14px;
            }

            .selection-button {
                padding: 18px 25px;
                font-size: 9px;
            }
        }

/* Categories Section */
.categories-section {
    padding: 100px 40px;
    background: #fff;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.category-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.category-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px 25px;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(200,74,58,0.9), transparent);
}

.category-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', Georgia, serif;
}

.category-count {
    font-size: 14px;
    opacity: 0.95;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/* Video Section */
.video-section {
    position: relative;
    height: 600px;
    background: url('https://sakalavarisyamfoods.com/wp-content/uploads/2022/10/Banner_1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.video-play-btn svg {
    margin-left: 8px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #ebe3d5 100%);
    padding: 100px 40px;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    font-family: 'Playfair Display', Georgia, serif;
}

.newsletter-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #ddd;
    outline: none;
    font-size: 15px;
    background: white;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input:focus {
    border-color: #c84a3a;
}

.newsletter-submit {
    padding: 18px 35px;
    background: #c84a3a;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 22px;
    min-width: 70px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.newsletter-submit:hover {
    background: #514633;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 40px;
    }

    .slider-title {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .kova-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-slider {
        height: 600px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .best-selling,
    .categories-section,
    .newsletter-section,
    .kova-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .slider-image {
        width: 180px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .kova-text h2 {
        font-size: 32px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-submit {
        width: 100%;
    }

    .hero-slider {
        height: 450px;
    }

    .video-section {
        height: 350px;
    }

    .best-selling,
    .categories-section,
    .newsletter-section,
    .kova-section {
        padding: 50px 20px;
    }

    .shop-now-btn,
    .see-selection-btn {
        padding: 15px 35px;
        font-size: 10px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .kova-text h2 {
        font-size: 26px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .hero-slider {
        height: 400px;
    }
}
.best-selling {
    text-align: center;
    padding: 40px 20px;
    max-width: 1400px; /* Contains the grid */
    margin: 0 auto; /* Centers everything */
    background-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px; /* Add padding on sides */
}

.product-card {
    /* background: #fff; */
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    /* transition: 0.3s ease; */
    margin-bottom: 5px; /* Add space below */
}

.product-card:hover {
    /* transform: scale(1.02); Subtle zoom instead of lift */
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.product-actions {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.action-btn {
    width: 38px;
    height: 38px;
    border: none;
    /* background: #fff; */
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    /* transition: 0.3s ease; */
}

.action-btn:hover {
    background: #f0f0f0;
    /* transform: scale(1.1); */
}

.product-info {
    margin-top: 15px;
}

.product-category {
    font-size: 14px;
    color: #888;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin: 6px 0;
}

.product-price {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}
