h2 {
    text-align: center;
}

/* Details (Toggle Section) */
.content details {
    margin-top: 20px;
    padding: 10px;
    border-radius: 2px;
    background: #ffffff77;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.content details summary {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 15px;
    background: #333;
    color: #eee;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.content details summary:hover {
    background: #eee;
	color: #222;
}

.content details[open] summary {
    background: #EEE;
	color: #222;
}

.content details .product-cards {
    padding: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Subscription Cards */
.content .subscriptions {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.content .subscription-card {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #EEEEEE77;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content .subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.content .subscription-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #111;
}

.content .subscription-card .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #a82d00;
    margin-bottom: 10px;
}

.content .subscription-card ul {
    
    padding: 0;
    margin: 10px 0 20px 20px;
    text-align: left;
}

.content .subscription-card ul li {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.content .subscription-card button {
    background-color: #a82d00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.content .subscription-card button:hover {
    background-color: #a82d00;
}

/* Featured Product */
.content .featured-product {
    background: #EEEEEE77;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.content .featured-product h3 {
    font-size: 17pt;
    margin-bottom: 20px;
    color: #111;
}

.content .featured-product .price {
    font-size: 2em;
    font-weight: bold;
    color: #a82d00;
    margin-bottom: 20px;
}

.content .featured-product button {
    background-color: #111;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.content .featured-product button:hover {
    background-color: #333;
}

/* Product Cards */
/* Details (Toggle Section) */
.content details {
    margin-top: 20px;
    padding: 10px;
    border-radius: 2px;
    background: #EEEEEE77;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.content details .product-cards {
    padding: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Product Cards */
.content .product-card {
    background: #EEEEEE77;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex; /* Enables flexbox layout */
    flex-direction: column; /* Align items vertically */
    justify-content: space-between; /* Ensures proper spacing */
    height: 100%; /* Makes all cards equal height */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card-owned {
    opacity: 0.5;
}

.content .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.content .product-card h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #111;
}

.content .product-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #a82d00;
    margin-bottom: 10px;
    margin-top: auto; /* Pushes the price to the bottom */
}

.content .product-card button {
    background-color: #a82d00;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 2px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background 0.3s ease;

    margin-top: 10px; /* Adds spacing above the button */
}

.content .product-card button:hover {
    background-color: #a82d00;
}


/* Country Flags */
.content .product-card .flag {
    width: 40px;
    height: auto;
    margin: 10px auto;
    display: block;
}

.shop-success-message {
    font-size: 16pt;
    text-align: center;
}