@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');
.vcard-container { display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 40px 20px; background: radial-gradient(circle at top right, #fdfbfb 0%, #ebedee 100%); font-family: 'Nunito', sans-serif; }
.vc8-container { background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); width: 100%; max-width: 550px; position: relative; overflow: hidden; display: flex; min-height: 420px; margin: auto; }
.vc8-left-curve { position: absolute; left: 0; top: 0; bottom: 0; width: 160px; background: linear-gradient(135deg, #5b5ec1 0%, #8550a6 100%); border-top-right-radius: 200px; border-bottom-right-radius: 200px; z-index: 1; }
.vc8-profile-wrapper { position: absolute; left: 100px; top: 50%; transform: translateY(-50%); z-index: 2; }
.vc8-profile-pic { width: 110px; height: 110px; border-radius: 50%; border: 5px solid #fff; background: #0056b3; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.vc8-profile-pic img { width: 100%; height: 100%; object-fit: cover; }
.vc8-initials { font-size: 2.5rem; font-weight: 700; }
.vc8-content { margin-left: 230px; padding: 40px 40px 40px 0; width: calc(100% - 230px); z-index: 2; display: flex; flex-direction: column; justify-content: space-between; }
.vc8-header { margin-bottom: 25px; }
.vc8-name { font-size: 1.5rem; margin: 0 0 5px 0; font-weight: 800; color: #222; }
.vc8-designation { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #8550a6; font-weight: 700; margin-bottom: 12px; }
.vc8-divider { width: 50px; height: 4px; background: #5b5ec1; border-radius: 4px; }
.vc8-contact-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.vc8-contact-item { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: #555; font-weight: 600; text-decoration: none; transition: 0.3s; }
.vc8-contact-item:hover { color: #5b5ec1; transform: translateX(5px); }
.vc8-contact-item i { color: #5b5ec1; font-size: 1.1rem; width: 20px; text-align: center; }
.vc8-socials { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.vc8-socials a { width: 36px; height: 36px; border-radius: 50%; background: #f4f6f9; color: #444; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.vc8-socials a:hover { background: #8550a6; color: #fff; transform: translateY(-4px); box-shadow: 0 5px 15px rgba(133,80,166,0.3); }
.vc8-save-btn { display: block; background: linear-gradient(135deg, #5b5ec1 0%, #8550a6 100%); color: #fff; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: 0.3s; box-shadow: 0 6px 20px rgba(91,94,193,0.3); }
.vc8-save-btn:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
@media (max-width: 550px) { 
    .vcard-container { padding: 15px; }
    .vc8-container { flex-direction: column; align-items: center; padding-top: 0; min-height: auto; } 
    .vc8-left-curve { width: 100%; height: 140px; border-radius: 0; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; } 
    .vc8-profile-wrapper { position: absolute; left: 50%; top: 140px; transform: translate(-50%, -50%); } 
    .vc8-content { margin-left: 0; padding: 210px 25px 30px; width: 100%; align-items: center; text-align: center; } 
    .vc8-header { display: flex; flex-direction: column; align-items: center; }
    .vc8-contact-item { justify-content: center; }
    .vc8-save-btn { width: 100%; box-sizing: border-box; }
}

.vcard-container a { text-decoration: none !important; cursor: pointer !important; }
.vcard-container a:hover { text-decoration: none !important; }

/* Catalog Styles */
.vcard-container { flex-direction: column; }
.vcard-catalog-wrapper { margin-top: 40px; width: 100%; max-width: 500px; }
.vcard-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.vcard-section-title { font-size: 1.3rem; font-weight: 800; color: inherit; }
.vcard-section-action { font-size: 0.9rem; font-weight: 700; text-decoration: none; padding: 5px 15px; border-radius: 20px; background: rgba(0,0,0,0.05); transition: 0.3s; }
.vcard-section-action:hover { background: rgba(0,0,0,0.1); }
.vcard-products { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.vcard-product-item { background: #fff; border-radius: 15px; padding: 12px; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-decoration: none; transition: 0.3s; color: #222; }
.vcard-product-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); color: #222; }
.vcard-product-icon-wrap { width: 100%; height: 140px; border-radius: 10px; overflow: hidden; margin-bottom: 12px; background: #f8f9fa; }
.vcard-product-icon-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.vcard-product-item:hover .vcard-product-icon-wrap img { transform: scale(1.05); }
.vcard-product-details { flex: 1; }
.vcard-product-name { font-weight: 700; font-size: 1rem; margin-bottom: 5px; line-height: 1.3; }
.vcard-product-desc { font-size: 0.8rem; color: #666; line-height: 1.4; margin-bottom: 12px; }
.vcard-product-price { font-weight: 800; font-size: 1.1rem; color: #5b5ec1; margin-top: auto; }
@media (max-width: 480px) { .vcard-products { grid-template-columns: 1fr 1fr; gap: 10px; } .vcard-product-icon-wrap { height: 110px; } .vcard-product-item { padding: 10px; } .vcard-product-name { font-size: 0.9rem; } .vcard-product-price { font-size: 1rem; } }