:root {
    --primary-color: #2b2b2b;
    --secondary-color: #ff1744;
    --secondary-color-hover: #980f2a;
    --text-color: #333;
    --light-bg: #e9e9e9;
    --text-darkbg: #b2b2b2;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background: var(--light-bg);
    line-height: 1.6;
}

h2, h3 {
    margin-top: 0px;
}

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

.navbar {
    background: var(--primary-color);
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--text-darkbg);
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/assets/ct/store/images/frr_hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    border-radius: 5px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(0.5em, 8vw + 0.5em, 3.5em);
    font-weight: bold;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    color: aliceblue;
    margin-bottom: 5px;
    letter-spacing: 0.75px;
}

.hero h2 {
    font-weight: bold;
    font-family: 'Fjalla One', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: var(--text-darkbg);

}

.hero p {
    font-size: clamp(0.6em, 0.6em + 1vw, 1.3em);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color-hover);
    text-decoration: none;
    transform: translateY(-2px);
    color: rgb(211, 211, 211);
}

.features {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.features .fas {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-top: 25px;
}

.feature p {
    margin-bottom: 0px;
}

.featured-products, .categories {
    padding: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    max-width: 300px;
}

.product-card h3 {
    font-size: 1.4rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.price {
    font-size: 1.2rem;
    margin-bottom: 0px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.category-card h3 {

    font-size: 1.5rem;
    margin-bottom: 0px;
    text-align: center;
}

.product-card:hover, .category-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.product-image, .category-image {
    height: 240px;
    background-size: 55%; /* The image will be 80% of the container size */
    background-position: center;
    position: relative;
    background-repeat: no-repeat; 
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-info, .category-card h3 {
    padding: 20px;
}

.about-us {
    background-color: var(--light-bg);
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.about-us p {
    text-align: center;
}

.featured-products h2, .categories h2 {
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.01rem;
    border-bottom: 2px solid var(--light-bg);
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.newsletter .container {
    margin-bottom: 50px;
}

.newsletter h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 2.5em;
    max-width: 350px;
}

.newsletter .description {
    margin: 20px 0;
}

.newsletter-form input[type="email"] {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 3px 10px 3px 10px;;
    margin-right: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.newsletter-form input[type="email"]:focus-visible {
   border-color: var(--secondary-color);
   outline: none;
}

.web-footer {
    background-color: var(--primary-color);
    border-top: 0px;
}

.web-footer .container {
    background-color: var(--primary-color);
    max-width: none;
}

.footer-group-label {
    color: #848484; 
    font-size: 1rem;
}

.footer-child-item a {
    color: var(--text-darkbg);
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-child-item a:hover {
    color: var(--secondary-color);
}