/**
 * DigitAlb Shop - Global Stylesheet
 * Base styles for entire site
 */

/* === GLOBAL STYLES === */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #6c757d;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #1f2937;
    --border-color: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fafafa;
}

/* === NAVIGATION === */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

/* === BUTTONS === */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* === CARDS === */
.card {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

/* === CART ITEMS === */
.cart-item {
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.cart-item img {
    max-width: 100%;
    height: auto;
}

/* === FORMS === */
.form-control,
.form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.625rem 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* === BADGES === */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

/* === ALERTS === */
.alert {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

/* === BREADCRUMB === */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

/* === FOOTER === */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}

/* === STICKY SIDEBAR === */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
}

/* === QUANTITY INPUT === */
.input-group-sm .form-control,
.input-group-sm .btn {
    font-size: 0.875rem;
}

.quantity-input {
    max-width: 60px;
    text-align: center;
    padding: 0.25rem 0.5rem;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    opacity: 1;
}

/* === VARIANT SELECTION === */
.variant-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-option:hover {
    background-color: #f8f9fa;
    border-color: var(--primary-color) !important;
}

.variant-option .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
}

.variant-option .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* === PRODUCT IMAGE CONTAINER === */
.product-image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* === CHECKOUT PROGRESS === */
.nav-pills .nav-link {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
}

/* === ORDER SUMMARY === */
.card.sticky-top {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* === LIST GROUP === */
.list-group-item {
    border-color: #dee2e6;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* === DROPDOWN === */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.05);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }
    
    .card.sticky-top {
        position: relative !important;
    }
}

@media (max-width: 767.98px) {
    .cart-item .row > div {
        margin-bottom: 1rem;
    }
    
    .cart-item .col-md-2,
    .cart-item .col-md-4 {
        text-align: center !important;
    }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* === LOADING SPINNER === */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* === UTILITIES === */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
    border-radius: 0.5rem !important;
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .footer,
    .btn,
    .alert {
        display: none !important;
    }
}

/* ============================================
   PWA BANNERS
   ============================================ */
#pwa-install-banner,
#pwa-push-banner,
#pwa-update-banner {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 420px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 16px;
    z-index: 99999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: bottom 0.4s ease;
}

#pwa-install-banner.show,
#pwa-push-banner.show,
#pwa-update-banner.show {
    bottom: 20px;
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.pwa-banner-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pwa-banner-text {
    flex: 1;
    min-width: 0;
}

.pwa-banner-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.pwa-banner-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.pwa-btn-install {
    background: #e31e24;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.pwa-btn-install:hover {
    background: #c41820;
    transform: scale(1.05);
}

.pwa-btn-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
}

.pwa-btn-close:hover {
    color: white;
}

@media (max-width: 480px) {
    #pwa-install-banner,
    #pwa-push-banner,
    #pwa-update-banner {
        width: calc(100% - 20px);
        padding: 14px;
    }
    
    .pwa-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .pwa-btn-install {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================
   HEADER (from header.php)
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e31e24;
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
    background: #f8f9fa;
    color: #e31e24;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions .btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #333;
    border: none;
    font-size: 1.1rem;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.header-actions .btn-icon:hover {
    background: #e31e24;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e31e24;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.lang-dropdown .dropdown-menu,
.user-dropdown .dropdown-menu {
    min-width: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: none;
    padding: 6px;
}

.user-dropdown .dropdown-item i {
    margin-right: 8px;
    color: #666;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f8f9fa;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE MENU (from header.php)
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    max-width: 70vw;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    gap: 8px;
}

.mobile-menu-logo {
    font-size: 1rem;
    font-weight: 800;
    color: #e31e24;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.mobile-menu-logo img {
    height: 22px;
    max-width: 100%;
    object-fit: contain;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: #e31e24;
    color: #fff;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-cart-preview {
    margin: 0 10px 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-cart-preview:hover {
    color: #fff;
}

.mobile-cart-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-cart-left i {
    font-size: 1rem;
}

.mobile-cart-count {
    font-size: 0.75rem;
    opacity: 0.8;
}

.mobile-cart-total {
    font-size: 0.95rem;
    font-weight: 700;
}

.mobile-cart-empty {
    margin: 0 10px 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
}

.mobile-cart-empty i {
    font-size: 1rem;
    margin-right: 6px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background: #f8f9fa;
    color: #e31e24;
}

.mobile-menu-item i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    color: #888;
}

.mobile-menu-item.active i,
.mobile-menu-item:hover i {
    color: #e31e24;
}

.mobile-menu-divider {
    height: 1px;
    background: #eee;
    margin: 6px 14px;
}

.mobile-lang-selector {
    display: flex;
    gap: 4px;
    padding: 6px 10px;
}

.mobile-lang-btn {
    flex: 1;
    padding: 6px 4px;
    border: 2px solid #eee;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    border-color: #e31e24;
    color: #e31e24;
    background: #fff5f5;
}

.mobile-lang-btn img {
    width: 14px;
    height: 10px;
    object-fit: cover;
    border-radius: 1px;
    vertical-align: middle;
}

.mobile-menu-footer {
    padding: 10px 12px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-footer-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-menu-footer-links a {
    color: #666;
    font-size: 0.65rem;
    text-decoration: none;
}

.mobile-menu-footer-links a:hover {
    color: #e31e24;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.mobile-menu-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.mobile-menu-social a:hover {
    background: #e31e24;
    color: #fff;
}

/* Header Responsive */
@media (max-width: 991px) {
    .header-nav,
    .header-actions .d-lg-flex {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-menu-toggle {
        display: none !important;
    }
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   FOOTER (from footer.php)
   ============================================ */

/* Trust Badges */
.footer-trust-badges {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px 20px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-trust-badges .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
}

.footer-trust-badges .trust-item i {
    color: #e63946;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-trust-badges .trust-item span {
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .footer-trust-badges .trust-item {
        padding: 14px 10px;
    }
    
    .footer-trust-badges .trust-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .footer-trust-badges {
        padding: 20px 12px;
    }
    
    .trust-badges-grid {
        gap: 8px;
    }
    
    .footer-trust-badges .trust-item {
        padding: 12px 8px;
        flex-direction: column;
        gap: 6px;
    }
    
    .footer-trust-badges .trust-item span {
        font-size: 0.75rem;
    }
}

/* Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-input-wrapper {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 18px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-btn {
    background: #fff;
    color: #e63946;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #f8f9fa;
    transform: scale(1.02);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.newsletter-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #fff;
}

.newsletter-message.error {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .newsletter-text h4 {
        justify-content: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: none;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
        padding: 8px;
    }
    
    .newsletter-input {
        text-align: center;
        padding: 12px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }
}

/* Footer Main */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding-top: 0;
}

.site-footer .container {
    padding-top: 40px;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #e63946;
    transform: translateY(-3px);
}

.site-footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #e63946;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #e63946;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact i {
    color: #e63946;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #e63946;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.payment-icons img {
    height: 24px;
    width: auto;
}

.security-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 0;
}

.security-note i {
    color: #10b981;
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.copyright,
.partner-note {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.partner-note strong {
    color: #e63946;
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
    
    .site-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links,
    .footer-contact li,
    .payment-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}