html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.gpbl-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .gpbl-header h1 {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        margin: 0;
    }

    .gpbl-header .subtitle {
        font-size: 12px;
        text-align: center;
        opacity: 0.9;
        margin-top: 5px;
    }

/* Banner Styles */
.gpbl-banner {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .gpbl-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
        opacity: 0.3;
    }

.gpbl-banner-content {
    position: relative;
    z-index: 1;
}

.gpbl-banner h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gpbl-banner p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.5;
}

/* Content Styles */
.gpbl-content {
    flex: 1;
    padding: 20px;
    max-width: 100%;
    width: 100%;
}

.content-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

    .content-card h3 {
        color: #495057;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f8f9fa;
    }

    .content-card p {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .btn-primary:active {
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 480px) {
    .gpbl-header {
        padding: 12px 15px;
    }

        .gpbl-header h1 {
            font-size: 18px;
        }

    .gpbl-banner {
        padding: 20px 15px;
    }

        .gpbl-banner h2 {
            font-size: 20px;
        }

    .gpbl-content {
        padding: 15px;
    }

    .content-card {
        padding: 15px;
        margin-bottom: 15px;
    }

        .content-card h3 {
            font-size: 16px;
        }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #667eea;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Safe Area for Notch */
@supports (padding-top: env(safe-area-inset-top)) {
    .gpbl-header {
        padding-top: calc(15px + env(safe-area-inset-top));
    }
}
/*index*/

.gpbl-content {
    padding: 0;
    margin: 0;
}

.greeting-section {
    background: white;
    /* padding: 40px 20px; */
    text-align: center; 
    margin-top :8px;
    /*left: calc(50% - 165px);
    position: absolute;
    top: 470px;*/
    font-style: italic;
    /* border-bottom: 1px solid #e9ecef; */
}

.greeting-title {
    font-size: 28px;
    font-weight: bold;
    color: black;
    line-height: 1.3;
}

.greeting-subtitle {
    font-size: 18px;
    color: black;
    line-height: 1.4;
}

.business-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 30px 20px;
    max-width: 900px;
    margin: 8px auto 0px auto;
}

.box-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

    

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    gap:15px
}

.box-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin: 0;
    flex: 1;
    padding-top: 8px;
}

.download-button {
    background: white;
    
    border: none;
    padding: 10px 20px 10px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

    .download-button.eshop {
        color: #7540F2;
    }

    .download-button.cukcuk {
        color: #0068FF;
    }


.box-description {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    padding: 12px 12px;
    text-align: left;
    margin: 0;
}

.cta-section {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    margin-top: 30px;
}

.cta-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 16px;
    color: black;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    display: inline-block;
}

/* Mobile responsive */
    @media (max-width: 768px) {
        .greeting-title {
            font-size: 24px;
        }

        .greeting-subtitle {
            font-size: 16px;
        }

        .business-options {
            grid-template-columns: 1fr;
            padding: 0px 15px;
        }

        .box-header {
            align-items: flex-start;
            gap: 15px;
        }

        .download-button {
            align-self: flex-start;
        }

        .cta-title {
            font-size: 20px;
        }

        .cta-button {
            font-size: 16px;
            padding: 12px 30px;
        }
    }

.box-header.eshop {
    background: #7540F2;
    border-radius: 15px 15px 0 0;
}

.box-header.cukcuk {
    background: #0068FF;
    border-radius: 15px 15px 0 0;
}