:root {
    --primary-color: #426dca;
    --primary-dark: #357ABD;
    --primary-light: #6BA3E8;
    --background: #FFFFFF;
    --surface: #F5F7FA;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --border-color: #E1E8ED;
    --shadow: rgba(74, 144, 226, 0.1);
    --shadow-hover: rgba(74, 144, 226, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 0.15rem;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0px 1px 1px rgb(255, 255, 255));
    transition: transform 0.3s ease;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Main Content */
main.container {
    flex: 1;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

section {
    margin-bottom: 3rem;
}

/* Banner Section */
.banner-section {
    margin-bottom: 2rem;
    margin-top: 0;
}

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

/* Products Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-decoration::before {
    left: -20px;
}

.title-decoration::after {
    right: -20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.banner-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Shortcuts Section */
.shortcuts-section {
    margin-bottom: 3rem;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.shortcut-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 12px var(--shadow);
    position: relative;
    overflow: hidden;
}

.shortcut-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.shortcut-card:hover::before {
    transform: translateX(100%);
}

.shortcut-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px var(--shadow-hover);
    border-color: transparent;
}

.shortcut-icon-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.shortcut-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shortcut-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shortcut-card:hover .shortcut-icon::after {
    opacity: 1;
}

.shortcut-card:hover .shortcut-icon {
    transform: scale(1.1) rotate(5deg);
}

.shortcut-icon svg {
    width: 36px;
    height: 36px;
    z-index: 1;
    position: relative;
}

.shortcut-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.whatsapp-icon {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    padding: 0;
    overflow: hidden;
}

.ml-icon {
    box-shadow: 0 4px 15px rgba(255, 241, 89, 0.3);
    padding: 0;
    overflow: hidden;
}

.shopee-icon {
    box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3);
    padding: 0;
    overflow: hidden;
}

.shortcut-content {
    flex: 1;
    width: 100%;
}

.shortcut-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.shortcut-card:hover .shortcut-content h3 {
    color: var(--primary-color);
}

.shortcut-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.shortcut-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.shortcut-card:hover .shortcut-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(74, 144, 226, 0.25);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
    z-index: 2;
}

.product-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-button:hover::before {
    left: 100%;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.product-button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--background);
    border: 1px solid var(--border-color);
}

.footer-link:hover {
    color: var(--primary-color);
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.footer-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-link span {
    word-break: break-word;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .product-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.875rem 0;
    }

    .navbar {
        gap: 0.75rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .banner-container {
        border-radius: 16px;
    }

    .banner-image {
        max-height: 300px;
    }

    .shortcuts-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .shortcut-card {
        padding: 1rem 1.25rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .shortcut-icon-wrapper {
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .shortcut-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .shortcut-icon svg {
        width: 26px;
        height: 26px;
    }

    .shortcut-icon img {
        border-radius: 14px;
    }

    .shortcut-content {
        flex: 1;
        min-width: 0;
    }

    .shortcut-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .shortcut-content p {
        font-size: 0.85rem;
    }

    .shortcut-arrow {
        position: static;
        bottom: auto;
        right: auto;
        font-size: 1.25rem;
        flex-shrink: 0;
        opacity: 0.5;
    }

    .product-image {
        height: 220px;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 0.75rem 0;
    }

    main {
        padding: 1.5rem 0;
    }

    .banner-container {
        border-radius: 12px;
    }

    .banner-image {
        max-height: 200px;
    }

    .shortcuts-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .shortcut-card {
        padding: 0.875rem 1rem;
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
    }

    .shortcut-icon-wrapper {
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .shortcut-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .shortcut-icon svg {
        width: 24px;
        height: 24px;
    }

    .shortcut-icon img {
        border-radius: 12px;
    }

    .shortcut-content {
        flex: 1;
        min-width: 0;
    }

    .shortcut-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .shortcut-content p {
        font-size: 0.8rem;
    }

    .shortcut-arrow {
        position: static;
        bottom: auto;
        right: auto;
        font-size: 1.1rem;
        flex-shrink: 0;
        opacity: 0.5;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .product-image {
        height: 250px;
    }

    footer {
        padding: 1.5rem 0 1.25rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-link {
        padding: 0.625rem;
        font-size: 0.85rem;
    }

    .footer-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 0.875rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .shortcuts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .banner-container {
        max-width: 100%;
    }

    .banner-image {
        max-height: 400px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-link {
        flex: 0 1 auto;
        min-width: 200px;
        max-width: 300px;
    }
}

