@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap');

:root {
    --primary-color: #5c2d2d; 
    --secondary-color: #fae8e8; 
    --accent-color: #f8d7da; 
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Arial Black', sans-serif;
    --font-body: 'Baskervville SC', serif;
    --font-arial: 'Arial', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}



nav a {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}


h1, h2, h3, .section-title, .product-title {
    font-family: 'Arial Black', sans-serif;
}


p, .product-desc, .description, .description p, .accordion-content {
    font-family: 'Arial', sans-serif;
}


.about-text p {
    font-family: 'Baskervville SC', serif;
}


.product-info, .product-info .price, .size-option, .accordion-header {
    font-family: 'Arial', sans-serif;
}

.product-info h1 {
    font-family: 'Arial Black', sans-serif; 
    font-weight: 900;
}


.hero-content p {
    font-family: 'Baskervville SC', serif;
}

.about-text p {
    font-family: 'Baskervville SC', serif;
}




a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 60px; 
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
}


footer {
    background-color: var(--secondary-color);
    padding: 50px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    text-transform: uppercase;
}

.opening-hours h3, .contact-us h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 20px;
}

.opening-hours p {
    font-size: 14px;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 24px;
}


.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3e1e1e;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #e2c0c3;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 36px;
    margin: 40px 0 20px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}

.product-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #5c2d2d;
}

.btn-add {
    background-color: #f8d7da;
    color: #333;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-add:hover {
    background-color: #FFA9EC;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-left: 10%; 
    max-width: 600px; 
    background-color: rgba(193, 158, 162, 0.7);
    padding: 40px; 
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px; 
    width: fit-content; 
}

.hero-logo {
    max-width: 150px; 
    height: auto;
    display: block;
    margin-bottom: 0; 
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px; 
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a; 
    width: 100%;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.hero-content .btn {
    width: 100%; 
    padding: 15px 0;
    font-size: 20px;
    background-color: #5c2d2d; 
    color: white;
    border-radius: 8px;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

.hero-content .btn:hover {
    background-color: #3e1e1e;
    color: var(--white);
}

