body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #333;
}

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
}
.header .logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: #e6007e;
}
.header nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.header nav a:hover {
    color: #e6007e;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e6007e, #6a00f4);
    color: white;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.hero .btn-primary {
    background: white;
    color: #e6007e;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.hero .btn-primary:hover {
    background: #f8f8f8;
}

/* Deals Section */
#deals {
    padding: 3rem 2rem;
    text-align: center;
}
#deals h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.deal-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}
.deal-card img {
    width: 100%;
    border-radius: 4px;
}
.deal-card h3 {
    margin: 0.5rem 0;
}
.deal-card p {
    font-size: 0.9rem;
    color: #555;
}
.deal-card .price {
    font-size: 1.2rem;
    color: #e6007e;
    margin: 0.5rem 0;
}
.deal-card .btn {
    display: inline-block;
    background: #e6007e;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}
.deal-card .btn:hover {
    background: #c2006d;
}

/* Subscribe Section */
.subscribe {
    background: #f4f5f7;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
.subscribe input {
    padding: 0.7rem;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 0.5rem;
}
.subscribe button {
    padding: 0.7rem 1.2rem;
    background: #e6007e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.subscribe button:hover {
    background: #c2006d;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #888;
    background: white;
    border-top: 1px solid #eee;
}


.deal-image {
    width: 100%;
    height: 200px;
    object-fit: contain;   /* prevents stretch */
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.deal-image:hover {
    transform: scale(1.05); /* subtle zoom effect */
}

.pagination {
    text-align: center;
    margin: 20px 0;
}
.page-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: background 0.3s;
}
.page-btn:hover {
    background: #ff007f;
    color: #fff;
}
.page-btn.active {
    background: #ff007f;
    color: #fff;
}
