/**************

Use this file (CustomStyles.css) to make your custom CSS changes. Copy what styles you need to change from main.css, paste in this file,
    make your changes, and save. *Only copy/paste the lines you plan on changing, nothing more.

    For example, to update the cover-wrapper copy/paste this to make your changes:
    #cover-wrapper { background: linear-gradient(rgba($color-black, 0.15), rgba($color-black, 0.15)), url('../../images/waterford/nuts-pattern.jpg'); }

**********/

/* ========================================
   ACCENT COLORS - Yellow/Gold Theme (AFT Match)
   ======================================== */
:root {
    --aft-navy: #1B2A41;
    --aft-gold: #C6A634;
    --aft-gold-hover: #D9B93D;
    --aft-orange: #C65D21;
    --aft-orange-hover: #D96A28;
    --accent-dark-blue: #1e3a5f;
}

/* ========================================
   TOP UTILITY BAR - BEST IN CLASS
   ======================================== */
#utility-bar {
    background: linear-gradient(90deg, #1a2d42 0%, #243447 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    display: block !important;
    width: 100%;
    position: relative;
    z-index: 9999;
}

#utility-bar .container {
    display: flex !important;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
    width: 100%;
}

.utility-left {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.utility-right {
    display: flex;
    align-items: stretch;
}

.welcome-text {
    color: #fff;
    font-weight: 400;
}

.welcome-text strong {
    color: #fff;
    font-weight: 700;
}

.utility-divider {
    color: #fff;
    padding: 0 12px;
    opacity: 0.5;
}

.utility-phone {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.utility-phone:hover {
    color: #ccc;
    text-decoration: none;
}

.utility-phone i {
    margin-right: 8px;
    font-size: 14px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utility-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    font-weight: 400;
    gap: 6px;
}

.utility-link:hover {
    color: #ccc;
    text-decoration: none;
}

.utility-link i {
    font-size: 13px;
}

.utility-cta {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    border-radius: 0;
    gap: 8px;
}

.utility-cta i {
    font-size: 14px;
}

.btn-accent {
    background-color: var(--aft-gold);
    color: #000 !important;
}

.btn-accent:hover {
    background-color: var(--aft-gold-hover);
    color: #000 !important;
    text-decoration: none;
}

.btn-accent-alt {
    background-color: var(--aft-orange);
    color: #fff !important;
    border: none;
}

.btn-accent-alt:hover {
    background-color: var(--aft-orange-hover);
    color: #fff !important;
    text-decoration: none;
}

.btn-cart {
    background-color: #333;
    color: #fff !important;
}

.btn-cart:hover {
    background-color: #444;
    color: #fff !important;
    text-decoration: none;
}

.cart-badge {
    background: var(--aft-gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 5px;
}

/* ========================================
   HEADER - BEST IN CLASS LAYOUT
   ======================================== */
#mainHeader {
    background: #fff;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

#mainHeader .header {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

#mainHeader .container {
    max-width: 1400px;
    padding: 0 40px;
}

#mainHeader .headermenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container {
    flex-shrink: 0;
    width: 250px !important;
}

.logo-container img,
.logo img {
    max-height: 150px !important;
    max-width: 250px !important;
    width: auto !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
}

.logo-text .tagline {
    font-size: 22px;
    font-weight: 700;
    color: #1a2d42;
    letter-spacing: -0.5px;
}

.logo-text .sub-tagline {
    font-size: 13px;
    color: var(--aft-gold);
    font-weight: 600;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.logo-text .sub-tagline i {
    margin-right: 8px;
    font-size: 14px;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.header-search form {
    display: flex;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.header-search form:focus-within {
    border-color: var(--aft-gold);
}

.header-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    background: #fafafa;
}

.header-search input:focus {
    background: #fff;
}

.header-search button {
    background: var(--aft-gold);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
}

.header-search button:hover {
    background: var(--aft-gold-hover);
}

/* Header Actions (Account & Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-account,
.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.header-account i,
.header-cart i {
    font-size: 20px;
}

.header-account:hover,
.header-cart:hover {
    color: var(--aft-gold);
    text-decoration: none;
}

.cart-count {
    background: var(--aft-gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 3px;
}

/* Navigation in Header */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.header-nav .nav-menu > li {
    position: relative;
}

.header-nav .nav-item {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.header-nav .nav-item:hover {
    background: #f0f0f0;
    color: #333;
}

.header-nav .nav-item i {
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.6;
}

/* Hide old elements */
#mainHeader .navbar,
#mainHeader > .header > .container > .headermenu > ul:last-of-type {
    display: none;
}

/* ========================================
   MAIN NAVIGATION DROPDOWNS - Prominent Style
   ======================================== */
.header-nav {
    display: flex !important;
    gap: 10px;
    align-items: center;
}

.header-nav .dropdown-btn {
    list-style: none;
}

.header-nav .nav-item.has-dropdown {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(2, 55, 92, 0.2);
    border-radius: 8px;
    padding: 12px 20px !important;
    color: var(--aft-navy) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-nav .nav-item.has-dropdown:hover,
.header-nav .nav-item.has-dropdown:focus {
    background: var(--aft-gold) !important;
    border-color: var(--aft-gold) !important;
    color: var(--aft-navy) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 181, 0, 0.4);
}

.header-nav .nav-item.has-dropdown .fa-chevron-down {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.header-nav .nav-item.has-dropdown:hover .fa-chevron-down {
    transform: translateY(2px);
    opacity: 1;
}

/* Dropdown menu styling */
.header-nav .dropdown-btn .dropdown-menu {
    border-radius: 10px !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18) !important;
    padding: 10px 0 !important;
    margin-top: 10px !important;
    min-width: 200px;
}

.header-nav .dropdown-btn .dropdown-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .dropdown-btn .dropdown-item {
    padding: 12px 24px !important;
    font-size: 14px;
    color: #333 !important;
    transition: all 0.15s ease;
    display: block;
    font-weight: 500;
}

.header-nav .dropdown-btn .dropdown-item:hover {
    background-color: var(--aft-gold) !important;
    color: var(--aft-navy) !important;
    padding-left: 28px !important;
}

/* Mobile menu toggle - show only on mobile */
#mainmenu-toggle {
    display: none;
}

/* Responsive Header */
@media (max-width: 1200px) {
    .header-search {
        max-width: 300px;
    }
    
    .header-nav .nav-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .logo-text .tagline {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .header-nav {
        display: none;
    }
    
    .header-search {
        max-width: 400px;
        flex: 1;
    }
    
    .logo-text {
        display: none;
    }
    
    #mainmenu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .header-search {
        max-width: 100%;
    }
    
    #mainHeader .headermenu {
        flex-wrap: wrap;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
}

/* Search bar accent */
#inxsqlSearchForm button[type="submit"],
.btn-icon#inxsqlsearch {
    background-color: var(--aft-gold) !important;
    border-color: var(--aft-gold) !important;
}

#inxsqlSearchForm button[type="submit"]:hover,
.btn-icon#inxsqlsearch:hover {
    background-color: var(--aft-gold-hover) !important;
}

/* ========================================
   CATEGORY CARDS
   ======================================== */
#home-products {
    padding: 50px 100px;
}

#home-products h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

#home-products > .row > .col-12 > p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #666;
}

.cat-grid-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cat-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.cat-grid-item .cat-grid-subtitle {
    border-radius: 0 0 8px 8px;
    background-color: var(--aft-navy) !important;
    font-weight: 600;
    padding: 12px 10px;
}

@media (max-width: 768px) {
    #home-products {
        padding: 40px 15px;
    }
}

/* ========================================
   BUTTONS - ACCENT STYLE
   ======================================== */
.btn {
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--aft-gold) !important;
    border-color: var(--aft-gold) !important;
    color: #000 !important;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--aft-gold-hover) !important;
    border-color: var(--aft-gold-hover) !important;
    color: #000 !important;
}

/* ========================================
   HERO SECTION - MODERN STYLE
   ======================================== */
#home-banner {
    padding: 30px 100px 40px 100px;
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}

#home-banner .row {
    margin: 0;
}

#home-slider {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.home-slide {
    border-radius: 12px;
}

.home-slide-contents {
    padding: 60px 50px;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.hero-subtitle {
    display: inline-block;
    color: var(--aft-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--aft-gold);
}

.home-slide-contents h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-size: 3rem;
    max-width: 600px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #fff;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    background-color: var(--aft-orange);
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.25s;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(198, 93, 33, 0.4);
}

.hero-cta:hover {
    background-color: var(--aft-orange-hover);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 93, 33, 0.5);
}

/* Hero bullet points */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-features li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.hero-features li::before {
    content: "●";
    color: var(--aft-gold);
    font-weight: bold;
    margin-right: 12px;
    font-size: 12px;
}

/* Responsive Hero */
@media (max-width: 1400px) {
    #home-banner {
        padding: 25px 60px 35px 60px;
    }
}

@media (max-width: 1200px) {
    #home-banner {
        padding: 25px 40px 35px 40px;
    }
}

@media (max-width: 992px) {
    #home-banner {
        padding: 20px 30px 30px 30px;
    }
    
    .home-slide-contents {
        padding: 40px 30px;
    }
    
    .home-slide-contents h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    #home-banner {
        padding: 15px 15px 20px 15px;
    }
    
    #home-slider {
        border-radius: 10px;
    }
    
    .home-slide-contents {
        padding: 30px 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    }
    
    .home-slide-contents h1 {
        font-size: 1.8rem;
    }
    
    .hero-features li {
        font-size: 14px;
    }
    
    .hero-cta {
        padding: 14px 30px;
        font-size: 13px;
    }
}

/* ========================================
   CUSTOMER BENEFITS SECTION
   ======================================== */
#home-highlights.container-fluid {
    max-width: calc(100% - 200px) !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, var(--aft-navy) 0%, #0d1a2d 100%) !important;
    border-radius: 16px;
    padding: 50px 30px !important;
    box-sizing: border-box;
}

#home-highlights {
    background: linear-gradient(135deg, var(--aft-navy) 0%, #0d1a2d 100%) !important;
    max-width: calc(100% - 200px) !important;
    margin: 0 auto !important;
    border-radius: 16px;
    padding: 50px 30px !important;
}

#home-highlights h1 {
    font-size: 2rem;
    margin-bottom: 30px;
}

#home-highlights .icon-circle {
    background-color: var(--aft-gold) !important;
    color: #000 !important;
    width: 70px;
    height: 70px;
    font-size: 28px;
}

#home-highlights .icon-box p {
    font-size: 15px;
    margin-top: 15px;
}

@media (max-width: 992px) {
    #home-highlights,
    #home-highlights.container-fluid {
        max-width: calc(100% - 120px) !important;
    }
}

@media (max-width: 768px) {
    #home-highlights,
    #home-highlights.container-fluid {
        max-width: calc(100% - 30px) !important;
        border-radius: 8px;
    }
}

/* ========================================
   FOOTER ACCENTS
   ======================================== */
.footer-hdg {
    color: var(--aft-gold) !important;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

/* Desktop - utility bar always visible */
@media (min-width: 993px) {
    #utility-bar {
        display: block !important;
    }
    
    #utility-bar .container {
        flex-direction: row;
    }
    
    .utility-left, .utility-right {
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    #utility-bar {
        display: block !important;
    }
    
    #utility-bar .container {
        flex-direction: column;
        min-height: auto;
    }
    
    .utility-left, .utility-right {
        justify-content: center;
        width: 100%;
    }
    
    .utility-left {
        padding: 8px 0;
        border-bottom: 1px solid #2a3f5a;
    }
    
    .utility-right {
        flex-wrap: wrap;
    }
    
    .utility-link {
        padding: 10px 12px;
    }
    
    .utility-cta {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    .logo-text .tagline {
        font-size: 14px;
    }
    
    .logo-text .sub-tagline {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .welcome-text, .utility-divider {
        display: none;
    }
    
    .utility-phone {
        padding: 8px 10px;
    }
    
    .utility-link {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .utility-cta {
        padding: 8px 12px;
        font-size: 10px;
    }
}

