/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensures footer stays at the bottom */
}

/* HEADER */
.header {
    font-family: "Bebas Neue", serif;
    display: flex;
    justify-content: space-between;
    /* Ensures proper spacing */
    align-items: center;
    background-color: black;
    /* Solid background */
    padding: 15px 5%;

    flex-wrap: wrap;
    /* Ensures content wraps properly on smaller screens */
}

.header a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;

}

.header a:hover {
    color: #007BFF;
}

/* Navigation links */
.nav-links {
    display: flex;
    justify-content: space-between;
    /* Ensures proper spacing */
    align-items: center;
}

.nav-links a {
    margin: 0 30px;
    font-size: 24px;
    /* Increased font size */
}

/* LOGO */
.logo img {
    height: 120px;
    /* Adjusted for responsiveness */
    max-width: 100%;
}

/* FOOTER */
.footer {
    background-color: #000;
    /* Solid background */
    color: white;
    padding: 30px 5%;
    text-align: center;
    font-family: "Bebas Neue", serif;
    margin-top: auto;
    /* Pushes footer to the bottom */
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.footer .footer-links,
.footer .social-media {
    display: flex;
    justify-content: center;
}

.footer .footer-links a,
.footer .social-media a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-right: 15px;
    /* Adds spacing between items */
}

/* Remove margin from the last link to avoid extra spacing */
.footer .footer-links a:last-child,
.footer .social-media a:last-child {
    margin-right: 0;
}

.footer .footer-links a:hover,
.footer .social-media a:hover {
    color: #007BFF;
}

.footer p {
    font-size: 14px;
    margin-top: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 10px 3%;
    }

    .footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer .footer-links,
    .footer .social-media {
        flex-direction: column;
    }

    .footer .footer-links a,
    .footer .social-media a {
        margin: 8px 0;
        /* Adds vertical spacing between items */
    }

    .logo img {
        height: 80px;
        /* Adjust logo size on smaller screens */
    }
}

/* BUTTON */
.create {
    background-color: #ff0000;
    font-family: "Bebas Neue", serif;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    /* Adjust width dynamically */
    min-width: 100px;
    /* Ensures consistent button size */
    text-align: center;
}

.jersey-card {
    background: white;
    padding: 15px;
    margin: 15px;
    border-radius: 5px;
    text-align: center;
}

.jersey-card img {
    width: 200px;
    height: auto;
    border-radius: 5px;
}

.jersey-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}
#btn-create{
    background-color: #ff0000;
    font-family: "Bebas Neue", serif;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    /* Adjust width dynamically */
    min-width: 100px;
    /* Ensures consistent button size */
    text-align: center;
}
#btn-create:hover{
    background-color: #8B0000;
}

.hero {
    text-align: center;
    padding: 50px;
    background: #004080;
    color: white;
}

/* Form Container */
#contactForm {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    text-align: center;
}

/* Labels */
.form-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

/* Input Fields */
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Textarea */
textarea.form-control {
    resize: vertical;
    height: 120px;
}

/* Submit Button */
.btn-warning {
    background: #ffcc00;
    color: black;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    width: 100%;
}

.btn-warning:hover {
    background: #e6b800;
}

/* Success/Error Message */
#result {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: green;
}

/* Center the product grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Make each product card take equal space */
.product-card {
    width: 300px;
    /* Adjust width as needed */
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Image container (handles flipping) */
.image-container {
    width: 100%;
    height: 350px;
    /* Adjust based on your images */
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

/* Front and back images */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Initially, show only the front image */
.image-container .back-image {
    opacity: 0;
}

/* Flip on hover */
.image-container:hover .image {
    opacity: 0;
}

.image-container:hover .back-image {
    opacity: 1;
}

/* Ensure text stays clean */
h3,
.description,
.price {
    margin: 10px 0;
}

.size-badge {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}



.btn:hover {
    background: #ffcc01;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#tagline {
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-size: 70px;

}
.titles{
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-size: 60px;
}
p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 1.1em;
}

.highlight {
    font-weight: bold;
    color: #e74c3c;
}

.cta {
    background-color: #3498db;
    color: white;
    padding: 15px 20px;
    text-align: center;
    margin-top: 30px;
    border-radius: 5px;
    cursor: pointer;
}

.cta:hover {
    background-color: #2980b9;
}

    #cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 equal columns in a row */
        gap: 20px; /* Adds spacing between cards */
        padding: 20px;
        justify-items: center; /* Centers the items horizontally */
        grid-auto-flow: column; /* Makes sure the items flow horizontally */
    }
/* Hero Section */
.hero {
    background: #004080; /* Dark blue background for contrast */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #FF5733; /* Bright accent color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #c13c1f; /* Darken on hover */
}

/* Featured Section */
.featured {
    text-align: center;
    margin: 40px 0;
}

.featured h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.featured p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Call to Action Section */
.cta {
    background-color: #004080;
    color: white;
    padding: 40px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta .btn {
    background-color: #FF5733;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    color: white;
    border-radius: 5px;
}

.cta .btn:hover {
    background-color: #c13c1f;
}
form {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #ffcc00 ;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #000;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
}

input[type="submit"]:hover {
    background-color:  #BA8E21;
    

}

        /* Logo Container */
        .logo-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto;
        }

        /* Static Logo Image */
        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.5s ease;
        }

        /* Video Logo - hidden by default */
        .logo-video {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Show the video logo when hovering over the logo container */
        .logo-container:hover .logo-video {
            display: block;
        }

        /* Hide the static image when hovering */
        .logo-container:hover .logo-img {
            display: none;
        }
        .product-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .product-card {
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 10px;
            width: 250px;
        }
        .product-card img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .product-card h3 {
            margin: 5px 0;
        }
        .add-to-cart-btn--clear {
            background: rgba(255, 255, 255, 0.7); /* translucent background */
            color: #28a745;
            border: 2px solid #28a745;
            padding: 10px 20px;
            
            cursor: pointer;
            font-size: 1em;
            transition: background 0.3s ease, color 0.3s ease;
          }
          
          .add-to-cart-btn--clear:hover {
            background: #28a745;
            color: white;
          }
          
          /* Out of stock text style */
          .out-of-stock {
            color: red;
            font-weight: bold;
            margin-top: 10px;
          }
          
          /* Price styling */
          .price {
            font-size: 1.2em;
            font-weight: bold;
            color: #333;
            margin: 10px 0;
          }
          
        /* =======================
           Thank You Page
        ======================= */
        .thank-you-container {
            text-align: center;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .thank-you-container h1 {
            font-size: 36px;
            color: #2a2a2a;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .thank-you-container p {
            font-size: 18px;
            color: #555;
            margin-bottom: 20px;
        }
        
        .thank-you-table {
            width: 80%;
            margin: 30px auto;
            border-collapse: separate;
            border-spacing: 0px;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .thank-you-table th,
        .thank-you-table td {
            padding: 12px 20px;
            text-align: left;
            font-size: 16px;
            color: #333;
        }
        
        .thank-you-table th {
            background-color: #DB0007;
            color: white;
            text-transform: uppercase;
        }
        
        .thank-you-table td {
            background-color: #f7f7f7;
            border-bottom: 1px solid #ddd;
        }
        
        .thank-you-table img {
            width: 80px;
            height: auto;
            border-radius: 5px;
        }
        
        .thank-you-table tr:hover td {
            background-color: #f0f0f0;
        }
        
        .thank-you-container .total-price {
            font-size: 24px;
            font-weight: bold;
            color: #4CAF50;
            margin-top: 20px;
        }
        
        .thank-you-container a {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background-color: #4CAF50;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        
        .thank-you-container a:hover {
            background-color: #45a049;
        }
        /* =======================
           Cart Page Styles
        ======================= */
        
        /* Center the cart container */
        .cart-wrapper {
            display: flex;
            justify-content: center;
            padding: 40px 20px;
            background-color: #f4f4f4;
          }
          
          /* White card around the cart */
          .cart-card {
            background-color: #fff;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
          }
          
          /* Cart title */
          .cart-card h2 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 20px;
            color: #333;
          }
          
          /* Remove default list styling */
          .cart-list {
            list-style: none;
            padding: 0;
            margin: 0;
          }
          
          /* Each item row */
          .cart-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
          }
          
          /* Product image */
          .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
          }
          
          /* Details & controls container */
          .cart-item-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
          }
          
          /* Product name */
          .item-name {
            font-size: 1.1em;
            font-weight: bold;
            color: #222;
          }
          
          /* Product price */
          .item-price {
            color: #555;
          }
          
          /* Quantity/update form */
          .cart-form {
            display: flex;
            align-items: center;
            gap: 10px;
          }
          
          /* Quantity input */
          .cart-input {
            width: 60px;
            padding: 6px;
            font-size: 14px;
            text-align: center;
            border: 1px solid #ccc;
            border-radius: 4px;
          }
          
          /* Buttons */
          .cart-btn {
            background-color: #DB0007;
            color: white;
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s ease;
          }
          
          .cart-btn.small {
            padding: 6px 12px;
            font-size: 13px;
          }
          
          .cart-btn.secondary {
            background-color: #888;
          }
          
          .cart-btn.secondary:hover {
            background-color: #666;
          }
          
          .cart-btn:hover {
            background-color: #b90006;
          }
          
          /* Total price */
          .cart-total {
            text-align: right;
            font-size: 1.3em;
            font-weight: bold;
            margin-top: 20px;
            color: #333;
          }
          
          /* Action buttons (continue / checkout) */
          .cart-actions {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
          }
          
          .cart-actions .cart-btn {
            flex: 1;
            text-align: center;
            text-decoration: none;
            line-height: 1.5;
          }
          
          /* Empty-cart message */
          .empty-cart-msg {
            text-align: center;
            color: #666;
            font-size: 1.1em;
            margin: 40px 0;
          }
          .cart-items {
            max-width: 900px;
            margin: 2rem auto;
            padding: 1.5rem;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
          /* Checkout TABLES */
        .checkout-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1rem;
        }
        
        .checkout-table thead {
            background-color: #f4f4f4;
        }
        
        .checkout-table th,
        .checkout-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            vertical-align: middle;
        }
        
        .checkout-table th {
            font-weight: bold;
            color: #333;
        }
        
        .checkout-table img {
            width: 60px;
            height: auto;
            border-radius: 5px;
        }
        
        .cart-items p {
            font-size: 1.2rem;
            font-weight: bold;
            text-align: right;
            margin-top: 1rem;
            color: #333;
        }
        
        /* Responsive for smaller screens */
        @media (max-width: 768px) {
            .checkout-table thead {
                display: none;
            }
        
            .checkout-table, .checkout-table tbody, .checkout-table tr, .checkout-table td {
                display: block;
                width: 100%;
            }
        
            .checkout-table tr {
                margin-bottom: 1rem;
                border-bottom: 2px solid #f0f0f0;
            }
        
            .checkout-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
            }
        
            .checkout-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                width: 50%;
                padding-left: 1rem;
                font-weight: bold;
                color: #666;
                text-align: left;
            }
        }
        /* Login Page Layout */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Login Container */
.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Login Form Box */
.login-form-box {
    margin-top: 20px;
}

/* Form Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

/* Input Focus */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #3498db;
    outline: none;
}

/* Submit Button */
input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Submit Button Hover */
input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Response Message */
#login_response {
    text-align: center;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 30px;
    }

    .page-title {
        font-size: 2.5em;
    }

    input[type="submit"] {
        padding: 10px;
    }
}
        /* Login Page Layout */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Login Container */
.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Login Form Box */
.login-form-box {
    margin-top: 20px;
}

/* Form Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

/* Input Focus */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #3498db;
    outline: none;
}

/* Submit Button */
input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Submit Button Hover */
input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Response Message */
#login_response {
    text-align: center;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 30px;
    }

    .page-title {
        font-size: 2.5em;
    }

    input[type="submit"] {
        padding: 10px;
    }
    
}



.container {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2.form-title {
    font-size: 24px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    color: #000;
    margin-bottom: 20px;
}

/* Form Elements */
label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
   border-color: #3772FF;
    outline: none;
}

#buttons {
    display: flex;
    justify-content: center;
}

input[type="submit"] {
    padding: 12px 20px;
    background-color: #3772FF;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #DF2935;
}

#login_response {
    text-align: center;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }
}
/* Filter form specific styles */
#filter-form {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#filter-form label {
    font-weight: bold;
}

#filter-form select, #filter-form input {
    width: 200px;
    margin-right: 10px;
}

#filter-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
}

#filter-form button:hover {
    background-color: #45a049;
}

/* Keeping the vertical product card layout */
.merch-card {
    display: block;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    margin-right: 10px;
    text-align: center;
}

.merch-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.merch-info {
    padding: 10px;
}

.merch-info h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

.merch-info p {
    margin: 5px 0;
}

.price {
    font-weight: bold;
    color: #333;
}

.add-to-cart-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.add-to-cart-btn:hover {
    background-color: #0056b3;
}

/* Optional: Style the out-of-stock message (remove if you don't want it) */
.merch-card .out-of-stock {
    color: #f00;
    font-weight: bold;
}

/* Ensure form inputs do not affect product card layout */
#filter-form select, #filter-form input, #filter-form button {
    font-family: 'Rubik', sans-serif;
    padding: 8px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #aaa;
}

#filter-form select, #filter-form input {
    width: 200px;
    margin-right: 10px;
}

#filter-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
}

#filter-form button:hover {
    background-color: #45a049;
}
/* General layout and container */
.inventory-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* Space between cards */
    padding: 20px;
}

/* The card container */
.merch-card {
    width: calc(25% - 20px); /* 4 cards per row, minus the gap */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Image styling */
.merch-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Info section inside the card */
.merch-info {
    padding: 20px;
    text-align: center;
}

/* Title */
.merch-info h3 {
    font-size: 1.2rem;
    font-family: 'Rubik Mono One', sans-serif;
    font-weight: 700;
    margin: 10px 0;
    color: #333;
}

/* Description */
.merch-info p {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

/* Price styling */
.merch-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e7e34;
    margin-bottom: 20px;
}

/* Add to cart button */
.add-to-cart-btn {
    background-color: #1e7e34;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover effects for Add to Cart button */
.add-to-cart-btn:hover {
    background-color: #155d27;
}

/* Hover effect for card */
.merch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Hover effect for image */
.merch-card:hover .merch-image {
    opacity: 0.9;
}

/* Responsive: 2 cards per row on medium screens */
@media (max-width: 1024px) {
    .merch-card {
        width: calc(50% - 20px); /* 2 cards per row */
    }
}

/* Responsive: 1 card per row on smaller screens */
@media (max-width: 768px) {
    .merch-card {
        width: calc(100% - 20px); /* 1 card per row */
    }
}
/* Styling for the About Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light gray background */
    font-family: 'Rubik Mono One', sans-serif;
}

/* Titles */
.titles {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Highlighted text */
.about-highlight, .highlight {
    color: #f39c12; /* Golden Yellow color for highlighting */
    font-weight: bold;
}

/* Section headers */
h2 {
    font-size: 2rem;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Styling for paragraphs */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Styling for unordered list */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

ul li span {
    font-weight: bold;
    color: #f39c12;
}

/* Styling for the Call-to-Action section */
.cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: white; /* Set text color to white */
}

.ctahead {
    color: white; /* Ensure the heading inside .cta is white */
}

.cta p {
    color: white; /* Ensure paragraphs inside the .cta section are white */
}

.cta .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #f39c12;
    color: #fff; /* Button text will remain white */
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #e67e22;
}

/* Styling for Instagram icon */
a img {
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

a img:hover {
    transform: scale(1.1);
}

/* Extra margin for section with class .cta */
.cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.continue-shopping-btn {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #0056b3;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table thead {
    background-color: #3772FF;
    color: #fff;
}

table th, table td {
    padding: 15px;
    text-align: center;
}

table tbody tr {
    border-bottom: 1px solid #ddd;
}

table tbody tr:last-child {
    border-bottom: none;
}

.cartimg {
    max-width: 80px;
    height: auto;
    border-radius: 8px;
}

input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

h3 {
    text-align: right;
    margin-right: 20px;
    font-size: 24px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}



/* Success message */
p {
    text-align: center;
    font-size: 20px;
}
.back-to-cart-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.back-to-cart-btn:hover {
    background-color: #666;
}
.checkout-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745; /* nice green */
    color: white;
    text-decoration: none; /* no underline */
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
}

.checkout-btn:hover {
    background-color: #218838;
}
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form textarea,
.checkout-form select,
.payment-form input[type="text"],
.payment-form input[type="email"],
.payment-form textarea,
.payment-form select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 8px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Fjalla One', sans-serif;
    box-sizing: border-box;
}

.checkout-form label,
.payment-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}

.checkout-form button,
.payment-form button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Rubik Mono One', sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.checkout-form button:hover,
.payment-form button:hover {
    background-color: #0056b3;
}
