/* Reset */
body, h1, h2, h3, p, ul, li, a, img, div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Container */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    background-color: #f5f7fa;
    color: #444;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: #344955;
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5722;
    text-decoration: none;
}

.navbar .menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.navbar .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar .menu a:hover {
    color: #ffcc80;
}

.cart-icon i {
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(52, 73, 85, 0.7), rgba(52, 73, 85, 0.7)), url('../../assets/images/hero-bg-alt.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.testimonial-item img {
    width: 150px;
    border-right: 50%;
    border-radius: 50%;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
}

.hero .btn {
    background-color: #ff5722;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e64a19;
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #344955;
    font-size: 2.8rem;
}

/* Products */
.products {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.products .product-list {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.product-card .btn {
    background-color: #344955;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.product-card .btn:hover {
    background-color: #232f34;
}

/* Gallery */
.gallery {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background-color: #ffe0b2;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials blockquote {
    background-color: #ffffff;
    padding: 1.8rem;
    border-left: 5px solid #344955;
    margin: 1.8rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonials cite {
    display: block;
    text-align: right;
    font-style: italic;
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: #555;
}

.faq {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.faq-list {
    flex: 1;
}

.faq-item h3 {
    cursor: pointer;
    color: #344955;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 5px;
    margin-top: 20px;
    padding: 10px;
}

.faq-item h3:hover {
    color: #ff5722;
}

.faq-item .answer {
    display: none;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.faq-image {
    flex: 1;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    border-radius: 10px;
}
.contact {
    padding: 2rem;
    background: url('../../assets/images/contact-bg.jpg') no-repeat center center/cover;
    color: white;
    border-radius: 10px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: white;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact input, .contact textarea {
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.contact textarea {
    height: 150px;
    resize: none;
}

.contact button {
    background-color: #ff5722;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #e64a19;
}
.footer {
    background-color: #344955;
    color: white;
    padding: 2rem;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffcc80;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffcc80;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffcc80;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icons a i {
    margin-right: 0.5rem;
}

.social-icons a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    border-top: 1px solid #ffcc80;
    padding-top: 1rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    font-size: 1rem;
}

.cookie-banner a {
    color: #ffcc80;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #ffcc80;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: #ffd699;
}
.thank-you {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.thank-you .btn {
    background-color: #ffcc00;
    color: black;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.thank-you .btn:hover {
    background-color: #e6b800;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.popup-content .btn {
    background-color: #ffcc00;
    color: black;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.popup-content .btn:hover {
    background-color: #e6b800;
}
form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

form input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-top: 15px;
}
#order-popup form {
    width: 320px;
    margin: 0 auto;
}