/*
    Theme Name: FullTimeForce Theme
    Theme URI:
    Description: Custom Theme
    Author: FullTimeForce
    Version: 1.0
    License: GNU General Public License v2 or Later
    Tags: Wordpress
*/
.header_top {
    background-color: #c4a851;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.top-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-title {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin: 5px 0 0 0;
}

.blinking-address {
    color: white;
    font-size: 1rem;
    animation: blink 1.2s linear infinite;
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
/* Grid layout for products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Creates a responsive grid */
    gap: 20px; /* Adds space between the items */
    margin-top: 20px;
}

.product-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-5px); /* Adds a hover effect */
}

.product-thumbnail {
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Pagination styles */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #0073e6;
    color: white;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
