/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e4df 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(212, 175, 55, 0.03) 35px,
            rgba(212, 175, 55, 0.03) 70px
        );
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    animation: fadeInUp 1.5s ease-out;
}

.invite-badge {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    margin: 0 auto 2rem;
    animation: fadeInUp 1.8s ease-out;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 15px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 300;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.cta-button:hover::before {
    left: 0;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.exclusive-notice {
    margin-bottom: 2rem;
}

.exclusive-tag {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.exclusive-note {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-style: italic;
    letter-spacing: 1px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-top: 2px solid var(--secondary-color);
}

.stat h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-text);
}

.about-image {
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e4df 0%, #d4c5b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Boutiques Section */
.boutiques {
    padding: 8rem 0;
    background: var(--bg-light);
}

.boutiques .section-title {
    text-align: center;
}

.store-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.store-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--white);
    text-align: center;
}

.video-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--white);
}

.video-overlay p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.unmute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.unmute-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--white);
    transform: scale(1.1);
}

.unmute-btn.unmuted svg line {
    display: none;
}

.unmute-btn.unmuted svg {
    stroke: var(--secondary-color);
}

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.boutique-item {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.boutique-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.boutique-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.boutique-item:hover img {
    transform: scale(1.08);
}

.boutique-info {
    padding: 2.5rem;
}

.boutique-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.boutique-info p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* T-Shirts Section */
.tshirts-section {
    padding: 8rem 0;
    background: var(--white);
}

.tshirts-section .section-title {
    text-align: center;
}

.tshirts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tshirt-item {
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tshirt-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tshirt-image {
    height: 350px;
    overflow: hidden;
    background: var(--white);
}

.tshirt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tshirt-info {
    padding: 2rem;
    text-align: center;
}

.tshirt-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tshirt-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Collections Section */
.collections {
    padding: 8rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.collections .section-title {
    text-align: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.collection-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-image .image-placeholder {
    height: 100%;
    transition: var(--transition);
}

.collection-card:hover .card-image .image-placeholder {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-light);
}

.contact .section-title {
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    background: var(--bg-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    align-self: flex-start;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Collection Page Styles */
.collection-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e4df 100%);
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.collection-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.collection-hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    letter-spacing: 1px;
}

.product-gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1400px;
}

.gallery-item {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-info {
    padding: 2rem;
    background: var(--white);
}

.gallery-item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    color: var(--light-text);
    font-size: 1rem;
}

.collection-description {
    max-width: 900px;
    margin: 0 auto 6rem;
}

.description-content {
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 2px;
}

.description-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features {
    margin-top: 3rem;
}

.features h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features li {
    color: var(--light-text);
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 4rem;
    background: var(--bg-light);
    border-radius: 2px;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .boutiques-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .boutique-item img {
        height: 350px;
    }

    .tshirts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .store-video-container {
        margin: 3rem auto;
    }

    .video-overlay h3 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-item img {
        height: 400px;
    }

    .collection-hero-title {
        font-size: 3rem;
    }

    .description-content {
        padding: 3rem 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

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

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .tshirts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tshirt-image {
        height: 300px;
    }

    .collection-hero {
        padding: 120px 0 60px;
    }

    .collection-hero-title {
        font-size: 2.2rem;
    }

    .video-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .video-overlay h3 {
        font-size: 1.5rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
    }

    .unmute-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .unmute-btn svg {
        width: 20px;
        height: 20px;
    }

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

    .gallery-item img {
        height: 300px;
    }

    .description-content {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Verify Page Styles */
/* Hero Section */
.verify-hero {
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.verify-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.verify-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.verify-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(212, 175, 55, 0.08) 35px,
            rgba(212, 175, 55, 0.08) 70px
        );
}

.verify-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.verify-hero-logo {
    max-width: 120px;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }
}

.authenticity-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2.5rem;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 115, 85, 0.15)),
        rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.authenticity-badge-hero:hover {
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.5),
        inset 0 0 30px rgba(212, 175, 55, 0.2);
}

.verify-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.verify-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.verify-section {
    padding: 80px 0 100px;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.02) 50px,
            rgba(212, 175, 55, 0.02) 100px
        ),
        var(--bg-light);
    position: relative;
}

.verify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 100%
    );
}

.verify-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/* Verify Card */
.verify-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 247, 244, 1) 100%);
    padding: 4rem;
    border-radius: 12px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(212, 175, 55, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% {
        transform: translateY(-10px);
        box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

.verify-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--secondary-color) 0%,
        var(--accent-color) 50%,
        var(--secondary-color) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.verify-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent),
        linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 115, 85, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow:
        0 10px 40px rgba(212, 175, 55, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.5),
        inset 0 -2px 10px rgba(212, 175, 55, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow:
            0 10px 40px rgba(212, 175, 55, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.5),
            inset 0 -2px 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow:
            0 10px 50px rgba(212, 175, 55, 0.5),
            inset 0 2px 15px rgba(255, 255, 255, 0.7),
            inset 0 -2px 15px rgba(212, 175, 55, 0.3);
    }
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-description {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
}

/* Enhanced Input */
.form-group-enhanced {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 1;
}

.enhanced-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background:
        linear-gradient(135deg, rgba(249, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 8px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.enhanced-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 8px 25px rgba(212, 175, 55, 0.2),
        inset 0 1px 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.input-hint svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

/* Premium Button */
.verify-button-premium {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.verify-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
    z-index: 0;
}

.verify-button-premium:hover::before {
    left: 0;
}

.verify-button-premium span,
.verify-button-premium svg {
    position: relative;
    z-index: 1;
}

.verify-button-premium:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.verify-button-premium:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.verify-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.verify-help svg {
    color: var(--secondary-color);
}

.verify-help a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.verify-help a:hover {
    color: var(--accent-color);
}

.verify-status {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.verify-status.success {
    display: block;
    background:
        linear-gradient(135deg, rgba(212, 237, 218, 1) 0%, rgba(195, 230, 203, 0.8) 100%);
    color: #155724;
    border: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

.verify-status.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.verify-status.error {
    display: block;
    background:
        linear-gradient(135deg, rgba(248, 215, 218, 1) 0%, rgba(245, 198, 203, 0.9) 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    position: relative;
}

.verify-status.loading {
    display: block;
    background:
        linear-gradient(135deg, rgba(209, 236, 241, 1) 0%, rgba(190, 229, 235, 0.9) 100%);
    color: #0c5460;
    border: 2px solid #17a2b8;
    position: relative;
}

.verify-status.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Info Section */
.info-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 247, 244, 0.95) 100%);
    padding: 3rem;
    border-radius: 8px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--secondary-color) 0%,
        var(--accent-color) 50%,
        var(--secondary-color) 100%
    );
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 70px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 6px 15px rgba(212, 175, 55, 0.5));
}

.info-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 247, 244, 0.8) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 8px;
    z-index: -1;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(212, 175, 55, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.benefit-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-item:hover h3 {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.benefit-item p {
    color: var(--light-text);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-item:hover p {
    color: var(--text-color);
}

/* Guarantee Card */
.guarantee-card {
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-color), #2d2d2d);
    padding: 3rem;
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
}

.guarantee-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--secondary-color) 50%,
        transparent 100%
    );
    opacity: 0.5;
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.guarantee-seal svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.guarantee-seal span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.guarantee-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.guarantee-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(249, 247, 244, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.security-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.security-badge:hover {
    border-color: var(--secondary-color);
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.security-badge:hover::before {
    left: 100%;
}

.security-badge svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.security-badge:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.security-badge strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.security-badge p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Responsive - Verify Page */
@media (max-width: 968px) {
    .verify-hero {
        padding: 120px 0 60px;
    }

    .verify-hero-title {
        font-size: 3rem;
    }

    .verify-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .verify-card {
        padding: 3rem 2rem;
    }

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

    .verify-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 480px) {
    .verify-hero {
        padding: 100px 0 50px;
    }

    .verify-hero-logo {
        max-width: 80px;
    }

    .authenticity-badge-hero {
        font-size: 0.65rem;
        padding: 0.5rem 1.5rem;
    }

    .verify-hero-title {
        font-size: 2.2rem;
    }

    .verify-hero-description {
        font-size: 1rem;
    }

    .verify-card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .enhanced-input {
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3.5rem;
    }

    .verify-button-premium {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .info-card, .guarantee-card {
        padding: 2rem 1.5rem;
    }

    .info-card h2, .guarantee-card h3 {
        font-size: 1.6rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .security-badge {
        padding: 1.5rem;
        gap: 1rem;
    }
}
