/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f1e9, #e6d9c6);
    font-family: 'Poppins', sans-serif;
}

/* Luxury Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: #1a1a1a;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #d4af37;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.primary-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: 2px solid #d4af37;
}

.primary-btn:hover {
    background: #1a1a1a;
    color: #d4af37;
}

.secondary-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.secondary-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.header__menu--items {
	list-style: none;
	position: relative;
}

.header__menu--items:hover .header__sub--menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
}

.header__sub--menu {
	position: absolute;
	z-index: 9;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 220px;
	margin-top: 20px;
	padding: 10px;
	list-style: none;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.header__sub--menu__items {
	margin: 12px;
}

.header__sub--menu__link {
	display: block;
	color: #333;
	text-decoration: none;
}

.header__sub--menu__link i {
    margin-right: 12px; 
    vertical-align: middle;
    font-size: 20px; 
}

.header__sub--menu__link:hover {
	color: #d4af37;
}

.header__menu--items > a {
	color: white;
	text-decoration: none;
}

/* Cards Section */
.cards-section {
    padding: 80px 0;
}

.cards-section h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    font-style: italic;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

.card .price {
    display: block;
    font-size: 20px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-btn {
    background: #1a1a1a;
    color: #d4af37;
    padding: 12px 25px;
}

.filter-bar {
	background: #666;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	justify-content: center;
} 

/* .filter-bar {
	display: flex;
	align-items: center;
	gap: 20px; optional spacing between filter items
} */

.filter-item {
	display: flex;
	align-items: center;
	gap: 5px;
}


.filter-bar label {
	font-weight: bold;
	margin-right: 5px;
	color: #fff;
}

.filter-bar select {
	padding: 8px 12px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.filter-bar button {
	padding: 10px 20px;
	background-color: #d4af37;
	color: white;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
}

.filter-bar button:hover {
	background-color: #333;
}

@media ( max-width : 600px) {
	.filter-bar {
		flex-direction: column;
	}
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: #1a1a1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
}

.footer-column p a {
	color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.payment-methods img {
    height: 30px;
}

/* Mobile Optimization and Hamburger Menu */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        font-size: 24px;
    }

    .nav-toggle-label {
        display: block;
    }

    header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #1a1a1a;
        padding: 20px 0;
    }

    #nav-toggle:checked ~ nav {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-actions {
        display: none; /* Hidden on mobile */
    }

    /* Cards */
    .cards-section {
        padding: 60px 0;
    }

    .cards-section h1 {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

 /*    .card img {
        height: 150px;
    } */
}

@media (max-width: 480px) {
    .cards-section h1 {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 14px;
    }

    .card .price {
        font-size: 18px;
    }

    .btn {
        padding: 8px 15px;
    }
}