body{
    background: #090452 !important;
}
/*/* ==========================================================================
   VOWELRATE GLOBAL CORE VARIABLES & LAYOUT RESET
   ========================================================================== */
:root {
    --bg-dark-blue: #0a1128;
    --cyber-cyan: #00e5ff;
    --cyber-glow-tint: rgba(0, 229, 255, 0.15);
    --border-glass-line: rgba(255, 255, 255, 0.04);
    --text-slate-muted: #94a3b8;
}

/* Master Section Outer Frame - Desktop Safe Screen-Fit Guard */
.male-products-section {
    max-width: 90% !important; /* Never allows components to cross desktop screen bounds */
    width: 90% !important;
    margin: 80px auto;
    padding: 0;
    background: transparent !important; /* Pure transparency match */
    background-color: transparent !important;
    overflow: hidden !important; 
    box-sizing: border-box;
}

/* Modern Tech-Fashion Section Header */
.section-title-box {
    text-align: center;
    margin-bottom: 50px;
    background: transparent !important;
}

.section-title-box .sub-tag {
    color: var(--cyber-cyan) !important; /* Cyber Cyan active brand accent */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
    font-family: monospace;
}

.section-title-box h2 {
    font-size: 36px;
    color: #ffffff !important; /* High contrast text on dark backdrop */
    margin: 12px 0 10px 0;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-title-box p {
    color: var(--text-slate-muted) !important;
    font-size: 14.5px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   THE MODERN SQUEEZE-PROOF INTERACTIVE GRID
   ========================================================================== */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)) !important; /* Prevents cards crushing or collapsing */
    gap: 30px !important;
    width: 100% !important;
    background: transparent !important;
    box-sizing: border-box;
}

/* 100% INVISIBLE BACKGROUND PADDED PRODUCT CARDS */
.product-card {
    background: transparent !important; /* Destroys white patch boxes completely */
    background-color: transparent !important;
    border: 1px solid var(--border-glass-line) !important; /* Thin discrete structure boundary line */
    border-radius: 16px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none !important;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.01) !important;
    background-color: rgba(6, 11, 24, 0.4) !important; /* Smoky luxury focus tint layer on focus */
    border-color: rgba(0, 229, 255, 0.2) !important;
    transform: translateY(-6px);
}

/* Image Presentation Stage Container */
.product-image-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.15) !important; /* Dark contrast background frame */
    height: 280px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.product-image-wrapper img {
    width: 85%;
    height: auto;
    object-fit: contain; /* Blocks layout picture compression distortions */
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Minimalist Status Ribbon Badges */
.badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    font-family: monospace;
    z-index: 2;
}
.badge.sale { background: #ff4757 !important; color: #ffffff !important; }
.badge.new { background: var(--cyber-cyan) !important; color: #000000 !important; border: 1px solid var(--cyber-cyan); }

/* Image Action Hover Screen */
.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 24, 0.6) !important; /* Dark fluid cyber glass tint */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.quick-view-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-view-btn:hover {
    background: var(--cyber-cyan) !important;
    box-shadow: 0 0 15px var(--cyber-cyan);
}

/* Card Hover Activations */
.product-card:hover .primary-img {
    transform: scale(1.05) rotate(-2deg) !important;
}

.product-card:hover .action-overlay { opacity: 1; }
.product-card:hover .quick-view-btn { transform: translateY(0); }

/* Typographic Detail Labels Sheets */
.product-details {
    padding: 22px !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: transparent !important;
}

.product-details .category {
    font-size: 11px !important;
    color: var(--cyber-cyan) !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.product-details h3 {
    font-size: 20px !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.price-box {
    margin-bottom: 22px !important;
    margin-top: auto !important; /* Forces prices and actions straight bottom horizontal plane line */
    display: flex;
    gap: 12px;
    align-items: center;
}

.current-price {
    font-size: 21px !important;
    font-weight: 900 !important;
    font-family: monospace;
    color: #ffffff !important;
}

.old-price {
    font-size: 14px !important;
    color: #4a5568 !important; /* Dimmed line-through silver gray */
    text-decoration: line-through;
    font-family: monospace;
}

/* Modern Minimalist Direct Action Link Button */
.male-explore-btn {
    display: block !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-decoration: none !important;
    padding: 13px !important;
    border-radius: 8px !important;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    transition: all 0.2s ease !important;
}

.product-card:hover .male-explore-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================================================
   INTERACTIVE QUICK VIEW POPUP MODAL ARCHITECTURE
   ========================================================================== */
.quickview-modal {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 24, 0.8) !important; /* Deep dark translucent mask screen overlay */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999 !important; /* Force stay absolute top layout layer */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quickview-modal.active { opacity: 1; visibility: visible; }

/* Modal Content Base Frame Box (Perfect Transparent Blend) */
.modal-content {
    background: rgba(6, 11, 24, 0.9) !important; /* Pure elegant dark space background modal */
    border: 1px solid var(--border-glass-line) !important;
    width: 90%;
    max-width: 750px;
    border-radius: 20px !important;
    padding: 35px !important;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.quickview-modal.active .modal-content { transform: scale(1); }

.close-modal-btn {
    position: absolute !important;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    color: var(--text-slate-muted) !important;
    transition: color 0.2s;
}
.close-modal-btn:hover { color: #ff4757 !important; }

.modal-body {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    text-align: left;
}

.modal-img-container {
    flex: 1 1 300px;
    background: rgba(0, 0, 0, 0.2) !important; /* Deep dark image slot base frame */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.modal-img-container img {
    width: 95%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.modal-info-container {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.modal-info-container h2 {
    margin: 0 0 10px 0 !important;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.modal-desc {
    color: var(--text-slate-muted) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.modal-price {
    font-size: 24px;
    font-weight: 900;
    font-family: monospace;
}

img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}