/* CHEROQEE IMPORT AND EXPORT TRADING CO. - Slim Physical Business Card Styles */

/* --- Footer Button Integration --- */
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: #222222;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: #D4AF37 !important;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #B8860B 100%);
    color: #0E0E0E !important;
    border-color: #D4AF37;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.footer-social-btn i {
    font-size: 15px;
}

/* --- Modal Backdrop --- */
.cheroqee-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 12, 24, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 12px;
    box-sizing: border-box;
}

.cheroqee-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* --- Modal Main Wrapper --- */
.cheroqee-card-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 530px;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: scale(0.92) translateY(15px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.cheroqee-modal-backdrop.active .cheroqee-card-modal-wrapper {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.cheroqee-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #d4af37;
    border: none;
    color: #0b1d3a;
    font-size: 1.1rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
}

.cheroqee-modal-close:hover {
    background: #ffffff;
    color: #0b1d3a;
    transform: scale(1.1);
}

/* --- REAL SLIM PHYSICAL BUSINESS CARD CONTAINER (LUXURY OBSIDIAN & GOLD) --- */
.slim-visiting-card {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M 0 30 L 30 0 L 60 30 L 30 60 Z' fill='none' stroke='%23D4AF37' stroke-width='0.75' stroke-opacity='0.12'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%23D4AF37' fill-opacity='0.15'/%3E%3Cpath d='M 15 15 L 45 45 M 45 15 L 15 45' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E"), radial-gradient(circle at 30% 20%, #0d213f 0%, #050b14 65%, #02050a 100%);
    border: 1.8px solid #d4af37;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 18px;
    align-items: center;
    box-sizing: border-box;
}

/* Corner Filigree Line Accents */
.card-corner-filigree {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: #d4af37;
    border-style: solid;
    pointer-events: none;
    z-index: 3;
    opacity: 0.85;
}
.card-corner-filigree.top-left {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}
.card-corner-filigree.top-right {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}
.card-corner-filigree.bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}
.card-corner-filigree.bottom-right {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

/* Artistic Metallic Gold Border & Filigree Accents */
.slim-visiting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #fff099 50%, #d4af37 100%);
}

.slim-visiting-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #fff099 50%, #d4af37 100%);
}

/* Card Left Info Block */
.card-left-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 2;
}

.card-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.card-brand-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.5));
}

.card-brand-names {
    display: flex;
    flex-direction: column;
}

.card-title-en {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #FFF099 0%, #D4AF37 40%, #F3E5AB 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

.card-title-cn {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.75rem;
    color: #f3e5ab;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

/* CEO Leadership Block */
.card-ceo-block {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.28);
}

.card-ceo-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFF099 0%, #D4AF37 40%, #F3E5AB 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.card-ceo-name i {
    color: #d4af37;
    font-size: 0.75rem;
    -webkit-text-fill-color: #d4af37;
}

.card-ceo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.card-badge-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Card Contact Details List */
.card-details-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.card-detail-item i {
    color: #d4af37;
    font-size: 0.72rem;
    width: 12px;
    text-align: center;
}

.card-detail-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-detail-item a:hover {
    color: #f3e5ab;
}

/* Card Right QR Block */
.card-right-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.card-qr-box {
    background: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.25);
    display: inline-block;
}

.card-qr-canvas {
    display: block;
    width: 110px;
    height: 110px;
}

.card-qr-label {
    font-size: 0.65rem;
    color: #d4af37;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* --- COMPACT ACTION BUTTONS ROW --- */
.card-action-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.btn-compact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-compact-wa {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-compact-wa:hover {
    background: #1ebc57;
    transform: translateY(-2px);
}

.btn-compact-vcard {
    background: linear-gradient(135deg, #d4af37, #b89228);
    color: #0b1d3a;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-compact-vcard:hover {
    background: linear-gradient(135deg, #e5c148, #c5a059);
    transform: translateY(-2px);
}

.btn-compact-dl {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-compact-dl:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* --- RESPONSIVE BREAKPOINTS (Mobile Optimization) --- */
@media (max-width: 520px) {
    .cheroqee-card-modal-wrapper {
        max-width: 100%;
    }

    .slim-visiting-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 14px;
        text-align: center;
    }

    .card-left-info {
        align-items: center;
        text-align: center;
    }

    .card-brand-row {
        justify-content: center;
    }

    .card-title-en {
        font-size: 0.88rem;
    }

    .card-details-list {
        align-items: center;
    }

    .card-detail-item {
        font-size: 0.72rem;
        white-space: normal;
    }

    .card-right-qr {
        margin-top: 4px;
    }

    .card-qr-canvas {
        width: 100px;
        height: 100px;
    }

    .card-action-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .btn-compact-action {
        padding: 10px;
        font-size: 0.82rem;
    }
}

@media (max-width: 380px) {
    .slim-visiting-card {
        padding: 12px 10px;
        border-radius: 16px;
    }

    .card-brand-logo {
        height: 38px;
        width: 38px;
    }

    .card-title-en {
        font-size: 0.8rem;
    }

    .card-qr-canvas {
        width: 85px;
        height: 85px;
    }

    .btn-compact-action {
        padding: 8px 6px;
        font-size: 0.76rem;
    }
}
