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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.btn-outline-violet {
    border: 1px solid var(--primary-violet);
    color: var(--primary-violet);
    border-radius: 20px;
    transition: 0.3s;
}

    .btn-outline-violet:hover {
        background-color: var(--primary-violet);
        color: white;
    }

.bg-soft-violet {
    font-size: 0.8rem;
    padding: 5px 12px;
    font-weight: 600;
}

#products .card {
    transition: all 0.3s ease;
}

    #products .card:hover {
        box-shadow: 0 10px 30px rgba(111, 66, 193, 0.15) !important;
    }

.btn-outline-danger {
    border-color: #ff7675;
    color: #ff7675;
}

    .btn-outline-danger:hover {
        background-color: #ff7675;
        color: white;
    }

.bg-violet-gradient {
    background: linear-gradient(45deg, #6f42c1, #a29bfe);
}

.form-control, .form-select {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-violet);
        box-shadow: 0 0 0 0.25 row rgba(111, 66, 193, 0.1);
    }

.btn-violet {
    background-color: #6f42c1;
    color: white;
    transition: transform 0.2s;
}

    .btn-violet:hover {
        background-color: #5a32a3;
        color: white;
        transform: translateY(-2px);
    }

.footer-section {
    /* Violet Gradient သုံးထားပါတယ် (Professional ဆန်ရန်) */
    background: linear-gradient(135deg, #4b2c82 0%, #6f42c1 100%) !important;
    color: #ffffff !important; /* စာသားအားလုံး အဖြူရောင် */
    padding: 60px 0 20px 0;
}

    /* ခေါင်းစဉ်များ (Quick Links, Contact Us စသည်) */
    .footer-section h5 {
        color: #ffd700 !important; /* ရွှေရောင် သို့မဟုတ် အဖြူရောင် (Gold/White) */
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    /* Link များနှင့် စာသားများ */
    .footer-section a,
    .footer-section p,
    .footer-section .text-muted {
        color: rgba(255, 255, 255, 0.85) !important; /* အဖြူရောင်ကို အလင်းအနည်းငယ်လျှော့ထားခြင်း */
        text-decoration: none;
        transition: 0.3s ease;
    }

        /* Mouse တင်လိုက်လျှင် */
        .footer-section a:hover {
            color: #ffffff !important;
            padding-left: 5px; /* အနည်းငယ် ရွေ့သွားသော effect */
        }

/* Social Icons */
.social-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
}