body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/background.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: #fdfbf7;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    overflow: hidden;
}

#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    height: 60px;
    background-color: rgba(254, 245, 245, 0.9);
    border-bottom: 1px solid #e6dfd5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.nav-links a:hover {
    color: #d4a373;
}

/* REUSEABLE CARD */
#square-circle-card {
    max-width: 1200px;
    min-height: 550px;
    padding: 30px 60px 60px 60px;
    margin: 0 auto; 
    background-color: rgba(253, 245, 245, 0.9);
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #333333;
    text-align: center;
    box-sizing: border-box;

    max-height: 80vh;

    overflow-y: auto;  
}

/* HIDE SLIDER */
#square-circle-card::-webkit-scrollbar {
    display: none;
}

#square-circle-card {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* HOME TAB */
#main-title {
    color: #333333;
    text-align: center;
    font-size: 110px;
}

#main-p {
    color: #333333;
    text-align: center;
    font-size: 23px;
    padding-bottom: 20px;

    max-width: 750px;
    
    margin-left: auto;
    margin-right: auto;
}

#toko-go {
    display: inline-block; 

    background-color: #151b16; 
    color: white;

    text-decoration: none; 
    font-weight: bold; 
    text-align: center;
    font-size: 20px;

    padding: 20px;
    border-radius: 8px;
    margin-bottom: 0;
    margin-top: 30px;

    width: 200px;
    height: 20px;

    transition: background-color 0.2s ease;
}

/* TOKO TAB */
#karya-title {
    color: #333333;
    text-align: center;
    font-size: 65px;         
    margin-top: -10px;
    margin-bottom: 65px;
    font-weight: 800;
}

.karya-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.prod-card {
    background-color: #fdfbf7;
    border: 1px solid #eaddcd;
    border-radius: 24px;
    padding: 20px;
    width: 290px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.prod-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.prod-title {
    color: #4a3b32;
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0 5px 0;
    line-height: 1.3;
}

.prod-subtext {
    color: #888888;
    font-size: 13px;
    font-weight: 500;
}

/* PRODUCT VIEW */
.view-page-body {
    background-color: #1a1a1a; 
    margin: 0; 
    font-family: sans-serif;
}

.view-content-wrapper {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: calc(100vh - 60px);
    padding-top: 80px;
    box-sizing: border-box;
}

.product-view-card {
    background-color: white; 
    padding: 40px; 
    border-radius: 24px; 
    max-width: 500px; 
    width: 90%; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.view-image {
    max-width: 100%; 
    height: 300px; 
    object-fit: cover; 
    border-radius: 16px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#product-title {
    margin-top: 20px; 
    color: #333333;
}

#product-type {
    color: #666666; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 14px; 
    letter-spacing: 1px; 
    margin: 5px 0;
}

#product-price {
    color: #d4a373; 
    font-size: 24px; 
    font-weight: bold; 
    margin: 15px 0;
}

#product-info {
    color: #555555; 
    line-height: 1.6; 
    font-size: 15px; 
    margin-bottom: 25px;
}

.btn-order {
    display: block; 
    background-color: #28a745; 
    color: white; 
    padding: 12px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
    margin-bottom: 15px;
    transition: background-color 0.2s ease;
}

.btn-order:hover {
    background-color: #218838;
}

.btn-close {
    color: #999999; 
    text-decoration: none; 
    font-size: 14px;
    transition: color 0.2s ease;
}

.btn-close:hover {
    color: #666666;
}

/* KONTAK TAB */
#kontak-title {
    color: #333333;
    text-align: center;
    font-size: 65px;         
    margin-top: -10px;
    margin-bottom: 65px;
    font-weight: 800;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;               
    flex-wrap: wrap;       
    width: 100%;
    margin-bottom: 20px;
}

.contact-item {
    background-color: #fdfbf7; 
    border: 1px solid #eaddcd;
    border-radius: 24px;     
    padding: 40px 30px;      
    width: 340px;            
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-6px); 
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.icon-bubble {
    background-color: white;
    width: 70px;             
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.brand-logo-img {
    width: 40px;             
    height: 40px;
    object-fit: contain;
}

.contact-item h3 {
    margin: 8px 0 6px 0;
    color: #4a3b32;
    font-size: 28px;         
}

.contact-text {
    color: #666666;
    font-size: 20px;         
    margin-top: 5px;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-contact-action {
    display: inline-block;
    width: 100%;
    padding: 14px;           
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;         
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-contact-action:active {
    transform: scale(0.98);
}

.wa-card .btn-contact-action {
    background-color: #25d366;
}
.wa-card .btn-contact-action:hover {
    background-color: #1ebd58;
}

.ig-card .btn-contact-action {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.ig-card .btn-contact-action:hover {
    opacity: 0.9;
}