/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}
/* google fonts */
    .custom-font {
        font-family: "Fira Sans", serif;
        font-weight: bold; /* Adjust weight if necessary */
    }



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.category-button {
    background-color: white;
    color: #bc7348;
    border: 2px solid #bc7348;
    transition: all 0.3s ease;
}

.category-button.active {
    background-color: #bc7348 !important;
    color: white;
    border-radius: 20px;
}

.category-button:hover {
    background-color: #bc7348 !important;
    color: white;
}

.add-to-cart-btn {
    background-color: #bc7348;
    color: white !important;
    cursor: pointer;
    pointer-events: auto;
}

/* Even when disabled, force styles */
.add-to-cart-btn:disabled {
    background-color: brown;
    color: #fff !important; /* Force white text */
    opacity: 0.6; /* Optional: Make it slightly faded */
    cursor: not-allowed;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img{
    object-fit: cover !important;
    margin: 0 auto !important;
    height: 190px !important;
}
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.585); /* Black with 60% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Higher than image */
    color: white;
    font-size: 20px;
    font-weight: 600;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
} 

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Fira Sans", serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        flex-direction: row;
        gap: 10px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px; 
    }

    .navbar .navbar-nav .nav-link i {
        font-size: 18px; /* Adjust the icon size */
        color: #000; /* Icon color */
    }
  /* Hide the map and heading in mobile view */
  .footer-content .location iframe,
  .footer-content .location h3 {
      display: none;
  }
    
    
}
/* 
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} */

/* General styles for the logo container */
.logo {
    display: flex; /* Ensures proper alignment and flexibility */
    align-items: center; /* Vertically centers the content */
    justify-content: flex-start; /* Aligns the content to the left */
    margin-left: -14px;
}

/* Styling the image within the logo */
.logo img {
    max-height: 75px; /* Set the height to fit within the navbar */
    max-width: 100%; /* Ensure the image doesn't overflow */
    object-fit: contain; /* Maintain aspect ratio */
    filter: contrast(150%); 
    filter: brightness(100%);
}


/* Optional: Adjust the anchor tag if needed */
.navbar a {
    text-decoration: none;
    color: inherit;
}

/* Optional: Add padding or margin for spacing */
.logo {
    margin-right: 20px; /* Adjust spacing from other navbar elements */
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 10;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1000;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 95%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/hero/contect\ bg.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    /* padding: 25px 25px 0px 25px; */
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer-details{
    display:  flex;
    justify-content: space-between;
}

.followUs-div p{
    font-size: 25px;
}

.followUs-small-div{
    display: flex;
    gap: 20px;
}

.followUs-small-div i{
    font-size: 25px;
}

@media (max-width: 768px) {
    .footer-details{
        display:  flex;
        flex-direction: column;
    }
}


/* Search Bar Styles */
.search-bar {
    display: none;
    margin: 20px;
    text-align: center;
}
.search-bar input {
    width: 300px;
    padding: 10px;
    margin-right: 10px;
}
.search-bar button {
    padding: 10px 20px;
    cursor: pointer;
}

/* Modal Styles */
/* Modal container */
#adminModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
    padding-top: 100px; /* Adjust the top padding for a better vertical center */
}

/* Modal content */
.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px; /* Set a specific width */
    border-radius: 10px;
    box-sizing: border-box; /* Include padding in width */
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form elements */
#adminLoginForm label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

#adminLoginForm input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid lightgreen;
    border-radius: 5px;
    box-sizing: border-box; /* Prevent input field from overflowing */
}

/* Button */
#adminLoginForm button {
    background-color: lightgreen;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Make the button full width */
}

#adminLoginForm button:hover {
    background-color: green;
}

/* Error message */
#error-msg {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none; /* Keep it hidden by default */
}


/* shoping cart */
body{
    margin: 0;
    font-family: Poppins;
}
/* .container{
    width: 900px; 
     margin: auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
    transition: transform .5s; 
} */
/* svg{
    width: 30px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.icon-cart{
    position: relative;
}
.icon-cart span{
    position: absolute;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
}
.title{
    font-size: xx-large;
}
.listProduct .item img{
    width: 90%;
    filter: drop-shadow(0 50px 20px #0009);
}
.listProduct{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.listProduct .item{
    background-color: #EEEEE6;
    padding: 20px;
    border-radius: 20px;
}
.listProduct .item h2{
    font-weight: 500;
    font-size: large;
}
.listProduct .item .price{
    letter-spacing: 7px;
    font-size: small;
}
.listProduct .item button{
    background-color: #353432;
    color: #eee;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 20px;
} */

/* cart */
.cartTab{
    width: 400px;
    background-color: #353432;
    color: #eee;
    position: fixed;
    top: 0;
    right: -400px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;

}
body.showCart .cartTab{
    right: 0;
}
body.showCart .container{
    transform: translateX(-250px);
}
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab button{
    background-color: #E8BC0E;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
}
.cartTab .close{
    background-color: #eee;
}
.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: #eee1;
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}
/* @media only screen and (max-width: 992px) {
    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
} */


/* mobile */
/* @media only screen and (max-width: 768px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* Cart Sidebar Styles */
/* .cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
}

.cart-sidebar h3 {
    margin-top: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
} */


/* for scroll  */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 100%; /* Ensures the sidebar doesn't exceed the screen width */
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1100;
    padding: 20px 20px 0; /* Adjust padding for spacing */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent overall scrolling */
}

.cart-sidebar h3 {
    margin: 0;
    position: sticky; /* Keep header visible while scrolling */
    top: 0;
    background: white;
    z-index: 1010; /* Ensure it's above other elements */
    padding: 10px 0; /* Add padding for better alignment */
    border-bottom: 1px solid #ddd; /* Optional styling for separation */
    text-align: center;
}

.cart-items {
    flex-grow: 1;
    overflow-y: scroll; /* Enable scrolling */
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.cart-items::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and newer browsers */
}

.cart-footer {
    position: sticky; /* Keep footer visible while scrolling */
    bottom: 0;
    background: white;
    z-index: 1010; /* Ensure it's above other elements */
    padding: 10px 0;
    border-top: 1px solid #ddd; /* Optional styling for separation */
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* logo scroll */
.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
  }
  
  .logo-carousel {
    display: flex;
    animation: scroll-right-to-left 10s linear infinite;
  }
  
  .logo-carousel img {
    height: 60px;
    margin-right: 20px;
    object-fit: contain;
  }
  
  @keyframes scroll-right-to-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  

/* products cards */
.product-item {
    border-radius: 20px; /* Add rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Initial shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 600px; /* Adjust height */
    overflow: hidden; /* Ensures the content stays within the rounded corners */
}

/* Hover effect for product card */
.product-item:hover {
    transform: translateY(-10px); /* Lift the card on hover */
    box-shadow: 0 55px 50px rgba(255, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Styling for the image inside the product card */
/* Default Styles (Desktop, Large screens) */
.product-item img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.add-to-cart-btn {
    padding: 6px 12px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.add-to-cart-btn:hover {
    background-color: rgb(211, 30, 30);
    color: white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.text-center.p-4 {
    padding: 15px;
}

/* Tablet (Max width: 768px) */
@media (max-width: 768px) {
    .product-item {
        height: auto;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .product-item img {
        height: 200px;
    }

    .add-to-cart-btn {
        font-size: 12px;
        padding: 5px 10px;
    }

    .text-center.p-4 {
        padding: 10px;
    }
}

/* Mobile Small (Max width: 576px) */
@media (max-width: 576px) {
    .product-item {
        margin-bottom: 15px;
    }

    .product-item img {
        height: 180px;
    }

    .add-to-cart-btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .text-center.p-4 {
        padding: 8px;
    }
}

/* Extra Small Mobile (Max width: 400px) */
@media (max-width: 400px) {
    .product-item {
        margin-bottom: 10px;
    }

    .product-item img {
        height: 160px;
    }

    .add-to-cart-btn {
        font-size: 10px;
        padding: 3px 6px;
    }

    .text-center.p-4 {
        padding: 5px;
    }
}

/* Ultra Small (Max width: 320px) */
@media (max-width: 320px) {
    .product-item {
        margin-bottom: 8px;
    }

    .product-item img {
        height: 140px;
    }

    .add-to-cart-btn {
        font-size: 9px;
        padding: 2px 5px;
    }

    .text-center.p-4 {
        padding: 3px;
    }
}

/* Change the color of the toggler icon */
.navbar-toggler-icon {
    background-color: #e07e06; /* Dark color */
}

/* Change the border color of the toggler */
.navbar-toggler {
    border-color: #b47209; /* Dark border color */
}
@media (max-width: 576px) {
    .product-item img {
        height: 120px; /* Adjust image height for smaller screens */
    }
    .product-item .btn {
        font-size: 14px;
        padding: 5px;
    }
}


@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }

    .logo p {
        margin-left: 0;
        font-size: 24px;
        text-align: center;
    }
}


   /* Media query for mobile view */
    @media (max-width: 768px) {
        .navbar {
            height: auto;
            padding: 5px;
        }

        .navbar-brand .logo img {
            height: 50px;
            margin-bottom: 5px;
        }

        .navbar-brand p {
            margin-left: 0;
            text-align: center;
            font-size: 20px;
        }

        /* .d-flex {
            position: static;
            justify-content: center;
            margin-top: 10px;
        } */

        /* .btn-sm-square {
            width: 40px;
            height: 40px;
            font-size: 18px;
        } */
    }


    /* add to cart */
    /* Default styles for larger screens */
.product-item {
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05); /* Subtle scaling effect on hover */
}

.product-item img {
    height: 150px;
    object-fit: cover;
}

.product-item h5 {
    font-size: 1.25rem;
}

.product-item .text-center p {
    font-size: 0.9rem;
}

/* For screens smaller than 1200px */
@media (max-width: 1200px) {
    .product-item {
        margin-bottom: 5px;
    }
    .product-item h5 {
        font-size: 1.0rem;
    }
    .product-item .text-center p {
        font-size: 0.75rem;
    }
}

/* For screens smaller than 992px */
@media (max-width: 992px) {
    .product-item img {
        height: 130px;
    }
    .product-item h5 {
        font-size: 1.1rem;
    }
    .product-item .text-center p {
        font-size: 0.8rem;
    }
}

/* For tablets and screens smaller than 768px */
@media (max-width: 768px) {
    .product-item img {
        height: 120px;
    }
    .product-item h5 {
        font-size: 1rem;
    }
    .product-item .text-center p {
        font-size: 0.75rem;
    }
    .product-item span {
        font-size: 0.9rem;
    }
}

/* For mobile phones and screens smaller than 576px */
@media (max-width: 576px) {
    .product-item img {
        height: 100px;
    }
    .product-item h5 {
        font-size: 0.95rem;
    }
    .product-item .text-center p {
        font-size: 0.7rem;
    }
    .product-item span {
        font-size: 0.85rem;
    }
    .product-item button {
        padding: 8px;
        font-size: 0.9rem;
    }
}
/* 1st carosual */
/* Default styles for larger screens */
h1.display-4 {
    font-size: 40px; /* Original font size for large screens */
}

/* For medium screens (tablets, etc.) */
@media (max-width: 992px) {
    h1.display-4 {
        font-size: 25px; /* Reduce the font size on medium screens */
    }
}

/* For smaller screens (mobile phones, etc.) */
@media (max-width: 576px) {
    h1.display-4 {
        font-size: 25px; /* Further reduce the font size on smaller screens */
    }
}

/* For very small screens (extra small mobile devices) */
@media (max-width: 375px) {
    h1.display-4 {
        font-size: 20px; /* Adjust the font size even more for very small screens */
    }
}




/* product cart css media q */

.nav-pills > .nav-item {
    margin-top: 10px; /* Add margin-top to all nav-items */
}

.nav-pills > .nav-item:first-child {
    margin-top: 10px; /* Ensure the first row doesn't get a margin */
}
