/*
Theme Name: AJ Creation Premium
Author: AJ Developer
Version: 6.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary-green: #0A4A2A; 
  --accent-red: #C0392B;    
  --bg-white: #ffffff;      
  --text-main: #111111;     
  --border-light: #eaeaea;  
}

/* Base Resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-white); color: var(--text-main); }

/* Force Remove All Purple/Default Links */
a { text-decoration: none !important; color: inherit; outline: none; }

/* Top Bar Flexbox */
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 8px 20px; font-size: 10px; }
.top-socials a { color: var(--bg-white); margin-right: 12px; font-size: 12px; text-decoration: none; transition: 0.3s; }
.top-socials a:hover { color: var(--accent-red); }
.top-tools select { background: transparent; color: var(--bg-white); border: none; outline: none; font-size: 10px; cursor: pointer; }
.top-tools select option { color: var(--text-main); }

/* Logo Fixes & Doubled Spacing */
.logo a { color: var(--text-main) !important; display: inline-block; text-decoration: none !important; }
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    letter-spacing: 24px; /* Spacing Doubled */
    color: var(--text-main);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    padding-left: 24px; /* Center alignment fix */
}
.logo-tagline {
    font-size: 10px;
    letter-spacing: 10px;
    color: #666;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Nav Bar Fixes (No more raw links) */
.nav-bar { text-align: center; padding: 20px 0; border-bottom: 1px solid var(--border-light); background: var(--bg-white); }
.nav-bar-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 35px; }
.nav-bar-inner ul { display: flex; gap: 35px; list-style: none; margin: 0; padding: 0; }
.nav-bar a, .nav-bar-inner ul li a { 
    color: var(--text-main) !important; 
    font-size: 11px; 
    font-weight: 600; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: 0.3s; 
    text-decoration: none !important;
}
.nav-bar a:hover, .nav-bar-inner ul li a:hover { color: var(--accent-red) !important; }
.nav-bar a.sale-link, .nav-bar-inner ul li.sale-item a { color: var(--accent-red) !important; }

/* Product Card & Hover Action Icons */
.product-card { text-align: center; position: relative; }
.img-container { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #f8f8f8; margin-bottom: 15px; }
.img-primary { position: absolute; inset: 0; background-size: cover; background-position: top; transition: opacity 0.5s ease; z-index: 2; }
.img-hover { position: absolute; inset: 0; background-size: cover; background-position: top; z-index: 1; }
.product-card:hover .img-primary { opacity: 0; }

.action-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s ease;
    transform: translateX(10px);
}
.product-card:hover .action-overlay { opacity: 1; transform: translateX(0); }
.action-btn { width: 35px; height: 35px; background: var(--bg-white) !important; color: var(--text-main) !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none !important; font-size: 13px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.3s; }
.action-btn:hover { background: var(--text-main) !important; color: var(--bg-white) !important; }

/* Section Titles */
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; letter-spacing: 3px; color: var(--text-main); text-transform: uppercase; text-align: center; margin-bottom: 30px; }