/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #111111;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #8B0000;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #111111;
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #8B0000;
}

.btn-outline:hover {
    background-color: #8B0000;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 2rem;
    color: #8B0000;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: #FFFFFF;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8B0000;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://picsum.photos/seed/hero-proumetheus/1920/1080.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1,5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #CCCCCC;
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}
/* Home Page Styles */
.featured {
    padding: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.featured-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.featured-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-info {
    padding: 20px;
}

.featured-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.featured-info p {
    font-family: 'Roboto', sans-serif;
    color: #CCCCCC;
    margin-bottom: 10px;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    border-radius: 4px;
}

.status.available {
    background-color: #39FF14;
    color: #111111;
}

.status.sold {
    background-color: #8B0000;
    color: #FFFFFF;
}

.tracker {
    background-color: #8B0000;
    padding: 60px 0;
    text-align: center;
}

.tracker-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.tracker-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #FFFFFF;
}

.tracker-number span {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-preview {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-center {
    text-align: center;
}

/* Contact Page Styles */
.page-header {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #CCCCCC;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8B0000;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.contact-item a {
    color: #8B0000;
    font-weight: 500;
}

.contact-item p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #CCCCCC;
}

.message-form {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
}

.faq-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #222;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

.faq-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.faq-item p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #CCCCCC;
}

/* Footer Links Styles */
.footer-links {
    margin-top: 20px;
}

.footer-links h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tracker-number {
        font-size: 3rem;
    }
    
    .tracker-number span {
        font-size: 1.5rem;
    }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.product-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.product-image img,
.product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img,
.product-card:hover .product-image video {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    border-radius: 4px;
    z-index: 1;
}

.badge-available {
    background-color: #39FF14;
    color: #111111;
}

.badge-sold {
    background-color: #8B0000;
    color: #FFFFFF;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-type {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 15px;
}

.product-cta {
    width: 100%;
}

/* About Page Styles */
.about-page {
    background-color: #111111;
    color: #FFFFFF;
}

.about-section {
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-section {
    margin-bottom: 60px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-section {
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #8B0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.process-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #CCCCCC;
}

.values-section {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid #8B0000;
}

.value-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #8B0000;
}

.value-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #CCCCCC;
}

/* Active nav link style */
.main-nav ul li a.active {
    color: #8B0000;
}

.main-nav ul li a.active::after {
    width: 100%;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .process-item {
        padding: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Custom Banner */
.custom-banner {
    background-color: #8B0000;
    padding: 80px 0;
    text-align: center;
}

.custom-banner-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.custom-banner-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sold Out Showcase */
.sold-out-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.sold-out-carousel::-webkit-scrollbar {
    height: 8px;
}

.sold-out-carousel::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.sold-out-carousel::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 10px;
}

.sold-out-item {
    flex: 0 0 250px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    scroll-snap-align: start;
}

.sold-out-item img,
.sold-out-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sold-out-item:hover img,
.sold-out-item:hover video {
    transform: scale(1.05);
}

.sold-out-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: rgba(139, 0, 0, 0.8);
    color: #FFFFFF;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 4px;
    pointer-events: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-image,
.carousel-video {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.modal-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 20px;
}

.modal-details p {
    margin-bottom: 10px;
}

.modal-cta {
    margin-top: 30px;
}

/* --- Cart Page Styles --- */
.cart-page .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: #555;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #888;
    margin-bottom: 30px;
}

.cart-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.cart-table th, .cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.cart-table th {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: #fff;
    background-color: #222;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-product h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cart-product p {
    color: #aaa;
    font-size: 0.9rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background-color: #333;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.qty-btn:hover {
    background-color: #555;
}

.remove-btn {
    background-color: #8B0000;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-btn:hover {
    background-color: #a00000;
}

.cart-summary {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #8B0000;
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cart-summary hr {
    border: none;
    border-top: 1px solid #444;
    margin: 20px 0;
}

.cart-summary p:last-child {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .cart-table-container {
        font-size: 0.9rem;
    }
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-product img {
        margin-bottom: 10px;
    }
    .cart-summary {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* --- Checkout Page Styles --- */
.checkout-page .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form-container,
.checkout-summary-container {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.checkout-form-container h2,
.checkout-summary-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #8B0000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.summary-totals {
    border-top: 1px solid #444;
    padding-top: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #ccc;
}

.summary-total.final-total {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-top: 10px;
}

.summary-total hr {
    border: none;
    border-top: 1px solid #555;
    margin: 10px 0;
}

/* Responsive untuk Checkout */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Wishlist Page Styles --- */
.wishlist-page .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.empty-wishlist {
    text-align: center;
    padding: 60px 20px;
}

.empty-wishlist i {
    font-size: 4rem;
    color: #555;
    margin-bottom: 20px;
}

.empty-wishlist h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 10px;
}

.empty-wishlist p {
    color: #888;
    margin-bottom: 30px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.wishlist-item:hover {
    transform: translateY(-5px);
}

.wishlist-item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wishlist-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-item:hover .wishlist-item-overlay {
    opacity: 1;
}

.wishlist-item-overlay .btn {
    padding: 8px 16px;
    font-size: 1rem;
}

.wishlist-item-info {
    padding: 20px;
    position: relative;
}

.wishlist-item-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.item-type {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 10px;
}

.item-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 10px;
}

.wishlist-item .remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #8B0000;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-item .remove-btn:hover {
    background-color: #a00000;
}

/* Tombol Wishlist di Product Card */
.add-to-wishlist-btn {
    border: 1px solid #8B0000;
    color: #8B0000;
}
.add-to-wishlist-btn:hover {
    background-color: #8B0000;
    color: #fff;
}

/* Responsive untuk Wishlist */
@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* --- Artisan Info Sederhana di Modal --- */
.modal-artisan-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: none; /* Awalnya sembunyi */
}

.artisan-simple-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    color: #ccc;
    font-size: 0.9rem;
}

.artisan-simple-info i {
    font-size: 1.2rem;
    color: #8B0000;
}

/* --- Admin Dashboard Styles --- */
.login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #111;
    background-image: url('image/hero.jpg'); /* Gunakan background yang sama */
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.8);
}

.login-container {
    position: relative;
    z-index: 2;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-container h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 10px;
}

.login-container p {
    color: #ccc;
    margin-bottom: 30px;
}

.login-hint {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.dashboard-content {
    background-color: #1a1a1a;
    min-height: 100vh;
}

.dashboard-header {
    background-color: #222;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #8B0000;
}

.dashboard-main {
    padding: 40px 0;
}

.dashboard-section {
    margin-bottom: 50px;
}

.dashboard-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.report-card {
    background-color: #222;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #8B0000;
}

.report-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 10px;
}

.report-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #fff;
}

.chart-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
}

.info-box {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #39FF14;
}

.info-box p {
    color: #ccc;
    line-height: 1.6;
}

.info-box strong {
    color: #fff;
}

.info-box code {
    background-color: #333;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    color: #39FF14;
}

.info-box ol {
    padding-left: 20px;
    margin-top: 10px;
}

.info-box li {
    margin-bottom: 5px;
}

.table-container {
    background-color: #222;
    border-radius: 8px;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.data-table th {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    color: #fff;
    background-color: #2a2a2a;
    text-transform: uppercase;
}

.data-table tr:hover {
    background-color: #2a2a2a;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 10px;
}

.footer-brand p {
    font-family: 'Roboto', sans-serif;
    color: #CCCCCC;
}

.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #8B0000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-family: 'Roboto', sans-serif;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .custom-banner-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .custom-banner-content h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-info {
        padding: 20px;
    }
}

/* Tambahkan ini ke akhir css/style.css */

/* --- Shop Page Controls --- */
.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.search-container input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 50px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.search-container .fa-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.filter-sort-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-sort-container select {
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
}

.filter-panel {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none; /* Awalnya sembunyi */
}

.filter-panel.active {
    display: block;
}

.filter-panel h3 {
    margin-bottom: 20px;
    color: #8B0000;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    margin-right: 10px;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.results-bar {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    color: #ccc;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

#page-numbers {
    display: flex;
    gap: 5px;
}

#page-numbers .page-number {
    padding: 8px 12px;
    background-color: #1a1a1a;
    border: 1px solid #555;
    color: #ccc;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#page-numbers .page-number.active {
    background-color: #8B0000;
    color: #fff;
    border-color: #8B0000;
}

#page-numbers .page-number:hover:not(.active) {
    border-color: #8B0000;
    color: #fff;
}

/* Responsive untuk controls */
@media (max-width: 768px) {
    .controls-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-container {
        max-width: 100%;
    }
    .filter-sort-container {
        justify-content: space-between;
    }
}