/*
Theme Name: Iconic Baseball Premium
Author: Iconic Org
Description: Master Theme (Includes Portal & Frontpage Styles)
Version: 17.0 (Consolidated)
*/

/* --- 1. FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@400;500;700&display=swap');

/* --- 2. COLOR PALETTE --- */
:root {
    --onyx-black: #050914;        
    --charcoal: #0e162b;          
    --gold-dark: #8E793E;         
    --gold-light: #FAD961;        
    --gold-main: #AD8C3E;         
    --white: #e0e0e0;             
    
    --gold-gradient: linear-gradient(135deg, #8E793E 0%, #FAD961 50%, #8E793E 100%);
    --gold-text-gradient: -webkit-linear-gradient(#FAD961, #AD8C3E);
    
    --header-height: 90px;
    --footer-height: 80px;
}

/* --- 3. GLOBAL LAYOUT --- */
* { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    width: 100%; height: 100vh; 
    overflow: hidden; /* App Lock */
    font-family: 'Raleway', sans-serif; 
    background-color: var(--onyx-black); 
    color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* BACKGROUND WATERMARK */
body::before {
    content: ""; position: absolute; 
    top: 50%; left: 49.5%; transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background-image: url('images/iconic-logo.webp'); 
    background-repeat: no-repeat; background-position: center; background-size: contain; 
    opacity: 0.1; z-index: 0; pointer-events: none; 
}

/* --- 4. HEADER --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--onyx-black);
    padding: 0 2rem; 
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 4px solid; border-image: var(--gold-gradient) 1; 
    z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.brand-link { display: flex; align-items: center; gap: 10px; }
.header-logo { height: 60px; width: auto; filter: drop-shadow(0 0 3px rgba(173, 140, 62, 0.5)); }

.site-branding h1 { 
    margin: 0; font-family: 'Playfair Display', serif; font-size: 2.2rem; 
    text-transform: uppercase; font-weight: 700;
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* HEADER BUTTONS */
.header-actions { display: flex; align-items: center; gap: 15px; }

.checkout-btn {
    background-color: var(--gold-main); color: var(--onyx-black); padding: 10px 20px;
    font-family: 'Playfair Display', serif; font-weight: 900; font-size: 0.8rem;
    letter-spacing: 1px; border: 2px solid var(--gold-main);
    display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.checkout-btn:hover { background-color: transparent; color: var(--gold-light); border-color: var(--gold-light); }

.menu-btn {
    background: transparent; border: 2px solid var(--gold-dark); color: var(--gold-light); 
    padding: 10px 15px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
}
.menu-btn:hover { background: var(--gold-dark); color: var(--onyx-black); }

/* --- 5. MENU OVERLAY --- */
.menu-box {
    position: fixed; top: 0; right: 0; width: 300px; height: 100vh;
    background-color: var(--onyx-black); border-left: 2px solid var(--gold-main);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8); padding: 40px; 
    z-index: 9999; opacity: 0; visibility: hidden; transform: translateX(100%); transition: all 0.4s ease;
}
.menu-box.is-active { opacity: 1; visibility: visible; transform: translateX(0); }

.close-btn { 
    position: absolute; top: 20px; right: 20px; background: transparent; border: none; 
    color: var(--gold-main); font-size: 2rem; cursor: pointer; 
}
.overlay-nav ul { list-style: none; padding: 0; margin: 60px 0 0 0; text-align: center; }
.overlay-nav li { margin-bottom: 25px; border-bottom: 1px solid rgba(173, 140, 62, 0.2); padding-bottom: 10px; }
.overlay-nav a { 
    font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; 
    text-transform: uppercase; letter-spacing: 1px; 
}

/* --- 6. SCROLLABLE MAIN AREA --- */
.site-main {
    position: fixed; top: var(--header-height); bottom: var(--footer-height); left: 0; right: 0;
    overflow-y: auto; overflow-x: hidden; padding: 20px; z-index: 10;
    -webkit-overflow-scrolling: touch; 
}

.site-main::-webkit-scrollbar { width: 10px; }
.site-main::-webkit-scrollbar-track { background: var(--charcoal); }
.site-main::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; border: 2px solid var(--charcoal); }

.dugout-container {
    position: relative; min-height: 100%; width: 100%;
    display: flex; flex-direction: column; align-items: center; 
}

/* --- 7. ELITE BASEBALL CARDS (Adjusted Size) --- */
.baseball-card {
    position: relative; 
    margin: 30px auto;
    width: 100%; 
    max-width: 350px; /* <--- REDUCED from 420px */
    
    /* GLASSMOPHISM & DEPTH */
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.9), rgba(5, 9, 20, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(173, 140, 62, 0.5);
    border-radius: 12px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(173, 140, 62, 0.05);
    overflow: hidden; 
    z-index: 50; 
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.baseball-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #FAD961;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 25px rgba(173, 140, 62, 0.4);
}

/* CARD HEADER */
.card-header {
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    padding: 18px 25px; 
    display: flex; justify-content: space-between;
    font-family: 'Playfair Display', serif; 
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(173, 140, 62, 0.2);
}

/* PHOTO AREA */
.card-photo { position: relative; }
.card-photo img { 
    width: 100%; 
    height: 360px; /* <--- REDUCED from 450px */
    object-fit: cover; 
    transition: transform 0.8s ease;
    border-bottom: 3px solid; 
    border-image: linear-gradient(90deg, transparent, #AD8C3E, #FAD961, #AD8C3E, transparent) 1;
}

/* Slight zoom on photo when hovering card */
.baseball-card:hover .card-photo img { transform: scale(1.05); }

/* IDENTITY SECTION */
.player-identity {
    position: relative;
    padding: 25px;
    background: radial-gradient(circle at center, rgba(30, 40, 60, 0.8), rgba(10, 15, 25, 0.95));
    display: flex; justify-content: space-between; align-items: center; 
    border-top: 1px solid rgba(255,255,255,0.05);
}

.player-name { 
    margin: 0; font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; text-transform: uppercase; 
    color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.jersey-number {
    font-family: 'Playfair Display', serif; font-size: 3.5rem; 
    font-weight: 900; font-style: italic;
    /* METALLIC TEXT GRADIENT */
    background: linear-gradient(135deg, #FAD961 0%, #AD8C3E 40%, #Ffffff 50%, #AD8C3E 60%, #8E793E 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* STATS GRID */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    text-align: center; 
    border-top: 1px solid rgba(173, 140, 62, 0.2);
}

.stat-box { 
    padding: 15px 5px; 
    border-right: 1px solid rgba(173, 140, 62, 0.1); 
    transition: background 0.3s;
}
.stat-box:hover { background: rgba(173, 140, 62, 0.1); }
.stat-box:last-child { border-right: none; }

.stat-box .label { 
    display: block; font-size: 0.7rem; letter-spacing: 1px;
    color: var(--gold-main); text-transform: uppercase; margin-bottom: 5px; opacity: 0.8;
}
.stat-box .value { 
    font-size: 1.2rem; color: #fff; 
    font-weight: bold; font-family: 'Playfair Display', serif; 
}

/* --- 8. ADMIN PORTAL STYLES (Moved from Plugin) --- */
.iconic-admin-portal { width: 100%; max-width: 1200px; margin: 0 auto; }
.portal-header {
    border-bottom: 2px solid var(--gold-main); margin-bottom: 20px; padding-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center;
}
.portal-nav a { color: #aaa; margin-left: 20px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; }
.portal-nav a.active { color: var(--gold-light); }

.portal-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.portal-table th { text-align: left; color: var(--gold-main); border-bottom: 1px solid #333; padding: 10px; text-transform: uppercase; }
.portal-table td { padding: 10px; border-bottom: 1px solid #222; }

.small-btn {
    background: #333; color: #fff; border: 1px solid #555; padding: 4px 10px; cursor: pointer; font-size: 0.8rem;
}
.small-btn:hover { background: var(--gold-main); color: var(--onyx-black); }

/* --- 9. ELITE FRONTPAGE / LANDING STYLES (Upgraded) --- */

/* FADE IN ANIMATION */
@keyframes iconicFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.iconic-frontpage-wrapper { animation: iconicFadeIn 1s ease-out forwards; text-align: center; max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* MAIN TITLE (Metallic Gold) */
.iconic-legacy-title {
    font-family: 'Playfair Display', serif; font-size: 3.8rem; text-transform: uppercase;
    background: linear-gradient(135deg, #FAD961 0%, #AD8C3E 40%, #ffffff 50%, #AD8C3E 60%, #8E793E 100%); 
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    margin: 0; animation: shine 4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(173, 140, 62, 0.3));
}
@keyframes shine { to { background-position: 200% center; } }

/* HIGHLIGHTS ROTATOR (Glass Effect) */
.iconic-highlights-section {
    width: 100%; height: 400px; margin: 50px 0; position: relative;
    border: 1px solid rgba(173, 140, 62, 0.5); /* Subtle Gold Border */
    border-radius: 12px; overflow: hidden; 
    
    /* GLASS LOOK */
    background: rgba(10, 15, 25, 0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 30px rgba(0,0,0,0.8);
}

.iconic-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.5s ease-in-out; 
    background-size: cover; background-position: center; display: flex; align-items: flex-end;
}
.iconic-slide.active { opacity: 1; }
.slide-overlay { 
    width: 100%; padding: 40px 30px; 
    background: linear-gradient(to top, #050914 10%, rgba(5,9,20,0.8) 60%, transparent); 
    text-align: left; 
}
.slide-tag { 
    background: var(--gold-main); color: #000; padding: 4px 12px; 
    font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 2px;
}
.slide-title { font-family: 'Playfair Display', serif; color: #fff; font-size: 2.2rem; margin: 10px 0 0 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

/* GRID CARDS (Matching the Roster Cards) */
.iconic-card-grid { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; margin-top: 60px; }

.iconic-card {
    flex: 1; min-width: 280px; max-width: 350px;
    
    /* ELITE GLASS STYLE */
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.9), rgba(5, 9, 20, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(173, 140, 62, 0.4);
    
    padding: 35px 30px; border-radius: 12px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); 
    display: flex; flex-direction: column;
}

.iconic-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: var(--gold-light); 
    box-shadow: 0 25px 50px rgba(173, 140, 62, 0.2);
}

.iconic-card h3 { 
    color: #fff; font-family: 'Playfair Display', serif; margin-top: 0; 
    text-transform: uppercase; letter-spacing: 1px; font-size: 1.6rem;
    border-bottom: 1px solid rgba(173, 140, 62, 0.3); padding-bottom: 15px; margin-bottom: 20px;
}
.iconic-card p.desc { color: #aaa; font-size: 0.95rem; margin-bottom: 30px; flex-grow: 1; line-height: 1.6; }

/* MAIN "REQUEST INVITE" CTA */
.iconic-cta-main {
    display: inline-block; padding: 18px 60px;
    background: linear-gradient(135deg, #AD8C3E, #FAD961);
    color: #050914 !important; /* Force black text */
    font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    border-radius: 6px; 
    box-shadow: 0 0 25px rgba(173, 140, 62, 0.4);
    transition: all 0.4s ease;
}
.iconic-cta-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(250, 217, 97, 0.6);
    background: #FAD961;
}

/* SHARED BUTTONS (In Cards) */
.iconic-btn {
    display: block; width: 100%; padding: 14px; font-family: 'Playfair Display', serif; 
    font-weight: 900; text-transform: uppercase; text-align: center; border-radius: 4px; letter-spacing: 1px;
}
/* Gold Filled */
.btn-gold { background: var(--gold-main); color: #050914; border: none; }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 0 15px rgba(173, 140, 62, 0.5); }

/* Outline Gold */
.btn-outline { background: transparent; border: 1px solid var(--gold-main); color: var(--gold-main); }
.btn-outline:hover { background: var(--gold-main); color: #050914; box-shadow: 0 0 15px rgba(173, 140, 62, 0.5); }

/* White Filled */
.btn-white { background: #fff; color: #050914; border: none; }
.btn-white:hover { background: #e0e0e0; box-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 600px) {
    .iconic-legacy-title { font-size: 2.5rem; }
    .iconic-highlights-section { height: 280px; margin: 30px 0; }
    .slide-title { font-size: 1.5rem; }
    .iconic-cta-main { padding: 15px 40px; font-size: 1rem; }
}

/* --- 10. ELITE AUTH FORMS (Fixed for All Inputs) --- */
.iconic-auth-box {
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(173, 140, 62, 0.3);
    padding: 50px 40px; 
    max-width: 450px; 
    margin: 60px auto; 
    border-radius: 12px; 
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    position: relative;
}

.iconic-auth-box::before {
    content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 3px;
    background: linear-gradient(90deg, transparent, #FAD961, transparent);
}

.iconic-auth-box h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    background: -webkit-linear-gradient(#FAD961, #AD8C3E);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 30px; letter-spacing: 1px;
}

/* --- FIX: TARGET ALL INPUT TYPES --- */
.iconic-auth-box input[type="text"],
.iconic-auth-box input[type="email"],
.iconic-auth-box input[type="password"],
.iconic-auth-box input[type="number"],  /* Fix for Height/Weight */
.iconic-auth-box input[type="date"],    /* Fix for DOB */
.iconic-auth-box select,                /* Fix for Dropdowns */
.iconic-auth-box textarea {
    width: 100%; padding: 15px;
    background: rgba(0, 0, 0, 0.5); 
    border: 1px solid #333;
    color: #fff; font-family: 'Raleway', sans-serif; letter-spacing: 1px;
    border-radius: 6px; margin-bottom: 15px;
    transition: 0.3s;
    box-sizing: border-box; /* Prevents going outside box */
}

.iconic-auth-box input:focus,
.iconic-auth-box select:focus,
.iconic-auth-box textarea:focus {
    border-color: var(--gold-main);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(173, 140, 62, 0.2);
    outline: none;
}

/* Fix File Upload Text Color */
.iconic-auth-box input[type="file"] {
    padding: 10px 0; background: transparent; border: none; color: #aaa;
}

.auth-btn {
    width: 100%; 
    background: linear-gradient(135deg, #AD8C3E, #FAD961);
    color: #050914;
    font-family: 'Playfair Display', serif; font-weight: 900; 
    text-transform: uppercase; letter-spacing: 2px;
    padding: 15px; border: none; border-radius: 6px;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(173, 140, 62, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(173, 140, 62, 0.5);
    background: linear-gradient(135deg, #FAD961, #fff);
}

/* --- 11. FOOTER --- */
.site-footer {
    position: fixed; bottom: 0; left: 0; right: 0; height: var(--footer-height);
    background: var(--onyx-black); color: var(--gold-dark); border-top: 2px solid var(--gold-main);
    display: flex; justify-content: center; align-items: center; z-index: 1000;
}
.footer-content { text-align: center; display: flex; flex-direction: column; gap: 5px; }
.org-name { font-size: 0.9rem; font-weight: bold; color: var(--white); }
.rights-text { font-size: 0.7rem; opacity: 0.8; letter-spacing: 2px; text-transform: uppercase; }

/* --- 12. MOBILE --- */
@media screen and (max-width: 768px) {
    .site-header { padding: 0 1rem; }
    .site-branding h1 { font-size: 1.4rem; } 
    .checkout-btn span, .menu-btn span { display: none; }
    .checkout-btn .btn-icon, .menu-btn .btn-icon { display: block; font-size: 1.4rem; }
    .baseball-card { width: 100%; max-width: 320px; }
    .card-photo img { height: 280px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portal-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .portal-nav { margin-left: 0; }
    .portal-nav a { margin: 0 10px 0 0; }
}
/* --- WOOCOMMERCE LOGO FIX --- */
/* Forces the logo to stay small even on Shop pages */
.site-header .brand-link img.header-logo,
.site-header .header-logo {
    height: 60px !important;       /* Lock the height */
    width: auto !important;        /* Let width adjust automatically */
    max-width: 250px !important;   /* Safety cap so it never gets too wide */
    object-fit: contain;
}

/* Mobile Adjustment for Shop Pages */
@media screen and (max-width: 768px) {
    .site-header .brand-link img.header-logo,
    .site-header .header-logo {
        height: 35px !important;   /* Smaller height for phones */
    }
}
/* --- WOOCOMMERCE LOST PASSWORD (Elite Style) --- */

/* Center the form on the page */
.woocommerce-account .woocommerce {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

/* Style the Lost Password Form Container */
.woocommerce-ResetPassword, 
form.lost_reset_password {
    background: rgba(10, 15, 25, 0.85); /* Dark Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(173, 140, 62, 0.3);
    border-radius: 12px; 
    padding: 40px; 
    max-width: 500px; 
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    text-align: center;
    position: relative;
}

/* Gold Top Bar */
form.lost_reset_password::before {
    content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 3px;
    background: linear-gradient(90deg, transparent, #FAD961, transparent);
}

/* Introduction Text */
form.lost_reset_password p {
    color: #ccc;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Input Fields */
form.lost_reset_password input[type="text"],
form.lost_reset_password input[type="email"] {
    width: 100%; padding: 15px;
    background: rgba(0, 0, 0, 0.5); 
    border: 1px solid #333;
    color: #fff; font-family: 'Raleway', sans-serif; letter-spacing: 1px;
    border-radius: 6px; margin-bottom: 15px;
    text-align: center;
    transition: 0.3s;
}

form.lost_reset_password input:focus {
    border-color: #AD8C3E;
    box-shadow: 0 0 15px rgba(173, 140, 62, 0.2);
    outline: none;
}

/* The "Reset Password" Button */
form.lost_reset_password button[type="submit"] {
    width: 100%; 
    background: linear-gradient(135deg, #AD8C3E, #FAD961);
    color: #050914;
    font-family: 'Playfair Display', serif; font-weight: 900; 
    text-transform: uppercase; letter-spacing: 2px;
    padding: 15px; border: none; border-radius: 6px;
    cursor: pointer; transition: all 0.3s ease;
    margin-top: 10px;
}

form.lost_reset_password button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(173, 140, 62, 0.5);
}

/* --- LOST PASSWORD TEXT REFINEMENTS --- */

/* 1. The "Lost your password?" Instruction Text */
.woocommerce-ResetPassword p {
    color: #e0e0e0;                 /* Brighter, cleaner white */
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;            /* More space before the box */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Slight shadow for readability */
}

/* 2. The "Username or email" Label */
.woocommerce-ResetPassword label {
    display: block;
    color: #AD8C3E;                 /* Iconic Gold */
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;            /* Space between label and box */
    text-align: left;               /* Align left for better flow */
}

/* 3. The Input Box Itself */
.woocommerce-ResetPassword input.input-text {
    background: rgba(0, 0, 0, 0.6) !important; /* Darker glass background */
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 6px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-align: center;             /* Center the text you type */
}

/* When you click into the box (Focus) */
.woocommerce-ResetPassword input.input-text:focus {
    border-color: #FAD961 !important; /* Bright Gold Border */
    box-shadow: 0 0 15px rgba(173, 140, 62, 0.3) !important; /* Gold Glow */
    outline: none;
}

/* =========================================
   13. WOOCOMMERCE "ICONIC" OVERRIDES
   ========================================= */

/* Container Adjustment */
.iconic-woocommerce-wrapper {
    max-width: 1200px;
    margin: 40px auto 100px auto; /* Extra bottom margin for fixed footer */
    padding: 20px;
    color: #e0e0e0;
}

/* --- PRODUCT PAGE LAYOUT --- */
.woocommerce div.product {
    background: rgba(10, 15, 25, 0.85); /* Glass Dark */
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Product Images (Smaller & Centered) */
.woocommerce div.product div.images img {
    border: 1px solid #AD8C3E;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    
    /* 🚨 CHANGED: Limit width and center it */
    width: auto;           /* Let width adjust naturally */
    max-width: 350px;      /* Cap the size (adjust this number if you want it bigger/smaller) */
    max-height: 400px;     /* Prevent it from getting too tall */
    object-fit: contain;   /* Keep aspect ratio perfect */
    display: block;
    margin: 0 auto 20px auto; /* Center image and add bottom spacing */
}

/* Mobile Adjustment: Make it slightly smaller on phones if needed */
@media screen and (max-width: 768px) {
    .woocommerce div.product div.images img {
        max-width: 250px;
    }
}

/* Product Title & Price */
.woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    color: #FAD961;
    font-size: 2.2rem;
    margin-top: 0;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Input Fields (Quantity, etc) */
.woocommerce input.qty {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #AD8C3E !important;
    border-radius: 4px;
    padding: 10px;
}

/* "Add to Cart" Button */
.woocommerce button.button.alt {
    background: linear-gradient(135deg, #AD8C3E, #FAD961) !important;
    color: #000 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    padding: 15px 30px !important;
    transition: 0.3s;
}
.woocommerce button.button.alt:hover {
    box-shadow: 0 0 20px rgba(173, 140, 62, 0.6) !important;
    transform: translateY(-2px);
}

/* Tabs (Description/Reviews) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: #111 !important;
    border: 1px solid #333 !important;
    border-bottom: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #AD8C3E !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: #050914 !important;
    border: 1px solid #333 !important;
    padding: 20px !important;
    color: #ccc;
}

/* --- SHOP ARCHIVE (GRID) --- */
.woocommerce ul.products li.product {
    background: rgba(10, 15, 25, 0.85);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.woocommerce ul.products li.product h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}
.woocommerce ul.products li.product .price {
    color: #FAD961;
}
.woocommerce ul.products li.product .button {
    background: transparent !important;
    border: 1px solid #AD8C3E !important;
    color: #AD8C3E !important;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 10px;
}
.woocommerce ul.products li.product .button:hover {
    background: #AD8C3E !important;
    color: #000 !important;
}

/* Hide Default Sidebar/Widgets if they leak through */
.widget_pages, .widget_meta, .widget_archive {
    display: none !important;
}

