/* Arina Beauty Footer Styles - Black Background */
.arina-footer {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle gold accent line at top */
.arina-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #D4AF37, #B8860B);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Brand Column */
.brand-column {
    max-width: 300px;
}

.footer-logo {
    height: auto;
    width: 150px;
    margin-bottom: 20px;
    
}

.brand-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #B8860B;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #B8860B;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #B8860B;
    padding-left: 5px;
}

/* Contact Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #cccccc;
}

.contact-info-list li i {
    color: #B8860B;
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
}

.contact-info-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #B8860B;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 14px;
    color: #cccccc;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #B8860B;
}

.newsletter-input-group input::placeholder {
    color: #888888;
}

.newsletter-input-group button {
    background: #B8860B;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-input-group button:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    font-size: 13px;
    color: #888888;
}

.copyright p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #B8860B;
}

.separator {
    color: #444444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .arina-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-column {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-title::after {
        
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-list li {
        justify-content: start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group button {
        width: 100%;
    }
}


//* Contact Page Styles - Fixed Layout (Flexbox Only) */
.contact-page-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FDF8F3 0%, #FFF8F0 100%);
    font-family: 'Inter', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-header h1 span {
    color: #B8860B;
}

.contact-header p {
    font-size: 18px;
    color: #7A6C5D;
}

/* TWO COLUMN LAYOUT - Flexbox Side by Side */
.contact-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left Column - Contact Info */
.contact-info-column {
    flex: 1;
    min-width: 280px;
}

/* Right Column - Contact Form */
.contact-form-column {
    flex: 1;
    min-width: 280px;
}

/* Cards Styling */
.contact-card,
.form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover,
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(184, 134, 11, 0.1);
}

.contact-card h3,
.form-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-card > p,
.form-card > p {
    color: #7A6C5D;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Items */
.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #B8860B;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 14px;
    color: #7A6C5D;
    text-decoration: none;
}

.contact-text a:hover {
    color: #B8860B;
}

/* Social Links */
.contact-social h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8860B;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #B8860B;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Contact Form 7 Styling */
.form-card .wpcf7-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-card .wpcf7-form .form-group {
    flex: 1;
    min-width: 200px;
}

.form-card .wpcf7-form input,
.form-card .wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E8D8C5;
    border-radius: 12px;
    background: #FDF8F3;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.form-card .wpcf7-form input:focus,
.form-card .wpcf7-form textarea:focus {
    outline: none;
    border-color: #B8860B;
}

.form-card .wpcf7-form .wpcf7-submit {
    background: #B8860B;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-card .wpcf7-form .wpcf7-submit:hover {
    background: #8B6508;
    transform: translateY(-2px);
}

/* Map Section - Full Width Below */
.contact-map-section {
    width: 100%;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive - Flexbox only */
@media (max-width: 992px) {
    .contact-two-columns {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 15px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    /* Flexbox column direction on mobile */
    .contact-two-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-column,
    .contact-form-column {
        flex: auto;
        width: 100%;
    }
    
    .contact-card,
    .form-card {
        padding: 25px;
    }
    
    .contact-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .form-card {
        padding: 20px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
}

.mobile-shop-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #B8860B;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    z-index: 1;
}

/* ========================================
   PREMIUM GOLDEN GLOW VERSION
   ======================================== */

.mobile-fixed-shop-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    padding: 6px 20px;
    text-align: center;
    border-top: 2px solid #B8860B;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-shop-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #B8860B;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.5);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Golden Glow Effect */
.mobile-shop-now-btn {
    animation: goldenGlow 2s ease-in-out infinite;
}

@keyframes goldenGlow {
    0%, 100% {
        background: #B8860B;
        box-shadow: 0 0 5px rgba(184, 134, 11, 0.5);
    }
    50% {
        background: #D4AF37;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Ripple Effect on Click */
.mobile-shop-now-btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.5s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.mobile-shop-now-btn:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.mobile-shop-now-btn:active {
    transform: translateY(1px);
}

/* Mobile Visibility */
@media (max-width: 768px) {
    .mobile-fixed-shop-btn {
        display: block;
        animation: slideUp 0.3s ease-out;
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    body {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 480px) {
    .mobile-fixed-shop-btn {
        padding: 8px 15px;
    }
    
    .mobile-shop-now-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
    }
    
    body {
        padding-bottom: 65px !important;
    }
}


/* ========================================
   ARINA BEAUTY - SIMPLE & CLEAN STYLES
   ======================================== */

/* ---------- PRODUCT PAGE ADD TO CART BUTTON ---------- */
.single_add_to_cart_button.button.alt {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
}

.single_add_to_cart_button.button.alt:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
}

/* ---------- CHECKOUT PLACE ORDER BUTTON ---------- */
.wc-block-components-checkout-place-order-button,
#place_order {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    width: 100% !important;
}

.wc-block-components-checkout-place-order-button:hover,
#place_order:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
}

/* ---------- CART PAGE UPDATE CART BUTTON ---------- */
button[name="update_cart"] {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    border: none !important;
}

button[name="update_cart"]:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

/* ---------- CONTINUE SHOPPING BUTTON ---------- */
.button-continue-shopping {
    background-color: transparent !important;
    border: 2px solid #B8860B !important;
    color: #B8860B !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}

.button-continue-shopping:hover {
    background-color: #B8860B !important;
    color: #ffffff !important;
}

/* ---------- APPLY COUPON BUTTON ---------- */
.checkout_coupon .button,
.woocommerce-form-coupon .button {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    border: none !important;
}

.checkout_coupon .button:hover,
.woocommerce-form-coupon .button:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

/* ---------- PRODUCT QUANTITY BUTTONS ---------- */
.quantity .minus,
.quantity .plus {
    background-color: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    border-radius: 30px !important;
    width: 30px !important;
    height: 30px !important;
}

.quantity .minus:hover,
.quantity .plus:hover {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border-color: #B8860B !important;
}

/* ---------- REMOVE CART ITEM BUTTON ---------- */
.product-remove .remove {
    color: #e74c3c !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.product-remove .remove:hover {
    color: #c0392b !important;
    background: transparent !important;
}

/* ---------- CHECKOUT FORM FIELDS (Clean & Simple) ---------- */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 10px 12px !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #B8860B !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1) !important;
}

/* ---------- ORDER SUMMARY SECTION ---------- */
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .order-total td {
    color: #B8860B !important;
    font-weight: 600 !important;
}

/* ---------- SHIPPING METHODS ---------- */
.shipping__list input[type="radio"] {
    accent-color: #B8860B !important;
}

/* ---------- PAYMENT METHODS ---------- */
.wc_payment_method input[type="radio"] {
    accent-color: #B8860B !important;
}

/* ---------- COUPON TOGGLE ---------- */
.woocommerce-info a.showcoupon {
    color: #B8860B !important;
    font-weight: 600 !important;
}

.woocommerce-info a.showcoupon:hover {
    color: #D4AF37 !important;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
    .single_add_to_cart_button.button.alt {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }
    
    #place_order {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}