@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');
@import url("https://fonts.googleapis.com/css?family=Metal+Mania");

@font-face {
    font-family: "Booter - Zero Zero";
    src: url("Fonts/Booter - Zero Zero.woff") format("woff"),
         url("Fonts/Booter - Zero Zero.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
/* 
* {
    box-sizing: border-box;
    font-family: Raleway;
    color: #777;
} */

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.nav ul {
    margin: 0;
}

.nav li {
    display: inline;
}

.nav a {
    display: inline-block;
    padding: .5em;
    color: white;
    text-decoration: none;
}

.main-nav {
    text-align: center;
    font-size: 1.1em;
    font-weight: lighter;
    border-bottom: 1px solid rgba(255, 255, 255, .3)
}

.main-nav li {
    padding: 0 5%;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, .3)
}

.main-header {
    background-color: rgba(0, 0, 0, .6);
    background-image: url("Images/Header Background.jpg");
    background-blend-mode: multiply;
    background-size: cover;
    padding-bottom: 30px;
}

.band-name {
    text-align: center;
    margin: 0;
    font-size: 4em;
    font-family: "Booter - Zero Zero";
    font-weight: normal;
    color: white;
}

.band-name-large {
    font-size: 8em;
}

.content-section {
    margin: 2em 1em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2em;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1em;
    }
}
.section-header {
    font-weight: 700;
    color: #0f3460;
    text-align: center;
    font-size: 1.75rem;
    letter-spacing: 0.8px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.about-band-image {
    float: left;
    height: 200px;
    width: 200px;
    margin: 15px;
    border-radius: 50%;
}

.main-footer {
    background-color: #56CCF2;
    color: white;
    padding: .25em 0;
}

.main-footer-container {
    display: flex;
    align-items: center;
}

.main-footer-container ul {
    flex-grow: 1;
    text-align: end;
}

.footer-nav li {
    padding: 0 .5em;
}

.footer-nav img {
    width: 30px;
    height: 30px;
}

.btn {
    text-align: center;
    vertical-align: middle;
    padding: .67em .67em;
    cursor: pointer;
}

.btn-header {
    margin: .5em 15% 2em 15%;
    color: white;
    border: 2px solid #2D9CDB;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 0;
    font-size: 1.5em;
    font-weight: lighter;
    padding-left: 2em;
    padding-right: 2em;
}

.btn-header:hover {
    background-color: rgba(255, 255, 255, .3);
}

.btn-play {
    display: block;
    margin: 0 auto;
    color: #2D9CDB;
    font-size: 4em;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 0;
    text-align: center;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tour-row {
    border-bottom: 1px solid black;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.tour-row:last-child {
    border: none;
}

.tour-item {
    display: inline-block;
    padding-right: .5em;
}

.tour-date {
    color: #555;
    width: 11%;
    font-weight: bold;
}

.tour-city {
    width: 24%;
}

.tour-arena {
    width: 42%;
}

.tour-btn {
    max-width: 19%;
}

.shop-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.shop-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d4dce8;
    transform: translateY(-4px);
}

.shop-item-title {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.5;
    flex-grow: 1;
    letter-spacing: 0.2px;
}

/* Clickable product title link */
a.shop-item-title-link {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.2s ease;
}
a.shop-item-title-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.shop-item-image-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f4f7fc;
}

.shop-item-image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
}

.shop-item:hover .shop-item-image {
    transform: scale(1.06);
}

.shop-item-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f2f7;
    margin-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-item-price {
    color: #0f3460;
    font-weight: 700;
    font-size: 1.25rem;
    min-width: 60px;
    flex-shrink: 0;
}

.shop-item .shop-item-button {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px !important;
    font-size: 0.8rem !important;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding: 32px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .shop-items {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
        padding: 20px 0;
    }
    
    .shop-item {
        padding: 12px;
    }
    
    .shop-item-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .shop-item-price {
        font-size: 1.1rem;
    }
    
    .shop-item .shop-item-button {
        min-width: 100px;
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .shop-items {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
        padding: 16px 0;
    }
    
    .shop-item {
        padding: 10px;
    }
    
    .shop-item-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .shop-item-price {
        font-size: 1rem;
    }
    
    .shop-item .shop-item-button {
        min-width: 80px;
        padding: 6px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .fav-btn {
        padding: 2px !important;
    }
    
    .fav-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}

.cart-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.85rem;
}

.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f0f2f7;
    margin-right: 1.5em;
    padding-bottom: 14px;
    margin-top: 10px;
}

.cart-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f7;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-item {
    flex: 1;
    min-width: 200px;
}

.cart-price {
    width: 100px;
    font-size: 1rem;
    color: #0f3460;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive Cart - Tablet */
@media (max-width: 1024px) {
    .cart-row {
        padding: 12px 0;
        gap: 12px;
    }
    
    .cart-item {
        min-width: 150px;
    }
    
    .cart-price {
        width: 90px;
        font-size: 0.95rem;
    }
    
    .cart-item-title {
        font-size: 0.9rem;
    }
    
    .cart-quantity-input {
        width: 50px;
        height: 36px;
    }
    
    .btn-danger {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Responsive Cart - Mobile */
@media (max-width: 768px) {
    .cart-row {
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cart-item {
        width: 100%;
        margin-bottom: 4px;
        order: 1;
    }
    
    .cart-price {
        width: auto;
        text-align: left;
        order: 2;
    }
    
    .cart-quantity {
        width: 100%;
        order: 3;
        gap: 8px;
    }
    
    .cart-item-title {
        font-size: 0.9rem;
    }
    
    .cart-total {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    
    .btn-danger {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cart-header {
        font-size: 0.7rem;
    }
    
    .cart-row {
        padding: 10px 0;
    }
    
    .cart-item-title {
        font-size: 0.8rem;
    }
    
    .cart-price {
        font-size: 0.9rem;
    }
    
    .cart-quantity-input {
        height: 32px;
        width: 50px;
        font-size: 0.9rem;
    }
    
    .btn-danger {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .cart-total {
        padding-top: 12px;
    }
    
    .cart-total-title {
        font-size: 1rem;
    }
    
    .cart-total-price {
        font-size: 1.25rem;
    }
}

.cart-item-title {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-image {
    width: 75px;
    height: auto;
    border-radius: 10px;
}

.btn-danger {
    color: white;
    background-color: #e74c3c;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.btn-danger:active {
    transform: translateY(0);
}

.cart-quantity-input {
    height: 38px;
    width: 60px;
    border-radius: 8px;
    border: 1.5px solid #e8eef5;
    background-color: #f8f9fc;
    color: #1a1a1a;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cart-quantity-input:focus {
    border-color: #667eea;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.cart-total {
    text-align: end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f2f7;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.cart-total-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.cart-total-price {
    color: #0f3460;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-purchase {
    display: block;
    margin: 40px auto 80px auto;
    font-size: 1.75em;
}

/* Pagination */
#pagination-controls {
    margin: 24px 0 12px;
    text-align: center;
}

.pagination-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #56CCF2;
    background: #fff;
    color: #2D9CDB;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.pagination-btn:hover:not(:disabled) {
    background: #56CCF2;
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.pagination-btn-active {
    background: #2D9CDB;
    color: #fff;
    border-color: #2D9CDB;
    pointer-events: none;
}

/* Sort Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 4px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 4px;
}

.sort-label {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232D9CDB' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: 1.5px solid #56CCF2;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 36px 7px 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 190px;
}

.sort-select:focus {
    outline: none;
    border-color: #2D9CDB;
    box-shadow: 0 0 0 3px rgba(45, 156, 219, 0.15);
}

.sort-select:hover {
    border-color: #2D9CDB;
}