/* Birthday AR MultiTarget - Frontend Styles (matching single-target look) */

/* Viewer container and overlay */
.birthday-ar-viewer {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    background: #000;
    color: #fff;
}

.birthday-ar-viewer #status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 3;
}

.birthday-ar-viewer #controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.birthday-ar-viewer #controls button {
    border: none;
    background: #007cba;
    color: #fff;
    padding: 10px 16px;
    border-radius: 24px;
    cursor: pointer;
}

.birthday-ar-viewer #controls button:hover { background: #0063a1; }

/* Button Size Variations */
.birthday-ar-viewer.button-size-small button { padding: 8px 14px; font-size: 12px; border-radius: 20px; }
.birthday-ar-viewer.button-size-medium button { padding: 12px 20px; font-size: 14px; border-radius: 25px; }
.birthday-ar-viewer.button-size-large button { padding: 16px 28px; font-size: 16px; border-radius: 30px; }

/* Button Color Variations - Will be overridden by dynamic CSS if custom colors are set */
.birthday-ar-viewer.button-color-blue button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4) !important;
    border-color: #4facfe !important;
}

.birthday-ar-viewer.button-color-blue button:hover {
    background: linear-gradient(135deg, #3d9be8 0%, #00d9e8 100%) !important;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5) !important;
    border-color: #3d9be8 !important;
}

.birthday-ar-viewer.button-color-green button {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4) !important;
    border-color: #43e97b !important;
}

.birthday-ar-viewer.button-color-green button:hover {
    background: linear-gradient(135deg, #35d869 0%, #2de5c3 100%) !important;
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.5) !important;
    border-color: #35d869 !important;
}

.birthday-ar-viewer.button-color-orange button {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4) !important;
    border-color: #fa709a !important;
}

.birthday-ar-viewer.button-color-orange button:hover {
    background: linear-gradient(135deg, #f85a8a 0%, #fdd028 100%) !important;
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.5) !important;
    border-color: #f85a8a !important;
}

.birthday-ar-viewer.button-color-red button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4) !important;
    border-color: #f093fb !important;
}

.birthday-ar-viewer.button-color-red button:hover {
    background: linear-gradient(135deg, #ee7ff0 0%, #f33d5a 100%) !important;
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.5) !important;
    border-color: #ee7ff0 !important;
}

.birthday-ar-viewer.button-color-teal button {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%) !important;
    box-shadow: 0 4px 15px rgba(48, 207, 208, 0.4) !important;
    border-color: #30cfd0 !important;
}

.birthday-ar-viewer.button-color-teal button:hover {
    background: linear-gradient(135deg, #28b8b9 0%, #2a0654 100%) !important;
    box-shadow: 0 6px 20px rgba(48, 207, 208, 0.5) !important;
    border-color: #28b8b9 !important;
}

.birthday-ar-viewer.button-color-purple button {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important;
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.4) !important;
    border-color: #a8edea !important;
    color: #333 !important;
}

.birthday-ar-viewer.button-color-purple button:hover {
    background: linear-gradient(135deg, #96e3e0 0%, #fcc4d1 100%) !important;
    box-shadow: 0 6px 20px rgba(168, 237, 234, 0.5) !important;
    border-color: #96e3e0 !important;
    color: #222 !important;
}

/* Product list grid */
.birthday-ar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) { .birthday-ar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .birthday-ar-grid { grid-template-columns: 1fr; } }

.birthday-ar-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.birthday-ar-product-card .product-image img { width: 100%; height: auto; display: block; }
.birthday-ar-product-card .product-info { padding: 12px 14px; }
.birthday-ar-product-card .product-actions { padding: 12px 14px; border-top: 1px solid #f0f0f0; }
.birthday-ar-product-card .ar-button { display: inline-block; background: #007cba; color: #fff; padding: 8px 14px; border-radius: 20px; text-decoration: none; }
.birthday-ar-product-card .ar-button:hover { background: #0063a1; }


