/* Carria Shop Page Styles */

/* Shop Hero Section */
.shop-hero-redesign {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px; /* Account for navbar */
    padding-bottom: 60px; /* Ensure bottom spacing */
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 129, 204, 0.9) 0%, rgba(0, 129, 204, 0.7) 100%);
    z-index: 1;
}

.shop-hero-content-new {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 600;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.shop-badge-new:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.badge-dot-shop {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.shop-hero-title-new {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.shop-title-main {
    display: block;
    color: white;
}

.shop-title-highlight {
    display: block;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-hero-description-new {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-hero-cta {
    margin-top: 40px;
}

.shop-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.shop-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    color: #1a1a1a;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #0081cc, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    z-index: 2;
    animation: rotate 10s linear infinite;
}

.icon-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 129, 204, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.coming-soon-message {
    margin-bottom: 60px;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 30px;
}

.coming-soon-highlight {
    display: inline-block;
    background: linear-gradient(45deg, #0081cc, #00d4ff);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Product Categories Preview */
.product-categories-preview {
    margin-bottom: 80px;
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 129, 204, 0.15);
    border-color: #0081cc;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.category-card p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* Notify Section */
.notify-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.notify-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.notify-description {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 40px;
}

.notify-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.notify-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.notify-input:focus {
    border-color: #0081cc;
    box-shadow: 0 0 0 3px rgba(0, 129, 204, 0.1);
}

.notify-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #0081cc, #00d4ff);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 129, 204, 0.3);
}

.form-agreement {
    text-align: left;
}

.circuit-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
}

/* Enhanced CTA Section */
.shop-contact-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 129, 204, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 129, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-float-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cta-float-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.cta-float-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.enhanced-cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.cta-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enhanced-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 200px;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    color: #1a1a1a;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.enhanced-btn:hover .btn-glow-effect {
    left: 100%;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .shop-hero-redesign {
        min-height: 45vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .shop-hero-redesign {
        min-height: 40vh;
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .shop-hero-content-new {
        padding: 20px 20px;
    }
    
    .shop-badge-new {
        padding: 10px 20px;
        font-size: clamp(0.7rem, 2.5vw, 0.9rem);
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    
    .shop-hero-title-new {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }
    
    .shop-hero-description-new {
        font-size: 16px;
        margin-bottom: 30px;
    }
}
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .notify-form .form-group {
        flex-direction: column;
    }
    
    .enhanced-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
    
    .coming-soon-section {
        padding: 60px 0;
    }
    
    .notify-section {
        padding: 40px 20px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .shop-hero-redesign {
        min-height: 35vh;
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .shop-hero-content-new {
        padding: 15px 15px;
    }
    
    .shop-badge-new {
        padding: 8px 16px;
        font-size: clamp(0.65rem, 3vw, 0.8rem);
        letter-spacing: 0.3px;
        margin-bottom: 15px;
        max-width: 90%;
    }
    
    .shop-hero-title-new {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .shop-hero-description-new {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .icon-glow {
        width: 120px;
        height: 120px;
        top: -20px;
        left: -20px;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .cta-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .shop-hero-redesign {
        min-height: 30vh;
        padding-top: 70px;
        padding-bottom: 25px;
    }
    
    .shop-hero-content-new {
        padding: 10px 10px;
    }
    
    .shop-badge-new {
        padding: 6px 12px;
        font-size: clamp(0.6rem, 3.5vw, 0.75rem);
        letter-spacing: 0.2px;
        margin-bottom: 12px;
        max-width: 85%;
    }
    
    .shop-hero-title-new {
        font-size: clamp(1.6rem, 12vw, 2.2rem);
        margin-bottom: 12px;
    }
    
    .shop-hero-description-new {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}