/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: "Inter", sans-serif;
    color: #333;
}

/* Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white;
}

/* Header */
header,
footer {
    background-color: white;
}

header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
}

.header-container {
    position: relative;
    padding: 0 2rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'Emilys Candy', cursive;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.brand-name:hover {
    text-decoration: none;
    color: #1a1a1a;
}

.heart-logo {
    color: #e74c3c;
    font-size: 1.4rem;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-family: sans-serif;
    position: relative;
    top: 1px;
    margin: 0 2px;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #999;
    fill: none;
    stroke-width: 2;
}

.icon-btn:hover svg {
    stroke: #666;
}

/* Navigation */
.main-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.25rem 0;
    gap: 3rem;
}

.nav-left {
    justify-self: start;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s;
}

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

.user-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    display: block;
}

.user-avatar-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.user-avatar-btn:hover {
    transform: scale(1.05);
}

.user-menu-wrapper {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.user-name {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 500;
}

.user-dropdown-item {
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.user-dropdown-item:hover {
    background-color: #f8f8f8;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    padding: 0.75rem 2rem;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.mobile-menu-link:hover {
    background-color: #f8f8f8;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 16px;
}

.btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-google-1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-google-1:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-google-1:active {
    transform: translateY(0);
}

@keyframes borderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.btn-google-signin svg {
    flex-shrink: 0;
}

.btn-with-arrow::after {
    margin-left: 0.5rem;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    background: transparent;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero-container {
    max-width: calc(1200px - 4rem);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Feature Cards Section */

/* Product Section */
.product-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.product-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.75rem;
    font-weight: 700;
    color: #666;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    color: #1a1a1a;
    transform: scale(1.2);
}

.arrow-btn:active,
.product-action-btn:active {
    transform: scale(0.95);
}


/* Main content */
main.container {
    flex: 1;
    background-color: transparent;
}

/* Designer Page Styles - Add to existing CSS */
.designer-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content,
.image-content {
    display: flex;
    justify-content: center;
}

.text-content {
    justify-content: flex-end;
}

.quote-bubble {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 500px;
}

.quote-bubble::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.quote-mark {
    font-size: 80px;
    color: #d4a5a5;
    line-height: 0;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.3;
}

.quote-bubble h2 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b6f6f;
    margin-bottom: 10px;
    font-weight: 400;
}

.quote-bubble h1 {
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.tagline {
    font-size: 18px;
    color: #c88585;
    font-style: italic;
    margin-bottom: 25px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.social-proof {
    border-top: 2px solid #f0e6e0;
    padding-top: 20px;
}

.social-proof p {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 8px;
}

.reviews {
    font-weight: 600;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

.image-frame img {
    display: block;
    height: auto;
}

/* Order Checkout Styles */
.order-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    animation: fadeIn 0.6s ease-out;
}

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

.order-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Order Forms Section */
.order-forms {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease-out both;
}

.order-section:nth-child(1) {
    animation-delay: 0.1s;
}

.order-section:nth-child(2) {
    animation-delay: 0.2s;
}

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

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

/* Form Styles */
.address-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-textarea {
    padding: 0.875rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-radio {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.03), transparent);
    transition: left 0.5s ease;
}

.payment-option:hover .payment-card::before {
    left: 100%;
}

.payment-option:hover .payment-card {
    border-color: #1a1a1a;
    background-color: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-radio:checked + .payment-card {
    border-color: #1a1a1a;
    background-color: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-option.payment-disabled .payment-card {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-option.payment-disabled:hover .payment-card {
    transform: none;
    border-color: #e5e5e5;
    background-color: #fff;
    box-shadow: none;
}

.payment-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-option:hover .payment-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: scale(1.05);
}

.payment-option:hover .payment-icon svg {
    stroke: #fff;
}

.payment-radio:checked + .payment-card .payment-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.payment-radio:checked + .payment-card .payment-icon svg {
    stroke: #fff;
}

.payment-icon svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    transition: stroke 0.3s ease;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.payment-name {
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coming-soon {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    background: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.payment-desc {
    font-size: 0.875rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* Card Details Section */
.card-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    animation: fadeInUp 0.4s ease-out;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover {
    text-decoration: none;
}


/* Order Summary */
.order-summary {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    animation: fadeInRight 0.6s ease-out 0.3s both;
}

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

.order-summary .section-title {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
}

.summary-product {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 1rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out both;
}

.summary-product:nth-child(1) {
    animation-delay: 0.1s;
}

.summary-product:nth-child(2) {
    animation-delay: 0.15s;
}

.summary-product:nth-child(3) {
    animation-delay: 0.2s;
}

.summary-product:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.remove-item-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #fff;
    color: #999;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.remove-item-btn:hover {
    color: #dc3545;
    background: #fff5f5;
    border-color: #dc3545;
    transform: scale(1.1) rotate(90deg);
}

.remove-item-btn:active {
    transform: scale(0.95);
}

.remove-item-btn svg {
    stroke: currentColor;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.summary-product-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.summary-product:hover .summary-product-image {
    transform: scale(1.05);
}

.summary-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 2rem;
}

.summary-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.summary-product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.summary-product-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.summary-product-price {
    margin-top: auto;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e5e5, transparent);
    margin: 1.5rem 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.summary-row span:last-child {
    font-weight: 600;
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 1rem;
    border-top: 2px solid #e5e5e5;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.text-success {
    color: #22c55e;
    font-weight: 600;
}

.order-submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.order-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.order-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #333;
}

.order-submit-btn:active {
    transform: translateY(0);
}

.order-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* Stepper Checkout Styles */
.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.checkout-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.stepper-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.stepper-item.active .stepper-number {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
}

.stepper-item.completed .stepper-number {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.stepper-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.stepper-item.active .stepper-label {
    color: #1a1a1a;
    font-weight: 600;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: #e5e5e5;
    margin: 0 1rem;
    position: relative;
    top: -20px;
    z-index: 1;
}

.stepper-item.completed + .stepper-line {
    background: #22c55e;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.step-content.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.step-subtitle {
    font-size: 1rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* Products Review */
.products-review {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-product {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.review-product:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
    flex-shrink: 0;
}

.review-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.review-product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.review-product-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-product-price {
    margin-top: auto;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Review Page Styles */
.review-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.review-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.review-summary {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.summary-products {
    margin-bottom: 1.5rem;
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-section .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.review-info-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-line {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.info-line strong {
    color: #1a1a1a;
    font-weight: 600;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.payment-info svg {
    stroke: #1a1a1a;
}

.back-to-checkout {
    margin-top: 1rem;
    text-align: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
        order: -1;
    }

    .order-container {
        padding: 1.5rem;
    }

    .review-layout {
        grid-template-columns: 1fr;
    }

    .stepper {
        margin-bottom: 2rem;
    }

    .stepper-label {
        font-size: 0.75rem;
    }

    .stepper-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .stepper-line {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .order-section {
        padding: 1.5rem;
    }

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

    .checkout-container {
        padding: 1rem;
    }

    .checkout-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stepper {
        margin-bottom: 1.5rem;
    }

    .stepper-item {
        flex: 1;
    }

    .stepper-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .stepper-label {
        font-size: 0.7rem;
    }

    .stepper-line {
        margin: 0 0.25rem;
    }

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

    .step-subtitle {
        font-size: 0.9rem;
    }

    .review-product {
        padding: 1rem;
        flex-direction: column;
    }

    .review-product-image {
        width: 100%;
        height: 200px;
    }

    .step-actions {
        flex-direction: column;
    }

    .step-actions .btn {
        width: 100%;
    }

    .review-container {
        padding: 1rem;
    }

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

    .review-summary,
    .review-section {
        padding: 1.25rem;
    }
}

/* Designer Page Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-content {
        justify-content: center;
    }

    .quote-bubble::before {
        display: none;
    }

    .quote-bubble {
        max-width: 100%;
    }

    .quote-bubble h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .quote-bubble {
        padding: 35px 25px;
    }

    .quote-bubble h1 {
        font-size: 28px;
    }

    .quote-mark {
        font-size: 60px;
        top: 20px;
        left: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 600;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
    text-align: left;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-detail {
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        position: relative;
    }

    .main-nav {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        justify-self: start;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-center {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-right {
        justify-self: end;
        gap: 0.75rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .btn-google-1 {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-google-1 span {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: white;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Customize Order Section */
.customize-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.customize-selector label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.callback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #f8f8f8;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-btn:hover {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.callback-btn svg {
    flex-shrink: 0;
}

.callback-btn:active {
    transform: translateY(0);
}

/* Color Circle Indicator */
.color-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Disabled Payment Options */
.payment-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.payment-disabled .payment-card {
    background-color: #f5f5f5;
}

.coming-soon {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
    font-style: italic;
}

.payment-icon svg {
    stroke: currentColor;
}

/* Cart Icon and Badge */
.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #333;
    transition: color 0.2s;
    text-decoration: none;
}

.cart-icon-link:hover {
    color: #000;
}

.cart-icon-link svg {
    width: 24px;
    height: 24px;
}

.cart-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.cart-icon-btn:hover {
    color: #000;
    transform: scale(1.05);
}

.cart-icon-btn svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.cart-menu-wrapper {
    position: relative;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    max-width: 400px;
    max-height: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-header {
    padding: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.cart-dropdown-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.cart-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.cart-item:hover {
    background-color: #fafafa;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cart-item-link:hover {
    text-decoration: none;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.cart-item-size,
.cart-item-color,
.cart-item-quantity {
    display: inline-block;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.cart-item-remove svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.cart-dropdown-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: #1a1a1a;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive for Cart Dropdown */
@media (max-width: 768px) {
    .cart-dropdown {
        min-width: 280px;
        max-width: calc(100vw - 3rem);
        right: 0;
        max-height: 70vh;
    }
    
    .cart-item {
        padding: 0.875rem 1rem;
    }
    
    .cart-item-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .cart-dropdown-header {
        padding: 1rem;
    }
    
    .cart-dropdown-footer {
        padding: 0.875rem 1rem;
    }
}

.order-btn svg {
    margin-right: 0.5rem;
}