/* Order Info Box */
.order-info-box {
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    animation: fadeInDown 0.8s ease-out;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.order-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.order-info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.8);
}

.info-box-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    color: var(--accent-gold);
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.info-box-content h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-content h3 i {
    font-size: 1.5rem;
}

.info-box-content p {
    margin: 1rem 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

.info-box-content strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

/* Selected Product & Cart Styles */
.selected-product-info, .cart-summary {
    background: rgba(30, 30, 30, 0.9);
    border-left: 5px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.selected-product-info h3, .cart-summary h3 {
    margin-top: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.selected-product-info h3 i, .cart-summary h3 i {
    font-size: 1.3rem;
}

.product-selected-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.cart-items-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
}

.item-details {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
}

.item-details span:last-child {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.cart-total {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total strong {
    color: var(--text-light);
    font-weight: 700;
}

.cart-total span {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(30, 30, 30, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    animation: fadeInLeft 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form-wrapper h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: rgba(20, 20, 20, 0.7);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group small {
    margin-top: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.success-message {
    background: rgba(46, 204, 113, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #2ecc71;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.success-message p {
    color: #2ecc71;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: bounceIn 0.6s ease;
}

.section-title {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.form-group-small {
    grid-column: auto;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 1rem 2.25rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
    letter-spacing: -0.01em;
    font-family: 'Open Sans', sans-serif;
    min-width: 180px;
    text-transform: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: none;
}

.btn i {
    font-size: 1.1rem;
    transition: transform var(--transition-medium);
}

.btn:hover i {
    transform: scale(1.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #4a5941 100%);
    border-color: var(--primary-hover);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Help Box */
.help-box {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out;
}

.help-box-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-align: center;
    display: block;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.help-box-content h3 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.help-box-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.help-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.help-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.help-feature:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.help-feature i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.help-feature span {
    color: var(--text-light);
    font-weight: 500;
}

/* Privacy Box */
.privacy-box {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(72, 187, 120, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out;
    text-align: center;
    margin-top: 20px;
}

.privacy-box-icon {
    font-size: 3rem;
    color: #48bb78;
    margin-bottom: 20px;
    text-align: center;
    display: block;
}

.privacy-box-content h3 {
    font-size: 1.6rem;
    color: #48bb78;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.privacy-box-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.privacy-box .btn-outline {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    border: 2px solid #48bb78;
    padding: 12px 25px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    border-radius: 10px;
}

.privacy-box .btn-outline:hover {
    background: #48bb78;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Form Controls */
.form-control,
input,
textarea,
select {
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.7);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

.required {
    color: #ff6b6b;
}

/* Success Message */
.success-message {
    background: rgba(46, 204, 113, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #2ecc71;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.success-message p {
    color: #2ecc71;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    animation: fadeInRight 0.8s ease-out;
}

.contact-info h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.info-card h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.info-card .btn-outline {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    justify-content: center;
    width: auto;
}

/* Social Section */
.social-section {
    background: rgba(30, 30, 30, 0.9);
    padding: 2rem;
    border-radius: 15px;
    animation: fadeIn 1s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.social-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Open Sans', sans-serif;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.social-btn i {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.facebook:hover {
    background-color: #1877F2;
    color: white;
}

.social-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Process Info */
.process-info {
    background: rgba(30, 30, 30, 0.9);
    padding: 3.5rem 2.5rem;
    border-radius: 15px;
    margin-top: 3.5rem;
    animation: fadeIn 1s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.process-info h2 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    transition: all 0.3s ease;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite;
}

.step h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .order-info-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .info-box-icon {
        margin: 0 auto;
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }
    
    .info-box-content h3 {
        font-size: 1.6rem;
        justify-content: center;
    }
    
    .contact-info h2,
    .social-section h3,
    .process-info h2 {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 1.5rem;
        gap: 1.2rem;
        text-align: center;
    }
    
    .info-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .help-box,
    .privacy-box,
    .social-section,
    .process-info {
        padding: 25px;
    }
    
    .help-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .order-info-box {
        padding: 1.5rem;
    }
    
    .info-box-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .info-box-content h3 {
        font-size: 1.4rem;
    }
    
    .info-box-content p {
        font-size: 1rem;
    }
    
    .contact-info h2,
    .social-section h3,
    .process-info h2 {
        font-size: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .info-icon {
        margin: 0 auto 1rem;
    }
    
    .help-box,
    .privacy-box,
    .social-section,
    .process-info {
        padding: 20px;
    }
    
    .help-box-content h3,
    .privacy-box-content h3 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        gap: 1.2rem;
    }
    
    .step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .selected-product-info, .cart-summary {
        padding: 1.5rem;
    }
    
    .product-selected-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-total {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-total span {
        font-size: 1.3rem;
    }
}