@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500&family=Shippori+Mincho:wght@400;500&family=Noto+Serif+JP:wght@300;400;500&display=swap');

:root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gold: #c9a962;
    --gold-light: #e8dcc4;
    --gold-dark: #a68a42;
    --white: #ffffff;
    --cream: #faf9f7;
    --gray-100: #f8f7f5;
    --gray-200: #e8e6e2;
    --gray-300: #d4d2ce;
    --gray-500: #888888;
    --gray-700: #444444;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --space-3xl: 120px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-japanese-serif: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.3);
    --common-header-height: 80px;
}

.tannoy-content {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tannoy-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tannoy-content a {
    text-decoration: none;
    color: inherit;
}

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

.tannoy-content h1,
.tannoy-content h2,
.tannoy-content h3,
.tannoy-content h4,
.tannoy-content h5,
.tannoy-content h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.tannoy-brand-nav {
    position: sticky;
    top: var(--common-header-height);
    z-index: 900;
    background: var(--dark);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
}

.brand-nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    box-sizing: border-box;
}

.brand-nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.brand-nav-links li {
    margin: 0;
}

.brand-nav-links a {
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.brand-nav-links a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-details {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: var(--transition-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-details:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.4);
    color: var(--black) !important;
}

.section-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.section-tag.light {
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: var(--black);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 30px auto;
    border-radius: 2px;
}

.hero {
    min-height: calc(100vh - var(--common-header-height) - 60px);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tannoy-content .hero .hero-background .hero-bg-image,
.tannoy-content .hero-bg-image,
.hero-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-image: none !important;
    background: none !important;
    animation: none !important;
    transform: none !important;
}

.tannoy-content .hero-bg-image {
    height: 100% !important;
    max-width: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.45) 0%,
            rgba(10, 10, 10, 0.2) 35%,
            rgba(10, 10, 10, 0.15) 60%,
            rgba(10, 10, 10, 0.55) 100%);
    opacity: 1 !important;
}

.hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    padding: 10px 25px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 30px;
    background: rgba(201, 169, 98, 0.1);
    backdrop-filter: blur(10px);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8));
}

.hero-series-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-series-name .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-japanese-serif);
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    letter-spacing: 0.15em;
    line-height: 1.8;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-info-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.hero-info-bar .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-info-bar .info-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.hero-info-bar .info-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-info-bar .info-divider {
    width: 1px;
    height: 30px;
    background: rgba(201, 169, 98, 0.3);
}

.series-section {
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--cream);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 98, 0.3);
}

.product-image {
    height: 350px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 169, 98, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-5px);
}

.product-size {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.product-info {
    padding: 35px;
}

.product-series {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.product-info h3:not(.product-name-logo) {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--black);
}

.product-name-logo {
    margin-bottom: 15px;
    line-height: 1;
}

.product-name-logo img {
    height: 32px;
    width: auto;
    max-width: 200px;
    display: block;
}

.product-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-specs {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.spec {
    flex: 1;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.spec-label {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-cta .product-size-1 {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

.technology {
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.tech-product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.tech-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 30px;
    line-height: 1.2;
}

.tech-content h2 span {
    color: var(--gold);
}

.tech-content>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    margin-bottom: 50px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition-base);
}

.tech-feature:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold);
}

.tech-feature h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.tech-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.about {
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2520 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.year-display {
    text-align: center;
}

.year-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 120px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    opacity: 0.8;
}

.year-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 2;
    margin-bottom: 25px;
}

.product-detail {
    padding: 60px 5% 80px;
    min-height: 100vh;
    background: var(--white);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-info {
    position: sticky;
    top: calc(var(--common-header-height) + 80px);
}

.product-title-logo {
    margin: 20px 0;
    line-height: 1;
}

.product-title-logo img {
    height: 48px;
    width: auto;
    max-width: 280px;
    display: block;
}

.product-detail-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.product-detail-specs {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.product-detail-specs h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 15px 10px;
    text-align: left;
}

.specs-table th {
    width: 40%;
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.9rem;
}

.specs-table td {
    color: var(--dark);
    font-weight: 600;
}

.product-detail-actions {
    margin-top: 30px;
}

.product-detail-actions .btn-gold {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-base);
}

.product-detail-actions .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    position: relative;
    background: var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main .main-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.gallery-main:hover .main-image {
    transform: scale(1.02);
}

.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery-main:hover .zoom-hint {
    opacity: 1;
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--gray-100);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.image-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: transparent !important;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    cursor: pointer;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.modal-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-content img,
#modalImage {
    max-width: 90vw !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 4px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
    cursor: zoom-out;
    background: transparent !important;
    border: none !important;
}

.modal-close,
#modalClose {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.modal-close:hover,
#modalClose:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: rotate(90deg);
}

.product-technology {
    padding: 80px 5%;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-technology::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-technology-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-technology .section-header {
    margin-bottom: 50px;
}

.product-technology .section-header h2 {
    color: var(--white);
}

.technology-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.technology-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 35px 40px;
    transition: var(--transition-base);
}

.technology-item:hover {
    background: rgba(201, 169, 98, 0.08);
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateX(5px);
}

.technology-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.technology-item h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.technology-item p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.product-full-specs {
    padding: 80px 5%;
    background: var(--cream);
}

.product-full-specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.product-full-specs .section-header {
    margin-bottom: 50px;
}

.full-specs-table-wrapper {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.full-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.full-specs-table thead th {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2520 100%);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    padding: 25px 30px;
    text-align: center;
    letter-spacing: 2px;
}

.full-specs-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background-color var(--transition-fast);
}

.full-specs-table tbody tr:last-child {
    border-bottom: none;
}

.full-specs-table tbody tr:hover {
    background-color: rgba(201, 169, 98, 0.05);
}

.full-specs-table td {
    padding: 18px 25px;
    vertical-align: top;
}

.full-specs-table .spec-label {
    width: 35%;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    border-right: 1px solid var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.6;
}

.full-specs-table .spec-value {
    width: 65%;
    color: var(--dark);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

a.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.product-card:hover {
    text-decoration: none;
}

.view-details {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

a.product-card:hover .view-details {
    color: var(--gold-dark);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --common-header-height: 80px;
    }

    .brand-nav-container {
        padding: 12px 40px;
        gap: 40px;
    }

    .tech-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-info {
        position: static;
    }

    .product-name-logo img {
        height: 28px;
        max-width: 180px;
    }

    .product-title-logo img {
        height: 40px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    :root {
        --common-header-height: 80px;
    }

    .tannoy-brand-nav {
        top: var(--common-header-height);
        z-index: 899;
    }

    .brand-nav-container {
        padding: 10px 15px;
        gap: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .brand-nav-links {
        display: flex;
        gap: 15px;
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .brand-nav-links a {
        font-size: 10px;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }

    .hero-container {
        padding: 60px 30px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-series-name {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .hero-info-bar {
        flex-wrap: wrap;
        gap: 20px 40px;
        padding: 20px;
    }

    .hero-info-bar .info-divider {
        display: none;
    }

    .series-section,
    .technology,
    .about {
        padding: var(--space-2xl) 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 40px 5% 60px;
    }

    .product-name-logo img {
        height: 26px;
        max-width: 160px;
    }

    .product-title-logo img {
        height: 36px;
        max-width: 220px;
    }

    .technology-item {
        padding: 25px 20px;
    }

    .technology-item h3 {
        font-size: 1.1rem;
    }

    .full-specs-table thead th {
        font-size: 1.1rem;
        padding: 20px;
    }

    .full-specs-table td {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 220px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 8px 18px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 0.08em;
    }

    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 25px;
    }

    .product-name-logo img {
        height: 24px;
        max-width: 140px;
    }

    .product-title-logo img {
        height: 32px;
        max-width: 180px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .gallery-thumbnails {
        gap: 8px;
    }

    .product-detail-specs {
        padding: 20px;
    }

    .full-specs-table,
    .full-specs-table tbody,
    .full-specs-table tr,
    .full-specs-table td {
        display: block;
        width: 100%;
    }

    .full-specs-table thead {
        display: block;
    }

    .full-specs-table tbody tr {
        padding: 15px 0;
    }

    .full-specs-table .spec-label {
        width: 100%;
        background: transparent;
        border-right: none;
        padding: 0 15px 8px;
        font-size: 0.85rem;
        color: var(--gold-dark);
    }

    .full-specs-table .spec-value {
        width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .brand-nav-container {
        padding: 8px 10px;
        gap: 10px;
    }

    .brand-nav-links {
        gap: 12px;
    }

    .brand-nav-links a {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}