@font-face {
    font-family: 'beba';
    font-weight: bold;
    src: url(../wp-content/asssets/fonts/BebasNeue-Bold.woff2) format(woff2),
         url(../wp-content/asssets/fonts/BebasNeue-Bold.woff) format(woff);
}
@font-face {
    font-family: 'beba';
    font-weight: light;
    src: url(../wp-content/asssets/fonts/BebasNeue-Light.woff2) format(woff2),
         url(../wp-content/asssets/fonts/BebasNeue-Light.woff) format(woff);
}
@font-face {
    font-family: 'beba';
    font-weight: 5;
    src: url(../wp-content/asssets/fonts/BebasNeue-Regular.woff2) format(woff2),
         url(../wp-content/asssets/fonts/BebasNeue-Regular.woff) format(woff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: 'beba', sans-serif;
}

/* Header */
.main {
    background-color: white;
    width: 100%;
    height: 60px;
    text-align: center;
}

.main img {
    width: 60px;
    height: 60px;
    margin: auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 12px 20px;
    background-color: #211a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar a {
    font-family: 'beba';
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: white;
}

/* Product Page Layout */
.product-page {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 30px;
}

@media (min-width: 600px) {
    .product-page {
        flex-direction: row;
        gap: 40px;
        margin: 40px auto;
    }
}

/* Product Images */
.product-images {
    flex: 1;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.slider img.slide {
    width: 100%;
    height: 650px;
    display: none;
    object-fit: cover;
}

.slider img.displaySlide {
    display: block;
}

.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    padding: 10px 14px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.slider button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 8px;
}

.next {
    right: 8px;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: opacity 0.3s, border-color 0.3s;
}

.thumb:hover {
    opacity: 0.9;
}

.thumb.active {
    opacity: 1;
    border-color: #383838;
}

/* Product Info */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}

.product-title {
    font-family: 'beba';
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #211a1a;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    font-family: 'beba';
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-now {
    font-family: 'beba';
    font-size: 24px;
    color: #211a1a;
    font-weight: bold;
}

.product-stock {
    font-family: 'beba';
    font-size: 14px;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Details */
.product-details {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.product-details h2 {
    font-family: 'beba';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #383838;
    margin-bottom: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    font-family: 'beba';
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-family: 'beba';
    font-size: 14px;
    color: #383838;
}

/* Buy Button */
.buy-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background-color: #211a1a;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: 'beba';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.buy-btn:hover {
    background-color: #383838;
    transform: translateY(-2px);
}

.buy-btn:active {
    transform: translateY(0);
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #211a1a;
    color: white;
    padding: 40px 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h3 {
    font-family: 'beba';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-col a {
    font-family: 'beba';
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-family: 'beba';
    font-size: 13px;
    color: #666;
}
