/* =========================================
   COMPONENT STYLES - Mockup Design
   ========================================= */

/* Primary Button - Amber gradient */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand-amber);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-amber);
    text-align: center;
}

.btn-primary:hover {
    background: var(--brand-amber-dark);
    transform: translateY(-2px);
}

/* Secondary Button - Ghost */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--brand-dark);
}

/* Product Card */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--brand-amber);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    z-index: 10;
}

.product-img-wrap {
    height: 320px;
    overflow: hidden;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-slow);
    mix-blend-mode: multiply;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-amber);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition);
}

.product-link:hover {
    color: var(--brand-amber);
}

.product-link svg {
    width: 16px;
    height: 16px;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-label {
    display: inline;
}

/* Floating Call Button */
.floating-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.floating-call:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.floating-call svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Floating Zalo Button */
.floating-zalo {
    background: linear-gradient(135deg, #0068ff 0%, #0052cc 100%);
}

.floating-zalo:hover {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

/* Hide scroll-to-top for this design */
.scroll-to-top {
    display: none;
}