/* Professional Icon System - Replaces Emojis */

/* Base icon styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.icon-large {
    width: 48px;
    height: 48px;
}

/* Checkmark icon - replaces ✓ */
.icon-check {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid var(--success, #27AE60);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Truck/Shipping icon - replaces 🚚 */
.icon-truck {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-truck::before {
    content: '📦';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1;
}

/* Heart icon - replaces 💚 */
.icon-heart {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-heart::before {
    content: '♥';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1;
    color: var(--success, #27AE60);
}

/* Star icon - replaces ⭐ */
.icon-star {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-star::before {
    content: '★';
    font-size: 20px;
    color: var(--accent-orange, #E67E22);
    line-height: 1;
}

/* Phone icon - replaces 📞 */
.icon-phone {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.icon-phone::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

/* Book/Education icon - replaces 📖 */
.icon-book {
    position: relative;
    width: 18px;
    height: 20px;
    border: 2px solid var(--dark-accent);
    border-radius: 2px;
}

.icon-book::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--dark-accent);
}

/* Meditation/Yoga icon - replaces 🧘 */
.icon-meditation {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-meditation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--dark-accent);
    border-radius: 50%;
}

.icon-meditation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--dark-accent);
}

/* Cooking/Chef icon - replaces 🍳 */
.icon-cooking {
    position: relative;
    width: 22px;
    height: 20px;
}

.icon-cooking::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--dark-accent);
    border-radius: 0 0 11px 11px;
}

.icon-cooking::after {
    content: '';
    position: absolute;
    top: 0;
    right: 2px;
    width: 8px;
    height: 10px;
    border: 2px solid var(--dark-accent);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

/* Home icon - replaces 🏠 */
.icon-home {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-home::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2px;
    right: 2px;
    height: 12px;
    background: var(--dark-accent);
    border-radius: 2px;
}

.icon-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--dark-accent);
    margin: 0 auto;
}

/* Fire icon - replaces 🔥 */
.icon-fire {
    position: relative;
    width: 18px;
    height: 20px;
}

.icon-fire::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 16px;
    background: var(--accent-orange, #E67E22);
    border-radius: 50% 50% 0 0;
    clip-path: polygon(50% 0%, 100% 50%, 80% 100%, 50% 80%, 20% 100%, 0% 50%);
}

/* Wind/Air icon - replaces 💨 */
.icon-wind {
    position: relative;
    width: 20px;
    height: 16px;
}

.icon-wind::before,
.icon-wind::after {
    content: '';
    position: absolute;
    left: 0;
    height: 2px;
    background: var(--dark-accent);
    border-radius: 1px;
}

.icon-wind::before {
    top: 3px;
    width: 16px;
}

.icon-wind::after {
    bottom: 3px;
    width: 20px;
}

/* Sleep/Moon icon - replaces 😴 */
.icon-sleep {
    position: relative;
    width: 18px;
    height: 18px;
    background: var(--dark-accent);
    border-radius: 50%;
    box-shadow: inset 6px -2px 0 0 var(--white);
}

/* Sparkle icon - replaces ✨ */
.icon-sparkle {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-sparkle::before,
.icon-sparkle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-orange, #E67E22);
}

.icon-sparkle::before {
    width: 2px;
    height: 16px;
}

.icon-sparkle::after {
    width: 16px;
    height: 2px;
}

/* Leaf/Natural icon - replaces 🌿 */
.icon-leaf {
    position: relative;
    width: 18px;
    height: 20px;
}

.icon-leaf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 18px;
    background: var(--success, #27AE60);
    border-radius: 0 100% 0 100%;
    transform: rotate(-20deg);
}

.icon-leaf::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 6px;
    width: 1px;
    height: 12px;
    background: var(--success, #27AE60);
    transform: rotate(-20deg);
}

/* No/Prohibited icon - replaces 🚫 */
.icon-no {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
}

.icon-no::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e74c3c;
    transform: translateY(-50%) rotate(-45deg);
}

/* Bacteria/Germ icon - replaces 🦠 */
.icon-bacteria {
    position: relative;
    width: 18px;
    height: 18px;
    background: var(--dark-accent);
    border-radius: 50% 40% 60% 50%;
}

.icon-bacteria::before,
.icon-bacteria::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dark-accent);
    border-radius: 50%;
}

.icon-bacteria::before {
    top: -3px;
    left: 2px;
}

.icon-bacteria::after {
    bottom: -3px;
    right: 2px;
}

/* Diamond/Gem icon - replaces 💎 */
.icon-diamond {
    position: relative;
    width: 18px;
    height: 20px;
}

.icon-diamond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 8px solid var(--accent-orange, #E67E22);
}

.icon-diamond::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 12px solid var(--accent-orange, #E67E22);
}

/* Light bulb - replaces 💡 */
.icon-bulb {
    position: relative;
    width: 16px;
    height: 20px;
}

.icon-bulb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 14px;
    background: var(--accent-orange, #E67E22);
    border-radius: 50% 50% 0 0;
}

.icon-bulb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: var(--dark-accent);
    border-radius: 0 0 2px 2px;
}

/* Wrench/Tool - replaces 🔧 */
.icon-tool {
    position: relative;
    width: 18px;
    height: 18px;
}

.icon-tool::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--dark-accent);
    border-radius: 2px;
    transform: rotate(45deg);
}

.icon-tool::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 3px;
    background: var(--dark-accent);
    transform: rotate(-45deg);
    transform-origin: left bottom;
}

/* Massage/Spa - replaces 💆 */
.icon-spa {
    position: relative;
    width: 20px;
    height: 16px;
}

.icon-spa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--dark-accent);
    border-radius: 50%;
}

.icon-spa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--dark-accent);
    border-radius: 3px;
}

/* Steam/Hot - replaces ♨️ */
.icon-steam {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-steam::before,
.icon-steam::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 14px;
    background: var(--dark-accent);
    border-radius: 2px 2px 0 0;
}

.icon-steam::before {
    left: 5px;
    clip-path: path('M 1,14 Q 1,10 0,7 Q -1,4 1,0 L 1,0 Q 3,4 2,7 Q 1,10 1,14 Z');
}

.icon-steam::after {
    right: 5px;
    clip-path: path('M 1,14 Q 1,10 0,7 Q -1,4 1,0 L 1,0 Q 3,4 2,7 Q 1,10 1,14 Z');
}

/* Meat/Food - replaces 🍖 */
.icon-food {
    position: relative;
    width: 20px;
    height: 16px;
    background: var(--dark-accent);
    border-radius: 40% 60% 40% 60%;
}

.icon-food::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 10px;
    background: var(--dark-accent);
    border-radius: 0 3px 3px 0;
}

/* Info icon - i in a circle */
.icon-info {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange, #E67E22);
    border-radius: 50%;
    background: transparent;
}

.icon-info::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background: var(--accent-orange, #E67E22);
    border-radius: 50%;
}

.icon-info::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 9px;
    background: var(--accent-orange, #E67E22);
    border-radius: 1px;
}

/* Circle checkmark for larger use cases */
.icon-check-circle {
    position: relative;
    width: 40px;
    height: 40px;
    border: 3px solid var(--success, #27AE60);
    border-radius: 50%;
    background: transparent;
}

.icon-check-circle::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    width: 8px;
    height: 16px;
    border: solid var(--success, #27AE60);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Trust badge specific icons */
.trust-badge .icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
}

.trust-badge .icon-check-circle,
.trust-badge .icon-truck,
.trust-badge .icon-heart {
    transform: scale(1.5);
}

/* Generated Icon Image Styles */
.icon-img {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    object-fit: contain;
}

.icon-img.icon-large {
    width: 48px;
    height: 48px;
}

/* Trust badge icons */
.trust-badge .icon-img {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: block;
}

/* Benefit card icons */
.benefit-card .icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

/* Education card icons */
.education-card .icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

/* Value card icons */
.value-card .icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

/* Contact info phone icons */
.contact-info .icon-img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

/* Mini benefit icons */
.mini-benefit .icon-img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Usage guide checkmarks */
.usage-card li .icon-img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Product features list */
.product-features li .icon-img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
