@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: rgb(0, 0, 0);
    --white: #ffffff;
    --border-bottom: rgb(218, 218, 218);
    --red: rgb(255, 5, 0);
}

main {
    overflow: hidden;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}


a {
    text-decoration: none;
}

img {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

p,
li,
a,
span,
strong,
em,
b,
i,
u,
s,
small,
big,
cite,
code,
kbd,
mark,
ruby,
time,
var,
wbr,
del,
ins,
sub,
sup {
    font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/* Header css */
.page-header {
    top: 0;
    right: 0;
    left: 0;
    padding: 14px 0;
    z-index: 1;
    z-index: 999;
}

/* STICKY STYLES */
.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 14px 0;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    background: var(--white);
    border-bottom: 1px solid var(--border-bottom);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

a.site-logo img {
    max-width: 200px;
}






.site-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.site-navbar ul li {
    padding: 0 18px 0 0;
}

.site-navbar ul li a {
    color: var(--black);
    padding: 10px;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: normal;
}



.site-navbar ul li a:hover {
    color: #d4af37;
}

.site-navbar ul li a.active {
    color: #d4af37;
}

.nav-toggler {
    border: 3px solid transparent;
    padding: 5px;
    background-color: transparent;
    cursor: pointer;
    height: 39px;
    display: none;
    z-index: 999;
}

.nav-toggler span {
    width: 28px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: 0.3s;
}

.nav-toggler span:before {
    width: 28px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: 0.3s;
    content: "";
    transform: translateY(-9px);
}

.nav-toggler span:after {
    width: 28px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: 0.3s;
    content: "";
    transform: translateY(6px);
}

.is-sticky .nav-toggler span,
.is-sticky .nav-toggler span:before,
.is-sticky .nav-toggler span:after {
    background-color: var(--black);
}


.nav-toggler.toggler-open span {
    background-color: transparent;
}

.nav-toggler.toggler-open span:before {
    transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
    transform: translateY(-3px) rotate(-45deg);
}

/* Header css end here */

/* hero section css */
.hero-sec {
    position: relative;
    overflow: hidden;
    height: 700px;
}

.hero-sec::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-sec video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Hide video controls and play button in Safari */
.hero-sec video::-webkit-media-controls {
    display: none !important;
}

.hero-sec video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-sec video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-sec video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-sec video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 800px;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 70px;
    color: #fff;
    font-weight: bold;
    line-height: 80px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--red);
}

.hero-content .subtitle {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: normal;
    margin-bottom: 10px;
}

.hero-content .desc {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: normal;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-btns a {
    padding: .7rem 1.75rem;
    background: #fff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}
.hero-btns a:hover {
    background: #b8941f;
    color: #fff;
}
/* trust bar css */
.trust-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-bottom);
}

.trust-bar span {
    color: #000;
    font-size: 14px;

}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-size: 16px;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    stroke: #d4af37;
    /* gold */
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* explore our collections css */
.explore-our-collections {
    padding: 60px 0;
}





.authenticity-section {
    background-color: #15181e;
    padding: 60px 0;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.auth-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.auth-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.auth-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.auth-list svg {
    width: 22px;
    height: 22px;
    stroke: #d4af37;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.auth-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.auth-content p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.auth-content a {
    padding: .7rem 1.75rem;
    background: #fff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}
.auth-content a:hover{
    background: #b8941f;
    color: #fff;
}

.section-label {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}


/* cta hero css */
.cta-hero {
    padding: 60px 0;
}

.cta-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-content a {
    padding: .7rem 1.75rem;
    background: #000;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #000;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-content a:hover {
    background: #b8941f;
    border: 1px solid #b8941f;
    color: #fff;
}

.shipping-services {
    padding: 60px 0;
    background-color: #15181e;
}

.collection-card {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Content */
.collection-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.collection-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111318;
}

.collection-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.collection-content ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #616f89;
    padding-left: 26px;
    position: relative;
}

.collection-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
}

.btn-group a {
    padding: .7rem 1.75rem;
    background: #000;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #000;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-group a:hover {
    background: #b8941f;
    border: 1px solid #b8941f;
    color: #fff;
}

.explore-our-collections-content,
.featured-items-content {
    text-align: center;
}

.explore-our-collections-content span,
.featured-items-content span {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.explore-our-collections-content h2,
.featured-items-content h2,
.built-for-collectors-content h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 50px;
}

.collection-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.featured-items {
    padding: 60px 0;
}

.built-for-collectors {
    padding: 60px 0;
}









































/* footer css */
.footer {
    background: #0f0f0f;
    color: #ccc;
    font-size: 14px;
}

.footer-brand img {
    width: 100%;
    max-width: 210px;
}

/* Trust Row */
.footer-trust {
    border-bottom: 1px solid #222;
    padding: 25px 0;
}

.footer-trust .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.footer-trust .trust-item svg {
    width: 26px;
    height: 26px;
    stroke: #d4af37;
    fill: none;
    stroke-width: 2;
}

/* Main Footer */
.footer-main {
    padding: 60px 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h3.brand {
    color: #d4af37;
    margin-bottom: 10px;
}

.footer h3 {
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 18px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: normal;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 16px;
}

.footer a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.tagline {
    font-size: 12px;
    opacity: 0.7;
}

.footer-brand p {
    font-size: 16px;
    color: #fff;

}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.social-icons a {
    display: block;
}


.social-icons a svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #000;
    /* official black */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-links p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
}



.inner-bnr {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.inner-bnr::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.inner-bnr-content {
    text-align: center;
}

.inner-bnr-content h2 {
    color: #ffff;
    font-size: 40px;
    font-weight: bold;
}

.returns-policy {
    padding: 60px 0;
}

.returns-policy-content p {
    color: #000;
    font-size: 16px;
    margin-bottom: 12px;
}

.returns-policy-content h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.returns-policy-content ul li {
    color: #000;
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.returns-policy-content ul {
    margin-bottom: 12px;
}

.returns-policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
}

.shipping-details-content {
    padding: 60px 0;
}

.shipping-details-content-inner h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.shipping-details-content-inner p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #000;
}


section.featured-legends {
    background: #15181e;
    padding: 50px 0;
}








.memorabilia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.memorabilia-card {
    background-color: rgb(15 23 42 / 0.5);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #1e293b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.memorabilia-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    background-color: rgb(15 23 42 / 0.7);
}

.memorabilia-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.memorabilia-card .image-wrap {
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease-in-out;
}

.memorabilia-card:hover .image-wrap {
    transform: scale(1.05);
}

.memorabilia-card .image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.memorabilia-card:hover .image-wrap img {
    transform: scale(1.1);
}

.memorabilia-card:hover .card-content h3 {
    color: #d4af37;
    transition: color 0.3s ease-in-out;
}

.featured-legends-inner h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
    color: #ffff;
    font-weight: bold;
}


.card-content {
    padding: 15px 22px;
}

.card-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.card-content span {
    color: #d4af37;
    display: block;
    padding: 5px 0;
}

.card-content p {
    font-size: 14px;
    line-height: 24px;
    color: #94a3b8;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-side img {
    height: 500px;
    object-fit: cover;
}

.contact-us-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-us-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
    font-family: "Montserrat", sans-serif;
}

.contact-hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
}

.contact-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #d4af37;
    transition: all 0.3s ease;
}

.contact-feature-card:hover .feature-icon svg {
    stroke: #000;
}

.contact-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
}

.contact-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.contact-trust-message {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4af37;
}

.contact-trust-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

.contact-us-content p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.get-in-touch {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.get-in-touch-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.get-in-touch-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 45px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-header h3 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.intro-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-reasons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    padding: 0;
    position: relative;
}

.contact-reasons-list li::before {
    display: none;
}

.contact-reasons-list li svg {
    width: 20px;
    height: 20px;
    stroke: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

.response-time-box {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.response-time-box svg {
    width: 24px;
    height: 24px;
    stroke: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

.response-time-box p {
    margin: 0;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.contact-methods {
    margin-top: 10px;
}

.contact-methods h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.contact-method-item {
    margin-bottom: 0;
}

.contact-method-item strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-method-item p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.opening-hours-box {
    margin-top: 10px;
}

.opening-hours-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.hours-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.hours-display svg {
    width: 24px;
    height: 24px;
    stroke: #d4af37;
    flex-shrink: 0;
}

.hours-display span {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.trust-box {
    margin-top: 10px;
    padding: 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffef5 100%);
    border-radius: 12px;
    border: 1px solid #f4d03f;
}

.trust-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.trust-box p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
}

.trust-message {
    margin-top: 16px;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    color: #000 !important;
}

.get-in-touch-form {
    background: #ffffff;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.form-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.get-in-touch-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.get-in-touch-content p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.form-group label {
    text-transform: capitalize;
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-family: "Montserrat", sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group textarea:focus,
.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 18px;
    height: 150px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    background: #ffffff;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group button {
    padding: 16px 32px;
    background: #000;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #000;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    font-family: "Montserrat", sans-serif;
}

.form-group button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    border: 1px solid #b8941f;
}

.form-group .error-message {
    display: none;
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
    font-family: "Open Sans", sans-serif;
}

.form-group .error-message.show {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.premium-football {
    padding: 60px 0;
    background-color: #f5f5f517;
}

.premium-football-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.premium-left h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.premium-left p {
    margin-bottom: 10px;
}

.premium-left ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 30px;
}



.premium-left ul li svg {
    width: 24px;
    height: 24px;
    stroke: #d4af37;
    fill: none;
    stroke-width: 2;
}




.premium-right-inner h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

.premium-right-inner p {
    margin-bottom: 10px;
}

.premium-right-inner ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 30px;
    padding-left: 26px;
    position: relative;
}

.premium-right-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
}

.inner-bnr-content p {
    color: #fff;
    font-size: 16px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 28px;
}

.authentic-signed {
    padding: 60px 0;
}

.authentic-signed-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.authentic-signed-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.authentic-signed-content p {
    line-height: 30px;
    font-size: 16px;
}

.authentication-items .collection-wrapper:not(:last-child) {
    margin-bottom: 30px;
}

.shipping-cards-section {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.shipping-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.shipping-card {
    position: relative;
    background: #ffffff;
    padding: 2.5rem 2rem 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shipping-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.shipping-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.shipping-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.shipping-card ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 0.3rem;
}

.shipping-tagline {
    margin-top: 0.75rem;
    font-weight: 600;
    color: #111827;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-item {
    width: 100%;
}

.contact-info-item.trust-info-box {
    grid-column: 1 / -1;
}

.contact-info-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.contact-info-content {
    margin-top: 16px;
}

.info-label {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-label strong {
    font-weight: 600;
    color: #000;
}

.info-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.opening-hours-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid #e5e7eb;
}

.opening-hours-info-box svg {
    width: 24px;
    height: 24px;
    stroke: #6b7280;
    flex-shrink: 0;
}

.opening-hours-info-box span {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.trust-info-box {
    padding: 30px 35px;
    background: #fffef0;
    border-radius: 8px;
    border: 2px solid #f4d03f;
}

.trust-info-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.trust-info-content {
    text-align: center;
}

.trust-info-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 16px;
}

.trust-info-content p:last-child {
    margin-bottom: 0;
}

.trust-highlight {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-top: 12px !important;
}

.trust-highlight strong {
    font-weight: 700;
    color: #000;
}

.collection-image img {
    width: 100%;
    max-width: 600px;
    object-fit: cover;
    height: 500px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none;
}

.cookie-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke: #ffffff;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    font-family: "Montserrat", sans-serif;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #b8941f;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
}

.accept-btn {
    background: #d4af37;
    color: #ffffff;
}

.accept-btn:hover {
    background: #b8941f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.decline-btn {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.decline-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* Responsive Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
    }

    .cookie-content {
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 12px 12px 0 0;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }
}