/*
Theme Name: 24G Style
Theme URI: https://24gstyle.com
Author: 24G
Author URI: https://24gstyle.com
Description: Custom dark theme for 24G merchandise store
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 24gstyle
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    body.menu-open {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* Header Styles - Elegant Vertical Menu */
.site-header {
    background-color: #1a1a1a;
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4a574;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5px;
}

.site-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.site-logo {
    color: #d4a574;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.site-logo-link:hover .site-logo {
    color: #fff;
}

/* Elegant Menu - Horizontal Centered Layout */
.elegant-menu {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

/* Menu Items with Dropdowns */
.menu-item {
    position: relative;
}

.menu-link {
    display: block;
    color: #d4a574;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(212, 165, 116, 0.2);
}

.menu-link:hover {
    color: #fff;
    background: rgba(212, 165, 116, 0.1);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 2px solid #d4a574;
    border-top: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: #d4a574;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    color: #fff;
    background: rgba(212, 165, 116, 0.2);
    padding-left: 25px;
}

/* Icon Buttons Section */
.menu-icons {
    display: flex;
    gap: 0;
    align-items: center;
}

.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.icon-button:last-child {
    border-right: none;
}

.icon-button:hover {
    background: rgba(212, 165, 116, 0.1);
}

.icon-button .nav-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(15%) saturate(1200%) hue-rotate(360deg) brightness(90%) contrast(85%);
    transition: filter 0.3s ease;
}

.icon-button:hover .nav-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.icon-label {
    color: #d4a574;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.icon-button:hover .icon-label {
    color: #fff;
}

/* Remove old navigation styles */
.setup-menu {
    display: none;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #d4a574;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(212, 165, 116, 0.1);
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4a574;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Top Row (for logo and mobile toggle) */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Hero Header Section (for non-landing pages) */
.hero-header {
    position: relative;
    height: 500px;
    margin-top: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Keep hero header on all pages */
body.post-type-archive-product .hero-header,
body.tax-product_cat .hero-header,
body.tax-product_tag .hero-header {
    display: flex !important;
}

.hero-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-header-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.5));
}

@media (max-width: 768px) {
    .hero-header {
        height: 250px;
    }
    
    .hero-header-logo {
        max-width: 400px;
    }
}
    
    .hero-header-logo {
        max-width: 300px;
    }
}

/* Navigation - OLD STYLES REMOVED (Using Elegant Menu Above) */
/* See elegant-menu styles in header section above */

.primary-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 625;
    letter-spacing: 1px;
}

.cart-icon {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 625;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #d4a574 !important;
}

.cart-count {
    background: #d4a574;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    transition: color 0.3s;
}

.menu-toggle:hover,
.menu-toggle.active {
    color: #d4a574;
}

/* Mobile Styles - Elegant Menu Responsive */
@media (max-width: 1024px) {
    .elegant-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .menu-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .icon-button {
        padding: 12px 20px;
    }
    
    .icon-button .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .icon-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .site-logo {
        font-size: 22px;
        margin-bottom: 0;
    }
    
    /* Show mobile menu toggle */
    .menu-toggle {
        display: block;
    }
    
    /* Slide-in mobile menu */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
		background-image: url('../images/24GtvBLG.jpg');
        border-left: 3px solid #d4a574;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .elegant-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }
    
    .menu-item,
    .icon-button {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .menu-link,
    .icon-button {
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
    }
    
    .menu-link {
        font-size: 16px;
    }
    
    .icon-button {
        flex-direction: row;
        gap: 15px;
    }
    
    .icon-button .nav-icon {
        width: 24px;
        height: 24px;
    }
    
    .icon-label {
        font-size: 14px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: 1px solid rgba(212, 165, 116, 0.1);
        display: none;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .menu-item:hover .dropdown-menu,
    .menu-item.active .dropdown-menu {
        display: block;
    }
    
    .menu-icons {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobile menu overlay */
    .main-navigation::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .main-navigation.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu close button */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: #d4a574;
        font-size: 36px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        color: #fff;
    }
}

@media (min-width: 769px) {
    .mobile-menu-close {
        display: none;
    }
}

/* Landing Page Hero */
.landing-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

.hero-logo {
    position: absolute;
    z-index: 10;
    max-width: 600px;
    width: 80%;
    animation: fadeInOut 6s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Main Content Area */
.main-content {
    padding-top: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Scrolling Sidebar */
.scrolling-products-sidebar {
    position: fixed !important;
    right: 0 !important;
    top: 74px !important;
    width: 325px !important;
    height: calc(100vh - 74px) !important;
    background: rgba(26, 26, 26, 0.95) !important;
    border-left: 2px solid #d4a574 !important;
    overflow: hidden !important;
    z-index: 999 !important;
    display: block !important;
}

.products-scroll-container {
    animation: scrollProducts 30s linear infinite;
}

.scrolling-product-item {
    padding: 20px;
    border-bottom: 1px solid #333;
    transition: background 0.3s;
}

.scrolling-product-item a {
    text-decoration: none;
    display: block;
}

.scrolling-product-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.scrolling-product-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.scrolling-product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #d4a574;
}

.scrolling-product-price {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

@keyframes scrollProducts {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Shop Section */
.shop-section {
    padding: 20px;
    margin-right: 320px;
}

/* Single product pages need even less padding */
body.single-product .shop-section,
body.single-product .single-product-section {
    padding: 20px;
}

.shop-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #d4a574 !important;
}

/* Product Image Container */
.product-card > a,
.product-card .product-image-link,
.product-card .product-gallery-main-horizontal {
    position: relative;
    display: block;
    overflow: hidden;
}

/* Horizontal Image Row for Shop Page */
.product-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
}

.product-image-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image-item .product-image {
    width: 100%;
    height: 100%;
    display: block;
    border: 3px solid #fff;
    transition: border-color 0.3s;
    object-fit: cover;
    object-position: center;
}

.product-card:hover .product-image-item .product-image {
    border-color: #d4a574;
}

/* When only 2 images */
.product-images-row:has(> .product-image-item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

/* When only 1 image */
.product-images-row:has(> .product-image-item:only-child) {
    grid-template-columns: 1fr;
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    border: 3px solid #fff;
    transition: border-color 0.3s;
    object-fit: cover;
}

.product-card:hover .product-image {
    border-color: #d4a574;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 10px;
    margin-bottom: 24px;
    min-height: 80px;
    color: #fff;
    transition: color 0.3s;
}

.product-title a {
    color: #fff;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.3s;
}

.product-title a:hover,
.product-card:hover .product-title a {
    color: #d4a574;
    text-decoration: none !important;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    width: 100%;
}

.product-gallery-main {
    position: relative;
    width: 100%;
}

/* Shop/Archive Page - Horizontal Thumbnails */
.products-grid .product-gallery-thumbnails,
.woocommerce ul.products .product-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 5px;
    padding: 0 3px;
}

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

.single-product .product-gallery-main,
body.single-product .woocommerce-product-gallery__wrapper {
    flex: 1;
}

.single-product .product-gallery-thumbnails,
body.single-product .flex-control-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 150px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .product-gallery-thumbnail,
body.single-product .flex-control-thumbs li {
    width: 100% !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

.single-product .product-gallery-thumbnail img,
body.single-product .flex-control-thumbs li img {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.product-gallery-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    transition: border-color 0.3s;
    cursor: pointer;
}

.product-gallery-thumbnail:hover,
.product-gallery-thumbnail.active {
    border-color: #d4a574;
}

.product-gallery-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
}

/* Mobile Slider */
@media (max-width: 768px) {
    /* Single product stays vertical on mobile */
    .single-product .product-gallery,
    body.single-product .woocommerce-product-gallery {
        flex-direction: column;
    }
    
    .single-product .product-gallery-thumbnails,
    body.single-product .flex-control-thumbs {
        flex-direction: row !important;
        width: 100% !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .single-product .product-gallery-thumbnail,
    body.single-product .flex-control-thumbs li {
        flex: 0 0 80px !important;
        width: 80px !important;
    }
    
    /* Shop page slider */
    .products-grid .product-gallery-thumbnails,
    .woocommerce ul.products .product-gallery-thumbnails {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 10px;
        padding: 0 10px;
        margin-top: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .products-grid .product-gallery-thumbnails::-webkit-scrollbar,
    .woocommerce ul.products .product-gallery-thumbnails::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .products-grid .product-gallery-thumbnail,
    .woocommerce ul.products .product-gallery-thumbnail {
        flex: 0 0 calc(33.333% - 7px);
        min-width: calc(33.333% - 7px);
        scroll-snap-align: start;
        padding-bottom: calc(33.333% - 7px);
    }
}

/* Slider Navigation Dots */
.gallery-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .gallery-slider-dots {
        display: flex;
    }
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #d4a574;
    border-color: #d4a574;
    transform: scale(1.2);
}

.select-options-btn {
    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;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.select-options-btn:hover {
    background: #d4a574;
    color: #000;
}

/* Pagination Styles */
.woocommerce-pagination,
.pagination {
    text-align: center;
    margin: 40px 0;
    clear: both;
}

.woocommerce-pagination ul,
.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination ul li,
.pagination ul li {
    display: inline-block;
    margin: 0;
}

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

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

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

.woocommerce-pagination .prev,
.woocommerce-pagination .next,
.pagination .prev,
.pagination .next {
    font-weight: bold;
}

/* Page Numbers Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.nav-links .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 45px;
    text-align: center;
}

.nav-links .page-numbers:hover {
    background: #d4a574;
    border-color: #d4a574;
    color: #000;
}

.nav-links .page-numbers.current {
    background: #d4a574;
    border-color: #d4a574;
    color: #000;
    font-weight: bold;
}

.nav-links .prev,
.nav-links .next {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scrolling-products-sidebar {
        display: none !important;
    }
    
    .shop-section {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .shop-title {
        font-size: 48px;
    }
    
    /* Mobile Gallery Slider Overrides */
    .product-gallery-thumbnails {
        grid-template-columns: none !important;
        display: flex !important;
        gap: 10px !important;
    }
    
    /* Keep horizontal image row on mobile */
    .product-images-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
    
    .product-image-item {
        aspect-ratio: 1 / 1;
    }
    
    .product-image-item .product-image {
        border-width: 2px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-gallery-thumbnail {
        border-width: 2px;
    }
    
    /* Responsive Product Button */
    .select-options-btn {
        padding: 10px 15px;
        font-size: 10px;
    }
    
    .woocommerce ul.products li.product .button,
    .woocommerce-page ul.products li.product .button {
        padding: 10px 15px !important;
        font-size: 10px !important;
        position: static !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    /* Responsive Pagination */
    .woocommerce-pagination ul,
    .pagination ul,
    .nav-links {
        gap: 5px;
        flex-wrap: wrap;
    }
    
    .woocommerce-pagination ul li a,
    .woocommerce-pagination ul li span,
    .pagination ul li a,
    .pagination ul li span,
    .nav-links .page-numbers {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 14px;
    }
}
/* --- Bottom Image Styling --- */
.site-bottom-image {
    width: 100%;
    margin-top: 0px; /* Space above the image */
    text-align: center; /* In case the image doesn't fill 100% and you want it centered */
}

.site-bottom-image .full-width-image {
    width: 100%;
    height: auto;
    display: block; /* Removes extra space below the image */
    max-width: none; /* Optional: Limit maximum width if you don't want it to stretch too wide on very large screens */
    margin: 0 auto; /* Center the image if max-width is applied */
}

.site-bottom-image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.stacked-image {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}