/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #FFFFFF;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
}

.logo-img {
    max-height: 140px;
    width: auto;
    vertical-align: middle; /* Aligns logo nicely with nav text */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFF5F6; /* Light Pink Accent */
}

/* Main Content Sections */
main {
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

.hero {
    text-align: center;
    background-color: #f9f9f9;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Promotional Banner */
.promo-banner {
    background-color: #FFF5F6; /* Light Pink Accent */
    text-align: center;
    padding: 2rem 0;
}

.promo-banner h2 {
    margin-top: 0;
    color: #333;
}

.promo-banner p {
    margin-bottom: 1.5rem;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #f9f9f9;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

/* Black Friday Deals Page Styles */
.deals-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.deal-card {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.deal-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.deal-card img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.deal-content {
    flex: 1;
}

.deal-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.deal-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.deal-button:hover {
    background-color: #555;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFB6C1; /* Medium-light pink */
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
}

.deal-pricing {
    margin-top: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.deal-price {
    font-weight: bold;
    color: #d9534f;
}

.content-section {
    margin-top: 4rem;
}

.faq h3 {
    margin-top: 1.5rem;
}

.deals-page h1 {
    text-align: center;
}

/* Responsive Styles for sub-pages */
@media (max-width: 768px) {
    .logo-img {
        max-height: 100px;
    }
    nav ul li {
        margin-left: 10px;
    }
}
