/* Template-Specific Styles for Public Storefront */

/* ========================================
   PRODUCT CARD STYLES
   ======================================== */

/* Minimal Style - Clean, no borders */
.product-card-minimal {
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.product-card-minimal:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card-minimal .product-image {
    aspect-ratio: 1/1;
}

/* Bold Style - Large shadows, rounded */
.product-card-bold {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-bold:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(67, 97, 238, 0.2);
}

.product-card-bold .product-image {
    aspect-ratio: 4/3;
}

/* Elegant Style - Subtle, sophisticated */
.product-card-elegant {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.product-card-elegant:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.product-card-elegant .product-image {
    aspect-ratio: 3/4;
}

/* Organic Style - Rounded, soft shadows */
.product-card-organic {
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.15);
    border: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.product-card-organic:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.25);
}

.product-card-organic .product-image {
    aspect-ratio: 1/1;
}

/* Tech Style - Sharp, neon accents */
.product-card-tech {
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.4);
    border: none;
    background: #16213e;
    transition: all 0.3s ease;
}

.product-card-tech:hover {
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.6), 0 8px 24px rgba(0, 212, 255, 0.3);
}

.product-card-tech .product-image {
    aspect-ratio: 16/9;
}

/* Cozy Style - Warm, inviting */
.product-card-cozy {
    border-radius: 24px;
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.2);
    border: 2px solid #f5ebe0;
    background: #fffbf5;
    transition: all 0.3s ease;
}

.product-card-cozy:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(212, 165, 116, 0.3);
}

.product-card-cozy .product-image {
    aspect-ratio: 4/5;
}

/* Professional Style - Clean, corporate */
.product-card-professional {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: all 0.2s ease;
}

.product-card-professional:hover {
    border-color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.product-card-professional .product-image {
    aspect-ratio: 1/1;
}

/* Playful Style - Fun, bouncy */
.product-card-playful {
    border-radius: 32px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2), 0 0 0 3px rgba(255, 210, 63, 0.3);
    border: none;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-card-playful:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 28px rgba(255, 107, 157, 0.3), 0 0 0 4px rgba(255, 210, 63, 0.5);
}

.product-card-playful .product-image {
    aspect-ratio: 1/1;
}

/* Dark Minimal Style - High contrast */
.product-card-dark-minimal {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    border: 1px solid #1a1a1a;
    background: #0f0f0f;
    transition: all 0.3s ease;
}

.product-card-dark-minimal:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.product-card-dark-minimal .product-image {
    aspect-ratio: 3/2;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Minimal Footer */
.footer-minimal {
    background: #f8f9fa;
    color: #212529;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.footer-minimal .footer-content {
    text-align: center;
}

/* Bold Footer */
.footer-bold {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 -4px 12px rgba(67, 97, 238, 0.2);
}

.footer-bold .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Elegant Footer */
.footer-elegant {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0;
    border-top: 3px solid #d4af37;
}

.footer-elegant .footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Organic Footer */
.footer-organic {
    background: #7cb342;
    color: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.footer-organic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    clip-path: ellipse(50% 100% at 50% 0%);
    transform: translateY(-100%);
}

/* Tech Footer */
.footer-tech {
    background: #0f3460;
    color: #00d4ff;
    padding: 3rem 0;
    border-top: 2px solid #00d4ff;
}

.footer-tech .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Cozy Footer */
.footer-cozy {
    background: #d4a574;
    color: #5d4e37;
    padding: 3rem 0;
    border-top: 4px solid #b8956a;
}

.footer-cozy .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Professional Footer */
.footer-professional {
    background: #1e3a8a;
    color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #1e40af;
}

.footer-professional .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

/* Playful Footer */
.footer-playful {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffd23f 100%);
    color: #ffffff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-playful::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    border-radius: 50%;
    transform: scaleX(3);
}

/* Dark Minimal Footer */
.footer-dark-minimal {
    background: #0a0a0a;
    color: #ffffff;
    padding: 2rem 0;
    border-top: 1px solid #1a1a1a;
}

.footer-dark-minimal .footer-content {
    text-align: center;
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {

    .footer-bold .footer-content,
    .footer-tech .footer-content,
    .footer-professional .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-card-playful:hover {
        transform: scale(1.03) rotate(1deg);
    }

    .product-card-bold:hover {
        transform: scale(1.02);
    }
}