/* Additional Custom Styles for 24G Style Theme */

/* Landing Page - Enter Sign */
.enter-sign {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    border: 3px solid #d4a574;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    opacity: 0;
    animation: fadeInFlash 2s ease-in-out 1s forwards, flashPulse 2s ease-in-out 3s infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

@keyframes fadeInFlash {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes flashPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
        border-color: #d4a574;
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 165, 116, 1);
        border-color: #fff;
    }
}

.enter-text {
    color: #d4a574;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 4px;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
}

.enter-arrow {
    color: #d4a574;
    font-size: 32px;
    transition: all 0.3s ease;
}

.enter-sign:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 50px rgba(212, 165, 116, 1);
}

.enter-sign:hover .enter-text,
.enter-sign:hover .enter-arrow {
    color: #fff;
}

.enter-sign:hover .enter-arrow {
    transform: translateX(10px);
}

.enter-sign:active {
    animation: none;
}

@media (max-width: 768px) {
    .enter-sign {
        top: 55%;
        padding: 15px 30px;
    }
    
    .enter-text {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .enter-arrow {
        font-size: 24px;
    }
}

/* Search Overlay with Background Image */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/24GtvBLG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #d4a574;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-close:hover {
    color: #fff;
}

.search-container {
    background: #1a1a1a;
    border: 2px solid #d4a574;
    border-radius: 10px;
    padding: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-field {
    flex: 1;
    padding: 15px 20px;
    background: #000;
    border: 2px solid #333;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.search-field:focus {
    border-color: #d4a574;
}

.search-submit {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.search-submit:hover {
    background: #d4a574;
    color: #000;
}

.search-results {
    max-height: 500px;
    overflow-y: auto;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.search-result-item {
    background: #000;
    border: 2px solid #333;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.search-result-item:hover {
    border-color: #d4a574;
}

.search-result-link {
    display: block;
    text-decoration: none;
    color: #fff;
}

.search-result-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-result-item:hover .search-result-image img {
    transform: scale(1.05);
}

.search-result-info {
    padding: 15px;
}

.search-result-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 500;
}

.search-result-price {
    color: #d4a574;
    font-weight: 600;
}

.search-loading,
.no-results,
.search-error {
    text-align: center;
    padding: 40px;
    color: #d4a574;
    font-size: 18px;
}

/* Categories Dropdown */
.categories-dropdown {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1a1a1a;
    border-left: 3px solid #d4a574;
    z-index: 10000;
    transition: right 0.3s;
    overflow-y: auto;
}

.categories-dropdown.active {
    right: 0;
}

.categories-dropdown-content {
    padding: 20px;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.categories-header h3 {
    color: #d4a574;
    font-size: 24px;
    margin: 0;
    font-family: 'Georgia', serif;
}

.categories-close {
    background: transparent;
    border: none;
    color: #d4a574;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.categories-close:hover {
    color: #fff;
}

.categories-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 15px;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #000;
    border: 2px solid #333;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.category-item a:hover {
    border-color: #d4a574;
    background: #1a1a1a;
}

.category-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #fff;
}

.category-item span {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
}

.category-count {
    color: #d4a574;
    font-size: 14px;
}

/* Categories and Search Toggle Buttons */
.categories-toggle,
.brands-toggle,
.search-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-toggle:hover,
.brands-toggle:hover,
.search-toggle:hover {
    transform: scale(1.1);
}

/* Navigation Icon Images */
.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s;
}

.categories-toggle:hover .nav-icon,
.brands-toggle:hover .nav-icon,
.search-toggle:hover .nav-icon {
    filter: brightness(1.3);
}

/* Brands Dropdown */
.brands-dropdown {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1a1a1a;
    border-left: 3px solid #d4a574;
    z-index: 10000;
    transition: right 0.3s;
    overflow-y: auto;
}

.brands-dropdown.active {
    right: 0;
}

.brands-dropdown-content {
    padding: 20px;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.brands-header h3 {
    color: #d4a574;
    font-size: 24px;
    margin: 0;
    font-family: 'Georgia', serif;
}

.brands-close {
    background: transparent;
    border: none;
    color: #d4a574;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.brands-close:hover {
    color: #fff;
}

.brands-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-item {
    margin-bottom: 15px;
}

.brand-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #000;
    border: 2px solid #333;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.brand-item a:hover {
    border-color: #d4a574;
    background: #1a1a1a;
}

.brand-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #fff;
}

.brand-item span {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
}

.brand-count {
    color: #d4a574;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .categories-dropdown,
    .brands-dropdown {
        width: 100%;
        right: -100%;
    }
    
    .search-overlay-content {
        width: 95%;
    }
    
    .search-container {
        padding: 20px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .search-result-info {
        padding: 10px;
    }
    
    .search-result-title {
        font-size: 12px;
    }
    
    /* Make navigation icons slightly larger on mobile for better touch targets */
    .nav-icon {
        width: 28px;
        height: 28px;
    }
}

/* Single Product Page - Vertical Thumbnails on Left */
body.single-product .woocommerce-product-gallery {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 15px !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .flex-viewport {
    flex: 1 !important;
    max-width: none !important;
}

body.single-product .flex-control-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-right: 5px !important;
    list-style: none !important;
    max-height: 600px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin !important;
    scrollbar-color: #d4a574 #1a1a1a !important;
}

/* Custom scrollbar for webkit browsers */
body.single-product .flex-control-thumbs::-webkit-scrollbar {
    width: 6px !important;
}

body.single-product .flex-control-thumbs::-webkit-scrollbar-track {
    background: #1a1a1a !important;
    border-radius: 3px !important;
}

body.single-product .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #d4a574 !important;
    border-radius: 3px !important;
}

body.single-product .flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: #fff !important;
}

body.single-product .flex-control-thumbs li {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    height: 150px !important;
    min-height: 150px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

body.single-product .flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 2px solid #fff !important;
    transition: border-color 0.3s !important;
    display: block !important;
}

body.single-product .flex-control-thumbs li img:hover,
body.single-product .flex-control-thumbs li img.flex-active {
    border-color: #d4a574 !important;
}

/* Single Product Main Image - Full Width */
body.single-product .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Shop/Archive Page - Show All Variants Horizontally */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block !important;
    position: relative !important;
}

.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    width: 100% !important;
    height: 100% !important;
    border: 3px solid #fff !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.woocommerce ul.products li.product:hover .attachment-woocommerce_thumbnail {
    border-color: #d4a574 !important;
}

/* Ensure proper image container sizing */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Mobile - Single Product Horizontal Thumbnails */
@media (max-width: 768px) {
    body.single-product .woocommerce-product-gallery {
        flex-direction: column !important;
    }
    
    body.single-product .flex-control-thumbs {
        flex-direction: row !important;
        width: 100% !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    
    body.single-product .flex-control-thumbs::-webkit-scrollbar {
        display: none !important;
    }
    
    body.single-product .flex-control-thumbs li {
        flex: 0 0 80px !important;
        min-width: 80px !important;
    }
}

/* WooCommerce Product Price - White Color */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #fff !important;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
    color: #fff !important;
    text-decoration: none;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
    color: #999 !important;
}

/* WooCommerce Product Gallery */
.woocommerce ul.products li.product .woocommerce-product-gallery,
.woocommerce-page ul.products li.product .woocommerce-product-gallery {
    position: relative;
    margin-bottom: 0;
}

.woocommerce ul.products li.product .woocommerce-product-gallery__wrapper,
.woocommerce-page ul.products li.product .woocommerce-product-gallery__wrapper {
    position: relative;
}

/* Single Product Main Image Border */
body.single-product .flex-viewport,
body.single-product .woocommerce-product-gallery__image img {
    border: 3px solid #fff !important;
    transition: border-color 0.3s !important;
}

body.single-product .woocommerce-product-gallery:hover .flex-viewport,
body.single-product .woocommerce-product-gallery:hover .woocommerce-product-gallery__image img {
    border-color: #d4a574 !important;
}

/* WooCommerce Product Styling */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #1a1a1a;
    border: 2px solid #333;
    overflow: visible;
    transition: transform 0.3s, border-color 0.3s;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    border: 3px solid #fff !important;
    transition: border-color 0.3s;
    margin-bottom: 0 !important;
}

.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
    border-color: #d4a574 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce-page ul.products li.product h2,
.woocommerce ul.products li.product h3,
.woocommerce-page ul.products li.product h3 {
    color: #fff !important;
    transition: color 0.3s;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
    text-decoration: none !important;
    border-bottom: none !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title:hover {
    color: #d4a574 !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_variable,
.woocommerce-page ul.products li.product .product_type_variable,
.woocommerce ul.products li.product .product_type_simple,
.woocommerce-page ul.products li.product .product_type_simple {
    position: static !important;
    width: 100% !important;
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    margin: 10px 0 0 0 !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce-page ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product .product_type_variable:hover,
.woocommerce-page ul.products li.product .product_type_variable:hover,
.woocommerce ul.products li.product .product_type_simple:hover,
.woocommerce-page ul.products li.product .product_type_simple:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

/* Added to cart message */
.woocommerce ul.products li.product .added_to_cart {
    position: static !important;
    width: 100% !important;
    background: #d4a574 !important;
    border: 2px solid #d4a574 !important;
    color: #000 !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    margin: 10px 0 0 0 !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* Loading state for add to cart */
.woocommerce ul.products li.product .button.loading,
.woocommerce-page ul.products li.product .button.loading {
    opacity: 0.6;
    position: relative;
}

.woocommerce ul.products li.product .button.loading::after,
.woocommerce-page ul.products li.product .button.loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border: 2px solid #d4a574;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ensure AJAX add to cart works */
.woocommerce .products .product .add_to_cart_button.ajax_add_to_cart {
    cursor: pointer;
}

.woocommerce .products .product .add_to_cart_button.added {
    display: none !important;
}

.woocommerce .products .product .added_to_cart.wc-forward {
    display: block !important;
}

/* Enhanced Pagination - Horizontal Layout */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 40px 0;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border: none;
    list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0 5px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 10px 16px !important;
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    color: #fff !important;
    text-decoration: none;
    display: inline-block;
    min-width: 45px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #d4a574 !important;
    border-color: #d4a574 !important;
    color: #000 !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #d4a574 !important;
    border-color: #d4a574 !important;
    color: #000 !important;
    font-weight: bold;
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    transition: transform 0.3s ease;
}

/* Scrolling Products Enhanced */
.scrolling-product-item a {
    text-decoration: none;
    display: block;
}

.scrolling-product-item a:hover {
    opacity: 0.9;
}

/* Header Enhancements */
.site-header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #d4a574;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }
    
    .main-navigation.desktop-menu {
        display: none !important;
    }
    
    .main-navigation.mobile-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 74px);
        background: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s;
        border-right: 2px solid #d4a574;
        z-index: 1000;
    }
    
    .main-navigation.mobile-menu.active {
        left: 0;
    }
    
    .main-navigation.mobile-menu a {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #333;
    }
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #d4a574;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* WooCommerce Overrides */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: #1a1a1a;
    color: #d4a574;
    border-top-color: #d4a574;
}

/* Buttons */
button,
.button,
input[type="submit"] {
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background: #d4a574;
    color: #000;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    width: 100%;
    margin-bottom: 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d4a574;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #d4a574;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .site-header,
    .scrolling-products-sidebar,
    .site-footer,
    button {
        display: none;
    }
}

/* Global Color Overrides - Change All Blue to Gold */
a {
    color: #d4a574 !important;
}

a:hover {
    color: #fff !important;
}

/* WooCommerce Links - Change Blue to Gold */
.woocommerce a,
.woocommerce-page a {
    color: #d4a574 !important;
}

.woocommerce a:hover,
.woocommerce-page a:hover {
    color: #fff !important;
}

/* Product Meta (SKU, Categories, Tags) */
.product_meta,
.product_meta a,
.product_meta span,
.woocommerce div.product .product_meta a,
.woocommerce div.product .product_meta span {
    color: #d4a574 !important;
}

/* SKU Specifically */
.sku_wrapper,
.sku_wrapper .sku,
.woocommerce div.product .product_meta .sku_wrapper,
.woocommerce div.product .product_meta .sku {
    color: #d4a574 !important;
}

/* Posted In / Categories */
.posted_in,
.posted_in a,
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta .posted_in a {
    color: #d4a574 !important;
}

/* Tagged / Tags */
.tagged_as,
.tagged_as a,
.woocommerce div.product .product_meta .tagged_as,
.woocommerce div.product .product_meta .tagged_as a {
    color: #d4a574 !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
    color: #d4a574 !important;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
    color: #d4a574 !important;
}

/* Rating Stars */
.woocommerce .star-rating span,
.woocommerce-page .star-rating span {
    color: #d4a574 !important;
}

/* WooCommerce Messages and Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: #1a1a1a !important;
    color: #d4a574 !important;
    border-top-color: #d4a574 !important;
    padding: 15px 20px !important;
    margin: 20px 0 !important;
    border-left: 4px solid #d4a574 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    margin-left: 10px !important;
    transition: all 0.3s !important;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: #d4a574 !important;
}

/* Fixed position notice at top */
.woocommerce-notices-wrapper {
    position: fixed;
    top: 74px;
    left: 0;
    right: 325px;
    z-index: 9999;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .woocommerce-notices-wrapper {
        right: 0;
    }
}

/* Cart Page Styles */
.page-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #d4a574;
    font-family: 'Georgia', serif;
    text-align: center;
}

.cart-section,
.checkout-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-cart-form,
.woocommerce table.shop_table {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid #333;
    margin-bottom: 30px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 15px;
    border: 1px solid #333;
    color: #fff;
}

.woocommerce table.shop_table th {
    background: #000;
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce table.shop_table td.product-thumbnail img {
    width: 80px;
    height: auto;
    border: 2px solid #fff;
}

.woocommerce table.shop_table td.product-name a {
    color: #d4a574 !important;
    font-weight: 600;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    color: #fff;
    font-weight: bold;
}

.woocommerce table.shop_table .quantity input {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 8px;
    width: 60px;
    text-align: center;
}

.woocommerce table.shop_table .product-remove a {
    background: transparent !important;
    color: #d4a574 !important;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none !important;
}

.woocommerce table.shop_table .product-remove a:hover {
    color: #fff !important;
}

/* Cart Totals */
.cart-collaterals,
.cart_totals {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 30px;
    margin-top: 30px;
}

.cart_totals h2 {
    color: #d4a574;
    font-size: 24px;
    margin-bottom: 20px;
}

.cart_totals table th,
.cart_totals table td {
    padding: 15px;
    border: 1px solid #333;
    color: #fff;
}

.cart_totals table th {
    text-align: left;
    font-weight: 600;
}

.woocommerce-shipping-calculator button {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 10px 20px !important;
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout a.checkout-button {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 15px 40px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    width: 100%;
    text-align: center;
    display: block !important;
    margin-top: 20px;
    text-decoration: none !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

/* Update Cart Button */
.woocommerce button[name="update_cart"] {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 12px 30px !important;
}

.woocommerce button[name="update_cart"]:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

/* Empty Cart Message */
.woocommerce-info,
.cart-empty {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    padding: 30px !important;
    text-align: center;
    color: #d4a574 !important;
}

.return-to-shop a {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 12px 30px !important;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none !important;
}

.return-to-shop a:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

/* Checkout Page */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: #000 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 12px !important;
}

.woocommerce form .form-row label {
    color: #d4a574 !important;
}

#place_order {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 15px 40px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    width: 100%;
}

#place_order:hover {
    background: #d4a574 !important;
    color: #000 !important;
}

/* Remove any default blue link colors */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    color: #d4a574 !important;
}

/* Ensure all text links are gold */
.entry-content a,
.entry-summary a,
.page-content a,
.comment-content a {
    color: #d4a574 !important;
}

.entry-content a:hover,
.entry-summary a:hover,
.page-content a:hover,
.comment-content a:hover {
    color: #fff !important;
}

/* Product Description Links */
.woocommerce-product-details__short-description a,
.woocommerce div.product .woocommerce-tabs .panel a {
    color: #d4a574 !important;
}

/* Account/Checkout Links */
.woocommerce-account a,
.woocommerce-checkout a {
    color: #d4a574 !important;
}

/* Override any remaining blue */
*:not(.select-options-btn):not(.button) {
    border-color: inherit;
}

a:not(.button):not(.select-options-btn) {
    color: #d4a574 !important;
    text-decoration: none !important;
}

a:not(.button):not(.select-options-btn):hover {
    color: #fff !important;
}

/* GET NOTICED Customer Banner */
.get-noticed-banner {
    width: 100%;
    background: #000;
    padding: 0px 0;
    overflow: hidden;
    margin-top: 0px;
}

.get-noticed-header {
    text-align: center;
    margin-bottom: 0px;
}

.get-noticed-title {
    font-size: 24px;
    font-weight: bold;
	border: 2px solid #ffffff
    letter-spacing: 8px;
    color: #ffffff;
	font-family: 'Georgia', serif;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 165, 116, 0.8), 0 0 60px rgba(212, 165, 116, 0.6);
    }
}

.customer-images-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.customer-images-track {
    display: flex;
    gap: 10px;
    animation: scrollCustomers 60s linear infinite;
    will-change: transform;
}

.customer-images-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCustomers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.customer-image-item {
    flex: 0 0 400px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 3px solid #d4a574;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.customer-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.8);
    border-color: #fff;
}

.customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.customer-image-item:hover .customer-image {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .get-noticed-title {
        font-size: 24px;
        letter-spacing: 6px;
    }
    
    .customer-image-item {
        flex: 0 0 350px;
        height: 450px;
    }
    
    .customer-images-track {
        gap: 10px;
        animation-duration: 50s;
    }
}

@media (max-width: 768px) {
    .get-noticed-banner {
        padding: 0px 0;
        margin-top: 0px;
    }
    
    .get-noticed-title {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .get-noticed-header {
        margin-bottom: 0px;
    }
    
    .customer-image-item {
        flex: 0 0 280px;
        height: 350px;
        border-width: 2px;
    }
    
    .customer-images-track {
        gap: 10px;
        animation-duration: 40s;
    }
}

@media (max-width: 480px) {
    .get-noticed-title {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .customer-image-item {
        flex: 0 0 220px;
        height: 280px;
    }
}

