
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Container for margins */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

/* Slideshow (full width) */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    margin: 20px 0;
}

.slide {
    display: none;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.slide-left {
    width: 45%;
    padding: 20px;
}

.slide-left h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-left p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.slide-right {
    width: 50%;
}

.slide-right img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    margin-top: -22px;
    color: #333;
    font-weight: bold;
    font-size: 22px;
    border-radius: 3px;
    user-select: none;
    background: rgba(255,255,255,0.7);
}

.next { right: 10px; }
.prev { left: 10px; }

/* Dots */
.dot-container {
    text-align: center;
    margin: 10px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.active, .dot:hover {
    background-color: #006699;
}

/* Product Categories */
.categories {
    padding: 20px 0;
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product {
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    border-radius: 5px;
    text-align: center;
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

button {
    padding: 5px 10px;
    cursor: pointer;
}

/* Popup Modal */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.popup-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    position: relative;
    border-radius: 5px;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
    margin-top: 20px;
}
