Spaces:
Running
Running
File size: 75,278 Bytes
817f374 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OLIM | Advanced Clothing Mockup Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
:root {
--primary: #000000;
--secondary: #ffffff;
--accent: #ff003c;
--accent-light: rgba(255, 0, 60, 0.1);
}
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #f5f5f5;
color: var(--primary);
overflow-x: hidden;
}
.font-archivo {
font-family: 'Archivo Black', sans-serif;
}
.text-accent {
color: var(--accent);
}
.bg-accent {
background-color: var(--accent);
}
.bg-accent-light {
background-color: var(--accent-light);
}
.border-accent {
border-color: var(--accent);
}
.canvas-container {
position: relative;
width: 100%;
max-width: 600px;
margin: 0 auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-radius: 10px;
overflow: hidden;
}
#clothingCanvas {
background-color: white;
display: block;
}
.tool-btn {
transition: all 0.2s ease;
border-radius: 8px;
}
.tool-btn.active {
background-color: var(--accent);
color: white;
}
.tool-btn:hover:not(.active) {
background-color: rgba(0, 0, 0, 0.05);
}
.color-option {
width: 30px;
height: 30px;
border-radius: 50%;
cursor: pointer;
transition: transform 0.2s;
border: 2px solid transparent;
}
.color-option:hover, .color-option.selected {
transform: scale(1.1);
border-color: var(--primary);
}
.design-preview {
width: 80px;
height: 80px;
border: 2px solid #ddd;
cursor: pointer;
transition: all 0.2s;
border-radius: 8px;
overflow: hidden;
}
.design-preview:hover {
border-color: var(--accent);
transform: scale(1.05);
}
.dropzone {
border: 2px dashed #ccc;
border-radius: 8px;
padding: 25px;
text-align: center;
cursor: pointer;
transition: all 0.3s;
}
.dropzone:hover, .dropzone.dragover {
border-color: var(--accent);
background-color: var(--accent-light);
}
.customize-option {
border-radius: 8px;
transition: all 0.2s;
cursor: pointer;
}
.customize-option:hover {
background-color: var(--accent-light);
}
.customize-option.active {
background-color: var(--accent-light);
border-left: 3px solid var(--accent);
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 6px;
border-radius: 5px;
background: #ddd;
outline: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent);
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent);
cursor: pointer;
}
.element-item {
transition: all 0.2s;
border-radius: 8px;
}
.element-item:hover {
background-color: var(--accent-light);
}
.element-item.selected {
background-color: var(--accent-light);
border-left: 3px solid var(--accent);
}
.tab-btn {
transition: all 0.2s;
border-bottom: 3px solid transparent;
}
.tab-btn.active {
border-bottom: 3px solid var(--accent);
font-weight: 600;
}
.tab-btn:hover:not(.active) {
border-bottom: 3px solid rgba(255, 0, 60, 0.3);
}
.modal {
transition: opacity 0.2s, visibility 0.2s;
}
.modal-content {
transform: translateY(20px);
transition: transform 0.3s;
}
.modal.active {
opacity: 1;
visibility: visible;
}
.modal.active .modal-content {
transform: translateY(0);
}
.filter-option {
transition: all 0.2s;
border-radius: 20px;
}
.filter-option:hover {
background-color: var(--accent-light);
}
.filter-option.active {
background-color: var(--accent);
color: white;
}
.gradient-preview {
width: 100%;
height: 40px;
border-radius: 8px;
cursor: pointer;
border: 1px solid #ddd;
}
.pattern-preview {
width: 50px;
height: 50px;
border-radius: 8px;
cursor: pointer;
border: 1px solid #ddd;
}
.texture-preview {
width: 50px;
height: 50px;
border-radius: 8px;
cursor: pointer;
border: 1px solid #ddd;
}
.fabric-preview {
width: 50px;
height: 50px;
border-radius: 8px;
cursor: pointer;
border: 1px solid #ddd;
}
.mockup-preview {
transition: all 0.2s;
border-radius: 8px;
overflow: hidden;
}
.mockup-preview:hover {
transform: scale(1.02);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.loading-spinner {
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav class="bg-black text-white py-4 px-6 flex justify-between items-center sticky top-0 z-50">
<a href="#" class="font-archivo text-2xl flex items-center">
<i class="fas fa-tshirt mr-2"></i>
OLIM MOCKUP
</a>
<div class="hidden md:flex space-x-6">
<a href="#" class="hover:text-accent transition">Home</a>
<a href="#generator" class="hover:text-accent transition">Generator</a>
<a href="#designs" class="hover:text-accent transition">My Designs</a>
<a href="#templates" class="hover:text-accent transition">Templates</a>
<a href="#tutorial" class="hover:text-accent transition">Learn</a>
</div>
<div class="flex items-center space-x-4">
<button id="loginBtn" class="px-4 py-2 rounded font-bold hover:bg-white hover:text-black transition">Login</button>
<button id="signupBtn" class="bg-accent px-4 py-2 rounded font-bold hover:bg-opacity-90 transition">Sign Up</button>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-black to-gray-900 text-white py-20 px-6">
<div class="container mx-auto max-w-6xl text-center">
<h1 class="font-archivo text-4xl md:text-6xl mb-6">Professional Clothing Mockups Made Simple</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Design, customize, and visualize your apparel with our powerful yet easy-to-use mockup generator. Add zippers, pockets, and realistic textures with just a few clicks.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#generator" class="bg-accent px-8 py-4 font-bold rounded-lg hover:bg-opacity-90 transition flex items-center justify-center gap-2">
<i class="fas fa-play"></i> Start Designing
</a>
<a href="#tutorial" class="bg-white text-black px-8 py-4 font-bold rounded-lg hover:bg-opacity-90 transition flex items-center justify-center gap-2">
<i class="fas fa-video"></i> Watch Tutorial
</a>
</div>
</div>
</section>
<!-- Features Grid -->
<section class="py-16 px-6 bg-white">
<div class="container mx-auto max-w-6xl">
<h2 class="font-archivo text-3xl mb-12 text-center">CREATE PROFESSIONAL MOCKUPS IN MINUTES</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-6 rounded-xl text-center">
<div class="bg-accent text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-sliders-h text-2xl"></i>
</div>
<h3 class="font-bold text-xl mb-3">Advanced Customization</h3>
<p class="text-gray-700">Add zippers, pockets, buttons and other clothing details with our specialized tools.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-6 rounded-xl text-center">
<div class="bg-accent text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-cloud-upload-alt text-2xl"></i>
</div>
<h3 class="font-bold text-xl mb-3">Upload Your Designs</h3>
<p class="text-gray-700">Import your own artwork, logos, or patterns to apply to any clothing item.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-6 rounded-xl text-center">
<div class="bg-accent text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-magic text-2xl"></i>
</div>
<h3 class="font-bold text-xl mb-3">Realistic Rendering</h3>
<p class="text-gray-700">Generate photorealistic mockups with shadows, folds, and fabric textures.</p>
</div>
</div>
</div>
</section>
<!-- Mockup Generator Section -->
<section id="generator" class="py-16 px-6 bg-gray-50">
<div class="container mx-auto max-w-7xl">
<h2 class="font-archivo text-3xl mb-12 text-center">MOCKUP GENERATOR</h2>
<div class="flex flex-col lg:flex-row gap-8">
<!-- Left Column - Controls -->
<div class="lg:w-1/4 bg-white p-6 rounded-xl shadow-sm">
<!-- Tabs -->
<div class="flex border-b mb-6">
<button class="tab-btn active px-4 py-2" data-tab="design">Design</button>
<button class="tab-btn px-4 py-2" data-tab="customize">Customize</button>
<button class="tab-btn px-4 py-2" data-tab="effects">Effects</button>
</div>
<!-- Design Tab Content -->
<div id="designTab" class="tab-content">
<div class="mb-8">
<h3 class="font-bold text-lg mb-4 flex justify-between items-center">
<span>PRODUCT TYPE</span>
<button class="text-sm text-accent font-medium hover:underline">See all</button>
</h3>
<div class="grid grid-cols-2 gap-3">
<button data-product="tshirt" class="product-btn bg-black text-white py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-tshirt"></i> T-Shirt
</button>
<button data-product="hoodie" class="product-btn bg-gray-100 py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-hoodie"></i> Hoodie
</button>
<button data-product="tank" class="product-btn bg-gray-100 py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-vest"></i> Tank Top
</button>
<button data-product="longsleeve" class="product-btn bg-gray-100 py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-tshirt"></i> Long Sleeve
</button>
<button data-product="polo" class="product-btn bg-gray-100 py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-tshirt"></i> Polo
</button>
<button data-product="jacket" class="product-btn bg-gray-100 py-3 rounded-lg font-bold flex items-center justify-center gap-2">
<i class="fas fa-jacket"></i> Jacket
</button>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">COLOR</h3>
<div class="flex flex-wrap gap-3">
<div data-color="#000000" class="color-option bg-black selected" title="Black"></div>
<div data-color="#FFFFFF" class="color-option bg-white border border-gray-300" title="White"></div>
<div data-color="#C0C0C0" class="color-option bg-gray-300" title="Silver"></div>
<div data-color="#808080" class="color-option bg-gray-500" title="Gray"></div>
<div data-color="#FF0000" class="color-option bg-red-600" title="Red"></div>
<div data-color="#0000FF" class="color-option bg-blue-600" title="Blue"></div>
<div data-color="#008000" class="color-option bg-green-600" title="Green"></div>
<div data-color="#FFFF00" class="color-option bg-yellow-400" title="Yellow"></div>
<div data-color="#FFA500" class="color-option bg-orange-500" title="Orange"></div>
<div data-color="#800080" class="color-option bg-purple-600" title="Purple"></div>
<div data-color="#FFC0CB" class="color-option bg-pink-300" title="Pink"></div>
<div data-color="#A52A2A" class="color-option bg-brown-600" title="Brown"></div>
</div>
<button id="customColorBtn" class="mt-3 text-sm text-accent font-medium hover:underline flex items-center gap-1">
<i class="fas fa-plus"></i> Custom Color
</button>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">TOOLS</h3>
<div class="grid grid-cols-3 gap-3">
<button data-tool="text" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold active">
<i class="fas fa-text-height"></i> Text
</button>
<button data-tool="image" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-image"></i> Image
</button>
<button data-tool="draw" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-pencil"></i> Draw
</button>
<button data-tool="shape" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-shapes"></i> Shape
</button>
<button data-tool="move" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-arrows-alt"></i> Move
</button>
<button data-tool="delete" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-trash"></i> Delete
</button>
<button data-tool="zip" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-zipper"></i> Zipper
</button>
<button data-tool="pocket" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-parking"></i> Pocket
</button>
<button data-tool="button" class="tool-btn bg-gray-100 py-3 rounded-lg font-bold">
<i class="fas fa-circle"></i> Button
</button>
</div>
</div>
<div id="textControls" class="mb-8">
<h3 class="font-bold text-lg mb-4">TEXT OPTIONS</h3>
<input type="text" id="textInput" placeholder="Enter your text" class="w-full px-4 py-2 border border-gray-300 rounded-lg mb-3">
<div class="flex items-center gap-3 mb-3">
<select id="fontFamily" class="flex-grow px-3 py-2 border border-gray-300 rounded-lg">
<option value="Arial">Arial</option>
<option value="Helvetica">Helvetica</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Courier New">Courier New</option>
<option value="Georgia">Georgia</option>
<option value="Verdana">Verdana</option>
<option value="Impact">Impact</option>
<option value="Comic Sans MS">Comic Sans</option>
<option value="'Archivo Black', sans-serif">Archivo Black</option>
</select>
<input type="color" id="textColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="textSize" min="10" max="72" value="24" class="slider">
<span id="textSizeValue" class="text-sm font-bold">24px</span>
</div>
<div class="flex items-center gap-3 mb-3">
<button id="boldBtn" class="tool-btn bg-gray-100 px-3 py-2 rounded-lg">
<i class="fas fa-bold"></i>
</button>
<button id="italicBtn" class="tool-btn bg-gray-100 px-3 py-2 rounded-lg">
<i class="fas fa-italic"></i>
</button>
<button id="underlineBtn" class="tool-btn bg-gray-100 px-3 py-2 rounded-lg">
<i class="fas fa-underline"></i>
</button>
</div>
<div class="grid grid-cols-3 gap-3">
<button id="alignLeftBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-align-left"></i>
</button>
<button id="alignCenterBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-align-center"></i>
</button>
<button id="alignRightBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-align-right"></i>
</button>
</div>
</div>
<div id="imageControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">IMAGE OPTIONS</h3>
<div id="dropzone" class="dropzone mb-4">
<i class="fas fa-cloud-upload-alt text-4xl mb-3 text-gray-400"></i>
<p class="mb-2">Drag & drop your image here</p>
<p class="text-sm text-gray-500">or click to browse</p>
<input type="file" id="imageUpload" accept="image/*" class="hidden">
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="imageOpacity" min="10" max="100" value="100" class="slider">
<span id="imageOpacityValue" class="text-sm font-bold">100%</span>
</div>
<div class="grid grid-cols-2 gap-3">
<button id="flipHorizontalBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrows-alt-h"></i> Flip H
</button>
<button id="flipVerticalBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrows-alt-v"></i> Flip V
</button>
</div>
</div>
<div id="drawControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">DRAWING TOOLS</h3>
<div class="flex items-center gap-3 mb-3">
<input type="color" id="drawColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
<input type="range" id="brushSize" min="1" max="20" value="5" class="slider">
<span id="brushSizeValue" class="text-sm font-bold">5px</span>
</div>
<div class="grid grid-cols-3 gap-3">
<button id="clearCanvasBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-eraser"></i> Clear
</button>
</div>
</div>
<div id="shapeControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">SHAPES</h3>
<div class="grid grid-cols-3 gap-3 mb-3">
<button data-shape="rectangle" class="tool-btn bg-gray-100 py-3 rounded-lg">
<i class="far fa-square"></i>
</button>
<button data-shape="circle" class="tool-btn bg-gray-100 py-3 rounded-lg">
<i class="far fa-circle"></i>
</button>
<button data-shape="triangle" class="tool-btn bg-gray-100 py-3 rounded-lg">
<i class="fas fa-play"></i>
</button>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="color" id="shapeColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
<input type="range" id="shapeOpacity" min="10" max="100" value="100" class="slider">
<span id="shapeOpacityValue" class="text-sm font-bold">100%</span>
</div>
<div class="flex items-center gap-3">
<button id="shapeFillBtn" class="tool-btn bg-gray-100 px-3 py-2 rounded-lg">
<i class="fas fa-fill"></i> Fill
</button>
<button id="shapeStrokeBtn" class="tool-btn bg-gray-100 px-3 py-2 rounded-lg">
<i class="fas fa-border-style"></i> Stroke
</button>
</div>
</div>
<div id="zipControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">ZIPPER OPTIONS</h3>
<div class="flex items-center gap-3 mb-3">
<input type="color" id="zipColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
<select id="zipType" class="flex-grow px-3 py-2 border border-gray-300 rounded-lg">
<option value="standard">Standard</option>
<option value="hidden">Hidden</option>
<option value="exposed">Exposed</option>
<option value="double">Double</option>
</select>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="zipLength" min="50" max="200" value="100" class="slider">
<span id="zipLengthValue" class="text-sm font-bold">100px</span>
</div>
<div class="grid grid-cols-2 gap-3">
<button id="zipHorizontalBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrows-alt-h"></i> Horizontal
</button>
<button id="zipVerticalBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrows-alt-v"></i> Vertical
</button>
</div>
</div>
<div id="pocketControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">POCKET OPTIONS</h3>
<div class="flex items-center gap-3 mb-3">
<input type="color" id="pocketColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
<select id="pocketType" class="flex-grow px-3 py-2 border border-gray-300 rounded-lg">
<option value="chest">Chest</option>
<option value="side">Side</option>
<option value="kangaroo">Kangaroo</option>
<option value="welt">Welt</option>
<option value="patch">Patch</option>
</select>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="pocketSize" min="30" max="150" value="80" class="slider">
<span id="pocketSizeValue" class="text-sm font-bold">80px</span>
</div>
<div class="grid grid-cols-2 gap-3">
<button id="pocketLeftBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrow-left"></i> Left
</button>
<button id="pocketRightBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-arrow-right"></i> Right
</button>
</div>
</div>
<div id="buttonControls" class="mb-8 hidden">
<h3 class="font-bold text-lg mb-4">BUTTON OPTIONS</h3>
<div class="flex items-center gap-3 mb-3">
<input type="color" id="buttonColor" value="#000000" class="w-10 h-10 cursor-pointer rounded-lg border border-gray-300">
<select id="buttonType" class="flex-grow px-3 py-2 border border-gray-300 rounded-lg">
<option value="round">Round</option>
<option value="square">Square</option>
<option value="toggle">Toggle</option>
<option value="snap">Snap</option>
</select>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="buttonSize" min="10" max="40" value="20" class="slider">
<span id="buttonSizeValue" class="text-sm font-bold">20px</span>
</div>
<div class="grid grid-cols-2 gap-3">
<button id="addButtonBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-plus"></i> Add Button
</button>
<button id="addButtonRowBtn" class="tool-btn bg-gray-100 py-2 rounded-lg">
<i class="fas fa-grip-lines"></i> Add Row
</button>
</div>
</div>
</div>
<!-- Customize Tab Content -->
<div id="customizeTab" class="tab-content hidden">
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">FABRIC TYPE</h3>
<div class="grid grid-cols-3 gap-3">
<button data-fabric="cotton" class="filter-option bg-gray-100 py-2 rounded-lg active">
Cotton
</button>
<button data-fabric="denim" class="filter-option bg-gray-100 py-2 rounded-lg">
Denim
</button>
<button data-fabric="knit" class="filter-option bg-gray-100 py-2 rounded-lg">
Knit
</button>
<button data-fabric="polyester" class="filter-option bg-gray-100 py-2 rounded-lg">
Polyester
</button>
<button data-fabric="silk" class="filter-option bg-gray-100 py-2 rounded-lg">
Silk
</button>
<button data-fabric="wool" class="filter-option bg-gray-100 py-2 rounded-lg">
Wool
</button>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">FABRIC TEXTURE</h3>
<div class="flex gap-3 overflow-x-auto pb-2">
<div class="texture-preview bg-gray-200" data-texture="none" style="background-image: url('https://via.placeholder.com/50x50');"></div>
<div class="texture-preview" data-texture="weave" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Weave');"></div>
<div class="texture-preview" data-texture="knit" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Knit');"></div>
<div class="texture-preview" data-texture="denim" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Denim');"></div>
<div class="texture-preview" data-texture="corduroy" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Cord');"></div>
<div class="texture-preview" data-texture="canvas" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Canvas');"></div>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">PATTERNS</h3>
<div class="flex gap-3 overflow-x-auto pb-2">
<div class="pattern-preview bg-gray-200" data-pattern="none">
<i class="fas fa-ban text-gray-400"></i>
</div>
<div class="pattern-preview" data-pattern="stripes" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Stripes');"></div>
<div class="pattern-preview" data-pattern="check" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Check');"></div>
<div class="pattern-preview" data-pattern="dots" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Dots');"></div>
<div class="pattern-preview" data-pattern="camo" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Camo');"></div>
<div class="pattern-preview" data-pattern="floral" style="background-image: url('https://via.placeholder.com/50x50/cccccc/333333?text=Floral');"></div>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">GRADIENTS</h3>
<div class="grid grid-cols-2 gap-3">
<div class="gradient-preview" data-gradient="none" style="background: #fff; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-ban text-gray-400"></i>
</div>
<div class="gradient-preview" data-gradient="black-white" style="background: linear-gradient(to right, #000, #fff);"></div>
<div class="gradient-preview" data-gradient="red-yellow" style="background: linear-gradient(to right, #ff0000, #ffff00);"></div>
<div class="gradient-preview" data-gradient="blue-purple" style="background: linear-gradient(to right, #0000ff, #800080);"></div>
<div class="gradient-preview" data-gradient="green-blue" style="background: linear-gradient(to right, #008000, #0000ff);"></div>
<div class="gradient-preview" data-gradient="pink-orange" style="background: linear-gradient(to right, #ffc0cb, #ffa500);"></div>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">FOLDS & WRINKLES</h3>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="foldsIntensity" min="0" max="100" value="50" class="slider">
<span id="foldsIntensityValue" class="text-sm font-bold">50%</span>
</div>
<div class="grid grid-cols-3 gap-3">
<button data-fold="none" class="filter-option bg-gray-100 py-2 rounded-lg active">
None
</button>
<button data-fold="light" class="filter-option bg-gray-100 py-2 rounded-lg">
Light
</button>
<button data-fold="heavy" class="filter-option bg-gray-100 py-2 rounded-lg">
Heavy
</button>
</div>
</div>
</div>
<!-- Effects Tab Content -->
<div id="effectsTab" class="tab-content hidden">
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">SHADOWS</h3>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="shadowIntensity" min="0" max="100" value="30" class="slider">
<span id="shadowIntensityValue" class="text-sm font-bold">30%</span>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="shadowAngle" min="0" max="360" value="45" class="slider">
<span id="shadowAngleValue" class="text-sm font-bold">45°</span>
</div>
<div class="grid grid-cols-3 gap-3">
<button data-shadow="none" class="filter-option bg-gray-100 py-2 rounded-lg">
None
</button>
<button data-shadow="drop" class="filter-option bg-gray-100 py-2 rounded-lg active">
Drop
</button>
<button data-shadow="inner" class="filter-option bg-gray-100 py-2 rounded-lg">
Inner
</button>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">LIGHTING</h3>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="lightingIntensity" min="0" max="100" value="70" class="slider">
<span id="lightingIntensityValue" class="text-sm font-bold">70%</span>
</div>
<div class="flex items-center gap-3 mb-3">
<input type="range" id="lightingAngle" min="0" max="360" value="135" class="slider">
<span id="lightingAngleValue" class="text-sm font-bold">135°</span>
</div>
<div class="grid grid-cols-3 gap-3">
<button data-lighting="soft" class="filter-option bg-gray-100 py-2 rounded-lg active">
Soft
</button>
<button data-lighting="hard" class="filter-option bg-gray-100 py-2 rounded-lg">
Hard
</button>
<button data-lighting="studio" class="filter-option bg-gray-100 py-2 rounded-lg">
Studio
</button>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">EFFECTS</h3>
<div class="grid grid-cols-3 gap-3">
<button data-effect="none" class="filter-option bg-gray-100 py-2 rounded-lg">
None
</button>
<button data-effect="vintage" class="filter-option bg-gray-100 py-2 rounded-lg">
Vintage
</button>
<button data-effect="grunge" class="filter-option bg-gray-100 py-2 rounded-lg">
Grunge
</button>
<button data-effect="distressed" class="filter-option bg-gray-100 py-2 rounded-lg">
Distressed
</button>
<button data-effect="bleach" class="filter-option bg-gray-100 py-2 rounded-lg">
Bleach
</button>
<button data-effect="faded" class="filter-option bg-gray-100 py-2 rounded-lg">
Faded
</button>
</div>
</div>
<div class="mb-8">
<h3 class="font-bold text-lg mb-4">BACKGROUND</h3>
<div class="grid grid-cols-3 gap-3">
<button data-bg="transparent" class="filter-option bg-gray-100 py-2 rounded-lg">
Transparent
</button>
<button data-bg="white" class="filter-option bg-gray-100 py-2 rounded-lg active">
White
</button>
<button data-bg="gray" class="filter-option bg-gray-100 py-2 rounded-lg">
Gray
</button>
<button data-bg="black" class="filter-option bg-gray-100 py-2 rounded-lg">
Black
</button>
<button data-bg="custom" class="filter-option bg-gray-100 py-2 rounded-lg">
Custom
</button>
</div>
</div>
</div>
</div>
<!-- Middle Column - Canvas -->
<div class="lg:w-2/4">
<div class="canvas-container">
<canvas id="clothingCanvas" width="600" height="700"></canvas>
<div id="canvasOverlay" class="absolute inset-0 pointer-events-none"></div>
</div>
<div class="mt-6 flex justify-center gap-4">
<button id="saveDesignBtn" class="bg-accent text-white px-6 py-3 rounded-lg font-bold hover:bg-opacity-90 transition flex items-center gap-2">
<i class="fas fa-save"></i> Save Design
</button>
<button id="exportBtn" class="bg-black text-white px-6 py-3 rounded-lg font-bold hover:bg-opacity-90 transition flex items-center gap-2">
<i class="fas fa-download"></i> Export
</button>
<button id="generateRealisticBtn" class="bg-white border border-gray-300 px-6 py-3 rounded-lg font-bold hover:bg-gray-100 transition flex items-center gap-2">
<i class="fas fa-magic"></i> Realistic
</button>
</div>
</div>
<!-- Right Column - Design Elements & Layers -->
<div class="lg:w-1/4 bg-white p-6 rounded-xl shadow-sm">
<div class="flex border-b mb-6">
<button class="tab-btn active px-4 py-2" data-panel="elements">Elements</button>
<button class="tab-btn px-4 py-2" data-panel="layers">Layers</button>
<button class="tab-btn px-4 py-2" data-panel="templates">Templates</button>
</div>
<!-- Elements Panel -->
<div id="elementsPanel" class="tab-content">
<h3 class="font-bold text-lg mb-4">DESIGN ELEMENTS</h3>
<div id="designElements" class="space-y-3 max-h-[400px] overflow-y-auto">
<p class="text-gray-500 text-center py-10">Add elements to your design to see them listed here</p>
</div>
<div class="mt-8">
<h3 class="font-bold text-lg mb-4">QUICK DESIGNS</h3>
<div class="grid grid-cols-3 gap-3">
<div class="design-preview bg-gray-100 flex items-center justify-center">
<i class="fas fa-plus text-gray-400"></i>
</div>
<div class="design-preview" style="background-color: #000; color: #fff; display: flex; align-items: center; justify-content: center;">
<span style="font-weight: bold; font-size: 12px;">OLIM</span>
</div>
<div class="design-preview" style="background-color: #fff; display: flex; align-items: center; justify-content: center;">
<span style="font-weight: bold; font-size: 12px; color: #ff003c;">STREET</span>
</div>
<div class="design-preview" style="background-color: #ff003c; display: flex; align-items: center; justify-content: center;">
<span style="font-weight: bold; font-size: 12px; color: #fff;">WEAR</span>
</div>
<div class="design-preview bg-gray-100 flex items-center justify-center">
<i class="fas fa-plus text-gray-400"></i>
</div>
<div class="design-preview bg-gray-100 flex items-center justify-center">
<i class="fas fa-plus text-gray-400"></i>
</div>
</div>
</div>
</div>
<!-- Layers Panel -->
<div id="layersPanel" class="tab-content hidden">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg">LAYERS</h3>
<button id="addLayerBtn" class="text-accent text-sm font-medium hover:underline">
<i class="fas fa-plus"></i> New
</button>
</div>
<div id="layersList" class="space-y-2 max-h-[500px] overflow-y-auto">
<div class="bg-gray-100 p-3 rounded-lg">
<div class="flex items-center justify-between">
<div class="flex items-center gap-2">
<i class="fas fa-tshirt text-gray-500"></i>
<span class="text-sm">Base Layer</span>
</div>
<div class="flex items-center gap-2">
<i class="fas fa-eye text-gray-500"></i>
<i class="fas fa-lock text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Templates Panel -->
<div id="templatesPanel" class="tab-content hidden">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg">TEMPLATES</h3>
<button id="uploadTemplateBtn" class="text-accent text-sm font-medium hover:underline">
<i class="fas fa-upload"></i> Upload
</button>
</div>
<div class="space-y-3 max-h-[500px] overflow-y-auto">
<div class="mockup-preview bg-gray-100 p-3">
<div class="aspect-square bg-gray-200 mb-2"></div>
<div class="flex justify-between items-center">
<span class="text-sm font-medium">Basic Tee</span>
<button class="text-gray-500 hover:text-accent">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="mockup-preview bg-gray-100 p-3">
<div class="aspect-square bg-gray-200 mb-2"></div>
<div class="flex justify-between items-center">
<span class="text-sm font-medium">Hoodie</span>
<button class="text-gray-500 hover:text-accent">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="mockup-preview bg-gray-100 p-3">
<div class="aspect-square bg-gray-200 mb-2"></div>
<div class="flex justify-between items-center">
<span class="text-sm font-medium">Denim Jacket</span>
<button class="text-gray-500 hover:text-accent">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="mockup-preview bg-gray-100 p-3">
<div class="aspect-square bg-gray-200 mb-2"></div>
<div class="flex justify-between items-center">
<span class="text-sm font-medium">Polo Shirt</span>
<button class="text-gray-500 hover:text-accent">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Templates Section -->
<section id="templates" class="py-16 px-6 bg-white">
<div class="container mx-auto max-w-6xl">
<h2 class="font-archivo text-3xl mb-12 text-center">PROFESSIONAL TEMPLATES</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Template 1 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=T-Shirt+Template" alt="Template 1" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Basic T-Shirt</h3>
<p class="text-sm text-gray-600 mb-3">Front and back views with color options</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 2 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Hoodie+Template" alt="Template 2" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Zip Hoodie</h3>
<p class="text-sm text-gray-600 mb-3">With functional zipper and pocket</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 3 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Jacket+Template" alt="Template 3" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Denim Jacket</h3>
<p class="text-sm text-gray-600 mb-3">With realistic denim texture</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 4 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Polo+Template" alt="Template 4" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Polo Shirt</h3>
<p class="text-sm text-gray-600 mb-3">With collar and button details</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 5 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Tank+Template" alt="Template 5" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Tank Top</h3>
<p class="text-sm text-gray-600 mb-3">Sleeveless with side seams</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 6 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Long+Sleeve+Template" alt="Template 6" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Long Sleeve</h3>
<p class="text-sm text-gray-600 mb-3">With cuff details</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Template 7 -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition">
<div class="aspect-square bg-gray-200 mb-3 flex items-center justify-center">
<img src="https://via.placeholder.com/300x300?text=Kids+Template" alt="Template 7" class="w-full h-full object-contain">
</div>
<h3 class="font-bold">Kids T-Shirt</h3>
<p class="text-sm text-gray-600 mb-3">Child size proportions</p>
<div class="flex justify-between">
<button class="text-sm bg-accent text-white px-3 py-1 rounded font-bold hover:bg-opacity-90 transition">Use Template</button>
<button class="text-sm text-gray-600 hover:text-black flex items-center gap-1">
<i class="fas fa-eye"></i> Preview
</button>
</div>
</div>
<!-- Upload Template -->
<div class="mockup-preview bg-white p-4 rounded-lg shadow-md hover:shadow-lg transition flex flex-col items-center justify-center border-2 border-dashed border-gray-300">
<i class="fas fa-cloud-upload-alt text-4xl mb-3 text-gray-400"></i>
<h3 class="font-bold">Upload Your Own</h3>
<p class="text-sm text-gray-600 mb-3">Use your custom templates</p>
<button id="uploadCustomTemplateBtn" class="bg-accent text-white px-4 py-2 rounded text-sm font-bold hover:bg-opacity-90 transition">Upload Template</button>
</div>
</div>
</div>
</section>
<!-- Tutorial Section -->
<section id="tutorial" class="py-16 px-6 bg-gray-100">
<div class="container mx-auto max-w-6xl">
<h2 class="font-archivo text-3xl mb-12 text-center">LEARN HOW TO CREATE AMAZING MOCKUPS</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<!-- Tutorial 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="aspect-video bg-gray-200 mb-4 flex items-center justify-center">
<i class="fas fa-play text-4xl text-gray-400"></i>
</div>
<h3 class="font-bold text-xl mb-2">Getting Started Guide</h3>
<p class="text-gray-700 mb-3">Learn the basics of our mockup generator in under 5 minutes.</p>
<button class="text-sm text-accent font-bold hover:underline flex items-center gap-1">
<i class="fas fa-play"></i> Watch Now
</button>
</div>
<!-- Tutorial 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="aspect-video bg-gray-200 mb-4 flex items-center justify-center">
<i class="fas fa-play text-4xl text-gray-400"></i>
</div>
<h3 class="font-bold text-xl mb-2">Advanced Customization</h3>
<p class="text-gray-700 mb-3">Master zippers, pockets, and other clothing details.</p>
<button class="text-sm text-accent font-bold hover:underline flex items-center gap-1">
<i class="fas fa-play"></i> Watch Now
</button>
</div>
<!-- Tutorial 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="aspect-video bg-gray-200 mb-4 flex items-center justify-center">
<i class="fas fa-play text-4xl text-gray-400"></i>
</div>
<h3 class="font-bold text-xl mb-2">Realistic Rendering</h3>
<p class="text-gray-700 mb-3">Create photorealistic mockups with our pro tips.</p>
<button class="text-sm text-accent font-bold hover:underline flex items-center gap-1">
<i class="fas fa-play"></i> Watch Now
</button>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="md:flex">
<div class="md:w-1/2 bg-black aspect-video flex items-center justify-center">
<i class="fas fa-play text-6xl text-white"></i>
</div>
<div class="md:w-1/2 p-8">
<h3 class="font-archivo text-2xl mb-4">Masterclass: Professional Mockups in 10 Minutes</h3>
<p class="text-gray-700 mb-6">Join our lead designer as they walk through creating a complete, professional clothing mockup from scratch, including all the advanced features our tool offers.</p>
<div class="flex flex-col sm:flex-row gap-3">
<button class="bg-accent text-white px-6 py-3 rounded-lg font-bold hover:bg-opacity-90 transition flex items-center justify-center gap-2">
<i class="fas fa-play"></i> Watch Full Tutorial
</button>
<button class="bg-white border border-gray-300 px-6 py-3 rounded-lg font-bold hover:bg-gray-100 transition flex items-center justify-center gap-2">
<i class="fas fa-download"></i> Download Assets
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-6 bg-black text-white">
<div class="container mx-auto max-w-4xl text-center">
<h2 class="font-archivo text-3xl mb-6">READY TO CREATE PROFESSIONAL MOCKUPS?</h2>
<p class="text-xl mb-8">Join thousands of designers using our free mockup generator to bring their ideas to life.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#generator" class="bg-accent px-8 py-4 font-bold rounded-lg text-lg hover:bg-opacity-90 transition flex items-center justify-center gap-2">
<i class="fas fa-play"></i> Start Designing Now
</a>
<a href="#" class="bg-white text-black px-8 py-4 font-bold rounded-lg text-lg hover:bg-opacity-90 transition flex items-center justify-center gap-2">
<i class="fas fa-user-plus"></i> Sign Up for Free
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-6">
<div class="container mx-auto max-w-6xl">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="font-archivo text-xl mb-4 flex items-center">
<i class="fas fa-tshirt mr-2"></i>
OLIM MOCKUP
</h3>
<p class="text-gray-400 mb-4">The professional online clothing mockup generator for designers and brands.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h4 class="font-bold uppercase text-sm mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#generator" class="text-gray-400 hover:text-white transition">Mockup Generator</a></li>
<li><a href="#templates" class="text-gray-400 hover:text-white transition">Templates</a></li>
<li><a href="#tutorial" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
</ul>
</div>
<div>
<h4 class="font-bold uppercase text-sm mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Templates</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
</ul>
</div>
<div>
<h4 class="font-bold uppercase text-sm mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Partners</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center text-gray-500 text-sm">
<p>© 2023 OLIM Mockup Generator. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white transition">Terms</a>
<a href="#" class="hover:text-white transition">Privacy</a>
<a href="#" class="hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<!-- Custom Color Modal -->
<div id="customColorModal" class="modal fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 opacity-0 invisible">
<div class="modal-content bg-white p-6 rounded-xl w-full max-w-md">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg">Custom Color</h3>
<button id="closeCustomColorModal" class="text-gray-500 hover:text-black">
<i class="fas fa-times"></i>
</button>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-2">Color Picker</label>
<input type="color" id="customColorPicker" value="#000000" class="w-full h-12 cursor-pointer">
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-2">Hex Code</label>
<input type="text" id="customColorHex" value="#000000" class="w-full px-3 py-2 border border-gray-300 rounded-lg">
</div>
<div class="flex justify-end gap-3">
<button id="cancelCustomColor" class="px-4 py-2 rounded-lg font-bold hover:bg-gray-100 transition">Cancel</button>
<button id="applyCustomColor" class="bg-accent text-white px-4 py-2 rounded-lg font-bold hover:bg-opacity-90 transition">Apply</button>
</div>
</div>
</div>
<!-- Export Modal -->
<div id="exportModal" class="modal fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 opacity-0 invisible">
<div class="modal-content bg-white p-6 rounded-xl w-full max-w-md">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg">Export Options</h3>
<button id="closeExportModal" class="text-gray-500 hover:text-black">
<i class="fas fa-times"></i>
</button>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-2">File Format</label>
<select id="exportFormat" class="w-full px-3 py-2 border border-gray-300 rounded-lg">
<option value="png">PNG (Transparent)</option>
<option value="jpg">JPG (High Quality)</option>
<option value="svg">SVG (Vector)</option>
<option value="pdf">PDF (Print Ready)</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-2">Resolution</label>
<select id="exportResolution" class="w-full px-3 py-2 border border-gray-300 rounded-lg">
<option value="1x">Standard (1x)</option>
<option value="2x">High (2x)</option>
<option value="3x">Ultra (3x)</option>
</select>
</div>
<div class="mb-4">
<label class="flex items-center gap-2">
<input type="checkbox" id="exportWithBg" class="rounded">
<span class="text-sm font-medium">Include Background</span>
</label>
</div>
<div class="flex justify-end gap-3">
<button id="cancelExport" class="px-4 py-2 rounded-lg font-bold hover:bg-gray-100 transition">Cancel</button>
<button id="confirmExport" class="bg-accent text-white px-4 py-2 rounded-lg font-bold hover:bg-opacity-90 transition">Export</button>
</div>
</div>
</div>
<!-- Realistic Render Modal -->
<div id="realisticModal" class="modal fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 opacity-0 invisible">
<div class="modal-content bg-white p-6 rounded-xl w-full max-w-md">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg">Generate Realistic Mockup</h3>
<button id="closeRealisticModal" class="text-gray-500 hover:text-black">
<i class="fas fa-times"></i>
</button>
</div>
<div class="mb
</html> |