/* Collection Section */
.collection-section {
    padding: 180px 0 120px;
    background: linear-gradient(to bottom, #FDFBF7, #F4F1EA);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    padding-top: 90px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.product-image-container {
    position: relative;
    padding-top: 120%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.3s;
}

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

.image-overlay {
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid rgba(44, 62, 45, 0.1);
    z-index: -1;
}

.harvest-badge {
    position: absolute;
    top: 6rem;
    right: -4rem;
    background-color: #2C3E2D;
    color: #FDFBF7;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    transform: rotate(90deg);
    transform-origin: right bottom;
    z-index: 2;
}

.product-content {
    padding-right: 4rem;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.3s;
}

.product-category {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #2C3E2D;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.product-category:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background-color: #2C3E2D;
}

.product-name {
    font-size: 4.5rem;
    color: #2C3E2D;
    margin: 0 0 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.6rem;
    color: #5C6D5D;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}

.grade-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: #2C3E2D;
    border: 1px solid #2C3E2D;
    padding: 0.5rem 1.5rem;
    margin: 1rem 0 2rem;
    letter-spacing: 2px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5C6D5D;
}

/* Teaware Section */
.teaware-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #F4F1EA, #FDFBF7);
    position: relative;
    overflow: hidden;
}

.teaware-section::before {
    content: '茶';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Serif JP', serif;
}

.teaware-heading {
    text-align: center;
    margin-bottom: 8rem;
}

.teaware-heading h2 {
    font-size: 3rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
}

.teaware-heading p {
    font-size: 1.2rem;
    color: #5C6D5D;
    font-style: italic;
}

.teaware-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 2rem;
}

.teaware-item {
    background: white;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.teaware-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(44, 62, 45, 0.1);
}

.teaware-image {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
}

.teaware-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.teaware-item:hover .teaware-image img {
    transform: scale(1.1);
}

.teaware-content {
    padding: 3rem 2rem;
    background: white;
}

.teaware-item h4 {
    font-size: 1.8rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.teaware-item p {
    color: #5C6D5D;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Wholesale Section */
.wholesale-section {
    padding: 150px 0;
    background: linear-gradient(45deg, #2C3E2D, #1A2F24);
    color: white;
    position: relative;
    overflow: hidden;
}

.wholesale-bg-text {
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    animation: scrollText 30s linear infinite;
}

.wholesale-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.wholesale-header {
    text-align: center;
    margin-bottom: 8rem;
}

.wholesale-header h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
}

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

.wholesale-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wholesale-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.wholesale-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.wholesale-list {
    list-style: none;
    padding: 0;
}

.wholesale-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    opacity: 0.9;
}

.wholesale-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.wholesale-contact {
    margin-top: 8rem;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wholesale-contact h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 1.2rem;
}

.contact-info a {
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollText {
    from { transform: translateX(100%) translateY(-50%); }
    to { transform: translateX(-100%) translateY(-50%); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-name {
        font-size: 3.5rem;
    }
    
    .teaware-grid {
        gap: 3rem;
    }

    .wholesale-grid {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .product-content {
        padding-right: 0;
    }
    
    .product-image-container {
        padding-top: 100%;
    }

    .teaware-grid,
    .wholesale-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wholesale-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-subtitle {
        font-size: 1.3rem;
    }
    
    .teaware-grid,
    .wholesale-grid {
        grid-template-columns: 1fr;
    }
    
    .teaware-heading h2,
    .wholesale-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .wholesale-bg-text {
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 100px 0 40px;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .wholesale-card {
        padding: 2rem;
    }
}