
        /* --- GLOBAL STYLES & FONTS --- */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
        
        body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0; 
    margin: 0;
    padding: 0;
}

#main-home, #main-content {
    padding-top: 130px; 
    padding-bottom: 70px;
    padding-left: 16px;
    padding-right: 16px;
}

/* --- 1. LOGO STYLING (Header) --- */
#header {
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff; 
    height: 90px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
    z-index: 100; 
}
#header img {
    max-width: 120px; 
    height: auto;
    max-height: 70px; 
    border-radius: 8px; 
}

/* --- 2. MENU BUTTON STYLING (Top Tabs) --- */

#tabs-top {
    position: fixed;
    top: 90px; 
    left: 0;
    right: 0;
    display: flex; 
    justify-content: space-around;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    z-index: 99; 
}
#tabs-top a {
    text-decoration: none;
    color: #333333;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
#tabs-top a:hover {
    color: #059669;
    background-color: #e0f2f1; 
}

#tabs-top .active {
    color: #ffffff;
    background-color: #059669; 
}

/* --- 3. HOME PAGE --- */

.content-card {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.content-card img {
    width: 100%; 
    height: auto;
    display: block;
    margin: 0 0 16px 0; 
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sale-details {
    padding: 0 16px;
}
.divider {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

/* --- 3. ABOUT PAGE --- */

.info-section {
    padding: 0 0 16px 0; 
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.info-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto; 
    max-width: 600px; 
    border-radius: 12px;
}
.info-section h3 {
    color: #059669;
    font-size: 18px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Trading Hours Table styling */

.trading-hours {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.trading-hours th, .trading-hours td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.trading-hours th {
    color: #059669;
    font-weight: 700;
}


/* --- 4. MENU BUTTON STYLING (Bottom Tabs) */

#tabs-bottom {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 10px 0;
    z-index: 100; 
}
#tabs-bottom a {
    text-decoration: none;
    color: #333333;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
#tabs-bottom a:hover {
    color: #059669; 
    background-color: #e0f2f1;
}

/* --- SHOPS DIRECTORY --- */

.directory-title {
    text-align: center; 
    color: #059669;
    font-size: 1.8em;
    padding: 10px 0 20px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
    padding-bottom: 10px;
}

.shop-item {
    text-align: center;
    text-decoration: none !important; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 15px; 
    border: 2px solid #e0f2f1; 
    transition: all 0.2s ease-in-out;
    color: #333; 
}

.shop-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #059669; 
    cursor: pointer;
}

.shop-item img {
    
    width: 70px; 
    height: 70px;
    object-fit: contain;
    margin: 15px auto 10px auto; 
    border-radius: 50%; 
    border: 3px solid #e0f2f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shop-item h3 {
    color: #059669;
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
    padding: 0 10px; 
}

.shop-item p {
    font-size: 0.90em;
    color: #777;
    margin: 0;
    padding: 0 10px;
    flex-grow: 1; 
    text-decoration: none;
}


/* --- INDIVIDUAL SHOP DETAIL --- */

.shop-hero-image {
    width: 60%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px; 
    margin: 20px auto 25px auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.shop-interior-images {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 15px 0;
}

.interior-image {
    width: 48%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- MAP PAGE --- */

.mall-map{
    text-align: center; 
    color: #777; 
    font-size: 0.8em; 
    margin-top: -15px;
    width: 100%;
}

/* --- MOVIE TEXT SECTIONS --- */

.movie-details h3 {
            color: #059669;
            margin-top: 15px;
            font-size: 1.1em;
        }
.movie-details p.info-line {
            font-weight: 600;
            color: #333;
            margin: 5px 0;
        }

.movie-details p{
            text-align: center;
        }

.movie-details .showtimes {
            font-size: 1.1em;
            color: #ef4444; 
            margin: 10px 0 20px 0;
            font-weight: 700;
        }
.movie-details .showtimes span {
            background-color: #e0f2f1;
            padding: 5px 8px;
            border-radius: 5px;
            margin-right: 8px;
            display: inline-block;
            margin-bottom: 5px;
            color: #ef4444;
        }

.movie-details{
            text-align: center;
        }

.movie-poster {
    width: 40%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px; 
    margin: auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        }

.button-group {
    display: flex;
    justify-content: center; 
    gap: 15px; 
    margin: 20px 0;
    padding: 0 10px; 
}

.movie-action-button {
    flex: 0 1 auto;
    max-width: 200px;
    padding: 14px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1em; 
    transition: all 0.2s ease-in-out;
}

    /* --- BOOK BUTTON --- */

.book-button {
    background-color: #059669;
    color: white;
    box-shadow: 0 6px 15px rgba(5, 150, 105, 0.4); 
    border: 1px solid #047857; 
}

.book-button:hover {
    background-color: #047857;
    transform: translateY(-2px); 
}


input{
      width: 100%;
      height: 25px;
      margin : 12px 0;
      border : 1px solid #929292;
}

textarea{
      width: 100%;
      height :25px;
      margin : 12px 0;
      border : 1px solid #929292;
}

.button{
      display : block;
      background-color: #059669;
      text-decoration : none;
      text-align  : center;
      color       : white;
      font-size   : 16px;
      font-weight : 600;
      margin : 12px 0;
      padding : 8px 0;
}

     /* --- SUCCESS MESSAGE ---   */

#success-message {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 2000;
        align-items: center;
        justify-content: center;
     }

.success-content {
        background-color: white;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        max-width: 80%;
     }

.success-content h2 {
        color: #059669;
        margin-top: 0;
    }

.success-content button {
        padding: 10px 20px;
        background-color: #059669;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 15px;
    }

.thank-you-content {
        text-align: center;
        max-width: 400px;
        margin: 40px auto;
        padding: 20px;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

.thank-you-content h2 {
        color: #059669;
        font-size: 1.8em;
        margin-top: 0;
    }

.thank-you-content p {
        padding: 0;
        text-align: center;
        margin-bottom: 25px;
    }

.thank-you-content .home-button {
        display: inline-block;
        padding: 12px 25px;
        background-color: #059669;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 700;
        transition: background-color 0.2s;
    }

.thank-you-content .home-button:hover {
        background-color: #047857;
    }

    

