/* ===================================
   TRANSITION LINES
   =================================== */

.transition-lines {
    width: 100vw;
    height: 50px;
    background: linear-gradient(90deg, #ff8c00 0%, #40e0d0 50.5%, #ff8c00 100%);
    position: relative;
    overflow: hidden;
}

.transition-line {
    width: 100%;
    height: 100%;
    position: relative;
}

.transition-line::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: calc(100% - 4px);
    background: #2a2a2a;
    z-index: 0;
}

.transition-line-row {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: scroll-left 600s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.transition-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 80px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ===================================
   SHOP SECTION
   =================================== */

.shop-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 15%, #ffb347 30%, #ff8c42 45%, #ff7f50 60%, #ff6347 75%, #ff4500 90%, #ff6b35 100%);
    padding: 60px 0 40px 0;
    overflow: hidden;
    width: 100%;
}

.shop-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.main-logo {
    max-width: 90%;
    max-height: 200px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.7));
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.catalog-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 15px 20px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.product-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, 
        rgba(56, 108, 94, 0.55) 0%, 
        rgba(46, 98, 84, 0.6) 20%, 
        rgba(36, 88, 74, 0.58) 40%, 
        rgba(56, 108, 94, 0.62) 60%, 
        rgba(46, 98, 84, 0.57) 80%, 
        rgba(56, 108, 94, 0.55) 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(86, 138, 124, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.price-item {
    color: rgba(255, 255, 255, 0.95);
}

.price-shipping {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.price-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.price-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.product-image-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 8px 0 15px 0;
    cursor: pointer;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: visible;
    position: relative;
}

.giveaway-tag {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    z-index: 300;
    transform: rotate(3deg);
    border: 2px solid #fff;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
}

.giveaway-tag::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.product-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 17px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

.catalog-view-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.catalog-view-info svg {
    width: 16px;
    height: 16px;
}

.catalog-view-info:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

.shop-button {
    background: linear-gradient(135deg, 
        rgba(96, 158, 144, 0.8) 0%, 
        rgba(76, 138, 124, 0.85) 25%, 
        rgba(86, 148, 134, 0.9) 50%, 
        rgba(106, 168, 154, 0.85) 75%, 
        rgba(96, 158, 144, 0.8) 100%);
    color: #fff;
    border: 2px solid rgba(106, 168, 154, 0.5);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 138, 124, 0.4);
    margin-top: auto;
    backdrop-filter: blur(10px);
    letter-spacing: 1.5px;
}

.shop-button:hover {
    background: linear-gradient(135deg, 
        rgba(106, 168, 154, 0.9) 0%, 
        rgba(86, 148, 134, 0.95) 25%, 
        rgba(96, 158, 144, 1) 50%, 
        rgba(116, 178, 164, 0.95) 75%, 
        rgba(106, 168, 154, 0.9) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 138, 124, 0.6);
    border-color: rgba(126, 188, 174, 0.7);
}

.particle {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(64, 224, 208, 0.8) 0%, rgba(72, 209, 204, 0.6) 50%, transparent 100%);
    border-radius: 2px;
    animation: rain ease-in-out infinite;
    opacity: 0;
}

@keyframes rain {
    0% {
        opacity: 0;
        transform: translateY(-100vh) rotate(10deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(10deg);
    }
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.shop-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ===================================
   EXCLUSIVE SECTION TRANSITION
   =================================== */

.transition-lines-exclusive {
    width: 100vw;
    height: 50px;
    background: linear-gradient(90deg, #6aa89a 0%, #4c8a7c 50.5%, #6aa89a 100%);
    position: relative;
    overflow: hidden;
}

.transition-line-exclusive {
    width: 100%;
    height: 100%;
    position: relative;
}

.transition-line-exclusive::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: calc(100% - 4px);
    background: #000000;
    z-index: 0;
}

.transition-line-row-exclusive {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: scroll-left 600s linear infinite;
    position: relative;
    z-index: 1;
}

.transition-text-exclusive {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 80px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}