/* Navigation Styles */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    color: #1f2937;
    padding: 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-spacer {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
}

@media (min-width: 1024px) {
    .mobile-spacer {
        display: none;
    }
}

/* Main Navigation */
.main-nav {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 1;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-content {
    border-radius: 9999px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
}

/* Navigation Links */
.nav-link {
    color: #1f2937;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.2s;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 1.125rem;
    }
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* User Dropdown */
.user-dropdown-wrapper {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    transition: background-color 0.2s;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .user-dropdown-toggle {
        font-size: 1.125rem;
    }
}

.user-dropdown-toggle:hover {
    background: rgba(229, 231, 235, 0.5);
}

.user-icon {
    width: 1rem;
    height: 1rem;
}

.user-display-name {
    display: none;
    color: #374151;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .user-display-name {
        display: inline;
    }
}

.user-dropdown-arrow {
    width: 0.875rem;
    height: 0.875rem;
    color: #374151;
    transition: transform 0.2s;
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    width: 16rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
    z-index: 50;
}

.user-dropdown-menu.hidden {
    display: none;
}

.user-not-logged-in {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.user-not-logged-in p {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.user-not-logged-in .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-signin {
    width: 100%;
    background: #f97316;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-signin:hover {
    background: #ea580c;
}

.btn-register {
    width: 100%;
    border: 1px solid #d1d5db;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-register:hover {
    background: #f9fafb;
}

/* Logged In State */
.user-logged-in {
    display: none;
}

.user-logged-in:not(.hidden) {
    display: block;
}

.user-info {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.user-welcome {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.user-email {
    font-size: 0.875rem;
    color: #4b5563;
}

.user-menu {
    padding: 0.25rem 0;
}

.user-menu-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    transition: background-color 0.2s;
    text-decoration: none;
}

.user-menu-link:hover {
    background: rgba(243, 244, 246, 0.5);
}

.user-menu-link svg {
    width: 1rem;
    height: 1rem;
    display: inline;
    margin-right: 0.5rem;
}

.admin-panel-link {
    color: #2563eb;
}

.admin-panel-link:hover {
    background: rgba(239, 246, 255, 0.5);
}

.admin-panel-link.hidden {
    display: none;
}

.menu-divider {
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.btn-logout {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #dc2626;
    transition: background-color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn-logout:hover {
    background: rgba(254, 242, 242, 0.5);
}

.btn-logout svg {
    width: 1rem;
    height: 1rem;
    display: inline;
    margin-right: 0.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.mobile-menu-overlay.hidden {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 20rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-menu-close {
    color: #1f2937;
    transition: color 0.2s;
    padding: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-close:hover {
    color: #f97316;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.mobile-menu-link.active {
    background: rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(4px);
    color: #ea580c;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-link-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-link-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-button {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.mobile-menu-button.login {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button.login:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.mobile-menu-button.logout {
    background: #ef4444;
    color: white;
    transition: all 0.2s;
}

.mobile-menu-button.logout:hover {
    background: #dc2626;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.mobile-menu-button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 28rem;
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.modal-close {
    color: #6b7280;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #374151;
}

.modal-close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

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

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.modal-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.modal-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.modal-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f97316;
    border-color: #f97316;
}

.modal-input-wrapper {
    position: relative;
}

.modal-input-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-right: 0.75rem;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-input-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #9ca3af;
}

.modal-helper-text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.modal-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-checkbox {
    border-radius: 0.25rem;
    border-color: #d1d5db;
    color: #f97316;
}

.modal-checkbox:focus {
    box-shadow: 0 0 0 2px #f97316;
}

.modal-checkbox-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.modal-link {
    color: #f97316;
    transition: color 0.2s;
}

.modal-link:hover {
    color: #ea580c;
}

.modal-remember-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-submit {
    width: 100%;
    background: #f97316;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.modal-submit:hover {
    background: #ea580c;
}

.modal-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f97316, 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.modal-footer {
    text-align: center;
}

.modal-footer-text {
    font-size: 0.875rem;
    color: #4b5563;
}

.modal-footer-button {
    font-size: 0.875rem;
    color: #f97316;
    font-weight: 500;
    transition: color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-footer-button:hover {
    color: #ea580c;
}

.modal-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.modal-message.hidden {
    display: none;
}

.modal-message.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.modal-message.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.modal-message-text {
    font-size: 0.875rem;
}

.modal-message.error .modal-message-text {
    color: #dc2626;
}

.modal-message.success .modal-message-text {
    color: #16a34a;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom right, transparent, transparent);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 8rem 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: relative;
    top: -100px;
}

.hero-trust-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.hero-trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ca8a04;
}

.hero-trust-text {
    font-weight: 600;
    color: #854d0e;
}

.hero-logo-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-logo-wrapper {
        justify-content: flex-start;
    }
}

.hero-logo {
    height: 6rem;
    width: auto;
}

@media (min-width: 1024px) {
    .hero-logo {
        height: 8rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 42rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-btn-primary {
    background: linear-gradient(to right, #111827, #1f2937);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: linear-gradient(to right, #1f2937, #374151);
    transform: scale(1.05) translateY(-0.25rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.hero-btn-primary:hover svg {
    transform: translateX(0.25rem);
}

.hero-btn-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    cursor: pointer;
}

.hero-btn-secondary:hover {
    border-color: #1f2937;
    background: #f9fafb;
    color: #111827;
    transform: scale(1.05) translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-video-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.hero-product-section {
    position: relative;
}

.hero-floating-element-1 {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to right, #c084fc, #f0abfc);
    border-radius: 9999px;
    opacity: 0.2;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-floating-element-2 {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    border-radius: 9999px;
    opacity: 0.2;
    animation: bounce 1s infinite;
}

.hero-product-container {
    position: relative;
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-card-stack-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, white, #f9fafb);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    opacity: 0.4;
    border: 1px solid #f3f4f6;
}

.hero-card-stack-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, white, #f9fafb);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    opacity: 0.6;
    border: 1px solid #f3f4f6;
}

.hero-product-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    transform: scale(1);
    transition: all 0.7s;
    border: 1px solid #f3f4f6;
    backdrop-filter: blur(4px);
}

.hero-product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.hero-product-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-product-image-bg {
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.hero-product-image {
    width: 100%;
    height: 18rem;
    object-fit: contain;
}

.hero-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(to right, #111827, #374151);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.hero-product-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.hero-product-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.hero-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-feature-tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-navigation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-nav-button {
    padding: 1rem;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: scale(1);
    border: 1px solid #f3f4f6;
    cursor: pointer;
}

.hero-nav-button:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.1) translateY(-0.25rem);
}

.hero-nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4b5563;
    transition: color 0.3s;
}

.hero-nav-button:hover .hero-nav-icon {
    color: #9333ea;
}

.hero-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-progress-bar-bg {
    width: 5rem;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #9333ea, #ec4899, #f97316);
    border-radius: 9999px;
    transition: all 0.7s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hero-progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}

.hero-progress-label {
    display: block;
}

/* ===================================
   MAIN CONTENT & SECTIONS
   =================================== */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* ===================================
   BEST SELLERS SECTION
   =================================== */
.best-sellers-section {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 1rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.section-title-wrapper {
    position: relative;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #1f2937;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 10;
}

.section-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #9333ea, #db2777);
    border-radius: 9999px;
    transform: skewX(-12deg);
}

.section-accent {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #a78bfa, #f472b6);
    border-radius: 9999px;
    opacity: 0.2;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.section-view-all {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-view-all:hover {
    color: #9333ea;
}

.section-view-all svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.2s ease;
}

.section-view-all:hover svg {
    transform: translateX(0.25rem);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

/* ===================================
   BROWSE BY COLLECTION SECTION
   =================================== */
.collections-section {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 1rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

.collection-card {
    display: block;
    position: relative;
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 1.5rem;
    transform: scale(1);
    transition: all 0.5s ease;
}

.collection-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.collection-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.collection-bg-overlay.purple {
    background: linear-gradient(to bottom right, rgba(167, 139, 250, 0.1), rgba(244, 114, 182, 0.1));
}

.collection-bg-overlay.emerald {
    background: linear-gradient(to bottom right, rgba(52, 211, 153, 0.1), rgba(45, 212, 191, 0.1));
}

.collection-bg-overlay.orange {
    background: linear-gradient(to bottom right, rgba(251, 146, 60, 0.1), rgba(239, 68, 68, 0.1));
}

.collection-card:hover .collection-bg-overlay {
    opacity: 0;
}

.collection-content {
    position: relative;
    z-index: 10;
}

.collection-image {
    width: 100%;
    height: 14rem;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

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

.collection-text {
    padding: 0.5rem;
    text-align: center;
}

.collection-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.collection-card:hover .collection-title.purple {
    color: #1f2937;
}

.collection-card:hover .collection-title.emerald {
    color: #1f2937;
}

.collection-card:hover .collection-title.orange {
    color: #1f2937;
}

.collection-gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.collection-gradient-overlay.purple {
    background: linear-gradient(to top, rgba(147, 51, 234, 0.2), transparent);
}

.collection-gradient-overlay.emerald {
    background: linear-gradient(to top, rgba(5, 150, 105, 0.2), transparent);
}

.collection-gradient-overlay.orange {
    background: linear-gradient(to top, rgba(234, 88, 12, 0.2), transparent);
}

.collection-card:hover .collection-gradient-overlay {
    opacity: 0;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners-section {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.partner-item {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
    padding: 0.5rem;
}

.partner-card {
    background-color: #f3f4f6;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-section {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 1rem;
    text-align: center;
}

.instagram-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.instagram-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: all 0.3s ease;
}

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

.instagram-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
    padding: 4rem 0;
    margin-top: 3rem;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.footer-bg-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, #ffffff 2px, transparent 2px);
    background-size: 50px 50px;
    animation: drift 30s ease-in-out infinite reverse;
}

.footer-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.5), transparent);
}

.footer-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.footer-brand {
    grid-column: span 2 / span 2;
}

.footer-brand-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #9333ea, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand-description {
    font-size: 1.125rem;
    max-width: 28rem;
    line-height: 1.75;
    color: #ffffff;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: rgba(243, 244, 246, 0.5);
    border: 1px solid rgba(209, 213, 219, 0.5);
    border-radius: 0.5rem;
    color: #1f2937;
}

.footer-newsletter-input::placeholder {
    color: #6b7280;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #a78bfa;
    background-color: white;
}

.footer-newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #9333ea, #db2777);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.footer-newsletter-btn:hover {
    background: linear-gradient(to right, #7e22ce, #be185d);
    transform: scale(1.05);
}

.footer-newsletter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #a78bfa;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-links-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 0.125rem;
    background: linear-gradient(to right, #a78bfa, #f472b6);
    border-radius: 9999px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #9333ea;
    transform: translateX(0.25rem);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    color: #ffffff;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(229, 231, 235, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: all 0.3s ease;
    transform: scale(1);
}

.footer-social-icon:hover {
    background-color: #9333ea;
    color: white;
    transform: scale(1.1) translateY(-0.25rem);
}

.footer-social-icon.facebook:hover {
    background-color: #9333ea;
}

.footer-social-icon.instagram:hover {
    background-color: #db2777;
}

.footer-social-icon.twitter:hover {
    background-color: #2563eb;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.footer-contact-item {
    color: #ffffff;
}

.footer-contact-label {
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(209, 213, 219, 0.7);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #6b7280;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #6b7280;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #1f2937;
}

/* ===================================
   RESPONSIVE DESIGN - TABLETS & UP
   =================================== */
@media (min-width: 640px) {
    .best-sellers-section,
    .collections-section,
    .partners-section,
    .instagram-section {
        margin-top: 4rem;
        padding: 0 1.5rem;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 3rem;
        gap: 0;
    }

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

    .section-view-all {
        font-size: 1.25rem;
    }

    .best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

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

    .collection-card {
        padding: 2rem;
    }

    .collection-image {
        height: 18rem;
    }

    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .partner-item {
        padding: 0.75rem;
    }

    .partner-card {
        height: 10rem;
    }

    .instagram-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .footer-section {
        padding: 5rem 0;
    }

    .footer-brand-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }

    .footer-copyright {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .best-sellers-section,
    .collections-section,
    .partners-section,
    .instagram-section {
        margin-top: 5rem;
        padding: 0 2rem;
    }

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

    .best-sellers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .collections-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .collection-image {
        height: 20rem;
    }

    .collection-title {
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .partner-card {
        height: 12rem;
    }

    .instagram-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2rem;
    }

    .footer-section {
        padding: 6rem 0;
    }

    .footer-brand-title {
        font-size: 3rem;
    }

    .footer-links-title,
    .footer-social-title {
        font-size: 1.25rem;
    }

    .footer-link {
        font-size: 1.125rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 3.75rem;
    }

    .instagram-title {
        font-size: 3.75rem;
    }

    .footer-brand-title {
        font-size: 3.75rem;
    }
}

/* ===================================
   SLIDER STYLES
   =================================== */
.slider-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.slider-track {
    display: flex !important;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Remove vertical margins from cards in slider */
.slider-track .card {
    margin: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.slider-track .card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Products slider cards */
.best-sellers-grid.slider-track > * {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 250px;
}

/* Make product cards equal height */
.best-sellers-grid.slider-track .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.best-sellers-grid.slider-track .card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.best-sellers-grid.slider-track .card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-sellers-grid.slider-track .card__title {
    min-height: 2.5rem;
}

/* Categories slider cards */
.collections-grid.slider-track > * {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .best-sellers-grid.slider-track > * {
        flex: 0 0 calc(33.333% - 1rem);
    }
    
    .collections-grid.slider-track > * {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 767px) {
    .best-sellers-grid.slider-track > *,
    .collections-grid.slider-track > * {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 200px;
    }
}

@media (max-width: 639px) {
    .best-sellers-grid.slider-track > *,
    .collections-grid.slider-track > * {
        flex: 0 0 100%;
        min-width: unset;
    }
}

/* Navigation buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #1f2937;
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

.slider-nav-left {
    left: -1.5rem;
}

.slider-nav-right {
    right: -1.5rem;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hide navigation buttons on small screens */
@media (max-width: 640px) {
    .slider-nav {
        display: none;
    }
}

/* Adjust for larger screens */
@media (min-width: 1024px) {
    .slider-nav {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .slider-nav-left {
        left: -1.75rem;
    }
    
    .slider-nav-right {
        right: -1.75rem;
    }
}
