* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #2d5016;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: block;
    height: 50px; /* Adjust height as needed */
    width: auto; /* Maintains aspect ratio */
    max-width: 200px; /* Prevents logo from being too wide */
    object-fit: contain; /* Ensures image fits within dimensions */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); /* Replaces text-shadow */
}


/* If you need the logo to be clickable (wrapped in an anchor tag) */
.logo-link {
    display: inline-block;
    text-decoration: none;
}
.logo-link img {
    display: block;
    height: 70px; /* Höhe anpassen nach Bedarf */
    width: auto; /* Behält Seitenverhältnis bei */
    max-width: 200px; /* Verhindert zu breite Logos */
    object-fit: contain; /* Stellt sicher, dass das Bild in die Dimensionen passt */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease; /* Optional hover effect */
}
.logo-link .logo {
    display: block;
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease; /* Optional hover effect */
}

.logo-link:hover .logo {
    transform: scale(1.05); /* Optional hover effect */
}

.navbar {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    position: relative;
}

/* Character sprites positioning */
.character-sprite {
    position: absolute;
    z-index: 10;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.character-sprite:hover {
    opacity: 1;
    transform: scale(1.1);
}

.sprite-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 150px;
}

.sprite-2 {
    top: 20%;
    right: 8%;
    width: 100px;
    height: 130px;
}

.sprite-3 {
    bottom: 15%;
    left: 10%;
    width: 80px;
    height: 100px;
}

.hero-section {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 20;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-section {
    position: relative;
    padding: 4rem 0;
    background: #F2F2F2;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 0 20%;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.product-card {
    flex: 0 0 25%;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.8);
    opacity: 0.6;
    position: relative;
    overflow: hidden;
}

.product-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.active .product-inner {
    transform: scale(1);
    opacity: 1;
    background: #015601;
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
}

.product-card.active .product-inner::before {
    transform: scaleX(1);
}

.product-image {
    width: 160px;
    height: 200px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    color: #d4af37;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card.active .product-image::before {
    transform: rotate(45deg) translateX(100%);
}

.product-card.active .product-image {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.3), rgba(255, 255, 255, 0.15));
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.4);
    color: #ffffff;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-category {
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.view-product {
    color: #e7b91e;
    border: 2px solid #d4af37;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card.active .view-product {
    transform: translateY(0);
    opacity: 1;
}

.view-product:hover {
    background: linear-gradient(135deg, #d4af37, rgba(212, 175, 55, 0.8));
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: #2d5016;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.nav-dot {
    width: 4px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #d4af37;
    height: 50px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-dot.active::after {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}

.nav-dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 2px solid #d4af37;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d4af37;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-section ul li a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.impressum-link {
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Duck SVG animation */
.floating-duck {
    position: absolute;
    top: 15%;
    right: 15%;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Additional character positioning */
.character-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}



.product-page-body {
    font-family: 'Inter', sans-serif;
    background: #2d5016;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.product-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.product-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background:  #d4af37;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-nav {
    display: flex;
    gap: 3rem;
}

.product-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.product-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.product-nav a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.product-nav a:hover::after {
    width: 80%;
}

.back-link {
    display: inline-block;
    margin: 2rem 3rem;
    color: rgba(212, 175, 55, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.back-link:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.product-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

.product-images {
    display: flex;
    gap: 1.5rem;
}

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail {
    width: 90px;
    height: 110px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.thumbnail:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

.main-image {
    flex: 1;
    height: 500px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-subtitle {
    color: rgba(212, 175, 55, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1.5rem 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-details {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.detail-label {
    font-weight: 600;
    color: rgba(212, 175, 55, 0.9);
    letter-spacing: 0.5px;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
}

.size-selector {
    margin: 2rem 0;
}

.size-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-option {
    padding: 1.2rem 1.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.size-option.selected {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.size-option:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.checkout-section {
    margin-top: 2rem;
}

.email-input {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sumup-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sumup-button:hover {
    background: linear-gradient(135deg, #d4af37, rgba(212, 175, 55, 0.8));
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: #2d5016;
}

.sumup-button:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    cursor: not-allowed;
    transform: none;
    color: rgba(255, 255, 255, 0.5);
}

.loading {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 2px solid #d4af37;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.product-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.product-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}
